diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..b9ea89a3c95026900c2e0057ecccba045588f9c1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +temp* + + +# python temp files +__pycache__ +*.pyc +.vscode diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..32897cd3e640101ba184f8c4ccd896981de3804a --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +--- +license: mit +--- diff --git a/app.py b/app.py new file mode 100644 index 0000000000000000000000000000000000000000..0a06ed00d40e74f6caf0ef6d784454f11673f0aa --- /dev/null +++ b/app.py @@ -0,0 +1,400 @@ +import io +import os + +import json +import base64 +import random +import numpy as np +import pandas as pd +import gradio as gr +from pathlib import Path +from PIL import Image + +from plots import get_pre_define_colors +from utils.load_model import load_xclip +from utils.predict import xclip_pred + + +DEVICE = "cpu" +XCLIP, OWLVIT_PRECESSOR = load_xclip(DEVICE) +XCLIP_DESC_PATH = "data/jsons/bs_cub_desc.json" +XCLIP_DESC = json.load(open(XCLIP_DESC_PATH, "r")) +PREPROCESS = lambda x: OWLVIT_PRECESSOR(images=x, return_tensors='pt') +IMAGES_FOLDER = "data/images" +# XCLIP_RESULTS = json.load(open("data/jsons/xclip_org.json", "r")) +# correct_predictions = [k for k, v in XCLIP_RESULTS.items() if v['prediction']] + +# get the intersection of sachit and xclip (revised) +# INTERSECTION = [] +# IMAGE_RES = 400 * 400 # minimum resolution +# TOTAL_SAMPLES = 20 +# for file_name in XCLIP_RESULTS: +# image = Image.open(os.path.join(IMAGES_FOLDER, 'org', file_name)).convert('RGB') +# w, h = image.size +# if w * h < IMAGE_RES: +# continue +# else: +# INTERSECTION.append(file_name) + +# IMAGE_FILE_LIST = random.sample(INTERSECTION, TOTAL_SAMPLES) +IMAGE_FILE_LIST = json.load(open("data/jsons/file_list.json", "r")) +# IMAGE_FILE_LIST = IMAGE_FILE_LIST[:19] +# IMAGE_FILE_LIST.append('Eastern_Bluebird.jpg') +IMAGE_GALLERY = [Image.open(os.path.join(IMAGES_FOLDER, 'org', file_name)).convert('RGB') for file_name in IMAGE_FILE_LIST] + +ORG_PART_ORDER = ['back', 'beak', 'belly', 'breast', 'crown', 'forehead', 'eyes', 'legs', 'wings', 'nape', 'tail', 'throat'] +ORDERED_PARTS = ['crown', 'forehead', 'nape', 'eyes', 'beak', 'throat', 'breast', 'belly', 'back', 'wings', 'legs', 'tail'] +COLORS = get_pre_define_colors(12, cmap_set=['Set2', 'tab10']) +SACHIT_COLOR = "#ADD8E6" +# CUB_BOXES = json.load(open("data/jsons/cub_boxes_owlvit_large.json", "r")) +VISIBILITY_DICT = json.load(open("data/jsons/cub_vis_dict_binary.json", 'r')) +VISIBILITY_DICT['Eastern_Bluebird.jpg'] = dict(zip(ORDERED_PARTS, [True]*12)) + +# --- Image related functions --- +def img_to_base64(img): + img_pil = Image.fromarray(img) if isinstance(img, np.ndarray) else img + buffered = io.BytesIO() + img_pil.save(buffered, format="JPEG") + img_str = base64.b64encode(buffered.getvalue()) + return img_str.decode() + +def create_blank_image(width=500, height=500, color=(255, 255, 255)): + """Create a blank image of the given size and color.""" + return np.array(Image.new("RGB", (width, height), color)) + +# Convert RGB colors to hex +def rgb_to_hex(rgb): + return f"#{''.join(f'{x:02x}' for x in rgb)}" + +def load_part_images(file_name: str) -> dict: + part_images = {} + # start_time = time.time() + for part_name in ORDERED_PARTS: + base_name = Path(file_name).stem + part_image_path = os.path.join(IMAGES_FOLDER, "boxes", f"{base_name}_{part_name}.jpg") + if not Path(part_image_path).exists(): + continue + image = np.array(Image.open(part_image_path)) + part_images[part_name] = img_to_base64(image) + # print(f"Time cost to load 12 images: {time.time() - start_time}") + # This takes less than 0.01 seconds. So the loading time is not the bottleneck. + return part_images + +def generate_xclip_explanations(result_dict:dict, visibility: dict, part_mask: dict = dict(zip(ORDERED_PARTS, [1]*12))): + """ + The result_dict needs three keys: 'descriptions', 'pred_scores', 'file_name' + descriptions: {part_name1: desc_1, part_name2: desc_2, ...} + pred_scores: {part_name1: score_1, part_name2: score_2, ...} + file_name: str + """ + + descriptions = result_dict['descriptions'] + image_name = result_dict['file_name'] + part_images = PART_IMAGES_DICT[image_name] + MAX_LENGTH = 50 + exp_length = 400 + fontsize = 15 + + # Start the SVG inside a div + svg_parts = [f'<div style="width: {exp_length}px; height: 450px; background-color: white;">', + "<svg width=\"100%\" height=\"100%\">"] + + # Add a row for each visible bird part + y_offset = 0 + for part in ORDERED_PARTS: + if visibility[part] and part_mask[part]: + # Calculate the length of the bar (scaled to fit within the SVG) + part_score = max(result_dict['pred_scores'][part], 0) + bar_length = part_score * exp_length + + # Modify the overlay image's opacity on mouseover and mouseout + mouseover_action1 = f"document.getElementById('overlayImage').src = 'data:image/jpeg;base64,{part_images[part]}'; document.getElementById('overlayImage').style.opacity = 1;" + mouseout_action1 = "document.getElementById('overlayImage').style.opacity = 0;" + + combined_mouseover = f"javascript: {mouseover_action1};" + combined_mouseout = f"javascript: {mouseout_action1};" + + # Add the description + num_lines = len(descriptions[part]) // MAX_LENGTH + 1 + for line in range(num_lines): + desc_line = descriptions[part][line*MAX_LENGTH:(line+1)*MAX_LENGTH] + y_offset += fontsize + svg_parts.append(f""" + <text x="0" y="{y_offset}" font-size="{fontsize}" + onmouseover="{combined_mouseover}" + onmouseout="{combined_mouseout}"> + {desc_line} + </text> + """) + + # Add the bars + svg_parts.append(f""" + <rect x="0" y="{y_offset +3}" width="{bar_length}" height="{fontsize*0.7}" fill="{PART_COLORS[part]}" + onmouseover="{combined_mouseover}" + onmouseout="{combined_mouseout}"> + </rect> + """) + # Add the scores + svg_parts.append(f'<text x="{exp_length - 50}" y="{y_offset+fontsize+3}" font-size="{fontsize}" fill="{PART_COLORS[part]}">{part_score:.2f}</text>') + + y_offset += fontsize + 3 + svg_parts.extend(("</svg>", "</div>")) + # Join everything into a single string + html = "".join(svg_parts) + + + return html + + + +def generate_sachit_explanations(result_dict:dict): + descriptions = result_dict['descriptions'] + scores = result_dict['scores'] + MAX_LENGTH = 50 + exp_length = 400 + fontsize = 15 + + descriptions = zip(scores, descriptions) + descriptions = sorted(descriptions, key=lambda x: x[0], reverse=True) + + # Start the SVG inside a div + svg_parts = [f'<div style="width: {exp_length}px; height: 450px; background-color: white;">', + "<svg width=\"100%\" height=\"100%\">"] + + # Add a row for each visible bird part + y_offset = 0 + for score, desc in descriptions: + + # Calculate the length of the bar (scaled to fit within the SVG) + part_score = max(score, 0) + bar_length = part_score * exp_length + + # Split the description into two lines if it's too long + num_lines = len(desc) // MAX_LENGTH + 1 + for line in range(num_lines): + desc_line = desc[line*MAX_LENGTH:(line+1)*MAX_LENGTH] + y_offset += fontsize + svg_parts.append(f""" + <text x="0" y="{y_offset}" font-size="{fontsize}" fill="black"> + {desc_line} + </text> + """) + + # Add the bar + svg_parts.append(f""" + <rect x="0" y="{y_offset+3}" width="{bar_length}" height="{fontsize*0.7}" fill="{SACHIT_COLOR}"> + </rect> + """) + + # Add the score + svg_parts.append(f'<text x="{exp_length - 50}" y="{y_offset+fontsize+3}" font-size="fontsize" fill="{SACHIT_COLOR}">{part_score:.2f}</text>') # Added fill color + + y_offset += fontsize + 3 + + + svg_parts.extend(("</svg>", "</div>")) + # Join everything into a single string + html = "".join(svg_parts) + + + return html + +# --- Constants created by the functions above --- +BLANK_OVERLAY = img_to_base64(create_blank_image()) +PART_COLORS = {part: rgb_to_hex(COLORS[i]) for i, part in enumerate(ORDERED_PARTS)} +blank_image = np.array(Image.open('data/images/final.png').convert('RGB')) +PART_IMAGES_DICT = {file_name: load_part_images(file_name) for file_name in IMAGE_FILE_LIST} + +# --- Gradio Functions --- +def update_selected_image(event: gr.SelectData): + image_height = 400 + index = event.index + + image_name = IMAGE_FILE_LIST[index] + current_image.state = image_name + org_image = Image.open(os.path.join(IMAGES_FOLDER, 'org', image_name)).convert('RGB') + img_base64 = f""" + <div style="position: relative; height: {image_height}px; display: inline-block;"> + <img id="birdImage" src="data:image/jpeg;base64,{img_to_base64(org_image)}" style="height: {image_height}px; width: auto;"> + <img id="overlayImage" src="data:image/jpeg;base64,{BLANK_OVERLAY}" style="position:absolute; top:0; left:0; width:auto; height: {image_height}px; opacity: 0;"> + </div> + """ + gt_label = XCLIP_RESULTS[image_name]['ground_truth'] + gt_class.state = gt_label + + # --- for initial value only --- + out_dict = xclip_pred(new_desc=None, new_part_mask=None, new_class=None, org_desc=XCLIP_DESC_PATH, image=Image.open(os.path.join(IMAGES_FOLDER, 'org', current_image.state)).convert('RGB'), model=XCLIP, owlvit_processor=OWLVIT_PRECESSOR, device=DEVICE, image_name=current_image.state) + xclip_label = out_dict['pred_class'] + clip_pred_scores = out_dict['pred_score'] + xclip_part_scores = out_dict['pred_desc_scores'] + result_dict = {'descriptions': dict(zip(ORG_PART_ORDER, out_dict["descriptions"])), 'pred_scores': xclip_part_scores, 'file_name': current_image.state} + xclip_exp = generate_xclip_explanations(result_dict, VISIBILITY_DICT[current_image.state], part_mask=dict(zip(ORDERED_PARTS, [1]*12))) + # --- end of intial value --- + + xclip_color = "green" if xclip_label.strip() == gt_label.strip() else "red" + xclip_pred_markdown = f""" + ### <span style='color:{xclip_color}'>XCLIP: {xclip_label} {clip_pred_scores:.4f}</span> + """ + + gt_label = f""" + ## {gt_label} + """ + current_predicted_class.state = xclip_label + + # Populate the textbox with current descriptions + custom_class_name = "class name: custom" + descs = XCLIP_DESC[xclip_label] + descs = {k: descs[i] for i, k in enumerate(ORG_PART_ORDER)} + descs = {k: descs[k] for k in ORDERED_PARTS} + custom_text = [custom_class_name] + list(descs.values()) + descriptions = ";\n".join(custom_text) + textbox = gr.Textbox.update(value=descriptions, lines=12, visible=True, label="XCLIP descriptions", interactive=True, info='Please use ";" to separate the descriptions for each part, and keep the format of {part name}: {descriptions}', show_label=False) + # modified_exp = gr.HTML().update(value="", visible=True) + return gt_label, img_base64, xclip_pred_markdown, xclip_exp, current_image, textbox + +def on_edit_button_click_xclip(): + empty_exp = gr.HTML.update(visible=False) + + # Populate the textbox with current descriptions + descs = XCLIP_DESC[current_predicted_class.state] + descs = {k: descs[i] for i, k in enumerate(ORG_PART_ORDER)} + descs = {k: descs[k] for k in ORDERED_PARTS} + custom_text = ["class name: custom"] + list(descs.values()) + descriptions = ";\n".join(custom_text) + textbox = gr.Textbox.update(value=descriptions, lines=12, visible=True, label="XCLIP descriptions", interactive=True, info='Please use ";" to separate the descriptions for each part, and keep the format of {part name}: {descriptions}', show_label=False) + + return textbox, empty_exp + +def convert_input_text_to_xclip_format(textbox_input: str): + + # Split the descriptions by newline to get individual descriptions for each part + descriptions_list = textbox_input.split(";\n") + # the first line should be "class name: xxx" + class_name_line = descriptions_list[0] + new_class_name = class_name_line.split(":")[1].strip() + + descriptions_list = descriptions_list[1:] + + # construct descripion dict with part name as key + descriptions_dict = {} + for desc in descriptions_list: + if desc.strip() == "": + continue + part_name, _ = desc.split(":") + descriptions_dict[part_name.strip()] = desc + # fill with empty string if the part is not in the descriptions + part_mask = {} + for part in ORDERED_PARTS: + if part not in descriptions_dict: + descriptions_dict[part] = "" + part_mask[part] = 0 + else: + part_mask[part] = 1 + return descriptions_dict, part_mask, new_class_name + +def on_predict_button_click_xclip(textbox_input: str): + descriptions_dict, part_mask, new_class_name = convert_input_text_to_xclip_format(textbox_input) + + # Get the new predictions and explanations + out_dict = xclip_pred(new_desc=descriptions_dict, new_part_mask=part_mask, new_class=new_class_name, org_desc=XCLIP_DESC_PATH, image=Image.open(os.path.join(IMAGES_FOLDER, 'org', current_image.state)).convert('RGB'), model=XCLIP, owlvit_processor=OWLVIT_PRECESSOR, device=DEVICE, image_name=current_image.state) + xclip_label = out_dict['pred_class'] + xclip_pred_score = out_dict['pred_score'] + xclip_part_scores = out_dict['pred_desc_scores'] + custom_label = out_dict['modified_class'] + custom_pred_score = out_dict['modified_score'] + custom_part_scores = out_dict['modified_desc_scores'] + + # construct a result dict to generate xclip explanations + result_dict = {'descriptions': dict(zip(ORG_PART_ORDER, out_dict["descriptions"])), 'pred_scores': xclip_part_scores, 'file_name': current_image.state} + xclip_explanation = generate_xclip_explanations(result_dict, VISIBILITY_DICT[current_image.state], part_mask) + modified_result_dict = {'descriptions': dict(zip(ORG_PART_ORDER, out_dict["modified_descriptions"])), 'pred_scores': custom_part_scores, 'file_name': current_image.state} + modified_explanation = generate_xclip_explanations(modified_result_dict, VISIBILITY_DICT[current_image.state], part_mask) + + xclip_color = "green" if xclip_label.strip() == gt_class.state.strip() else "red" + xclip_pred_markdown = f""" + ### <span style='color:{xclip_color}'>XCLIP: {xclip_label} {xclip_pred_score:.4f}</span> + """ + custom_color = "green" if custom_label.strip() == gt_class.state.strip() else "red" + custom_pred_markdown = f""" + ### <span style='color:{custom_color}'>XCLIP: {custom_label} {custom_pred_score:.4f}</span> + """ + textbox = gr.Textbox.update(visible=False) + # return textbox, xclip_pred_markdown, xclip_explanation, custom_pred_markdown, modified_explanation + + modified_exp = gr.HTML().update(value=modified_explanation, visible=True) + return textbox, xclip_pred_markdown, xclip_explanation, custom_pred_markdown, modified_exp + + +custom_css = """ + html, body { + margin: 0; + padding: 0; + } + + #container { + position: relative; + width: 400px; + height: 400px; + border: 1px solid #000; + margin: 0 auto; /* This will center the container horizontally */ + } + + #canvas { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + object-fit: cover; + } + +""" + +# Define the Gradio interface +with gr.Blocks(theme=gr.themes.Soft(), css=custom_css, title="PEEB") as demo: + current_image = gr.State("") + current_predicted_class = gr.State("") + gt_class = gr.State("") + + with gr.Column(): + title_text = gr.Markdown("# PEEB - demo") + gr.Markdown( + "- In this demo, you can edit the descriptions of a class and see how to model react to it." + ) + + # display the gallery of images + with gr.Column(): + + gr.Markdown("## Select an image to start!") + image_gallery = gr.Gallery(value=IMAGE_GALLERY, label=None, preview=False, allow_preview=False, columns=10, height=250) + gr.Markdown("### Custom descritions: \n The first row should be **class name: {some name};**, where you can name your descriptions. \n For the remianing descriptions, please use **;** to separate the descriptions for each part, and use the format **{part name}: {descriptions}**. \n Note that you can delete a part completely, in such cases, all descriptions will remove the corresponding part.") + + with gr.Row(): + with gr.Column(): + image_label = gr.Markdown("### Class Name") + org_image = gr.HTML() + + with gr.Column(): + with gr.Row(): + # xclip_predict_button = gr.Button(label="Predict", value="Predict") + xclip_predict_button = gr.Button(value="Predict") + xclip_pred_label = gr.Markdown("### XCLIP:") + xclip_explanation = gr.HTML() + + with gr.Column(): + # xclip_edit_button = gr.Button(label="Edit", value="Reset Descriptions") + xclip_edit_button = gr.Button(value="Reset Descriptions") + custom_pred_label = gr.Markdown( + "### Custom Descritpions:" + ) + xclip_textbox = gr.Textbox(lines=12, placeholder="Edit the descriptions here", visible=False) + # ai_explanation = gr.Image(type="numpy", visible=True, show_label=False, height=500) + custom_explanation = gr.HTML() + + gr.HTML("<br>") + + image_gallery.select(update_selected_image, inputs=None, outputs=[image_label, org_image, xclip_pred_label, xclip_explanation, current_image, xclip_textbox]) + xclip_edit_button.click(on_edit_button_click_xclip, inputs=[], outputs=[xclip_textbox, custom_explanation]) + xclip_predict_button.click(on_predict_button_click_xclip, inputs=[xclip_textbox], outputs=[xclip_textbox, xclip_pred_label, xclip_explanation, custom_pred_label, custom_explanation]) + +demo.launch(server_port=5000, share=True) \ No newline at end of file diff --git a/data/image_embeddings/American_Goldfinch_0123_32505.jpg.pt b/data/image_embeddings/American_Goldfinch_0123_32505.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..0370194620f211c48d5fbe9651c11693f46eff1f --- /dev/null +++ b/data/image_embeddings/American_Goldfinch_0123_32505.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4405b6dfc87741cf87aa4887f77308aee46209877a7dcf29caacb4dae12459d5 +size 1770910 diff --git a/data/image_embeddings/Black_Tern_0101_144331.jpg.pt b/data/image_embeddings/Black_Tern_0101_144331.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..b74cdd41a099a0922f54f815a3df85429b18590a --- /dev/null +++ b/data/image_embeddings/Black_Tern_0101_144331.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:218995c5e9d3256313ead069ff11c89a52ce616221880070d722f27c4227ffe2 +size 1770875 diff --git a/data/image_embeddings/Brandt_Cormorant_0040_23144.jpg.pt b/data/image_embeddings/Brandt_Cormorant_0040_23144.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..f62be2c53bf0392a96e3d8c9e878c87836c8ce02 --- /dev/null +++ b/data/image_embeddings/Brandt_Cormorant_0040_23144.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c493ed75f6dad68a1336ae3142deea98acb2eec30fbb5345aa1c545660eef4bb +size 1770900 diff --git a/data/image_embeddings/Brown_Thrasher_0014_155421.jpg.pt b/data/image_embeddings/Brown_Thrasher_0014_155421.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..c0d5847a7d7da7e13c6b507f40ecbf9dd1f6ebe0 --- /dev/null +++ b/data/image_embeddings/Brown_Thrasher_0014_155421.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c051c80027beeebfabab679b596f5a2b7536c016c2c966a5736b03a980b96a5 +size 1770895 diff --git a/data/image_embeddings/Carolina_Wren_0060_186296.jpg.pt b/data/image_embeddings/Carolina_Wren_0060_186296.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..6941946d9c28708cecf545f684f9e20b60044f8f --- /dev/null +++ b/data/image_embeddings/Carolina_Wren_0060_186296.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0c34e05f759b6244ad50ca5529002e26a9370c9db07d22df91e476f827b7724 +size 1770890 diff --git a/data/image_embeddings/Cedar_Waxwing_0075_179114.jpg.pt b/data/image_embeddings/Cedar_Waxwing_0075_179114.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..6fcb219e36be2ce7b55895532bd9ddc697a4db56 --- /dev/null +++ b/data/image_embeddings/Cedar_Waxwing_0075_179114.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d91e1fd22664d4dbad771f214ae943b60c26a0e52aeefc156eddbddde8cb0fb +size 1770890 diff --git a/data/image_embeddings/Clark_Nutcracker_0126_85134.jpg.pt b/data/image_embeddings/Clark_Nutcracker_0126_85134.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..476941059f8a60ebb09a1bf2fbfb26f9985822bd --- /dev/null +++ b/data/image_embeddings/Clark_Nutcracker_0126_85134.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99e85d16d9b4b0d62e92926a7cefce6fbd5298daa1632df02d1d2bc1c812ccf4 +size 1770900 diff --git a/data/image_embeddings/Gray_Catbird_0071_20974.jpg.pt b/data/image_embeddings/Gray_Catbird_0071_20974.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..3d414ac95f6a2f26f392579e65905a3c4052ea31 --- /dev/null +++ b/data/image_embeddings/Gray_Catbird_0071_20974.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02ea920306d2a41b2f0a46c3205691e1373d3a443714ba31c67bd46fa0baae8 +size 1770880 diff --git a/data/image_embeddings/Heermann_Gull_0097_45783.jpg.pt b/data/image_embeddings/Heermann_Gull_0097_45783.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..13c2210fe97c74a3ae0f2904c9f76591235316a9 --- /dev/null +++ b/data/image_embeddings/Heermann_Gull_0097_45783.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51ecf397a13ffc0ef481b029c7c54498dd9c0dda7db709f9335dba01faebdc65 +size 1770885 diff --git a/data/image_embeddings/House_Wren_0137_187273.jpg.pt b/data/image_embeddings/House_Wren_0137_187273.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..0a4ac0128a305dab2733e6cebde619ff9e015092 --- /dev/null +++ b/data/image_embeddings/House_Wren_0137_187273.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fab5144fff8e0ff975f9064337dc032d39918bf777d149e02e4952a6ed10d8b +size 1770875 diff --git a/data/image_embeddings/Ivory_Gull_0004_49019.jpg.pt b/data/image_embeddings/Ivory_Gull_0004_49019.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..a0eb410f4a57bfde38deceb65dfaa331701d2853 --- /dev/null +++ b/data/image_embeddings/Ivory_Gull_0004_49019.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129b38324da3899caa7182fa0a251c81eba2a8ba8e71995139e269d479456e75 +size 1770870 diff --git a/data/image_embeddings/Northern_Waterthrush_0038_177027.jpg.pt b/data/image_embeddings/Northern_Waterthrush_0038_177027.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..4a319a217668e2627d70c410a307706eb00ffb0e --- /dev/null +++ b/data/image_embeddings/Northern_Waterthrush_0038_177027.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd735f0756b810b8c74628ca2285311411cb6fb14639277728a60260e64cda9 +size 1770925 diff --git a/data/image_embeddings/Pine_Warbler_0113_172456.jpg.pt b/data/image_embeddings/Pine_Warbler_0113_172456.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..6f390f21b676f699af7513c1ae43c22fa6fa6b6d --- /dev/null +++ b/data/image_embeddings/Pine_Warbler_0113_172456.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c48503ff01eb8af79b86315ab9b6abe7d215c32ab37eb5acc54dd99b9877574 +size 1770885 diff --git a/data/image_embeddings/Red_Headed_Woodpecker_0032_182815.jpg.pt b/data/image_embeddings/Red_Headed_Woodpecker_0032_182815.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..03fd61adbb03860a5d518911ee4916371150f3a5 --- /dev/null +++ b/data/image_embeddings/Red_Headed_Woodpecker_0032_182815.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ec8a9edf3bc0e5e21a989596469efec44815f9ac30a0cdbde4f5d1f1952619 +size 1770930 diff --git a/data/image_embeddings/Rufous_Hummingbird_0076_59563.jpg.pt b/data/image_embeddings/Rufous_Hummingbird_0076_59563.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..877f79d6c4c21cb9499aac75bb011c2dd0d62c1a --- /dev/null +++ b/data/image_embeddings/Rufous_Hummingbird_0076_59563.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d02487c6d3b10c2bc193547a3ad863b6b02710071e93b2a99e9be17931c9e785 +size 1770910 diff --git a/data/image_embeddings/Sage_Thrasher_0062_796462.jpg.pt b/data/image_embeddings/Sage_Thrasher_0062_796462.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..f902be91aa07a90cb4ced04c8f9d4d8ed61eb056 --- /dev/null +++ b/data/image_embeddings/Sage_Thrasher_0062_796462.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294ae723107b6cc26f467ef19018f7d0c27befe0ddbf46ea1432a4440cf538c7 +size 1770890 diff --git a/data/image_embeddings/Vesper_Sparrow_0030_125663.jpg.pt b/data/image_embeddings/Vesper_Sparrow_0030_125663.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..f75f7fdd9cb5902057622c707674fdad47ecce57 --- /dev/null +++ b/data/image_embeddings/Vesper_Sparrow_0030_125663.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c3b58049302546a0f19e1a0da37d85ee3841d1f34674a6263b4972229539806 +size 1770895 diff --git a/data/image_embeddings/Western_Grebe_0064_36613.jpg.pt b/data/image_embeddings/Western_Grebe_0064_36613.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..ade4619c411d15d342235d899c1e84f26d023205 --- /dev/null +++ b/data/image_embeddings/Western_Grebe_0064_36613.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a4a4c3d9e8c61c729eef180dca7c06dc19748be507798548bb629fb8283645 +size 1770885 diff --git a/data/image_embeddings/White_Eyed_Vireo_0046_158849.jpg.pt b/data/image_embeddings/White_Eyed_Vireo_0046_158849.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..e818123abf2733cdf3ecc687707988998b983f1d --- /dev/null +++ b/data/image_embeddings/White_Eyed_Vireo_0046_158849.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31f5601dd90778785d90da4b079faa4e8082da814b0edb75c46c27f7a59bb0c3 +size 1770905 diff --git a/data/image_embeddings/Winter_Wren_0048_189683.jpg.pt b/data/image_embeddings/Winter_Wren_0048_189683.jpg.pt new file mode 100644 index 0000000000000000000000000000000000000000..af12a6640b74b4560b7ddf6557f3b8cd06073257 --- /dev/null +++ b/data/image_embeddings/Winter_Wren_0048_189683.jpg.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa44fb0827d907160d964837908b8d313bce096d02062be2ea7192e6c2903543 +size 1770880 diff --git a/data/images/boxes/American_Goldfinch_0123_32505_all.jpg b/data/images/boxes/American_Goldfinch_0123_32505_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18bb64a4fa5ad981df920d8f5c62da9e79e9d188 Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_all.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_back.jpg b/data/images/boxes/American_Goldfinch_0123_32505_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e69325308710bf3dbda07778adf22689bd645b57 Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_back.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_beak.jpg b/data/images/boxes/American_Goldfinch_0123_32505_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfe724c6c500bd37a4a9fff619852909054cf9f8 Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_beak.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_belly.jpg b/data/images/boxes/American_Goldfinch_0123_32505_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c6703a3e1be9517aa6a1420ae8bec8a3f98c1e5 Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_belly.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_breast.jpg b/data/images/boxes/American_Goldfinch_0123_32505_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d22f24e5735aed1241c93d6ff343f35a15e662f Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_breast.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_crown.jpg b/data/images/boxes/American_Goldfinch_0123_32505_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1459f6bcf5660890197e28fa6b57f925b99d805f Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_crown.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_eyes.jpg b/data/images/boxes/American_Goldfinch_0123_32505_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f73690a328a76f598d53ce64430b928f64179924 Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_eyes.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_forehead.jpg b/data/images/boxes/American_Goldfinch_0123_32505_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc7139a8e8951b5dbe7e5e0f1893101251bf7e86 Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_forehead.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_legs.jpg b/data/images/boxes/American_Goldfinch_0123_32505_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..27d0bc76e371e07788639f72c23673fb266700df Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_legs.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_nape.jpg b/data/images/boxes/American_Goldfinch_0123_32505_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2890f319761551bf94098c3c00c466f3f03f97b8 Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_nape.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_tail.jpg b/data/images/boxes/American_Goldfinch_0123_32505_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8df489efe10d42fbb83346ebfa7d22a3fa5de496 Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_tail.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_throat.jpg b/data/images/boxes/American_Goldfinch_0123_32505_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..37e1891795ad075eeceb45c0eb385581e27f1747 Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_throat.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_visible.jpg b/data/images/boxes/American_Goldfinch_0123_32505_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18bb64a4fa5ad981df920d8f5c62da9e79e9d188 Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_visible.jpg differ diff --git a/data/images/boxes/American_Goldfinch_0123_32505_wings.jpg b/data/images/boxes/American_Goldfinch_0123_32505_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ead0a7e02ccf31d54fb4ee4ba527228f808bee0 Binary files /dev/null and b/data/images/boxes/American_Goldfinch_0123_32505_wings.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_all.jpg b/data/images/boxes/Black_Tern_0101_144331_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e95d6baccc8ff728d303b9ad7d8792de373bef45 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_all.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_back.jpg b/data/images/boxes/Black_Tern_0101_144331_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6e9a04cc83bb3461b0bcb57b96829361ec74517 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_back.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_beak.jpg b/data/images/boxes/Black_Tern_0101_144331_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4706b909a3edf236d4b09c8653a1d155803cf1a6 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_beak.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_belly.jpg b/data/images/boxes/Black_Tern_0101_144331_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c53cbf7e7200ebf17cfed59c8402875f61ef2672 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_belly.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_breast.jpg b/data/images/boxes/Black_Tern_0101_144331_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a0e0dcb6c08492fa58222ba296e3e4aee6568235 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_breast.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_crown.jpg b/data/images/boxes/Black_Tern_0101_144331_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e48faa090c5e3fc292f7adf76e105553e3d82268 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_crown.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_eyes.jpg b/data/images/boxes/Black_Tern_0101_144331_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f0e3a4944f3bd37eeadf51a053c3fc6052888f4 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_eyes.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_forehead.jpg b/data/images/boxes/Black_Tern_0101_144331_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ad71704685cdf1953090862fd9c7e28fc4972f0 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_forehead.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_legs.jpg b/data/images/boxes/Black_Tern_0101_144331_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e978387e981114964e7b83058c22627a07600fc4 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_legs.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_nape.jpg b/data/images/boxes/Black_Tern_0101_144331_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e75add8d363fa47531a22c1ea28b7c6d4de9bb6 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_nape.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_tail.jpg b/data/images/boxes/Black_Tern_0101_144331_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7dee8186488ff0ae8e9701ec83e1851fc691bfad Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_tail.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_throat.jpg b/data/images/boxes/Black_Tern_0101_144331_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67f6a9b691dd0783e1fea6e375d4f8f3acbacb33 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_throat.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_visible.jpg b/data/images/boxes/Black_Tern_0101_144331_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e95d6baccc8ff728d303b9ad7d8792de373bef45 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_visible.jpg differ diff --git a/data/images/boxes/Black_Tern_0101_144331_wings.jpg b/data/images/boxes/Black_Tern_0101_144331_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42ad47b5fc85fe6af940c6d0f209a41c898c3071 Binary files /dev/null and b/data/images/boxes/Black_Tern_0101_144331_wings.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_all.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..466e10a5b7bbcba01d309ec2e4661953e5506a7e Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_all.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_back.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06f84b71dda930dada389453783cd88886b01fb1 Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_back.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_beak.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ff28ac1bc205e51bc3cf26f6fc83d551e152312 Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_beak.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_belly.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c974930a52d254a2545f195f871933252fc9d587 Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_belly.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_breast.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e9e47922e282d37ab376e4791592cfd2df15fd7 Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_breast.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_crown.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..492cd3a7e2f8456fda54d3be9926c574fcc24370 Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_crown.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_eyes.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a09eef21b0503022a50a038ffae2bc1450d3e25a Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_eyes.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_forehead.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bbd4e780efdbb1b03ecbe98f8fc63dd961a11e70 Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_forehead.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_legs.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7db0f880aca63c8c0c7cb46522b098e616bae19 Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_legs.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_nape.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46a324b429b5a51ff01953cb4f9859f0e3e8a876 Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_nape.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_tail.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7f6787efc218ddc2b76b93cd2b8aa77f2f79b11 Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_tail.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_throat.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec7781b74c12e5179a5e98cd6d7dfd1bff4f1914 Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_throat.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_visible.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..982fb225ff1c8678fcd2ccdedbd12e6fb2d58f50 Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_visible.jpg differ diff --git a/data/images/boxes/Brandt_Cormorant_0040_23144_wings.jpg b/data/images/boxes/Brandt_Cormorant_0040_23144_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33b52d527b5d61a89d4c2371f2816a05bad7fbc4 Binary files /dev/null and b/data/images/boxes/Brandt_Cormorant_0040_23144_wings.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_all.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..daf103fd2ba1e32286da313f4bdc7e194f586dac Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_all.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_back.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8bae9feb644008b65cc89e3b342ccb020e053802 Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_back.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_beak.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3aff858e30999e6cd4877b19547e204857032d49 Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_beak.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_belly.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..336a10d7d6e61bb9b029af267da6390490163f0d Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_belly.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_breast.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3d3e4591b090a7d0eafff0702ae1bc05df1e7eb Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_breast.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_crown.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d023c9f96fcb76d48ca7e61d1b47276d16ac90d Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_crown.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_eyes.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b45aac8a816cdc2e795957f174aa7fad3296dba1 Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_eyes.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_forehead.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4efb328058478398cfd97ab1d68b599d29573d6 Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_forehead.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_legs.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9f2a8dd1b652f94714b23f7ac45a15b051785fb Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_legs.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_nape.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6956ac320f69f8bfb2941452e217e45b14313208 Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_nape.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_tail.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7df702dd54b6524b8b99f591ed93e87b2f0c2e64 Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_tail.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_throat.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28b60cec90cfcb21dd5a5b80efd5857c192b47cc Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_throat.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_visible.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67e4dddc99024a3c810367f9142ceff2f6ad0622 Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_visible.jpg differ diff --git a/data/images/boxes/Brown_Thrasher_0014_155421_wings.jpg b/data/images/boxes/Brown_Thrasher_0014_155421_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be439360778eacdc2496d16f01e47da9ac4c4363 Binary files /dev/null and b/data/images/boxes/Brown_Thrasher_0014_155421_wings.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_all.jpg b/data/images/boxes/Carolina_Wren_0060_186296_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9ab5d0c1a57f18a6dfa3b733b18edcbce2a7a27 Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_all.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_back.jpg b/data/images/boxes/Carolina_Wren_0060_186296_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ad805157ecc4437d7aea9a4be1aee681a934fa9 Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_back.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_beak.jpg b/data/images/boxes/Carolina_Wren_0060_186296_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c74b42b054bc0a0c2ef50d3a29bc5b62a0b8fcd Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_beak.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_belly.jpg b/data/images/boxes/Carolina_Wren_0060_186296_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..832e870ab3980405d6b888149d8bad92def0ec6b Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_belly.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_breast.jpg b/data/images/boxes/Carolina_Wren_0060_186296_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4453a852da8dba9f2ef3ac37ad869dbf1e32ab9b Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_breast.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_crown.jpg b/data/images/boxes/Carolina_Wren_0060_186296_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f45679bc9e6f1918c1a7519a8599543184fa6084 Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_crown.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_eyes.jpg b/data/images/boxes/Carolina_Wren_0060_186296_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..93540bd208f7be0068c573ddac98c13712d45d22 Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_eyes.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_forehead.jpg b/data/images/boxes/Carolina_Wren_0060_186296_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4131e8060b6e68e024b47056d9345f91bb0635b Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_forehead.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_legs.jpg b/data/images/boxes/Carolina_Wren_0060_186296_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa3ecfb7c62c13828ca2f2b22f96b0d1f96fbfe3 Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_legs.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_nape.jpg b/data/images/boxes/Carolina_Wren_0060_186296_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6e0a10c5fd3fe99ce76e97d1ac6731100921fc3a Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_nape.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_tail.jpg b/data/images/boxes/Carolina_Wren_0060_186296_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0eb9e3a1ad5866cc7a9abb655c46e532703e487 Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_tail.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_throat.jpg b/data/images/boxes/Carolina_Wren_0060_186296_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee752885a6b396351368bd0f44382fd6da62a5e1 Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_throat.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_visible.jpg b/data/images/boxes/Carolina_Wren_0060_186296_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9ab5d0c1a57f18a6dfa3b733b18edcbce2a7a27 Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_visible.jpg differ diff --git a/data/images/boxes/Carolina_Wren_0060_186296_wings.jpg b/data/images/boxes/Carolina_Wren_0060_186296_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..60dd217c872cdafd789b3d0dca0fac4adf5f855d Binary files /dev/null and b/data/images/boxes/Carolina_Wren_0060_186296_wings.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_all.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2da9be0b3c2812a9c64e8ac5829c0100d1ce0f4 Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_all.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_back.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b1cb82a095f35da1b867ce5a796a578151e57b7b Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_back.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_beak.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a7423765fc8aa99355fc4f6f16bc87940e85328 Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_beak.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_belly.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..619008e14a4d71076a9ac9d52a8580422ad9de96 Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_belly.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_breast.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dfea1191713d754cc27ef3474869da345e1fb1a5 Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_breast.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_crown.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcc3cdaf427e015fba8eee16cec33859c3f2a094 Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_crown.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_eyes.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc5fe417720018346ac98e0704dc7ecb1b7c58ca Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_eyes.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_forehead.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c633df2bb894d264e04095bf15fdd3d9df184554 Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_forehead.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_legs.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5791bd30cb8266ba9a4794682f750798ca660e90 Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_legs.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_nape.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8566fbba7729b9442b5c05b0d6f5398d8e42cc20 Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_nape.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_tail.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3661826ef8a2e3c03e88577e136597301da88da9 Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_tail.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_throat.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9e39b321e77eda45428e0d4d609ba2813cec0f1 Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_throat.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_visible.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25566a8d6554552b400fab0f159b5c8bcfe4c209 Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_visible.jpg differ diff --git a/data/images/boxes/Cedar_Waxwing_0075_179114_wings.jpg b/data/images/boxes/Cedar_Waxwing_0075_179114_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..340e2ee8a4549b9749f7f60fead3107ef27ebba2 Binary files /dev/null and b/data/images/boxes/Cedar_Waxwing_0075_179114_wings.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_all.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b758851357749f78bf0cb93c6bfa8055e60aef76 Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_all.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_back.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3841d19d5d15f26f81c1d8cd58148f11cfcc0893 Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_back.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_beak.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3718004164794189320238eaabbf51a001a260e0 Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_beak.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_belly.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79eb84f9c0117559fd89c375541c8a7ba15d6976 Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_belly.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_breast.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be741ac67422c87768438863154fa5d1a47acc83 Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_breast.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_crown.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc285174d1416e7422eeab8439e968d59ba68ae8 Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_crown.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_eyes.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c9176562602c2858c48ef84e35000aa5ec2c7f0a Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_eyes.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_forehead.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2afbd4389dc8e9fe87695f413cc09f1fd4a967e Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_forehead.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_legs.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9add17a3fc41eec90d390948bd7ef8ab7ee6726 Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_legs.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_nape.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14074b55217dd1bd55fd45f9883fb1b8fa954618 Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_nape.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_tail.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ad0ed2be051f0f3b042a1f231e1748cf72372ce Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_tail.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_throat.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a8e31fe57dbab36a87aa9100e865a5ab17743b8 Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_throat.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_visible.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b758851357749f78bf0cb93c6bfa8055e60aef76 Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_visible.jpg differ diff --git a/data/images/boxes/Clark_Nutcracker_0126_85134_wings.jpg b/data/images/boxes/Clark_Nutcracker_0126_85134_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1798532512bc2a86330f28907f0a8ff37fce0e49 Binary files /dev/null and b/data/images/boxes/Clark_Nutcracker_0126_85134_wings.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_all.jpg b/data/images/boxes/Gray_Catbird_0071_20974_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74554647df8a97b80f8c18e63f3348348a81f4f2 Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_all.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_back.jpg b/data/images/boxes/Gray_Catbird_0071_20974_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a05afa5ba96e6b8114634b558ac813da0033240a Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_back.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_beak.jpg b/data/images/boxes/Gray_Catbird_0071_20974_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2907d355a8e497572e60c2ab00f45c63d6ee6c03 Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_beak.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_belly.jpg b/data/images/boxes/Gray_Catbird_0071_20974_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94107af0f907221b2bd39dfe9f5f7eadf3ad1a3e Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_belly.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_breast.jpg b/data/images/boxes/Gray_Catbird_0071_20974_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be11c406d46585db123dda18c60cbf8fb586f4b3 Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_breast.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_crown.jpg b/data/images/boxes/Gray_Catbird_0071_20974_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2368f3121292b9d460c04eb1c84b27fa750262d Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_crown.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_eyes.jpg b/data/images/boxes/Gray_Catbird_0071_20974_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eeb49622d042ab5b2890ac5a06778c0b208ae17b Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_eyes.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_forehead.jpg b/data/images/boxes/Gray_Catbird_0071_20974_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e36c455641da103b7ca7b5b8b09a74ab7492a13 Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_forehead.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_legs.jpg b/data/images/boxes/Gray_Catbird_0071_20974_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8786f9b7cb94a039f45afd80b409824ace9b024f Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_legs.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_nape.jpg b/data/images/boxes/Gray_Catbird_0071_20974_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9a215ee0bbdcf3e92492f84afc50aec84045d51e Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_nape.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_tail.jpg b/data/images/boxes/Gray_Catbird_0071_20974_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2c1aaa0839df6722a056f94dabb7dab41af4f2c Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_tail.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_throat.jpg b/data/images/boxes/Gray_Catbird_0071_20974_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bfabebc7f6b3a8e18f8d8395f226b75c90bfc8a2 Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_throat.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_visible.jpg b/data/images/boxes/Gray_Catbird_0071_20974_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74554647df8a97b80f8c18e63f3348348a81f4f2 Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_visible.jpg differ diff --git a/data/images/boxes/Gray_Catbird_0071_20974_wings.jpg b/data/images/boxes/Gray_Catbird_0071_20974_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31231fe7401e5bc59ec89fdbea5f007ed6120731 Binary files /dev/null and b/data/images/boxes/Gray_Catbird_0071_20974_wings.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_all.jpg b/data/images/boxes/Heermann_Gull_0097_45783_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d607be40130d6fff72c24915739f73cba669501 Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_all.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_back.jpg b/data/images/boxes/Heermann_Gull_0097_45783_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cbc9bd0c55f2b4885b759f772633bb45ff734bf8 Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_back.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_beak.jpg b/data/images/boxes/Heermann_Gull_0097_45783_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bca7313d53607d8e77a3aff05dd474f60e650ffa Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_beak.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_belly.jpg b/data/images/boxes/Heermann_Gull_0097_45783_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d6ec068a5544f83cb031a89b87d20d94bd63765 Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_belly.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_breast.jpg b/data/images/boxes/Heermann_Gull_0097_45783_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9d058418d398acf4f2010f0f75a724a31c3763e7 Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_breast.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_crown.jpg b/data/images/boxes/Heermann_Gull_0097_45783_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cebcdf200bbcd2bc067f789102a32d7e8719465d Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_crown.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_eyes.jpg b/data/images/boxes/Heermann_Gull_0097_45783_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ced24d65d5638b73015d34195711100f4979ac30 Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_eyes.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_forehead.jpg b/data/images/boxes/Heermann_Gull_0097_45783_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4399dd973452e36cb0682c0b4e5bd6a5a31392d8 Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_forehead.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_legs.jpg b/data/images/boxes/Heermann_Gull_0097_45783_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83d7cf5520471a660248d63848627daca1fedc95 Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_legs.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_nape.jpg b/data/images/boxes/Heermann_Gull_0097_45783_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ee4601c3422f7d4ea2c3347e57d4ccd139e0208 Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_nape.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_tail.jpg b/data/images/boxes/Heermann_Gull_0097_45783_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa731f9505b20225205ce17f0462d244ff4802da Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_tail.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_throat.jpg b/data/images/boxes/Heermann_Gull_0097_45783_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a05b3a73eb83e63b15cdda527e52bd49ebb27fc9 Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_throat.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_visible.jpg b/data/images/boxes/Heermann_Gull_0097_45783_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d607be40130d6fff72c24915739f73cba669501 Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_visible.jpg differ diff --git a/data/images/boxes/Heermann_Gull_0097_45783_wings.jpg b/data/images/boxes/Heermann_Gull_0097_45783_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b5e1c8046409aea453d5e5a4349c5868ec5d823 Binary files /dev/null and b/data/images/boxes/Heermann_Gull_0097_45783_wings.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_all.jpg b/data/images/boxes/House_Wren_0137_187273_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87d686e3506171f50fcd2b72cbaea22ab07d00ab Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_all.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_back.jpg b/data/images/boxes/House_Wren_0137_187273_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02e1d7601bf453dff9a9ed16c609c93cb1c203a7 Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_back.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_beak.jpg b/data/images/boxes/House_Wren_0137_187273_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc4f19a3ad67e0ee537de34924aa8995cb0fdab2 Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_beak.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_belly.jpg b/data/images/boxes/House_Wren_0137_187273_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9672e5ebcd131fd77f2fa4efd67309e4eb0fffd7 Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_belly.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_breast.jpg b/data/images/boxes/House_Wren_0137_187273_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..15121d7596c728cab90fce59b7c0880294a2dc2e Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_breast.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_crown.jpg b/data/images/boxes/House_Wren_0137_187273_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ddbd2bcef18f75ce3d6aa7aae79d51f0aa032779 Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_crown.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_eyes.jpg b/data/images/boxes/House_Wren_0137_187273_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94cb83cc220c264cf0292eaabdb6e578ad44d928 Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_eyes.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_forehead.jpg b/data/images/boxes/House_Wren_0137_187273_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2fa055f13da1205f90299a928a33f08d52745ba8 Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_forehead.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_legs.jpg b/data/images/boxes/House_Wren_0137_187273_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8458e8910ba2f05d616322df40cafa1fd23824b8 Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_legs.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_nape.jpg b/data/images/boxes/House_Wren_0137_187273_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0a193f5f47b6f0aaa647e8c13c741075c96ceec2 Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_nape.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_tail.jpg b/data/images/boxes/House_Wren_0137_187273_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b3dac1466e5aeeec6bab86d921f3d750532ec400 Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_tail.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_throat.jpg b/data/images/boxes/House_Wren_0137_187273_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ac36d93a088de431c1a0cc000e2d67cfeb5e009 Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_throat.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_visible.jpg b/data/images/boxes/House_Wren_0137_187273_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..87d686e3506171f50fcd2b72cbaea22ab07d00ab Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_visible.jpg differ diff --git a/data/images/boxes/House_Wren_0137_187273_wings.jpg b/data/images/boxes/House_Wren_0137_187273_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..479c098c99301515f7cd2c719b2bea55cbb85f98 Binary files /dev/null and b/data/images/boxes/House_Wren_0137_187273_wings.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_all.jpg b/data/images/boxes/Ivory_Gull_0004_49019_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ecbdd400d22dbec7bdf522d8bc2031fbcde5714 Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_all.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_back.jpg b/data/images/boxes/Ivory_Gull_0004_49019_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a2c48653a0359cc05701bbf521b1316a0d89c8e Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_back.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_beak.jpg b/data/images/boxes/Ivory_Gull_0004_49019_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f283e5f23137a0c1859ec051326d92e3cfb00cd0 Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_beak.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_belly.jpg b/data/images/boxes/Ivory_Gull_0004_49019_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5c8f1764609366e44f5d56f3d554f1c6570a644e Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_belly.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_breast.jpg b/data/images/boxes/Ivory_Gull_0004_49019_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8c806dc32607411287c8cfb249f43ec5e928b26d Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_breast.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_crown.jpg b/data/images/boxes/Ivory_Gull_0004_49019_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc60de951ead7d6783549916b87b3ca41f72db2a Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_crown.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_eyes.jpg b/data/images/boxes/Ivory_Gull_0004_49019_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..daf58dbe7c6ee2118a9afa9253b3d6994e02ffe1 Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_eyes.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_forehead.jpg b/data/images/boxes/Ivory_Gull_0004_49019_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bc789e5925d9656b257d0981aa3acd2438cfe122 Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_forehead.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_legs.jpg b/data/images/boxes/Ivory_Gull_0004_49019_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2bdc825570c158652cb425fc6e23f8c176b08b30 Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_legs.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_nape.jpg b/data/images/boxes/Ivory_Gull_0004_49019_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..becc570567bbf266363c23548edc9d40f92f4596 Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_nape.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_tail.jpg b/data/images/boxes/Ivory_Gull_0004_49019_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..61eb4020ac8efdae6333eb9c0b7e83578329d168 Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_tail.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_throat.jpg b/data/images/boxes/Ivory_Gull_0004_49019_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74cbc0421ce8fbee949c8097d2df7235decb6516 Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_throat.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_visible.jpg b/data/images/boxes/Ivory_Gull_0004_49019_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b824a10f99f12e20a05fe8d76c8eba2a9c7ed22 Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_visible.jpg differ diff --git a/data/images/boxes/Ivory_Gull_0004_49019_wings.jpg b/data/images/boxes/Ivory_Gull_0004_49019_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..423d920d0f8503028a4b4e3eef0157b0ac04945b Binary files /dev/null and b/data/images/boxes/Ivory_Gull_0004_49019_wings.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_all.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6d669a0d83779e7c7c62f2895427a4a88444108 Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_all.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_back.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7911157226c6d576a954442f6c0152d6ca06b36 Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_back.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_beak.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..994537d09201a7fb9a7ae80ef59625711fe0224b Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_beak.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_belly.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..060810854ad5ddb2dccd9bf61010e6193f312628 Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_belly.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_breast.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e5353214ab6f2460fdc5eb6b358272ea1f33628b Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_breast.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_crown.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b89d01d5c1eecb5d14f59efdf1d2808daf406b1f Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_crown.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_eyes.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4913e84e54cb7e017bba83bfacf9fae5001d8065 Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_eyes.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_forehead.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..83fda36e75854d278a9708265a44bc88a6f537cd Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_forehead.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_legs.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c69027c4383a06d9c11f0b448b72aa141937fd3a Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_legs.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_nape.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ffaaee53cb9d3fdfefb6e76eba813b4eb1c3b27 Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_nape.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_tail.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d4ec317d5d949ecb9396b7159a93931dfa7b56a Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_tail.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_throat.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1383f80b1556381e6134263841d5af24b4d8760c Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_throat.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_visible.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6d669a0d83779e7c7c62f2895427a4a88444108 Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_visible.jpg differ diff --git a/data/images/boxes/Northern_Waterthrush_0038_177027_wings.jpg b/data/images/boxes/Northern_Waterthrush_0038_177027_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4afae77caccff4bbcf813c8d35fbe425a8e9f36f Binary files /dev/null and b/data/images/boxes/Northern_Waterthrush_0038_177027_wings.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_all.jpg b/data/images/boxes/Pine_Warbler_0113_172456_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..774a667f48df213ba907c828bf3767c82bae6e8b Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_all.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_back.jpg b/data/images/boxes/Pine_Warbler_0113_172456_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e67769b83cf61bbc0fead027c7421c5e3bf881b8 Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_back.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_beak.jpg b/data/images/boxes/Pine_Warbler_0113_172456_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0157c4d5778f09948aa4113677c1acdc3aab1d2 Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_beak.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_belly.jpg b/data/images/boxes/Pine_Warbler_0113_172456_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7678a3ccc524d98db4b990ca0ac059a30b3814f3 Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_belly.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_breast.jpg b/data/images/boxes/Pine_Warbler_0113_172456_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1db36ea9b67c38cd870c32e26ff04a5800b8ebe9 Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_breast.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_crown.jpg b/data/images/boxes/Pine_Warbler_0113_172456_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..948575fcbc956d27cdfedb5cd7401e646dba84b4 Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_crown.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_eyes.jpg b/data/images/boxes/Pine_Warbler_0113_172456_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fd71e63892617b2ce60f647f2af56ca8eaa12c1 Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_eyes.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_forehead.jpg b/data/images/boxes/Pine_Warbler_0113_172456_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8bef7eca9c35ebea87de4129815e90ada50bd675 Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_forehead.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_legs.jpg b/data/images/boxes/Pine_Warbler_0113_172456_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c5717e5537f665294d39445151b31a3c919f5317 Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_legs.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_nape.jpg b/data/images/boxes/Pine_Warbler_0113_172456_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bd9e8d7b4ad733a4aab3924064ab6d92ba35ff9 Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_nape.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_tail.jpg b/data/images/boxes/Pine_Warbler_0113_172456_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..669b06b3b2292d587cbb810e146a206e09f5e7c9 Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_tail.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_throat.jpg b/data/images/boxes/Pine_Warbler_0113_172456_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b9572bfc90178c586d3480f17a1a545cedf3c98 Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_throat.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_visible.jpg b/data/images/boxes/Pine_Warbler_0113_172456_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..774a667f48df213ba907c828bf3767c82bae6e8b Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_visible.jpg differ diff --git a/data/images/boxes/Pine_Warbler_0113_172456_wings.jpg b/data/images/boxes/Pine_Warbler_0113_172456_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9a9d7b2cfb44be05531f0cefbf64c81bd55d5dd Binary files /dev/null and b/data/images/boxes/Pine_Warbler_0113_172456_wings.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_all.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c72ea716d1752fac73964e786ce6f89478af41c5 Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_all.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_back.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3aad1e89133880e21fd2e2b01a8e9e8dd5a3f6e3 Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_back.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_beak.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85d0ea4b2ae8e6f5268b35b4cf8eeab9b9f08de4 Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_beak.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_belly.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0665f7e644dd90fc2e5577c65e664f85b4e5e1f Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_belly.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_breast.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c079b8a010b1dd715f57b8aa34a46c0031834c4e Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_breast.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_crown.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9fbfea6c94f137145b999a3615ea962e754a85e Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_crown.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_eyes.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2272283f8b95de6380aa406956b2daf2860dbaf3 Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_eyes.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_forehead.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20a7948582c5fd60a7abdab551d4971bb8d28081 Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_forehead.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_legs.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0bc05a4c2c7c84c5ce01d8b4b2991b41d904c528 Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_legs.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_nape.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a9eb190ebba8e841b23c6078699b44ed139b07d6 Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_nape.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_tail.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0c2e7474b699966a5e169eacc4c5d8584970bc2a Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_tail.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_throat.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2a822ce377d4b1fad66a81177a7d6b5cd69e2505 Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_throat.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_visible.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c43d5d319a4401c9369c6639800121528e3097f8 Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_visible.jpg differ diff --git a/data/images/boxes/Red_Headed_Woodpecker_0032_182815_wings.jpg b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a08eed811094a8213d03045117e25479f773938 Binary files /dev/null and b/data/images/boxes/Red_Headed_Woodpecker_0032_182815_wings.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_all.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a00a8c2adc526074c6389bf472e6e73d6d957f8b Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_all.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_back.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45ceddd85682d268b61f614f1b0f7ea526adf141 Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_back.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_beak.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a8ac2808aae9974ddd79c8068631fae3363821b0 Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_beak.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_belly.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3c6fc4e961cf51692350cea66c1c50d60c61cd6b Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_belly.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_breast.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bdde0122db5748527181e88102c842eaee802a3 Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_breast.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_crown.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d52e8aadf04673cded64f792e8af56ce83001d3a Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_crown.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_eyes.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0307e5db0310f383bfc0761b8f027d21f5e505e Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_eyes.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_forehead.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f751ac29e6dec8bac4120f372ceca678ebfdfbfe Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_forehead.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_legs.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a666a9a899fcb674f448fbdedf926e98105a9740 Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_legs.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_nape.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9da9812da8cc8df380117a9e817d42ff04db2a32 Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_nape.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_tail.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d24146ebb00fe2df0c69c4ff435703e9af0de28 Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_tail.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_throat.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e4d1d7a4a5f44159bc2e9636b20914df8f91400 Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_throat.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_visible.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d4fedc187760a71c9c9bf31448ae0cef6cd5420f Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_visible.jpg differ diff --git a/data/images/boxes/Rufous_Hummingbird_0076_59563_wings.jpg b/data/images/boxes/Rufous_Hummingbird_0076_59563_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6591f6db60314f0970f8bdf589664216fcbc70f8 Binary files /dev/null and b/data/images/boxes/Rufous_Hummingbird_0076_59563_wings.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_all.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..336b6c876c8282769ebae175a824ff583ff4592b Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_all.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_back.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..74eb42a5b7171097da9a4950d7e4ab6ac7649f56 Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_back.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_beak.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..432efcd2edeca69e7195274c7a5d0979848c4d5b Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_beak.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_belly.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76a0d07d36655247f989545f8c2898b41a7425ba Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_belly.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_breast.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cc7a3857c974ed5a1f21c4a15bcdd6a2051729b3 Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_breast.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_crown.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d64f17a6552a69c879252d913d985976061c903a Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_crown.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_eyes.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40f95f8f8cec7ccaa8b675a1cfb22474a5f210ab Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_eyes.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_forehead.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2ffb2e880a3216c96e2e4905ee966352d87cce9b Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_forehead.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_legs.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea06152c46e192b5f216ef9b5c99e9ba329efbdb Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_legs.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_nape.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7b3f9a7731f8b61e3c34109c5fa9ffb55533244 Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_nape.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_tail.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14fce1adc9d1b71de8f61b0557ee8731e0051833 Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_tail.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_throat.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5e4260dac01524cd88a3a9b8ba1bee5ad53cc5c2 Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_throat.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_visible.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..336b6c876c8282769ebae175a824ff583ff4592b Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_visible.jpg differ diff --git a/data/images/boxes/Sage_Thrasher_0062_796462_wings.jpg b/data/images/boxes/Sage_Thrasher_0062_796462_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1125bb14dd35db7c21f70087921904a3bdeb18ac Binary files /dev/null and b/data/images/boxes/Sage_Thrasher_0062_796462_wings.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_all.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08c8499921ae60be71ce76801f21de3254b3d985 Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_all.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_back.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6def3df0be92500adf4efb26f46af6212a45b6cf Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_back.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_beak.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d6a45289335c6ab7acf85a3708e1211c03e7bf3 Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_beak.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_belly.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ca5b45c9c5b41d778bff20893915a3fdfe66a5e Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_belly.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_breast.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..930a1a0404d7712670e421558428dbcce0f3eded Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_breast.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_crown.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8346f843bcad1535529348f7fe94d0b7d89f9610 Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_crown.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_eyes.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c463100eb77bfbf15ee7dd2871c831003edf4fe Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_eyes.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_forehead.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7821400585588c921034962c795b798e87df3f9e Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_forehead.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_legs.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7c277cb167228b143c55e68ed4e5e65da3ef6f30 Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_legs.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_nape.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8796e62daf0ebea4dfa77603c8ca3bb8643d0591 Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_nape.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_tail.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8911b8e5d17ee261bdc8cbad7246cd9887e39c93 Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_tail.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_throat.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7dc1ed710c8a1b5581a7d7dc8504533e327351d8 Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_throat.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_visible.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08c8499921ae60be71ce76801f21de3254b3d985 Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_visible.jpg differ diff --git a/data/images/boxes/Vesper_Sparrow_0030_125663_wings.jpg b/data/images/boxes/Vesper_Sparrow_0030_125663_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..846ee1b61b129306ad3b650ce6afef71e3bbfff2 Binary files /dev/null and b/data/images/boxes/Vesper_Sparrow_0030_125663_wings.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_all.jpg b/data/images/boxes/Western_Grebe_0064_36613_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ef555da85f83f99b7c2bb625460303cb3e738784 Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_all.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_back.jpg b/data/images/boxes/Western_Grebe_0064_36613_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8fdd7e15472d3b7f2f6f298289c4055eae3a13f1 Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_back.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_beak.jpg b/data/images/boxes/Western_Grebe_0064_36613_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af8c2af4f95cc18c0345c539ac454b6cab146703 Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_beak.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_belly.jpg b/data/images/boxes/Western_Grebe_0064_36613_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ec7d91db620b68149e0c7a13d75b4f449edf353a Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_belly.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_breast.jpg b/data/images/boxes/Western_Grebe_0064_36613_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd8e31806a9fcf703fa5a9a97b9aa863b86db75e Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_breast.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_crown.jpg b/data/images/boxes/Western_Grebe_0064_36613_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fa75032b8745f520bdf123c776f76c38109f3f58 Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_crown.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_eyes.jpg b/data/images/boxes/Western_Grebe_0064_36613_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cceec874e8d530bdb20427d13ab17189ab023321 Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_eyes.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_forehead.jpg b/data/images/boxes/Western_Grebe_0064_36613_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d5183fedcdbe5ac5d3ca02c51fae1f64f4d6ab8 Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_forehead.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_legs.jpg b/data/images/boxes/Western_Grebe_0064_36613_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbcd143c7fc3344df588cf2f5bf48e87f7c8d9d3 Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_legs.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_nape.jpg b/data/images/boxes/Western_Grebe_0064_36613_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea076299ccbe3a3fbda22372c517d06f1d9ee245 Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_nape.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_tail.jpg b/data/images/boxes/Western_Grebe_0064_36613_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b08dbe2944e97fab96d1a3cf82c075ba1828c96c Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_tail.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_throat.jpg b/data/images/boxes/Western_Grebe_0064_36613_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1e97087c77c616984696654a8c2de9009864f6e Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_throat.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_visible.jpg b/data/images/boxes/Western_Grebe_0064_36613_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7a38cf0793b5aaf7cfb3a1450d69f3cb93ed101a Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_visible.jpg differ diff --git a/data/images/boxes/Western_Grebe_0064_36613_wings.jpg b/data/images/boxes/Western_Grebe_0064_36613_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a7fb8cfaa1ab11c5bc98cd980a2132ffc699e1ef Binary files /dev/null and b/data/images/boxes/Western_Grebe_0064_36613_wings.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_all.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72cc2bb4138e40eff560b1af87902e3d48294357 Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_all.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_back.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a4a117a5b36517d0057b7be423b4635e2e684fec Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_back.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_beak.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..30f1416f40b7251f79d70bc2fa1e8f479ab685ab Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_beak.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_belly.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..836fe1d8769620bbbc80329bbd33fd37abcb4322 Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_belly.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_breast.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d7bcd134e55a8855f5d413f14d6105941b24d0e7 Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_breast.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_crown.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0b4cf3a68d511fce8d8759d603167ac5f423f32b Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_crown.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_eyes.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3974034a11da1c0d77e0cab7f27518487af57b51 Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_eyes.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_forehead.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8acc1c290a781930a67edb7a5b9a8f8bdb9a15c7 Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_forehead.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_legs.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fd23a5583d6d13b29e98148df1ec1ed9d14e7121 Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_legs.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_nape.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e36e2c574208ddcd0369bd5dc34a5f05c3301b17 Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_nape.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_tail.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f16bc4bbdbec88bcba0c482a26d505da89c2574 Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_tail.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_throat.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8312aecfbb2a2b3e24c5b693345c52e44173ed86 Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_throat.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_visible.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..72cc2bb4138e40eff560b1af87902e3d48294357 Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_visible.jpg differ diff --git a/data/images/boxes/White_Eyed_Vireo_0046_158849_wings.jpg b/data/images/boxes/White_Eyed_Vireo_0046_158849_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ceba71272b2249980de662a27ea622a69a7ee181 Binary files /dev/null and b/data/images/boxes/White_Eyed_Vireo_0046_158849_wings.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_all.jpg b/data/images/boxes/Winter_Wren_0048_189683_all.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f85cbecc05952735d160f91d013efc07a4a4ac98 Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_all.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_back.jpg b/data/images/boxes/Winter_Wren_0048_189683_back.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e3df035a6914c7df44a50e0bbfc975102413ab64 Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_back.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_beak.jpg b/data/images/boxes/Winter_Wren_0048_189683_beak.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01c70e7cf3ffadf840aa6898a103210eb87176bb Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_beak.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_belly.jpg b/data/images/boxes/Winter_Wren_0048_189683_belly.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d16e2ff161416a1b962d14f44d5689f8b4e71e1e Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_belly.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_breast.jpg b/data/images/boxes/Winter_Wren_0048_189683_breast.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d661aa33f0afd1d91650a2210fe42afa247f95c Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_breast.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_crown.jpg b/data/images/boxes/Winter_Wren_0048_189683_crown.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7e322c27ee5d443ca6e87e9e294d5825ea97299a Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_crown.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_eyes.jpg b/data/images/boxes/Winter_Wren_0048_189683_eyes.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c08bb7ef7f43b279f804aed7afeacd004e5fa857 Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_eyes.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_forehead.jpg b/data/images/boxes/Winter_Wren_0048_189683_forehead.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee3aa6fc518227ab4e96624e4b3aa5a93034f0b8 Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_forehead.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_legs.jpg b/data/images/boxes/Winter_Wren_0048_189683_legs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..098afb85734294a9850061bf65627b0990816f80 Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_legs.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_nape.jpg b/data/images/boxes/Winter_Wren_0048_189683_nape.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6a2629ed73a94ede4481a82da09016ada1de9603 Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_nape.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_tail.jpg b/data/images/boxes/Winter_Wren_0048_189683_tail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..470649f678fe3b7fbca0132d8da9cdf558368923 Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_tail.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_throat.jpg b/data/images/boxes/Winter_Wren_0048_189683_throat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4705d4428d0576c83dccba3ba39074d5a951208c Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_throat.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_visible.jpg b/data/images/boxes/Winter_Wren_0048_189683_visible.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f85cbecc05952735d160f91d013efc07a4a4ac98 Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_visible.jpg differ diff --git a/data/images/boxes/Winter_Wren_0048_189683_wings.jpg b/data/images/boxes/Winter_Wren_0048_189683_wings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db85039937ff08654169457a895dfccc45117f4f Binary files /dev/null and b/data/images/boxes/Winter_Wren_0048_189683_wings.jpg differ diff --git a/data/images/final.png b/data/images/final.png new file mode 100755 index 0000000000000000000000000000000000000000..5b190610e96a151414beac2b8a22782e0ea9c7f2 Binary files /dev/null and b/data/images/final.png differ diff --git a/data/images/org/American_Goldfinch_0123_32505.jpg b/data/images/org/American_Goldfinch_0123_32505.jpg new file mode 100755 index 0000000000000000000000000000000000000000..f4c57fd633f6fc40efb7e981998b9c52e1ec169e Binary files /dev/null and b/data/images/org/American_Goldfinch_0123_32505.jpg differ diff --git a/data/images/org/Black_Tern_0101_144331.jpg b/data/images/org/Black_Tern_0101_144331.jpg new file mode 100755 index 0000000000000000000000000000000000000000..e78995ae060d9c1f2fca0714ed11a86a4eef487f Binary files /dev/null and b/data/images/org/Black_Tern_0101_144331.jpg differ diff --git a/data/images/org/Brandt_Cormorant_0040_23144.jpg b/data/images/org/Brandt_Cormorant_0040_23144.jpg new file mode 100755 index 0000000000000000000000000000000000000000..51b4fc85a10d67333c79e20ebd437af90dc3765f Binary files /dev/null and b/data/images/org/Brandt_Cormorant_0040_23144.jpg differ diff --git a/data/images/org/Brown_Thrasher_0014_155421.jpg b/data/images/org/Brown_Thrasher_0014_155421.jpg new file mode 100755 index 0000000000000000000000000000000000000000..87e4ec049f2171c91a0ca144846d70647a1bc6c7 Binary files /dev/null and b/data/images/org/Brown_Thrasher_0014_155421.jpg differ diff --git a/data/images/org/Carolina_Wren_0060_186296.jpg b/data/images/org/Carolina_Wren_0060_186296.jpg new file mode 100755 index 0000000000000000000000000000000000000000..5a84d0e67b9a6d6dec3016212faa2652927bb0b4 Binary files /dev/null and b/data/images/org/Carolina_Wren_0060_186296.jpg differ diff --git a/data/images/org/Cedar_Waxwing_0075_179114.jpg b/data/images/org/Cedar_Waxwing_0075_179114.jpg new file mode 100755 index 0000000000000000000000000000000000000000..9b2f63a827add485fd631d1a72d276c52525bb0b Binary files /dev/null and b/data/images/org/Cedar_Waxwing_0075_179114.jpg differ diff --git a/data/images/org/Clark_Nutcracker_0126_85134.jpg b/data/images/org/Clark_Nutcracker_0126_85134.jpg new file mode 100755 index 0000000000000000000000000000000000000000..e7540c3f080190400b89b93a90c073e4f2007ead Binary files /dev/null and b/data/images/org/Clark_Nutcracker_0126_85134.jpg differ diff --git a/data/images/org/Gray_Catbird_0071_20974.jpg b/data/images/org/Gray_Catbird_0071_20974.jpg new file mode 100755 index 0000000000000000000000000000000000000000..931a8f6647437b07aa62f7cdcb9a52b191f62749 Binary files /dev/null and b/data/images/org/Gray_Catbird_0071_20974.jpg differ diff --git a/data/images/org/Heermann_Gull_0097_45783.jpg b/data/images/org/Heermann_Gull_0097_45783.jpg new file mode 100755 index 0000000000000000000000000000000000000000..96920b86d15f00b862900e14fc2cc0f38754f987 Binary files /dev/null and b/data/images/org/Heermann_Gull_0097_45783.jpg differ diff --git a/data/images/org/House_Wren_0137_187273.jpg b/data/images/org/House_Wren_0137_187273.jpg new file mode 100755 index 0000000000000000000000000000000000000000..c978874182157c10ff2ccf7ed221f4a017e2c559 Binary files /dev/null and b/data/images/org/House_Wren_0137_187273.jpg differ diff --git a/data/images/org/Ivory_Gull_0004_49019.jpg b/data/images/org/Ivory_Gull_0004_49019.jpg new file mode 100755 index 0000000000000000000000000000000000000000..d0c1eac5d2b7cf2f9a95d75733f4fb1e5c935040 Binary files /dev/null and b/data/images/org/Ivory_Gull_0004_49019.jpg differ diff --git a/data/images/org/Northern_Waterthrush_0038_177027.jpg b/data/images/org/Northern_Waterthrush_0038_177027.jpg new file mode 100755 index 0000000000000000000000000000000000000000..2a77eeb29143963146da56f4c7f79b0fbe1b6d8d Binary files /dev/null and b/data/images/org/Northern_Waterthrush_0038_177027.jpg differ diff --git a/data/images/org/Pine_Warbler_0113_172456.jpg b/data/images/org/Pine_Warbler_0113_172456.jpg new file mode 100755 index 0000000000000000000000000000000000000000..c92a5c54b58f6d6f9d26a028c312fee0309e6d13 Binary files /dev/null and b/data/images/org/Pine_Warbler_0113_172456.jpg differ diff --git a/data/images/org/Red_Headed_Woodpecker_0032_182815.jpg b/data/images/org/Red_Headed_Woodpecker_0032_182815.jpg new file mode 100755 index 0000000000000000000000000000000000000000..88c512ef8e086f2a2c3423e281010cad7fa84486 Binary files /dev/null and b/data/images/org/Red_Headed_Woodpecker_0032_182815.jpg differ diff --git a/data/images/org/Rufous_Hummingbird_0076_59563.jpg b/data/images/org/Rufous_Hummingbird_0076_59563.jpg new file mode 100755 index 0000000000000000000000000000000000000000..14ebf08986ba4ad0eb90f62d1cb1708e6eb386f3 Binary files /dev/null and b/data/images/org/Rufous_Hummingbird_0076_59563.jpg differ diff --git a/data/images/org/Sage_Thrasher_0062_796462.jpg b/data/images/org/Sage_Thrasher_0062_796462.jpg new file mode 100755 index 0000000000000000000000000000000000000000..d0ed4d7485226b7a5d7d03c8fb51913d6ca6fd46 Binary files /dev/null and b/data/images/org/Sage_Thrasher_0062_796462.jpg differ diff --git a/data/images/org/Vesper_Sparrow_0030_125663.jpg b/data/images/org/Vesper_Sparrow_0030_125663.jpg new file mode 100755 index 0000000000000000000000000000000000000000..8bc5115a7a2ad3bec8256398809f90d5814d2816 Binary files /dev/null and b/data/images/org/Vesper_Sparrow_0030_125663.jpg differ diff --git a/data/images/org/Western_Grebe_0064_36613.jpg b/data/images/org/Western_Grebe_0064_36613.jpg new file mode 100755 index 0000000000000000000000000000000000000000..39955f611469f618fcf0248bbcc85328caaf6790 Binary files /dev/null and b/data/images/org/Western_Grebe_0064_36613.jpg differ diff --git a/data/images/org/White_Eyed_Vireo_0046_158849.jpg b/data/images/org/White_Eyed_Vireo_0046_158849.jpg new file mode 100755 index 0000000000000000000000000000000000000000..f3dc6f4f5cc7368c42160973d54fab3f68f3c601 Binary files /dev/null and b/data/images/org/White_Eyed_Vireo_0046_158849.jpg differ diff --git a/data/images/org/Winter_Wren_0048_189683.jpg b/data/images/org/Winter_Wren_0048_189683.jpg new file mode 100755 index 0000000000000000000000000000000000000000..86f95435f4b214cd13c636ff10080a736a0f7493 Binary files /dev/null and b/data/images/org/Winter_Wren_0048_189683.jpg differ diff --git a/data/jsons/bs_cub_desc.json b/data/jsons/bs_cub_desc.json new file mode 100644 index 0000000000000000000000000000000000000000..21469d4aa2c21ed690a6dd79e398fcd1d9d3176c --- /dev/null +++ b/data/jsons/bs_cub_desc.json @@ -0,0 +1,2802 @@ +{ + "Black-footed Albatross": [ + "back: dark brown feathers with lighter accents", + "beak: large, grayish-white, hooked tip", + "belly: white feathers with dark brown edges", + "breast: white plumage fading to brown at sides", + "crown: dark brown feathers with smooth contour", + "forehead: dark brown, blending into crown", + "eyes: black, surrounded by dark feathering", + "legs: large, black, webbed feet", + "wings: long, slender, dark brown with white edges", + "nape: dark brown, connecting to crown and back", + "tail: narrow, pointed, dark brown feathers", + "throat: white feathers with dark edges, smooth transition to breast" + ], + "Laysan Albatross": [ + "back: sleek, elongated feathers", + "beak: large, hooked, greyish-yellow", + "belly: white, with soft feathers", + "breast: slightly broader and rounded, white feathers", + "crown: smooth, white feathers", + "forehead: white feathers that blend into the crown", + "eyes: dark, encircled by a thin grey ring", + "legs: thick, pale pink, webbed feet", + "wings: long, slender, black-tipped", + "nape: white, blending with the crown and back", + "tail: wide, white, slightly forked", + "throat: white, with fine feathers" + ], + "Sooty Albatross": [ + "back: dark grey, streamlined body", + "beak: long, slender, greyish-black", + "belly: lighter grey, smoothly curved", + "breast: pale grey, narrow contours", + "crown: dark grey, rounded head shape", + "forehead: slightly lighter grey, gentle slope", + "eyes: small, dark, alert expression", + "legs: short, webbed, grey-black", + "wings: long, narrow, grey-black with white edges", + "nape: soft, grey transition from head to body", + "tail: short, fan-shaped, dark grey with white tips", + "throat: smooth, light grey, narrow shape" + ], + "Groove-billed Ani": [ + "back: blackish-grey, smooth feathers", + "beak: stout, slightly curved, ridged groove pattern", + "belly: dark grey, soft plumage", + "breast: charcoal grey, feathery texture", + "crown: sleek blackish-grey feathers", + "forehead: smooth, grey-black transition to beak", + "eyes: small, black pupils in white-grey eye rings", + "legs: slender, long, grey-black", + "wings: dark grey, raptor-like appearance", + "nape: black, feathers gently curve towards back", + "tail: fan-shaped, elongated black feathers", + "throat: dark grey, fine feathered texture" + ], + "Crested Auklet": [ + "back: dark gray with white speckles", + "beak: short, orange and curved", + "belly: pale gray with white streaks", + "breast: grayish-blue with white speckles", + "crown: black with prominent crest", + "forehead: dark gray and slightly tufted", + "eyes: dark, bead-like with white eyering", + "legs: orange and webbed", + "wings: dark gray with white tips on secondary feathers", + "nape: dark gray with white streaks", + "tail: grayish-blue with short, sharp feathers", + "throat: pale gray with white streaks" + ], + "Least Auklet": [ + "back: blackish-brown feathers", + "beak: short and stubby, orange-yellow", + "belly: whitish-gray plumage", + "breast: grayish-white feathers", + "crown: blackish-brown plumage", + "forehead: blackish-brown feathers", + "eyes: small and round, black", + "legs: short and orangish-red", + "wings: blackish-brown with white edges", + "nape: blackish-brown feathers", + "tail: short and blackish-brown", + "throat: grayish-white feathers" + ], + "Parakeet Auklet": [ + "back: colorful feathers with a gradient of oranges and reds", + "beak: red and short, curved inwards", + "belly: light grey feathers", + "breast: mixture of grey and white feathers", + "crown: orange-feathered crest on the head", + "forehead: smooth, grey feathers", + "eyes: small, black, and prominent", + "legs: strong, red-orange with webbed feet", + "wings: medium-sized with spotted black and white feathers", + "nape: grey and white plumage", + "tail: short, black-tipped feathers", + "throat: white with a greyish hue" + ], + "Rhinoceros Auklet": [ + "back: dark, sturdy, streamlined", + "beak: large, horn-like, pale yellow", + "belly: light gray, feathered", + "breast: dark gray, thick plumage", + "crown: smooth, black-tinged feathers", + "forehead: white, contrasting streak", + "eyes: round, dark, piercing gaze", + "legs: short, sturdy, dark gray", + "wings: dark, strong, pointed tips", + "nape: darker shading, connecting crown and back", + "tail: short, fan-like, black feathers", + "throat: grayish-white, smooth transition to breast" + ], + "Brewer Blackbird": [ + "back: shiny black feathers with iridescent hues", + "beak: short, pointed, light grey to black", + "belly: sleek black plumage plus a hint of iridescent green", + "breast: reflective black feathers with a purple sheen", + "crown: iridescent black with a hint of purple sheen", + "forehead: shiny black feathers with subtle purple-blue iridescence", + "eyes: bright yellow with a black pupil", + "legs: slender and dark grey", + "wings: glossy black with blue-green sheen", + "nape: iridescent black feathers with purple and green tinges", + "tail: reflective black with a fan shape and greenish sheen", + "throat: black feathers with a faint green iridescence" + ], + "Red-winged Blackbird": [ + "back: jet black feathers covering", + "beak: sharply pointed, grayish-blue", + "belly: sleek black underside", + "breast: black feathers meeting at the center", + "crown: subtle peak with black plumage", + "forehead: smooth, black space between eyes and beak", + "eyes: small, dark orbs on the side of the head", + "legs: sturdy, dark gray to black appendages", + "wings: long black feathers with red and yellow patches on the shoulders", + "nape: black plumage connecting head and back", + "tail: fan-shaped black feathers creating a sleek profile", + "throat: black feathers curve gracefully under the head" + ], + "Rusty Blackbird": [ + "back: dark rust-brown feathers", + "beak: thin, black and pointed", + "belly: lighter brown with faint streaks", + "breast: rusty brown with dusky streaks", + "crown: dark brown with a hint of rust", + "forehead: dark rust-brown, blending with the crown", + "eyes: small, black and shiny", + "legs: dark gray, strong and slender", + "wings: dark brown with rusty edges on the feathers", + "nape: brownish-black, connecting the crown and back", + "tail: black with rust-tinged feathers, medium length", + "throat: lighter rusty-brown, blending with the breast" + ], + "Yellow-headed Blackbird": [ + "back: glossy black feathers", + "beak: sharp-pointed, black", + "belly: black feathers", + "breast: vibrant yellow patch", + "crown: bright yellow on head", + "forehead: striking yellow color", + "eyes: small and black", + "legs: long and dark grey", + "wings: black with white markings", + "nape: glossy black plumage", + "tail: black with white accents", + "throat: brilliant yellow hue" + ], + "Bobolink": [ + "back: black upper-side with white streaks", + "beak: short, conical, and pale", + "belly: light brownish-white", + "breast: black with white patches", + "crown: black with white median stripe", + "forehead: black with white central patch", + "eyes: small with dark pupils", + "legs: long, slender, and dark grey", + "wings: black with white edges and prominent stripes", + "nape: black with white streaks", + "tail: short and stubby with white outer feathers", + "throat: black with white patches" + ], + "Indigo Bunting": [ + "back: vibrant indigo-blue feathers", + "beak: short, conical, and silver-gray", + "belly: lighter indigo blue shading to white", + "breast: bright indigo-blue plumage", + "crown: bold, indigo-blue crest", + "forehead: deep indigo-blue hue", + "eyes: small, dark, and alert", + "legs: slender grayish-blue", + "wings: striking indigo-blue with black edges", + "nape: rich indigo-blue", + "tail: tapered, black with blue edges", + "throat: vivid indigo-blue with lighter shades" + ], + "Lazuli Bunting": [ + "back: vibrant blue feathers", + "beak: short, conical-shaped, and silver-gray", + "belly: white with streaks of blue and rust", + "breast: rich rusty-orange color", + "crown: bright blue with a slight crest", + "forehead: brilliant blue feathers", + "eyes: small, black, and alert", + "legs: sturdy gray with clawed feet", + "wings: striking blue with black and white accents", + "nape: blue transitioning to rusty-orange", + "tail: long, blue feathers with a notched tip", + "throat: deep blue contrasting with rich breast color" + ], + "Painted Bunting": [ + "back: vibrant green coloring", + "beak: conical and silver-gray", + "belly: rich red hue", + "breast: bright blue plumage", + "crown: purplish-blue tint", + "forehead: deep blue coloring", + "eyes: black with white eye-ring", + "legs: light gray and slender", + "wings: green with dark edges", + "nape: green-blue transition", + "tail: green feathers with dark tips", + "throat: bright red plumage" + ], + "Cardinal": [ + "back: vibrant red feathers", + "beak: short, strong, orange", + "belly: reddish-brown plumage", + "breast: bright red chest feathers", + "crown: striking red crest", + "forehead: vivid red coloration", + "eyes: small, black, watchful", + "legs: slender, grey, clawed", + "wings: red, with black outlines", + "nape: reddish back of the head", + "tail: long, red, fan-shaped", + "throat: rich red plumage" + ], + "Spotted Catbird": [ + "back: greenish with dappled spots", + "beak: dark grey and hooked", + "belly: cream-colored with dark spots", + "breast: cream with irregular spots", + "crown: greenish and densely feathered", + "forehead: bright green strip", + "eyes: black with thin white eye-ring", + "legs: strong and greyish-brown", + "wings: green with dapple pattern", + "nape: greenish with subtle spots", + "tail: long and green with brown bands", + "throat: cream with dark streaks" + ], + "Gray Catbird": [ + "back: slate-gray feathers", + "beak: black, slender, and slightly curved", + "belly: soft gray underbelly", + "breast: grayish-white feathers", + "crown: smooth gray plumage", + "forehead: flat, grayish-white", + "eyes: dark and round with a small white ring", + "legs: long, black, and slender", + "wings: dark gray with a hint of rust color", + "nape: pale gray feathers", + "tail: long, black, and fan-shaped", + "throat: light gray plumage" + ], + "Yellow-breasted Chat": [ + "back: olive-green plumage", + "beak: short and stout", + "belly: bright yellow hue", + "breast: sunny yellow", + "crown: greenish-yellow blend", + "forehead: yellowish-green tint", + "eyes: dark with white eye-ring", + "legs: sturdy and grayish-brown", + "wings: greenish-brown with white patches", + "nape: yellowish-olive color", + "tail: greenish-brown with white markings", + "throat: vibrant yellow" + ], + "Eastern Towhee": [ + "back: reddish-brown with black streaks", + "beak: short and conical, dark color", + "belly: white with faint grayish marks", + "breast: reddish-brown merging into the white belly", + "crown: black or dark brown, depending on the gender", + "forehead: same color as the crown", + "eyes: bold red or reddish-brown color", + "legs: long, slender, and grayish", + "wings: reddish-brown with black and white markings", + "nape: dark brown or reddish-brown", + "tail: black with white outer feathers", + "throat: white or grayish, contrasting with the darker head" + ], + "Chuck-will Widow": [ + "back: brownish-green with white streaks", + "beak: short, straight, and black", + "belly: buffy brown with white spots", + "breast: whitish with brown streaks", + "crown: black with a white stripe", + "forehead: black with a white stripe", + "eyes: dark with pale eyering", + "legs: long, thin, and brown", + "wings: blackish-brown with white markings", + "nape: black with a white stripe", + "tail: long, black, and white-tipped", + "throat: whitish with brown streaks" + ], + "Brandt Cormorant": [ + "back: dark grey feathered coat", + "beak: long, slender, hooked tip", + "belly: lighter grey shading", + "breast: dark grey with some white feathers", + "crown: sleek black feathers", + "forehead: smooth, dark grey to black", + "eyes: piercing blue-green", + "legs: black with webbed feet", + "wings: dark grey with wide span", + "nape: black with distinctive white patches", + "tail: dark grey, fan-shaped", + "throat: vibrant blue-purple pouch" + ], + "Red-faced Cormorant": [ + "back: sleek dark plumage", + "beak: long, slender, and hooked", + "belly: dark-feathered underside", + "breast: smooth, dark feathers", + "crown: crimson-colored crest", + "forehead: glowing red forehead", + "eyes: sharp, black, and piercing", + "legs: sturdy orange-red legs", + "wings: large, extended dark wingspan", + "nape: rich deep-colored feathers", + "tail: long and dark tapering tail feathers", + "throat: dark and smooth feathered" + ], + "Pelagic Cormorant": [ + "back: sleek black feathers", + "beak: long, hooked, dark grey", + "belly: dark feathers blending with breast", + "breast: black with greenish sheen", + "crown: smooth black feathers", + "forehead: flat, dark feathered", + "eyes: brilliant turquoise color", + "legs: strong, dark, and webbed", + "wings: long, narrow, black feathers", + "nape: slender neck with dark feathers", + "tail: wedge-shaped, black feathers", + "throat: black, with a small patch of feathers on the chin" + ], + "Bronzed Cowbird": [ + "back: glossy, dark bronze-green feathers", + "beak: short, thick, and conical", + "belly: iridescent dark black-bronze coloration", + "breast: shiny, dark bronze-black feathers", + "crown: dark black-bronze feathers, often forming a small crest", + "forehead: sleek black-bronze feathers transitioning to the beak", + "eyes: bright, piercing, red eyes", + "legs: strong and black with dark gray feet", + "wings: dark bronze-green feathers with rounded tips", + "nape: glossy black-bronze feathers continuing from the crown", + "tail: short, rounded, and black-bronze in color", + "throat: shimmering dark bronze-black feathers descending towards the breast" + ], + "Shiny Cowbird": [ + "back: iridescent dark blue or black", + "beak: short and sharply pointed", + "belly: slightly lighter blue hue", + "breast: deep blue-black with a sheen", + "crown: black with a shining blue tone", + "forehead: glossy blue", + "eyes: dark, surrounded by shimmering feathers", + "legs: dark gray or black", + "wings: dark blue, shiny, and long", + "nape: gleaming black-blue", + "tail: iridescent dark blue or black feathers", + "throat: glossy black-blue color" + ], + "Brown Creeper": [ + "back: brown and streaked with a white pattern", + "beak: thin, decurved, and pointed", + "belly: white and light brown", + "breast: pale brown with white streaks", + "crown: reddish-brown with lighter markings", + "forehead: pale brownish-white", + "eyes: small, black, surrounded by pale feathers", + "legs: long and slender, light brown", + "wings: brown with intricate white barring", + "nape: streaked brown and white", + "tail: long, stiff, with brown and white banded feathers", + "throat: pale brown with white streaks" + ], + "American Crow": [ + "back: sleek black feathers", + "beak: strong, black, and slightly curved", + "belly: smooth dark plumage", + "breast: black, slightly rounded", + "crown: dark feathers, slightly raised", + "forehead: black, smooth, and flat", + "eyes: dark and piercing", + "legs: long, black, and sturdy", + "wings: large, black, with splayed feathers", + "nape: black feathers, merging with the crown", + "tail: broad, black, and fan-like", + "throat: black, slender, and smooth" + ], + "Fish Crow": [ + "back: sleek black feathers", + "beak: short, strong black beak", + "belly: black smooth feathers", + "breast: dark glossy plumage", + "crown: shiny black feathers", + "forehead: nearly flat feathered area", + "eyes: dark brown, watchful gaze", + "legs: sturdy black legs", + "wings: elongated, black flight feathers", + "nape: black feathers transition to neck", + "tail: moderately long, black tail feathers", + "throat: dark feathered, tapered area" + ], + "Black-billed Cuckoo": [ + "back: dark olive-green feathers", + "beak: black, slightly curved upper part", + "belly: white with gray-brown sides", + "breast: smooth grayish-white feathers", + "crown: muted dark gray-brown", + "forehead: slightly lighter gray-brown", + "eyes: dark with a faint white eyering", + "legs: grayish-blue, long and slender", + "wings: dark olive-brown with white spots on feathers", + "nape: dark gray-brown, blending with crown", + "tail: long and edged with white tips on outer feathers", + "throat: pale grayish-white, blending with breast" + ], + "Mangrove Cuckoo": [ + "back: olive-brown feathers with a slight sheen", + "beak: slightly curved, dark upper and lighter lower part", + "belly: pale, washed-out yellow", + "breast: yellow-orange fading into the belly", + "crown: olive-brown, in line with the back", + "forehead: slightly paler shade of olive-brown", + "eyes: large, dark, ringed with pale white", + "legs: long, sturdy; pale blue-gray", + "wings: olive-brown, distinctiv\u0435 white spots on tail feathers", + "nape: olive-brown, blending into the rest of the body", + "tail: long with white tips on outer feathers, distinct white bands", + "throat: yellowish, continues to the breast" + ], + "Yellow-billed Cuckoo": [ + "back: brownish-gray and sleek", + "beak: long, slightly curved, yellow bill", + "belly: white and soft", + "breast: whitish, with faint gray-brown markings", + "crown: smooth, gray-brown plumage", + "forehead: flat and gray-brown", + "eyes: dark, with a yellow eyering", + "legs: slender, blue-gray", + "wings: pointed, with white spots on blackish primary feathers", + "nape: gray-brown, with a transition to the back", + "tail: long and graduated, with white-tipped blackish feathers", + "throat: white, unmarked" + ], + "Gray-crowned-Rosy Finch": [ + "back: pale gray feathers", + "beak: short, conical pinkish-gray", + "belly: rosy pink hue", + "breast: soft pinkish-gray", + "crown: dark gray with silver streaks", + "forehead: pale silver-gray", + "eyes: small, black, surrounded by gray feathers", + "legs: sturdy, pinkish hue", + "wings: gray with black-tipped feathers", + "nape: pale gray, blending into dark crown", + "tail: medium length, dark gray with pink tinge", + "throat: light, rosy pink with gray edges" + ], + "Purple Finch": [ + "back: reddish-purple plumage", + "beak: short, conical, and stout", + "belly: soft white with streaks", + "breast: rosy-pink to reddish-purple", + "crown: purple-red with a peaked shape", + "forehead: similar reddish-purple hue", + "eyes: small, round, and dark", + "legs: slender and brownish-gray", + "wings: reddish-brown with white wing-bars", + "nape: purple-red plumage continued from the crown", + "tail: short and notched, with a reddish-brown color", + "throat: rosy-pink shade, blending with the breast" + ], + "Northern Flicker": [ + "back: brownish-gray with black barring", + "beak: slender, slightly curved, dark gray", + "belly: creamy or buff-colored with black spots", + "breast: pale gray, featuring a spotted pattern", + "crown: gray with red markings on the nape (red-shafted) or beige (yellow-shafted", + "forehead: tan or light brown, may include black whisker marks", + "eyes: dark, encircled by a light gray-white ring", + "legs: short, gray, adapted for clinging to trees", + "wings: brownish-black with white or yellow shafts, displaying white spots and a white raptor-like patch in flight", + "nape: red patch on red-shafted, beige on yellow-shafted variety", + "tail: brownish-black, featuring white, yellow or salmon undertail coverts", + "throat: beige or light gray, adorned with a black crescent shape" + ], + "Acadian Flycatcher": [ + "back: olive-green feathers", + "beak: small, straight, and black", + "belly: pale yellow hue", + "breast: light olive-green with subtle streaks", + "crown: olive-green with a slight crest", + "forehead: smooth, olive-green plumage", + "eyes: small, dark, and round", + "legs: thin, dark-grey appendages", + "wings: olive-green with pale wing bars", + "nape: olive-green plumage", + "tail: dark, forked, and short", + "throat: pale yellow feathers" + ], + "Great-Crested Flycatcher": [ + "back: olive-green with soft feathers", + "beak: black, strong, and slightly hooked", + "belly: yellow with matte texture", + "breast: gray with subtle streaks", + "crown: grayish-brown with a raised crest", + "forehead: grayish-brown with fine feathers", + "eyes: dark brown with pale eyelids", + "legs: sturdy and slate gray", + "wings: black with white edged feathers", + "nape: olive-gray texture with gentle gradation", + "tail: long and broad with reddish-brown feathers", + "throat: white with faint streaks" + ], + "Least Flycatcher": [ + "back: olive-green with subtle streaks", + "beak: small, pointed, and black", + "belly: white or pale yellow", + "breast: light gray with slight olive tinge", + "crown: grayish-green with a slight crest", + "forehead: grayish-green and flat", + "eyes: round, black with thin white eye-ring", + "legs: blackish-gray, thin but sturdy", + "wings: dark brown with white wing bars", + "nape: grayish-green, blending with the crown", + "tail: dark brown, slightly forked", + "throat: white or pale gray" + ], + "Olive-sided Flycatcher": [ + "back: dark grayish olive, streaked pattern", + "beak: short, black, and strong", + "belly: light cream, buff-colored", + "breast: streaked, grayish olive, and white", + "crown: dark grayish olive, flattish", + "forehead: grayish olive, blending with crown", + "eyes: black with pale eye-ring", + "legs: short, black, and twig-perching", + "wings: dark grayish olive, long, and pointed", + "nape: grayish olive, blending with the back", + "tail: dark grayish olive, forked, and stiff", + "throat: white, streaked grayish olive" + ], + "Scissor-tailed Flycatcher": [ + "back: light gray, elongated feathers", + "beak: black, thin and pointed", + "belly: pale yellow, soft plumage", + "breast: pale gray, delicate feathers", + "crown: light gray, smooth contour", + "forehead: light gray, unmarked", + "eyes: black, small and round", + "legs: black, slender and strong", + "wings: black, long with white edges", + "nape: light gray, sleek transition", + "tail: black, exceptionally long forked tail feathers", + "throat: white, unblemished coloration" + ], + "Vermilion Flycatcher": [ + "back: vibrant red-orange feathers", + "beak: short, pointy black beak", + "belly: bright vermilion hue", + "breast: fiery red-orange coloring", + "crown: intense red-orange plumage", + "forehead: bright vermilion feathers", + "eyes: sharp black beads", + "legs: thin dark gray limbs", + "wings: black with red-orange highlights", + "nape: striking vermilion feathers", + "tail: long black with red-orange edges", + "throat: vivid red-orange feathers" + ], + "Yellow-bellied Flycatcher": [ + "back: olive-green or yellowish-green feathers", + "beak: short, sharp, and black with a slightly hooked tip", + "belly: bright yellow feathers", + "breast: pale yellow or whitish-yellow feathers", + "crown: greyish-green with a slight crest", + "forehead: greyish-green to olive-green feathers", + "eyes: dark beady eyes with thin white eye-rings", + "legs: slender and dark grey or black", + "wings: greyish-green with black feather tips and white wing bars", + "nape: olive-green or greyish-green coloration", + "tail: greyish-green feathers with black tips and white outer tail feathers", + "throat: pale yellow or white feathers" + ], + "Frigatebird": [ + "back: sleek, dark-colored, aerodynamic", + "beak: long, hooked, pointed", + "belly: light, white, feathery", + "breast: puffed, red, large (in male during mating season", + "crown: smooth, dark-colored feathers", + "forehead: narrow, flat, dark-colored", + "eyes: large, round, black", + "legs: short, strong, with sharp claws", + "wings: wide, angular, impressive span", + "nape: slim, dark, connects head to body", + "tail: elongated, forked, dark feathers", + "throat: white, feathered, distinct (in female" + ], + "Northern Fulmar": [ + "back: light grey or dark brown feathered", + "beak: thick, hooked, pale yellowish", + "belly: white with some brownish speckles", + "breast: white with possibly light brown streaks", + "crown: light grey to dark brown feathered", + "forehead: lighter grey to brown shaded", + "eyes: dark, medium-sized, encircled with white", + "legs: short, pale bluish-grey", + "wings: long, slender, dark grayish-brown", + "nape: light gray or brownish feathers", + "tail: short, fan-shaped, pale grey or brown", + "throat: white with some possible light streaks" + ], + "Gadwall": [ + "back: grayish-brown feathers with subtle patterning", + "beak: slate-gray with black edges and hooks", + "belly: creamy-white with fine gray streaks", + "breast: speckled gray and black feathers", + "crown: dark brown with slightly raised feathering", + "forehead: dark brown blending into the crown", + "eyes: dark brown with a gentle expression", + "legs: yellowish-orange with webbed feet", + "wings: blue, gray, and white striped wing coverts, black primary feathers", + "nape: dark brown, blending with the back feathers", + "tail: long black feathers with white tips and black underside", + "throat: light gray with darker streaks" + ], + "American Goldfinch": [ + "back: olive-green with black streaks", + "beak: short, conical, and pale pink-orange", + "belly: pale white to light yellow", + "breast: bright yellow in males, duller yellow in females", + "crown: black on males, dull green in females", + "forehead: vibrant yellow in males, pale green in females", + "eyes: small, round, and black", + "legs: pinkish-orange and slender", + "wings: black with vivid white markings", + "nape: olive-green with a hint of yellow", + "tail: black with white edges", + "throat: bright yellow in males, light green-yellow in females" + ], + "European Goldfinch": [ + "back: olive-green feathers", + "beak: pointed, bright orange", + "belly: creamy white feathers", + "breast: reddish-orange hue", + "crown: bold black and yellow stripes", + "forehead: vibrant red patch", + "eyes: black with white eye-ring", + "legs: pinkish-brown and slender", + "wings: black with golden-yellow bar", + "nape: pale gray-brown feathers", + "tail: black with white spots", + "throat: creamy white, blends with belly" + ], + "Boat-tailed Grackle": [ + "back: iridescent black-blue feathers", + "beak: long, slim, and dark", + "belly: shiny black feathers", + "breast: sleek black plumage", + "crown: smooth glossy black", + "forehead: gleaming black feathers", + "eyes: bright yellow with black pupils", + "legs: strong and dark gray", + "wings: shimmering black with blue-green highlights", + "nape: glossy black plumage", + "tail: long, boat-shaped, and black", + "throat: smooth black feathers" + ], + "Eared Grebe": [ + "back: dark grayish-brown with subtle stripes", + "beak: slender, straight, and pointed", + "belly: white with grayish undertones", + "breast: reddish-brown to chestnut color", + "crown: black with slight crest", + "forehead: steep black slope meeting beak", + "eyes: small, bright red", + "legs: set far back, lobed toes for swimming", + "wings: short, grayish-brown with limited flight capability", + "nape: black with a slight crest", + "tail: short, light gray to white, often held erect", + "throat: black, blending into breast color" + ], + "Horned Grebe": [ + "back: dark with subtle patterns", + "beak: thin, pointed, and dark", + "belly: white or grey", + "breast: light grey with white spots", + "crown: black with reddish tufts", + "forehead: black or dark grey", + "eyes: bright red", + "legs: short, dark, and webbed", + "wings: relatively small, dark with white edging", + "nape: black or dark grey", + "tail: short and pointy", + "throat: white or light grey" + ], + "Pied-billed Grebe": [ + "back: brown and gray feathers", + "beak: short, thick, and striped", + "belly: white and fluffy", + "breast: grayish-brown plumage", + "crown: dark brown, slightly raised", + "forehead: slightly sloped with dark feathers", + "eyes: bright red, beady", + "legs: short, greenish-gray, set far back", + "wings: small, brownish-gray", + "nape: dark brown, continuous with the crown", + "tail: short and stubby, no apparent feathers", + "throat: light gray, blending with breast" + ], + "Western Grebe": [ + "back: sleek, dark gray feathers", + "beak: long, pointy, slightly curved", + "belly: white, feathered underside", + "breast: white and grey, blended feathers", + "crown: black, smoothly rounded contour", + "forehead: sharp transition to black feathers", + "eyes: striking red, slightly oval-shaped", + "legs: powerful, set far back, webbed feet", + "wings: greyish, long, slightly pointed", + "nape: black, narrow, elongates the neck", + "tail: short, fan-shaped, with dark feathers", + "throat: white, continuous with breast and belly" + ], + "Blue Grosbeak": [ + "back: deep blue feathers", + "beak: silver-colored, conical shape", + "belly: lighter blue plumage", + "breast: vibrant blue feathers", + "crown: deep blue with smooth contour", + "forehead: bright blue and flat", + "eyes: black, small and circular", + "legs: dark grey, sturdy", + "wings: blue and black striped pattern", + "nape: rich blue and rounded", + "tail: long, dark blue feathers", + "throat: bright blue and smooth" + ], + "Evening Grosbeak": [ + "back: yellow-green with dark streaks", + "beak: large, conical, and pale ivory", + "belly: pale yellow", + "breast: vibrant yellow", + "crown: black and rounded", + "forehead: bright yellow", + "eyes: dark and beady, with bold white eye-ring", + "legs: short and sturdy, pinkish-gray", + "wings: dark with white patches, yellow edges", + "nape: yellow with subtle black streaks", + "tail: forked, black with white outer feathers", + "throat: yellow, blending into pale breast" + ], + "Pine Grosbeak": [ + "back: light reddish-brown with soft, dense feathers", + "beak: strong, conical, and light pinkish-gray", + "belly: pale, yellowish-gray with a hint of rose", + "breast: rosy-pink in males, yellowish-gray in females", + "crown: round, with a blend of reddish-brown and gray feathers", + "forehead: matching the crown, smooth feathers transitioning into the beak", + "eyes: small, round, and dark, surrounded by faint white eyering", + "legs: strong, short, and grayish-blue with scaled texture", + "wings: darker reddish-brown, long and broad, ending in a curved tip", + "nape: similar to back, reddish-brown feathers smoothly transitioning to the crown", + "tail: relatively short, straight-edged, and darker reddish-brown", + "throat: pale, blending from the breast color, transitioning into the belly" + ], + "Rose-breasted Grosbeak": [ + "back: black feathers with white patches", + "beak: short, stout, and conical", + "belly: white with faint streaking", + "breast: rose-red splashes on male, pale on female", + "crown: black on males, brown or gray on females", + "forehead: black on males, brown or gray on females", + "eyes: dark with white eye-ring", + "legs: pale pink or grayish", + "wings: black and white with large white patches", + "nape: black on males, brown or gray on females", + "tail: black with white outer feathers", + "throat: black on males, white or gray on females" + ], + "Pigeon Guillemot": [ + "back: blackish-grey with white streaks", + "beak: bright red-orange with a hooked tip", + "belly: white with occasional feathers", + "breast: white merging into grey-black near wings", + "crown: glossy black with a rounded shape", + "forehead: smooth black curve from beak to crown", + "eyes: dark with a thin white eye-ring", + "legs: red-orange, set back on body for swimming", + "wings: black with large white patches near tips", + "nape: black, connecting seamlessly with the crown", + "tail: black, short with a slightly rounded shape", + "throat: white, contrasting with the black beak and neck" + ], + "California Gull": [ + "back: smooth gray feathers", + "beak: medium-length, slightly hooked, pale yellow", + "belly: white plumage with light gray streaks", + "breast: white and fluffy feathers", + "crown: round, slate-gray head", + "forehead: flat, light gray feathers", + "eyes: dark, alert, and round", + "legs: thin, webbed, dusky-pink", + "wings: gray with black-tipped primaries and white edges", + "nape: light gray feather transition between head and back", + "tail: white, fan-shaped, with black border", + "throat: white, soft feathered area connecting head to belly" + ], + "Glaucous-winged Gull": [ + "back: light gray feathers cover the back", + "beak: strong, yellowish with a red spot", + "belly: clean white, soft plumage", + "breast: white, slightly round and plump", + "crown: sleek, light gray plumage atop the head", + "forehead: smooth, light gray feathers at front of head", + "eyes: dark, piercing, rimmed in red skin", + "legs: sturdy, pinkish with webbed feet", + "wings: pale gray with white-tipped flight feathers", + "nape: feathered transition connecting the head and back", + "tail: short, white feathers tipped in gray-black", + "throat: white, smooth feathers under the beak" + ], + "Heermann Gull": [ + "back: pale gray feathers", + "beak: dark red to orange, sturdy and sharp", + "belly: white feathers", + "breast: white feathers with gray shading", + "crown: smooth white with light gray area", + "forehead: white feathers", + "eyes: dark and round, surrounded by white feathers", + "legs: pinkish-red and medium-length", + "wings: pale gray with black tips and a white trailing edge", + "nape: white turning to pale gray", + "tail: white with black terminal band", + "throat: white feathers" + ], + "Herring Gull": [ + "back: light gray plumage", + "beak: yellow with red spot", + "belly: pale white feathers", + "breast: white plumage", + "crown: white head with speckles", + "forehead: smooth white curve", + "eyes: bright yellow with black ring", + "legs: pinkish-orange in color", + "wings: gray with black tips and white spots", + "nape: white with speckled gray", + "tail: white with black band", + "throat: white and smooth" + ], + "Ivory Gull": [ + "back: clean white plumage", + "beak: short, pale yellow with black tip", + "belly: pristine white feathers", + "breast: white, rounded profile", + "crown: brilliant white head", + "forehead: smooth white feathers", + "eyes: dark beady with a white outline", + "legs: black with webbed feet", + "wings: white with a pale grey edge", + "nape: curved white neck", + "tail: short, white, slightly forked", + "throat: white, slender appearance" + ], + "Ring-billed Gull": [ + "back: light grey feathers", + "beak: yellow with a black ring", + "belly: white underneath", + "breast: white chest plumage", + "crown: white with a faint grey band", + "forehead: white with a slightly rounded shape", + "eyes: dark, small, and round", + "legs: yellow-orange and thin", + "wings: grey with black tips and white edges", + "nape: white with a faint grey marking", + "tail: white with a black band", + "throat: white with smooth feathers" + ], + "Slaty-backed Gull": [ + "back: pale bluish-gray feathers", + "beak: strong, yellow with a red dot", + "belly: white and smooth", + "breast: white and slightly puffed", + "crown: pale gray with mottled streaks", + "forehead: flat and pale gray", + "eyes: bright yellow with a black ring", + "legs: sturdy and pinkish-yellow", + "wings: bluish-gray with black wingtips and white spots", + "nape: pale gray and slightly curved", + "tail: white with black banding", + "throat: white and unblemished" + ], + "Western Gull": [ + "back: grayish-white plumage", + "beak: strong, yellow with red spot", + "belly: white feathers", + "breast: white and smooth", + "crown: pale gray feathers", + "forehead: flat, pale gray", + "eyes: dark, perceptive gaze", + "legs: pink, webbed feet", + "wings: gray with white and black tips", + "nape: paler gray transition", + "tail: white with black band", + "throat: white, soft feathers" + ], + "Anna Hummingbird": [ + "back: green iridescent feathering", + "beak: long, thin, slightly curved", + "belly: light-gray to white plumage", + "breast: green and gray feathers with possible red spotting", + "crown: iridescent emerald green", + "forehead: bright green with a red gorget", + "eyes: small, black, alert", + "legs: short, thin, with sharp claws", + "wings: slender, fast-flapping, greenish tint", + "nape: green iridescent feathers", + "tail: square-shaped, dark, with white outer tail feathers", + "throat: shimmering red or purple gorget" + ], + "Ruby-throated Hummingbird": [ + "back: iridescent green feathers", + "beak: long, slender, and slightly curved", + "belly: light gray and white feathers", + "breast: vibrant red throat patch (male) or smudged gray patch (female", + "crown: glistening green plumage on top of the head", + "forehead: bright green plumage above the eyes", + "eyes: small, dark, and round", + "legs: delicate and extremely short", + "wings: long, narrow, and pointed, capable of rapid movement", + "nape: green feathers transitioning to gray", + "tail: forked with white-tipped outer feathers (male) or rounded and banded (female", + "throat: brilliant red gorget (male) or white to light gray (female" + ], + "Rufous Hummingbird": [ + "back: vibrant bronze-green", + "beak: long, slender, and straight", + "belly: soft white or light gray", + "breast: rich orange or reddish-brown", + "crown: glossy green", + "forehead: iridescent green or sometimes reddish-brown", + "eyes: small, dark, and alert", + "legs: short with tiny feet", + "wings: narrow and pointed, rapidly moving", + "nape: greenish-bronze, transitioning from the crown", + "tail: squared or slightly forked tail feathers, often with orange-brown tips", + "throat: bright orange-red, iridescent gorget" + ], + "Green Violetear": [ + "back: vibrant green feathers", + "beak: short, black and curved", + "belly: lighter green with soft hue", + "breast: iridescent green plumage", + "crown: shimmering emerald green", + "forehead: shiny green feathers", + "eyes: small, black and round", + "legs: slender, grayish-blue", + "wings: swift green with violet streaks", + "nape: glistening green", + "tail: elongated, green with blue tips", + "throat: glimmering violet-blue patch" + ], + "Long-tailed Jaeger": [ + "back: sleek feathers in shades of grey or brown", + "beak: sharp, black, and hooked", + "belly: light grey or white feathers", + "breast: light grey or white with subtle streaks", + "crown: dark-colored feathers, sometimes with a slight crest", + "forehead: smooth, grey or brown feathers", + "eyes: sharp, black, and alert", + "legs: long and thin, covered in scales", + "wings: long and pointed, with dark tips", + "nape: dark-colored feathers transitioning from the crown to the back", + "tail: elongated central feathers, forming a forked appearance", + "throat: light-colored feathers with minimal markings" + ], + "Pomarine Jaeger": [ + "back: tawny-brown to dark-brown feathers", + "beak: stout, pointy, hooked tip", + "belly: pale gray to white feathers", + "breast: dark brown or grayish-brown feathers", + "crown: dark-brown head feathers", + "forehead: tawny-brown or dark-brown feathers, continuous with the crown", + "eyes: dark, round, with a piercing gaze", + "legs: long and slender, blue-gray or grayish-black", + "wings: long, pointed, with dark flight feathers", + "nape: dark-brown or grayish-brown feathers", + "tail: central tail feathers elongated in adults, typically white with black tips", + "throat: pale-gray or white feathers" + ], + "Blue Jay": [ + "back: striking blue feathers", + "beak: sturdy black bill", + "belly: white/gray underbelly", + "breast: blended blue and white plumage", + "crown: bold blue crest", + "forehead: vibrant blue hues", + "eyes: curious black orbs", + "legs: strong gray limbs", + "wings: brilliant blue with black bands", + "nape: transitional blue and white feathers", + "tail: long, blue, fan-like appendage", + "throat: white/gray frontal feathering" + ], + "Florida Jay": [ + "back: blue-gray feathers", + "beak: strong, black, hooked", + "belly: creamy white", + "breast: light gray-blue", + "crown: blue crest", + "forehead: bright blue", + "eyes: dark, round, alert", + "legs: long, black, slender", + "wings: blue with white stripes", + "nape: blue-gray", + "tail: long, rounded, blue-gray", + "throat: whitish-gray" + ], + "Green Jay": [ + "back: vibrant green feathers", + "beak: strong, black, and slightly curved", + "belly: soft, pale green underbelly", + "breast: light green plumage", + "crown: deep blue to purplish crest", + "forehead: striking blue-black pattern", + "eyes: expressive, dark brown", + "legs: sturdy, dark gray", + "wings: rich green with blue accents", + "nape: blue-green transition from crown", + "tail: long, blue and green feathers", + "throat: subtle light green patch" + ], + "Dark-eyed Junco": [ + "back: dark gray to brownish-gray feathers", + "beak: small, cone-shaped pinkish beak", + "belly: light gray or cream-colored feathers", + "breast: grayish-white with a slight pink hue", + "crown: dark gray or blackish cap-like feathers", + "forehead: smooth black or dark gray feathers", + "eyes: small, dark, and round eyes", + "legs: sturdy, thin pinkish legs", + "wings: slate gray with white outer edges", + "nape: dark gray, transitioning from the crown", + "tail: long, blackish-gray feathers with white outer corners", + "throat: light gray to off-white plumage" + ], + "Tropical Kingbird": [ + "back: olive-green upper body", + "beak: sturdy, black, and slightly hooked", + "belly: pale yellow underbelly", + "breast: light gray plumage", + "crown: olive-green with hidden orange-yellow crest", + "forehead: light gray to olive-green transition", + "eyes: dark, surrounded by faint white eyering", + "legs: black, slender, and long", + "wings: olive-green with black edges and white wingbars", + "nape: olive-green, connecting to the crown and back", + "tail: slightly forked, black with white outer edges", + "throat: light gray, leading down to the breast" + ], + "Gray Kingbird": [ + "back: light gray feathers with a slight greenish tinge", + "beak: long, straight, dark grey or black", + "belly: pale grayish-white with faint streaks", + "breast: light gray fading into the white belly", + "crown: dark gray with slight crest", + "forehead: lighter gray than the crown, smooth feathers", + "eyes: dark, small, surrounded by light gray feathers", + "legs: black, slender, scaled appearance", + "wings: gray with darker feathers on the tips, prominent white patch at base", + "nape: light gray, continuous with the back and crown", + "tail: long, dark gray with white outer feathers and a forked shape", + "throat: light gray with white undertones" + ], + "Belted Kingfisher": [ + "back: slate blue feathers", + "beak: long, black, dagger-like", + "belly: white with blue-gray bands", + "breast: white with blue-gray band", + "crown: large blue-gray crest", + "forehead: white patch with blue-gray accents", + "eyes: large, dark, and alert", + "legs: short and sturdy, with black-gray coloring", + "wings: slate blue with dark spots and white accents", + "nape: blue-gray with white borders", + "tail: slate blue with white bars and dark tips", + "throat: white, extending to the underside" + ], + "Green Kingfisher": [ + "back: vibrant green with bluish tinge", + "beak: long, sharp, black", + "belly: white or buff colored", + "breast: greenish-blue with white patches", + "crown: dark green with a slight crest", + "forehead: bright green", + "eyes: round, black, piercing gaze", + "legs: short, sturdy, grayish-green", + "wings: iridescent green-blue with dark spots", + "nape: greenish-blue with white collar", + "tail: blue-green with black bands", + "throat: white with green feathers" + ], + "Pied Kingfisher": [ + "back: black and white striped pattern", + "beak: long, straight, and black", + "belly: white with some black markings", + "breast: predominantly white with black speckles", + "crown: bold black and white stripes", + "forehead: white with small black spots", + "eyes: dark with a white eyebrow-like stripe", + "legs: short and black", + "wings: black with white spots and bands", + "nape: black and white stripes", + "tail: black and white banded feathers", + "throat: white with a marked black necklace" + ], + "Ringed Kingfisher": [ + "back: vibrant blue feathers", + "beak: long, sharp grey-black bill", + "belly: whitish grey with streaks of brown", + "breast: white or pale gray shading", + "crown: striking blue with a shaggy crest", + "forehead: deep blue merging into crown", + "eyes: small, dark and sharp", + "legs: short, sturdy, and grey", + "wings: bright blue with black bands", + "nape: blue with chance of rufous band", + "tail: broad, blue feathers with black barring", + "throat: white with unique ring pattern" + ], + "White-breasted Kingfisher": [ + "back: striking blue feathers", + "beak: long, robust, and black", + "belly: delicate white plumage", + "breast: bright white feathers", + "crown: vibrant blue crest", + "forehead: intense blue plumage", + "eyes: sharp, dark, and watchful", + "legs: sturdy, scarlet-red", + "wings: bold blue with white patches", + "nape: rich blue feathering", + "tail: streamlined blue with white tips", + "throat: crisp white feathers" + ], + "Red-legged Kittiwake": [ + "back: sleek, white-grey feathered", + "beak: sharp, yellow-tipped hook", + "belly: smooth, white plumage", + "breast: white, well-rounded", + "crown: grey, subtly streaked", + "forehead: flat, extended white feathers", + "eyes: dark, intelligent gaze", + "legs: vibrant red, slender", + "wings: long, black-tipped with white-grey feathers", + "nape: white, short plumage", + "tail: white, fan-shaped feathers", + "throat: white, soft feathering" + ], + "Horned Lark": [ + "back: light brown with black streaks", + "beak: small, pointed, black", + "belly: white with light brown sides", + "breast: pale with black patch", + "crown: dark brown with pointed feathers", + "forehead: yellowish-white strip above eyes", + "eyes: small, black, surrounded by white", + "legs: thin, dark-colored, strong", + "wings: brown with black tips and white stripes", + "nape: light brown, blending with crown", + "tail: short, black with white outer edges", + "throat: white, bordered by black crescent" + ], + "Pacific Loon": [ + "back: sleek, dark gray with subtle white speckling", + "beak: sharp, straight, and black", + "belly: smooth, snowy white", + "breast: white, transitioning into the gray of the back", + "crown: black or dark gray, rounded", + "forehead: dark gray, continuous with the crown", + "eyes: piercing red, surrounded by black feathers", + "legs: black, webbed feet for swimming", + "wings: dark gray, long and narrow for powerful flight", + "nape: black or dark gray, blending into the crown and back", + "tail: short, dark gray feathers", + "throat: clean, bright white, contrasting with the darker head" + ], + "Mallard": [ + "back: greenish-brown feathers", + "beak: yellowish-green bill", + "belly: white to light gray feathers", + "breast: chestnut-brown plumage", + "crown: dark green, iridescent feathers", + "forehead: narrow white stripe", + "eyes: dark brown with white eye ring", + "legs: orange to reddish-orange webbed feet", + "wings: blue speculum bordered by white stripes", + "nape: sleek black feathers", + "tail: black, curled upward central feathers", + "throat: white to light gray feathers" + ], + "Western Meadowlark": [ + "back: yellowish-brown with black stripes", + "beak: long, sharp, and light gray", + "belly: bright yellow", + "breast: vibrant yellow with a central black v-shape", + "crown: streaked brown and tan", + "forehead: pale yellowish-brown", + "eyes: dark brown with white eyering", + "legs: thin and pinkish-gray", + "wings: brown with black and white markings", + "nape: brownish-yellow with black stripes", + "tail: brown with white outer feathers", + "throat: bright yellow" + ], + "Hooded Merganser": [ + "back: black and white striped pattern", + "beak: thin, serrated, dark-colored", + "belly: pure white with slight shading", + "breast: white with black chestnut sides", + "crown: large, fan-shaped crest, black and white", + "forehead: sleek, narrow, black", + "eyes: bright yellow, piercing", + "legs: orange, short and sturdy", + "wings: white with black and brown feathers, iridescent patches", + "nape: black, smoothly curved", + "tail: short, dark rufous-colored feathers", + "throat: white, sharply defined" + ], + "Red-breasted Merganser": [ + "back: dark-feathered and streamlined", + "beak: slender, serrated edges", + "belly: white, with dark spots", + "breast: rusty red, speckled", + "crown: greenish-black, sleek", + "forehead: merges seamlessly with crown", + "eyes: alert, dark brown", + "legs: orange, powerful", + "wings: grayish-blue, white patch", + "nape: elongated, black feathers", + "tail: dark, fan-shaped", + "throat: white, well-defined" + ], + "Mockingbird": [ + "back: sleek gray feathers", + "beak: thin, sharp, black", + "belly: light, white plumage", + "breast: pale gray chest feathers", + "crown: gray feathered head", + "forehead: smooth gray feathers", + "eyes: dark, alert, piercing", + "legs: long, slender, gray", + "wings: broad, gray, powerful", + "nape: gray feathers, thick plumage", + "tail: long, gray, fan-like", + "throat: white-gray, soft feathers" + ], + "Nighthawk": [ + "back: dark brown with cryptic patterns", + "beak: short, wide, and hooked", + "belly: dull grey-brown with fine white streaks", + "breast: mottled deep brown with hints of grey", + "crown: dark brown with pale streaks", + "forehead: slightly lighter brown with white markings", + "eyes: large, round, and black", + "legs: short and sturdy", + "wings: long, pointed with cryptic patterns", + "nape: dark brown with pale feather edges", + "tail: long and dark with white markings near the tip", + "throat: light grey-brown with mottled patterns" + ], + "Clark Nutcracker": [ + "back: striated black, white and gray feathers", + "beak: strong, pointy, black", + "belly: pale gray-white feathers", + "breast: white-gray with some black markings", + "crown: black feathers transitioning to light gray", + "forehead: light gray feathers", + "eyes: dark, round, surrounded by light gray feathers", + "legs: dark, sturdy, well-adapted for perching", + "wings: black, white and gray patterned feathers; strong for long flights", + "nape: light gray feathers blending into darker grey-back", + "tail: black feathers with white edges; long and sturdy", + "throat: white feathers with black markings" + ], + "White-breasted Nuthatch": [ + "back: blue-grey feathers", + "beak: sharp, pointed black beak", + "belly: white, unmarked feathers", + "breast: white with a slight rusty tinge", + "crown: dark blue-grey cap", + "forehead: light blue-grey hue", + "eyes: small, black, beady", + "legs: thin, greyish-brown", + "wings: blue-grey with white patches", + "nape: dark blue-grey stripe", + "tail: blue-grey with black bars and white edges", + "throat: white, unmarked feathers" + ], + "Baltimore Oriole": [ + "back: black and orange feathers", + "beak: pointed, slender silver-gray", + "belly: bright orange-yellow", + "breast: vibrant orange-yellow", + "crown: black with orange stripe", + "forehead: black with orange accents", + "eyes: black, round with white eye-ring", + "legs: bluish-gray, slender", + "wings: black with white and orange markings", + "nape: black with orange stripe", + "tail: black with orange-yellow edging", + "throat: bright orange-yellow" + ], + "Hooded Oriole": [ + "back: vibrant yellow-orange color", + "beak: long, slender, and curved for nectar feeding", + "belly: pale yellow with light streaks", + "breast: bright yellow-orange hue", + "crown: deep orange with slight crest", + "forehead: bright yellow-orange", + "eyes: small, black, and alert", + "legs: thin and grayish-blue", + "wings: black with white markings", + "nape: intense orange-yellow", + "tail: long, black, with white-edged feathers", + "throat: vivid yellow with a hint of orange" + ], + "Orchard Oriole": [ + "back: bright greenish-yellow feathers", + "beak: sharply pointed, grayish-black", + "belly: pale yellow or white underside", + "breast: yellow-orange with grayish-black streaks", + "crown: black with greenish-yellow tinges", + "forehead: black extending to eyes", + "eyes: dark with black outline", + "legs: grayish-black, slender", + "wings: dark gray or black with white wing-bars", + "nape: greenish-yellow blending into black", + "tail: dark gray or black, forked", + "throat: vibrant yellow with black border" + ], + "Scott Oriole": [ + "back: dark yellow-orange with black streaks", + "beak: slender and slightly curved, black", + "belly: vibrant yellow-orange", + "breast: bright yellow-orange", + "crown: black with some yellow patches", + "forehead: black extending to the eyes", + "eyes: black, contrasting the surrounding yellow feathers", + "legs: dark gray, thin and strong", + "wings: black with white wing bars", + "nape: bright yellow-orange", + "tail: black with white edges", + "throat: bold yellow-orange" + ], + "Ovenbird": [ + "back: olive-green feathers with streaks", + "beak: thin, pointed, light color", + "belly: light yellowish hue with black streaks", + "breast: white or pale yellow with black streaks", + "crown: orange stripe bordered by black", + "forehead: olive-green, blending into crown", + "eyes: dark, medium-sized, expressive", + "legs: strong, gray or pinkish-gray", + "wings: olive-green with white streaks", + "nape: olive-green, elongating the back", + "tail: medium length, brownish-green with white spots", + "throat: pale white or yellowish hue" + ], + "Brown Pelican": [ + "back: dark brown feathers", + "beak: long, hooked, grayish", + "belly: white to light brown", + "breast: mostly white plumage", + "crown: dark brown to black crest", + "forehead: smooth, white", + "eyes: small, pale yellow", + "legs: short, webbed, gray", + "wings: long, brown, arching", + "nape: dark brown with neck pouch", + "tail: short, square, brown", + "throat: large, expandable gular pouch" + ], + "White Pelican": [ + "back: sleek, white feathered upper body", + "beak: long, hooked tip, orange-yellow color", + "belly: rounded, white plumage", + "breast: full, white-feathered chest", + "crown: slightly elevated, white feathers on top of the head", + "forehead: smooth, white, blends into the beak", + "eyes: small, dark, piercing gaze", + "legs: short, thick, with webbed feet, grayish color", + "wings: wide, white feathers with black tips", + "nape: curved, white neck connecting head to body", + "tail: short, fan-shaped, white feathers", + "throat: white, expands to hold fish when feeding" + ], + "Western-Wood Pewee": [ + "back: olive-gray and plain", + "beak: thin and pointed", + "belly: pale yellowish-white", + "breast: pale grayish", + "crown: olive-gray", + "forehead: slightly lighter olive-gray", + "eyes: dark, round, and small", + "legs: grayish-black and slender", + "wings: dusky gray with indistinct wing bars", + "nape: olive-gray", + "tail: grayish with slight fork", + "throat: pale grayish-white" + ], + "Sayornis": [ + "back: sleek, brownish-grey feathers", + "beak: thin, sharp, and dark-colored", + "belly: lighter grey plumage", + "breast: soft, greyish-white feathers", + "crown: dark grey or black head feathers", + "forehead: lighter grey feathered area above the eyes", + "eyes: small, round, and dark", + "legs: thin, long, and dark grey or black", + "wings: elongated, tapered, with brownish-grey feathers", + "nape: greyish-black feathered area at the back of the neck", + "tail: thin, elongated with darker grey feathers tipped in white", + "throat: lighter grey or white, slightly fluffy plumage" + ], + "American Pipit": [ + "back: streaked pale brown and gray", + "beak: slender, pointed, dark brown", + "belly: pale buff or white with fine streaks", + "breast: lightly streaked with buff or white", + "crown: brown with a gray central stripe", + "forehead: grayish or buff with slight streaks", + "eyes: dark brown with pale eyering", + "legs: dark, long, slender, with elongated toes", + "wings: dusky brown with buff edging on feathers", + "nape: grayish or brown with fine streaks", + "tail: dark brown with white outer tail feathers", + "throat: smooth, pale, and unmarked" + ], + "Whip-poor Will": [ + "back: brownish-gray with subtle patterns", + "beak: short, wide, and slightly hooked", + "belly: off-white with sparse gray markings", + "breast: grayish-brown with fine streaks", + "crown: mottled gray-brown with a central crest", + "forehead: pale gray-brown blending into the crown", + "eyes: large, dark, and surrounded by white feathers", + "legs: short and well-camouflaged", + "wings: long, pointed, and gray-brown with fine patterns", + "nape: gray-brown with fine streaks and mottling", + "tail: long, fan-shaped, with white outer feathers", + "throat: off-white with narrow gray-brown streaks" + ], + "Horned Puffin": [ + "back: blackish-blue feathers", + "beak: large, bright orange with a darker tip", + "belly: white feathered region", + "breast: white plumage, occasionally with black streaks", + "crown: black feathers extending to the nape", + "forehead: black feathers with horn-like extensions above the eyes", + "eyes: dark, expressive with a white ring around the iris", + "legs: short, orange, webbed feet for swimming", + "wings: dark, pointed, adapted for both flying and swimming", + "nape: black feathers merging with the crown", + "tail: short, black and white feathers", + "throat: white feathers transitioning to the breast area" + ], + "Common Raven": [ + "back: iridescent black feathers", + "beak: large and curved, dark in color", + "belly: sleek black feathers", + "breast: smooth black plumage", + "crown: shiny black feathers atop the head", + "forehead: black feathers near the beak", + "eyes: dark, piercing gaze", + "legs: dark, strong and featherless", + "wings: broad and black with finger-like feathers", + "nape: black feathers on the back part of the neck", + "tail: long, wedge-shaped black feathers", + "throat: jet black feathers tapering towards beak" + ], + "White-necked Raven": [ + "back: sleek black feathers", + "beak: strong, slightly curved, and black", + "belly: smooth black feathers", + "breast: black plumage, subtly glossy", + "crown: black, feathery crest", + "forehead: smooth black feathers meeting the beak", + "eyes: dark, intelligent gaze", + "legs: black, powerful, and scaly", + "wings: expansive black feathers, large span", + "nape: white neck feathers, distinct", + "tail: long black feathers, fanned shape", + "throat: black feathers transitioning to white" + ], + "American Redstart": [ + "back: olive-green with black streaks", + "beak: black and pointed", + "belly: bright yellow-orange", + "breast: black upper, yellow-orange lower", + "crown: black with orange patch", + "forehead: black and sleek", + "eyes: black, small and round", + "legs: black and thin", + "wings: black with orange patches", + "nape: olive-green with black streaks", + "tail: black with orange edges", + "throat: black with yellow-orange edges" + ], + "Geococcyx": [ + "back: elongated, earthy brown feathers", + "beak: long, curved, strong black beak", + "belly: sandy white, light feathering", + "breast: pale brown, soft feathers", + "crown: sleek dark blue-black crest", + "forehead: smooth, brown to blue-black transition", + "eyes: bright yellow, sharp gaze", + "legs: long, strong, light brown with zygodactyl feet", + "wings: lengthy, brown, barred with white", + "nape: light brown, narrow feathers", + "tail: long, banded with brown and white", + "throat: sandy white, delicate feathers" + ], + "Loggerhead Shrike": [ + "back: grayish-black upperparts", + "beak: stout, hooked black bill", + "belly: creamy-white underside", + "breast: lightly streaked, grayish-white chest", + "crown: dark gray, slightly raised head", + "forehead: light gray or white, merging with eye stripe", + "eyes: prominent black stripe, white eyebrows", + "legs: sturdy and dark gray", + "wings: black with prominent white patches", + "nape: smooth gray and white transition", + "tail: black with white outer feathers", + "throat: white or light gray, unmarked" + ], + "Great-Grey Shrike": [ + "back: slate-grey upperparts", + "beak: sturdy, hooked black bill", + "belly: pale-grey underparts", + "breast: cream-colored with slight streaking", + "crown: monochromatic-gray head", + "forehead: blending seamlessly into crown", + "eyes: conspicuous black bandit mask", + "legs: black, slender legs", + "wings: long, black-tipped grey wings", + "nape: uniformly grey continued from crown", + "tail: long, black, white-bordered tail feathers", + "throat: clean, whitish-grey throat area" + ], + "Baird Sparrow": [ + "back: light brown with darker streaks", + "beak: small and conical, dark in color", + "belly: pale gray or buff", + "breast: pale gray with faint streaks", + "crown: reddish-brown with gray streaks", + "forehead: pale gray or buff", + "eyes: small, dark", + "legs: thin and pinkish-brown", + "wings: brown with white bars", + "nape: reddish-brown with gray streaks", + "tail: short and notched, brown with white edges", + "throat: pale gray or buff" + ], + "Black-throated Sparrow": [ + "back: light brown with thin streaks", + "beak: dark, cone-shaped", + "belly: light gray-white", + "breast: light gray-white", + "crown: black and white striped", + "forehead: black small patch", + "eyes: dark and inconspicuous", + "legs: pale pinkish-gray", + "wings: brown with white edgings", + "nape: gray with black and white stripes", + "tail: brown with white corners", + "throat: black patch" + ], + "Brewer Sparrow": [ + "back: light brown with darker streaks", + "beak: short, sharp, conical and greyish", + "belly: creamy white with faint brown streaking", + "breast: pale brown with diffused streaks", + "crown: brown with grey central stripe", + "forehead: greyish-brown, slightly paler than crown", + "eyes: black with thin white eye-ring", + "legs: pale pinkish-grey, thin and slender", + "wings: brown with light buffy wing bars", + "nape: brown with faint streaks, continuous with crown", + "tail: brown and medium length, notched tip", + "throat: pale greyish-white, unmarked" + ], + "Chipping Sparrow": [ + "back: streaked with brown and black", + "beak: dark, conical shaped", + "belly: white or pale gray", + "breast: plain grayish-white", + "crown: chestnut-colored with central stripe", + "forehead: black stripe at base of beak", + "eyes: dark with a white eye-ring", + "legs: pinkish-brown and slender", + "wings: brown with dark bars and white edging", + "nape: grayish-brown", + "tail: dark with white outer edges", + "throat: white or light gray" + ], + "Clay-colored Sparrow": [ + "back: reddish-brown hue with white stripes", + "beak: small and conical, dark gray", + "belly: pale and light grayish-white", + "breast: slightly streaked, light brown", + "crown: patterned with grey, brown, and white stripes", + "forehead: pale gray with thin brown stripes", + "eyes: dark with thin white eyering", + "legs: slender, grayish-brown", + "wings: rich brown with white wing bars", + "nape: grayish-brown with light stripes", + "tail: dark brown with white outer edges", + "throat: clean white, unmarked" + ], + "House Sparrow": [ + "back: brown and black streaked feathers", + "beak: short, strong, conical-shaped", + "belly: pale cream or white feathers", + "breast: light grey or beige feathering", + "crown: reddish-brown color with streaks", + "forehead: pale grey tone", + "eyes: small, dark, round pupils", + "legs: thin, brown, scaly texture", + "wings: brown, black, and white feathers with wing bars", + "nape: brownish-grey feathers", + "tail: fan-shaped, brown feathers with white edges", + "throat: cream-colored, sometimes with a black patch (in males" + ], + "Field Sparrow": [ + "back: streaked brown and gray", + "beak: short and conical, pinkish", + "belly: whitish with brown streaks", + "breast: light brown with dark spots", + "crown: reddish-brown with gray stripes", + "forehead: grayish-brown with fine streaks", + "eyes: dark, surrounded by white eye-ring", + "legs: pale pinkish-brown", + "wings: brown with white wing bars", + "nape: gray with reddish-brown streaks", + "tail: brown with distinct white edges", + "throat: white, bordered by dark streaks" + ], + "Fox Sparrow": [ + "back: reddish-brown with gray and dark streaks", + "beak: short, thick and conical", + "belly: grayish-white with sparse streaks", + "breast: heavily streaked with reddish-brown", + "crown: rufous cap with dark streaks", + "forehead: light brown with gray patches", + "eyes: small, black, and alert", + "legs: long, strong, and pinkish", + "wings: reddish-brown with dark brown bars", + "nape: brownish-gray with streaks", + "tail: long, reddish-brown, and tapered", + "throat: white with some streaking" + ], + "Grasshopper Sparrow": [ + "back: brownish-gray with streaks", + "beak: short, conical, and pale", + "belly: whitish, unmarked", + "breast: buffy with streaks", + "crown: reddish-brown with a central stripe", + "forehead: pale buffy-yellow", + "eyes: small and dark", + "legs: thin, delicate, and pale", + "wings: brownish-gray with white wing bars", + "nape: streaked brown and gray", + "tail: short with a white outer edge", + "throat: pale buffy-yellow" + ], + "Harris Sparrow": [ + "back: brownish-gray feathers", + "beak: short, cone-shaped, dark gray", + "belly: light brownish-gray feathers", + "breast: reddish-brown with dark streaks", + "crown: dark black or brownish-black feathers", + "forehead: black or brownish-black feathers", + "eyes: small, black, surrounded by a thin white eyering", + "legs: sturdy, dark gray", + "wings: brownish-gray with white-edged feathers", + "nape: grayish-brown feathers", + "tail: brownish-gray feathers with white edges", + "throat: pale gray with fine black streaks" + ], + "Henslow Sparrow": [ + "back: streaked with reddish-brown and black", + "beak: short and conical, pale pinkish-gray", + "belly: pale grayish-white", + "breast: grayish-white with faint streaks", + "crown: reddish-brown with an olive stripe on the sides", + "forehead: dull olive-yellow", + "eyes: dark with a pale eye-ring", + "legs: sturdy, pinkish-gray", + "wings: short and round, with reddish-brown and dark gray feathers", + "nape: reddish-brown", + "tail: short and square, with dark reddish-brown feathers", + "throat: whitish-gray" + ], + "Le-Conte Sparrow": [ + "back: streaked with reddish-brown and gray", + "beak: short, cone-shaped, and pinkish-gray", + "belly: white with faint streaks", + "breast: buff-colored with dark streaks", + "crown: reddish-brown with central gray stripe", + "forehead: reddish-brown with a gray stripe above the eyes", + "eyes: black, surrounded by white eyering", + "legs: thin, pinkish-brown", + "wings: brownish-gray with white-edged feathers", + "nape: reddish-brown with gray streaks", + "tail: brownish-gray with white outer tail feathers", + "throat: white with thin dark streaks" + ], + "Lincoln Sparrow": [ + "back: streaked brown and black", + "beak: short and conical", + "belly: creamy white", + "breast: buff-colored with fine streaks", + "crown: rusty red with fine, dark gray stripes", + "forehead: chestnut-colored", + "eyes: small, dark, and bright", + "legs: pinkish-brown", + "wings: dark brown with white bars", + "nape: gray with black streaks", + "tail: dark brown and notched", + "throat: white with buff-colored markings" + ], + "Nelson-Sharp-tailed Sparrow": [ + "back: brownish-gray with streaks", + "beak: short and conical, grayish color", + "belly: whitish with light streaks", + "breast: pale, grayish-brown with streaks", + "crown:rusty brown with grayish streaks", + "forehead: pale gray or buffy", + "eyes: dark brown with a faint pale eye-ring", + "legs: long and thin, pale yellowish-brown", + "wings: dark brown with buffy white edges", + "nape: grayish-brown with fine streaks", + "tail: pointed and long, dark brown with pale edges", + "throat: whitish or pale buff, unmarked" + ], + "Savannah Sparrow": [ + "back: streaked brown and white, blending in with grassy surroundings", + "beak: short, conical, and pale-colored for cracking seeds", + "belly: white with faint brown streaks, unassuming appearance", + "breast: creamy white with brown streaks, slightly round", + "crown: rusty-colored with dark brown streaks, distinct streaking", + "forehead: pale brown, gradually blending into crown detail", + "eyes: small, dark, and watchful, surrounded by whitish eye-ring", + "legs: pale pink, slender, and perfectly adapted for perching", + "wings: brown, rounded with white and cream-colored wingbars", + "nape: brown with dark streaks, strong color for camouflage", + "tail: notched, brownish-black, with white outer feathers for maneuvering", + "throat: white, clean-looking, contrasting with streaked breast" + ], + "Seaside Sparrow": [ + "back: olive-brown with streaks", + "beak: conical and sharp", + "belly: white with sparse streaks", + "breast: greyish-white with dark streaks", + "crown: olive-brown with dark central stripe", + "forehead: greyish-white", + "eyes: dark, round, and expressive", + "legs: slender and dark", + "wings: olive-brown with faint bars", + "nape: olive-brown with slight streaks", + "tail: short and pointed", + "throat: white and unstreaked" + ], + "Song Sparrow": [ + "back: brown, streaked with dark, narrow lines", + "beak: short, pointed, dark gray", + "belly: light, creamy white with some streaks", + "breast: buff-white, heavily streaked with dark brown", + "crown: reddish-brown with grayish streaks", + "forehead: grayish-brown with slight streaking", + "eyes: small, dark, beady, surrounded by a pale eye-ring", + "legs: sturdy, pinkish-brown, with three forward-facing toes and one rear-facing toe", + "wings: brown, spotted with lighter, reddish-brown edges", + "nape: light brown with darker streaks", + "tail: brown, relatively short, with faint reddish-brown edges", + "throat: creamy white, unmarked" + ], + "Tree Sparrow": [ + "back: brownish-grey with black streaks", + "beak: short, conical, and dark grey", + "belly: pale grey with brownish tinge", + "breast: pale grey with brownish tinge", + "crown: chestnut brown with white cheeks", + "forehead: chestnut brown, central streak", + "eyes: round and shiny-black", + "legs: pinkish-brown, slender and strong", + "wings: brown-black with white wing bars", + "nape: chestnut brown with black streaks", + "tail: dark brown with white outer edges", + "throat: pale grey, clear and unmarked" + ], + "Vesper Sparrow": [ + "back: streaked with brown and buff tones", + "beak: small, conical, and pale pinkish-gray", + "belly: white with grayish-brown flanks", + "breast: creamy white with fine streaks and spots", + "crown: brown with grayish-white central stripe", + "forehead: light buff color, blending into crown", + "eyes: dark and beady, with pale eyering", + "legs: slender, pale pinkish-gray", + "wings: long and pointed, with brown and buff streaking", + "nape: brownish-gray with fine streaks", + "tail: short with white outer feathers and dark inner feathers", + "throat: clean white, bordered by streaked malar stripes" + ], + "White-crowned Sparrow": [ + "back: streaked brown and gray feathers", + "beak: small, conical, pale pinkish-gray", + "belly: light to medium gray", + "breast: plain gray, unmarked", + "crown: black and white stripes", + "forehead: black stripe", + "eyes: dark, round, framed by white stripe", + "legs: pinkish-gray, thin", + "wings: brown with white wing bars", + "nape: gray with black streaks", + "tail: dark brown, medium length", + "throat: pale gray, unmarked" + ], + "White-throated Sparrow": [ + "back: brownish-gray feathers", + "beak: short, cone-shaped", + "belly: off-white color", + "breast: grayish-white plumage", + "crown: rufous stripes with a central white stripe", + "forehead: black and white striped", + "eyes: dark, round, framed by light eyestripe", + "legs: slender, pinkish-brown", + "wings: brown with darker brown and white markings", + "nape: gray-brown with rufous streaks", + "tail: rounded, brown with white outer feathers", + "throat: bright white patch" + ], + "Cape-Glossy Starling": [ + "back: iridescent dark blue-green", + "beak: sharp, black, and slightly curved", + "belly: bright blue and glossy", + "breast: shimmering blue-green", + "crown: dark glossy blue with purple sheen", + "forehead: shiny blue-green, smoothly blending with the crown", + "eyes: bright orange encircled with black feathers", + "legs: long, slender, and grey-black", + "wings: iridescent blue-green with a metallic sheen", + "nape: glossy dark blue-green blending with crown", + "tail: long, shiny blue-green with a slight fork", + "throat: vibrant blue, subtly merging with the breast" + ], + "Bank Swallow": [ + "back: brownish-grey plumage", + "beak: short and pointed", + "belly: white feathering", + "breast: light-colored, slightly streaked", + "crown: dark brown, smoothly rounded", + "forehead: white with brown streaks", + "eyes: small and black", + "legs: short and sturdy", + "wings: elongated, pointed edges", + "nape: greyish-brown, well-defined", + "tail: short, forked, with white edges", + "throat: white with a slight dark band" + ], + "Barn Swallow": [ + "back: sleek, iridescent blue-black feathers", + "beak: short, thin, black, and slightly curved", + "belly: buff to white with some pale streaks", + "breast: pale orange to brick-red hue", + "crown: shiny, dark blue-black color", + "forehead: blue-black feathers extending to the eyes", + "eyes: small, round, and black", + "legs: short, strong, pinkish to reddish-brown", + "wings: long, narrow, pointed, with dark blue-black feathers", + "nape: blue-black, blending into the back", + "tail: deeply forked, flowing streamer-like feathers", + "throat: rich chestnut shade, sharply contrasting with the breast" + ], + "Cliff Swallow": [ + "back: slate-blue upper body", + "beak: short, dark, and slightly hooked", + "belly: creamy white underside", + "breast: buff-colored chest", + "crown: dark blue, rounded head", + "forehead: chestnut-brown patch", + "eyes: small, dark, piercing gaze", + "legs: petite black limbs", + "wings: silver-edged, pointed tips", + "nape: black collar at base of neck", + "tail: forked, dark, short tail feathers", + "throat: buff-colored, leading to chest" + ], + "Tree Swallow": [ + "back: iridescent blue-green upperparts", + "beak: small, thin and sleek black", + "belly: bright white underparts", + "breast: white, smoothly curving into belly", + "crown: vibrant blue-green with a slight sheen", + "forehead: iridescent blue-green transitioning into the crown", + "eyes: dark, slightly almond-shaped, centered on the head", + "legs: short, thin, and black with tiny, clawed feet", + "wings: long, pointed, and blue-green with black flight feathers", + "nape: sleek blue-green connecting the crown and back", + "tail: slightly forked, black with blue-green tint, and white outer edges", + "throat: white, curving up around cheeks" + ], + "Scarlet Tanager": [ + "back: vibrant red with black streaks", + "beak: short, thick, and grayish-black", + "belly: bright scarlet red", + "breast: rich crimson color", + "crown: deep scarlet hue", + "forehead: intense red shade", + "eyes: small, dark and expressive", + "legs: grayish-black and sturdy", + "wings: black with red highlights", + "nape: red transitioning to black", + "tail: long, black, and fan-shaped", + "throat: brilliant red hue" + ], + "Summer Tanager": [ + "back: vibrant greenish-yellow hue", + "beak: thick, pale and cone-shaped", + "belly: bright yellow tone", + "breast: vivid orange-yellow color", + "crown: intense reddish-orange shade", + "forehead: fiery red hue", + "eyes: small, dark, with a piercing gaze", + "legs: slender and grayish-blue", + "wings: deep red with dark secondary feathers", + "nape: flush of red-orange blending into green", + "tail: elongated, tapering, crimson feathers", + "throat: radiant red chestnut shade" + ], + "Artic Tern": [ + "back: sleek and streamlined, light grey feathers", + "beak: sharp and slender, reddish-orange", + "belly: snowy white feathers, fluffy", + "breast: smooth, white feathers, curved", + "crown: distinct black cap, covers head", + "forehead: white and connected to the black cap", + "eyes: beady, black, alert gaze", + "legs: slender, red-orange, webbed feet", + "wings: pointed, long, greyish-white", + "nape: transition between black cap and light grey feathers", + "tail: forked, long, white-edged feathers", + "throat: white and smooth, connects to the breast" + ], + "Black Tern": [ + "back: smooth dark gray feathers", + "beak: thin, sharp, and black", + "belly: light gray to white plumage", + "breast: white feathers with a hint of gray", + "crown: sleek black cap on the head", + "forehead: black feathers covering the front of the head", + "eyes: small, dark, and round, with a noticeable white eye-ring", + "legs: slender, red-orange color, with webbed feet", + "wings: elongated, dark gray with black edges", + "nape: black feathers extending down the back of the neck", + "tail: forked and dark gray with black central feathers", + "throat: white feathers with a slight gray hue" + ], + "Caspian Tern": [ + "back: sleek and gray", + "beak: long, sharp, and red", + "belly: smooth and white", + "breast: white with a slight gray shimmer", + "crown: black cap extending to the nape", + "forehead: black forehead blending into the crown", + "eyes: dark, alert, and well-spaced", + "legs: short, orange, and sturdy", + "wings: broad, tapering, and gray", + "nape: black, continuous with the crown", + "tail: narrow and forked, white with dark edges", + "throat: white and smooth" + ], + "Common Tern": [ + "back: sleek, light grey feathers", + "beak: sharp, pointed, and orange-red", + "belly: smooth, white plumage", + "breast: light grey-white feathers", + "crown: black cap with white forehead", + "forehead: white patch above the beak", + "eyes: small, dark, and well-defined", + "legs: long, slender, and orange-red", + "wings: long, tapered, with dark-tipped primaries", + "nape: light grey feathers connecting to the crown", + "tail: deeply forked, white and grey feathers", + "throat: white, unmarked feathers" + ], + "Elegant Tern": [ + "back: sleek, grayish-white feathers", + "beak: long, slender, and sharp, bright orange-yellow", + "belly: soft, white plumes", + "breast: slightly curved, white and smooth", + "crown: contrasting black cap, sleek feathers", + "forehead: smooth, white feathers blending into the black crown", + "eyes: round, black, and alert", + "legs: slender, charcoal colored, webbed feet", + "wings: elongated, aerodynamic, grayish-white with black outline", + "nape: creamy, white feathers transitioning into the black crown", + "tail: forked, long, white with black streaks", + "throat: white, smooth feathers with a tapered shape" + ], + "Least Tern": [ + "back: light grey feathers", + "beak: slender black beak", + "belly: white feathered area", + "breast: pale grey plumage", + "crown: black cap on head", + "forehead: white band above beak", + "eyes: black eyes on either side of head", + "legs: thin orange legs", + "wings: pointed wings with grey and white feathers", + "nape: where the black crown meets the grey back", + "tail: forked with white and grey feathers", + "throat: white and unmarked" + ], + "Green-tailed Towhee": [ + "back: olive green feathers", + "beak: short, stout, and dark gray", + "belly: pale white with rufous undertones", + "breast: reddish-brown wash", + "crown: reddish-brown with darker streaks", + "forehead: similar to the crown, with reddish-brown and darker streaks", + "eyes: dark, beady, surrounded by white eyering", + "legs: long, slender, and grayish", + "wings: olive green with rufous and black markings", + "nape: reddish-brown blending into olive green", + "tail: long, dark green with reddish-brown undertail coverts", + "throat: white with black streaks on the sides" + ], + "Brown Thrasher": [ + "back: rich reddish-brown color, streaked with dark markings", + "beak: long, slightly curved, and pale yellowish", + "belly: buff-white with heavy brown streaks", + "breast: creamy white with bold dark spots", + "crown: smooth reddish-brown with slight crest", + "forehead: reddish-brown, blending into crown", + "eyes: bright yellow, surrounded by faint white eyering", + "legs: long, grayish-blue, with strong toes", + "wings: reddish-brown with bold dark bars and white wingtips", + "nape: reddish-brown, blending into back and crown", + "tail: long, reddish-brown with white tips and distinct dark bands", + "throat: paler with faint brown streaks" + ], + "Sage Thrasher": [ + "back: light brown with streaky patterns", + "beak: thin, slightly curved, and dark", + "belly: white with black streaks", + "breast: pale with dark spotting", + "crown: greyish-brown color", + "forehead: light brown, blending into the crown", + "eyes: dark, with thin white eye-ring", + "legs: long and greyish", + "wings: brown with white and black markings, pale edging", + "nape: light brown, blending into the back", + "tail: black with white outer edges, slightly forked", + "throat: white with faint streaking" + ], + "Black-capped Vireo": [ + "back: olive-green feathers", + "beak: short, slightly hooked", + "belly: white with faint streaks", + "breast: pale-gray blending into white", + "crown: black with white streaks", + "forehead: black that tapers into the crown", + "eyes: black, framed by white eyering", + "legs: gray-blue and slender", + "wings: olive-green with black and white markings", + "nape: black to olive-green transitioning", + "tail: dark with white outer feathers", + "throat: white, extending to the sides" + ], + "Blue-headed Vireo": [ + "back: olive-green feathers", + "beak: short, hooked, dark gray", + "belly: white with yellow wash", + "breast: white with subtle streaks", + "crown: blue-gray fading to green", + "forehead: blue-gray with black border", + "eyes: deep black with white eye-ring", + "legs: thin and grayish-blue", + "wings: olive-green with black and white-edged feathers", + "nape: gently sloping, olive-green", + "tail: olive-green with black and white elements", + "throat: white with light streaks" + ], + "Philadelphia Vireo": [ + "back: olive-green with slight yellow tinge", + "beak: short, hooked, and dark grey", + "belly: pale yellow-white", + "breast: soft yellow with olive tones", + "crown: olive-green fading into grayish-white forehead", + "forehead: grayish-white or off-white", + "eyes: dark with white eye-rings", + "legs: thin and pale blue-gray", + "wings: olive-green with darker feather edging", + "nape: faint yellow-green hue", + "tail: olive-green with darker feathers", + "throat: bright yellow with olive tinge" + ], + "Red-eyed Vireo": [ + "back: olive-green feathers", + "beak: short, hooked, grayish", + "belly: white and soft", + "breast: whitish with faint greenish wash", + "crown: gray with narrow white eye stripe", + "forehead: gray with slight dark line", + "eyes: piercing red with white eye-ring", + "legs: bluish-gray and slender", + "wings: olive-green with white wing-bars", + "nape: grayish-olive coloration", + "tail: olive-green with dark tip", + "throat: clean white, sharply contrasted" + ], + "Warbling Vireo": [ + "back: olive-green with subtle streaks", + "beak: short, slightly hooked, and pale", + "belly: white with a hint of yellow", + "breast: pale yellow fading to white", + "crown: grayish-olive with a slight crest", + "forehead: grayish-olive, smooth texture", + "eyes: dark with thin white eye-ring", + "legs: sturdy, blue-gray in color", + "wings: olive-green with two white wing bars", + "nape: grayish-olive, streaked texture", + "tail: olive-green, slightly forked", + "throat: white with a hint of yellow" + ], + "White-eyed Vireo": [ + "back: olive-green upper body", + "beak: sturdy, slightly hooked", + "belly: whitish lower body", + "breast: yellowish-white, faint streaks", + "crown: grayish-olive, slight crest", + "forehead: olive-gray, continuous with crown", + "eyes: white eyering, striking appearance", + "legs: pale blue-gray, strong", + "wings: olive-green, white wingbars", + "nape: olive-gray, matches crown", + "tail: olive-green, dark edges", + "throat: bright yellow, contrasting" + ], + "Yellow-throated Vireo": [ + "back: olive-green feathers", + "beak: short, stout, and hooked", + "belly: white with slight yellow wash", + "breast: pale gray with yellow tint", + "crown: olive-green with faint gray streaks", + "forehead: grayish with slight olive tint", + "eyes: large and dark, with white eye ring", + "legs: bluish-gray and sturdy", + "wings: olive-green with white wing bars", + "nape: olive-green with gray streaks", + "tail: olive-green with white outer feathers", + "throat: bright yellow patch" + ], + "Bay-breasted Warbler": [ + "back: olive-green with black streaks", + "beak: short, thin, and pointed", + "belly: creamy white with subtle yellow wash", + "breast: bright yellow-orange with black streaks", + "crown: olive-green with faint black crown stripe", + "forehead: yellowish-green", + "eyes: dark with thin white eye-ring", + "legs: pale pinkish-gray", + "wings: blue-gray with white wing bars", + "nape: olive-green", + "tail: blue-gray with white outer tail feathers", + "throat: yellow-orange" + ], + "Black-and-white Warbler": [ + "back: black and white striped pattern", + "beak: slender and black", + "belly: mostly white with black streaks", + "breast: white with black stripes", + "crown: black and white striped", + "forehead: white with thin black stripes", + "eyes: small, black, surrounded by white feathers", + "legs: long and grayish", + "wings: layered black and white feathers", + "nape: black and white striped", + "tail: black feathers with white edges", + "throat: white with some black streaks" + ], + "Black-throated-Blue Warbler": [ + "back: deep blue feathers", + "beak: dark, pointed bill", + "belly: pristine white", + "breast: vivid blue hue", + "crown: dark blue, sleek", + "forehead: brilliant blue plumage", + "eyes: alert, dark eyes", + "legs: thin, black legs", + "wings: blue with white accents", + "nape: blue, blending with crown", + "tail: dark blue, short", + "throat: distinct black patch" + ], + "Blue-winged Warbler": [ + "back: olive-green with subtle streaks", + "beak: sharp, black, and slender", + "belly: yellow, unblemished", + "breast: yellow, with fine black streaks", + "crown: bright yellow, with bold stripes", + "forehead: pale yellow, unmarked", + "eyes: dark, with bold white eye-ring", + "legs: pinkish, thin and long", + "wings: vibrant blue, with white and black bars", + "nape: olive-green, with faint striping", + "tail: dark, with blue edges and white spots", + "throat: bright yellow, with dark streaks" + ], + "Canada Warbler": [ + "back: olive-green with streaks", + "beak: short, slender, and pointy", + "belly: bright yellow", + "breast: yellow with black streaks", + "crown: grayish-blue", + "forehead: blue-gray", + "eyes: large, prominent, surrounded by yellow spectacles", + "legs: pale pinkish-brown", + "wings: rounded, blue-gray with two white wing bars", + "nape: grayish-blue", + "tail: dark with white undertail coverts", + "throat: bright yellow" + ], + "Cape-May Warbler": [ + "back: bright yellow with bold black streaks", + "beak: thin, sharp, and black", + "belly: yellow with black streaks on sides", + "breast: yellow with black streaks", + "crown: yellow with a black cap", + "forehead: bright yellow", + "eyes: bold black eye stripe, white crescent below", + "legs: dark gray or black", + "wings: black with white patches and edging", + "nape: yellow with black streaks", + "tail: black with white edges", + "throat: brilliant yellow" + ], + "Cerulean Warbler": [ + "back: deep blue with streaks of black", + "beak: small, pointed, and black", + "belly: white and unmarked", + "breast: blue-gray with dark streaks", + "crown: bright cerulean blue", + "forehead: blue and unmarked", + "eyes: black, round and tiny", + "legs: dark gray and slender", + "wings: cerulean blue with black edging", + "nape: blue, similar to the crown", + "tail: blue-black with white edges", + "throat: clean white contrasting with blue upperparts" + ], + "Chestnut-sided Warbler": [ + "back: olive-green with streaks", + "beak: thin, pointy, and black", + "belly: white and unmarked", + "breast: white with distinct chestnut streaks", + "crown: yellow with black stripe", + "forehead: bright yellow", + "eyes: black with white eye-ring", + "legs: pale pinkish-brown", + "wings: grayish-blue with two white wing-bars", + "nape: olive-green", + "tail: grayish-blue, white-edged feathers", + "throat: bright white" + ], + "Golden-winged Warbler": [ + "back: olive-green with light streaks", + "beak: black, thin, and pointed", + "belly: white with faint yellow hue", + "breast: white with light yellow patches", + "crown: bright yellow with black border", + "forehead: brilliant yellow", + "eyes: black, with faint white eye rings", + "legs: blueish-gray and slender", + "wings: gold and black, with distinctive white wing bars", + "nape: olive-green with light streaks", + "tail: dark gray, with white outer tail feathers", + "throat: bright yellow" + ], + "Hooded Warbler": [ + "back: olive-green with faint, darker streaks", + "beak: short, sharp, and black", + "belly: bright yellow, unmarked", + "breast: vibrant yellow, slightly paler than belly", + "crown: striking black hood extending to nape", + "forehead: bright yellow, contrasting with black hood", + "eyes: dark, beady, encircled by thin white eye-ring", + "legs: thin, pale, and strong", + "wings: olive-green with two white wing bands", + "nape: black hood extends from the crown", + "tail: slightly forked, olive-green with white outer tail feathers", + "throat: bright yellow, matching the belly and breast" + ], + "Kentucky Warbler": [ + "back: olive-green feathers", + "beak: thin, pointed, and black", + "belly: bright yellow coloring", + "breast: vivid yellow with black streaks", + "crown: dark olive-green", + "forehead: black extending to the eyes", + "eyes: dark, round, and encircled with black", + "legs: sturdy and pinkish-gray", + "wings: olive-green with gray edges", + "nape: olive-green blending with the back", + "tail: olive color with a dark center and white outer feathers", + "throat: bright yellow and unmarked" + ], + "Magnolia Warbler": [ + "back: yellow with black streaks", + "beak: thin and pointed, blackish-gray", + "belly: bright yellow", + "breast: yellow with bold black streaks", + "crown: black with yellow streaks", + "forehead: black with yellow patches", + "eyes: large, dark, with bold white eyering", + "legs: long, dark gray, slender", + "wings: black with two bold white wingbars", + "nape: black with yellow streaks", + "tail: black with bold white patches", + "throat: bright yellow" + ], + "Mourning Warbler": [ + "back: olive-green upper body", + "beak: blackish, thin, pointed", + "belly: whitish-yellow underside", + "breast: grayish-blue chest", + "crown: olive-green, unmarked", + "forehead: olive-green transition to face", + "eyes: white eye-rings, black pupils", + "legs: pinkish-brown", + "wings: olive-green with faint wing bars", + "nape: yellowish-olive-green", + "tail: olive-green with darker edges", + "throat: bright yellow, unmarked" + ], + "Myrtle Warbler": [ + "back: yellow-tinged green, some dark streaks", + "beak: thin, sharp, black", + "belly: bright yellow with faint gray streaking", + "breast: bright yellow, can have thin gray streaks", + "crown: yellowish-green, blue-gray edges", + "forehead: bright yellow mixed with green", + "eyes: dark, small, surrounded by faint eye-ring", + "legs: thin, pale, long toes", + "wings: black with white wing bars and yellow edges", + "nape: greenish-yellow, blue-gray edges", + "tail: dark, forked with white patches on outer tail feathers", + "throat: bright yellow, unmarked" + ], + "Nashville Warbler": [ + "back: olive-green feathers", + "beak: thin, sharp, grey-black", + "belly: white with pale yellow tint", + "breast: bright yellow plumage", + "crown: blue-grey with distinct eyeline", + "forehead: grey-blue coloring", + "eyes: small, black, centered", + "legs: long, grey-black", + "wings: olive-green with white wingbars", + "nape: olive-green shading to grey", + "tail: short, olive-green with white edges", + "throat: bright yellow and unmarked" + ], + "Orange-crowned Warbler": [ + "back: olive-green with subtle streaks", + "beak: thin, pointed, and dark", + "belly: pale yellow to grayish-white", + "breast: light yellow with faint streaks", + "crown: hidden orange patch with olive surrounding", + "forehead: olive-green blending into crown", + "eyes: small, black, with pale eyering", + "legs: long, slender, and pale", + "wings: olive-green with two faint wingbars", + "nape: olive-green, continuous with back", + "tail: olive-green, slightly forked, with white outer edges", + "throat: pale yellow, transitioning to breast color" + ], + "Palm Warbler": [ + "back: olive-brown back with streaks", + "beak: short and sharp, black-colored", + "belly: creamy white with faint streaks", + "breast: bright yellow with dark streaks", + "crown: orange-yellow with pale edges", + "forehead: yellowish with faint markings", + "eyes: small and dark, framed by eye-ring", + "legs: long and skinny, with blackish coloring", + "wings: olive-brown with white-edged feathers", + "nape: olive-brown, blending into the back", + "tail: short and dark, with white outer feathers", + "throat: bright yellow, blending into the breast" + ], + "Pine Warbler": [ + "back: olive-green with faint streaks", + "beak: slender, pointed, dark gray", + "belly: pale yellow to white", + "breast: bright yellow with fine streaks", + "crown: greenish-yellow, unmarked", + "forehead: slightly brighter yellow", + "eyes: black with narrow white eye-ring", + "legs: gray-blue, slender", + "wings: grayish-blue with two white wing bars", + "nape: olive-green, unmarked", + "tail: gray-blue with white outer feathers", + "throat: bright yellow, unmarked" + ], + "Prairie Warbler": [ + "back: olive-green with faint streaks", + "beak: small and pointed", + "belly: yellowish with light brown streaks", + "breast: bright yellow with faint streaks", + "crown: yellowish-green", + "forehead: yellow with black markings", + "eyes: dark with thin white eye-ring", + "legs: pinkish-brown", + "wings: dark grayish-brown with white streaks", + "nape: greenish-yellow", + "tail: dark grayish-brown with white edges", + "throat: bright yellow" + ], + "Prothonotary Warbler": [ + "back: bright yellow-green", + "beak: black, thin, pointed", + "belly: vibrant yellow", + "breast: vivid yellow", + "crown: golden-yellow", + "forehead: striking yellow", + "eyes: black bead with white ring", + "legs: bluish-gray", + "wings: blue-gray with white bars", + "nape: yellow-greenish", + "tail: blue-gray with white edges", + "throat: bright yellow" + ], + "Swainson Warbler": [ + "back: olive-brown with subtle streaks", + "beak: relatively long and curved", + "belly: pale buff-white", + "breast: light, subtly-streaked olive-brown", + "crown: rusty reddish-brown", + "forehead: slightly lighter rusty reddish-brown", + "eyes: dark with faint white eye-ring", + "legs: pale and slender", + "wings: olive-brown, edged with rust color", + "nape: olive-brown blending into crown", + "tail: short and rounded with rust-colored edges", + "throat: whitish, sometimes with light brown streaks" + ], + "Tennessee Warbler": [ + "back: olive-green with light streaks", + "beak: thin and pointed, dark gray", + "belly: white or pale yellow", + "breast: pale grayish-yellow", + "crown: olive-green with a darker cap", + "forehead: light olive-green", + "eyes: dark brown with white eye-ring", + "legs: pinkish-gray, slender", + "wings: olive-green with two white wing bars", + "nape: olive-green, blending into the crown", + "tail: dark with white outer tail feathers", + "throat: pale grayish-yellow, similar to the breast" + ], + "Wilson Warbler": [ + "back: vibrant yellow-green with light stripes", + "beak: sharp and slender, black in color", + "belly: bright yellow, unmarked", + "breast: yellow with thin dark streaks", + "crown: black on males, olive on females", + "forehead: intense yellow, distinct from the crown", + "eyes: small and black, with white eye-ring", + "legs: thin and pale, with sharp black claws", + "wings: olive-green with darker edges, two white wing bars", + "nape: yellow-green, connects with the crown", + "tail: short and square, olive-green with white patches", + "throat: yellow, blends seamlessly with the breast" + ], + "Worm-eating Warbler": [ + "back: olive-green feathers with faint streaks", + "beak: sharp, pointed, and slim for catching worms", + "belly: pale yellowish-white underside", + "breast: bright yellow feathers with light streaks", + "crown: olive-green color, with dark streaks", + "forehead: yellowish-olive hue merging into the crown", + "eyes: dark and beady, surrounded by pale eye-ring", + "legs: slender and pinkish-brown", + "wings: olive-green, with darker flight feathers and white wingbars", + "nape: olive-green color blending into the back", + "tail: relatively short, olive-green with dark tips", + "throat: bright yellow, with streaks on either side" + ], + "Yellow Warbler": [ + "back: bright yellow, sleek feathers", + "beak: slender, pointed, black", + "belly: light yellow, smooth feathers", + "breast: vibrant yellow, unmarked", + "crown: golden-yellow, slightly raised", + "forehead: bright yellow, unmarked", + "eyes: dark, rounded, alert", + "legs: thin and delicate, black", + "wings: yellow with black stripes, agile", + "nape: vibrant yellow, unmarked", + "tail: yellow with black-edged feathers, lovely fan shape", + "throat: rich yellow, sleek feathers" + ], + "Northern Waterthrush": [ + "back: olive-brown with fine streaks", + "beak: thin and pointed", + "belly: pale with dark streaks", + "breast: creamy-white with bold streaks", + "crown: olive-brown with faint stripes", + "forehead: olive-brown and slightly flat", + "eyes: dark with prominent white eyering", + "legs: pinkish or flesh-colored", + "wings: olive-brown with faint wing bars", + "nape: olive-brown, faintly streaked", + "tail: olive-brown with subtle markings", + "throat: white and unmarked" + ], + "Louisiana Waterthrush": [ + "back: olive-brown with streaks", + "beak: thin, pointed, and dark", + "belly: white with dark streaks", + "breast: creamy white, streaked with brown", + "crown: olive-brown, striped", + "forehead: yellowish-brown, flat", + "eyes: dark with thin, pale eyering", + "legs: pinkish-brown, long", + "wings: olive-brown, short, with white spots", + "nape: olive-brown, slightly streaked", + "tail: dark brown, slightly forked", + "throat: white, unmarked" + ], + "Bohemian Waxwing": [ + "back: silky gray with subtle brown hue", + "beak: sharp and dark, slightly curved", + "belly: pale yellow or light gray", + "breast: warm reddish-brown with soft gray gradient", + "crown: plush crest in a gray hue", + "forehead: bright yellow band", + "eyes: round, black, and alert", + "legs: sturdy dark gray with sharp claws", + "wings: slate gray with elegant white and red tips", + "nape: smooth blend of gray and brown tones", + "tail: short tapering with a bold yellow band", + "throat: soft beige transitioning to chestnut breast" + ], + "Cedar Waxwing": [ + "back: smooth, sleek grayish-brown", + "beak: small, black, and pointed", + "belly: soft yellow with light gray", + "breast: pale gray, blending to yellow", + "crown: sleek, high-ridged crest", + "forehead: smooth, blending into crest", + "eyes: dark black, piercing gaze", + "legs: dark, slender, and strong", + "wings: gray with red waxy tips", + "nape: gray-brown, sleek, and smooth", + "tail: short, squared-off, with yellow band", + "throat: light gray, unmarked, blending to chest" + ], + "American-Three-toed Woodpecker": [ + "back: black and white striped pattern", + "beak: straight, chisel-shaped, black", + "belly: white with faint barring", + "breast: white with minimal markings", + "crown: black with yellow patch in males", + "forehead: white, blending into crown", + "eyes: dark, encircled by white", + "legs: short, grayish with three toes", + "wings: black with large white patches", + "nape: black, blending into back", + "tail: black with white outer feathers", + "throat: white, bordered by black stripes" + ], + "Pileated Woodpecker": [ + "back: black feathers with white stripes", + "beak: long, strong, chisel-shaped", + "belly: white with black streaks", + "breast: black and white striped", + "crown: bright red crest", + "forehead: red with a black border", + "eyes: small, black, and alert", + "legs: powerful with gray coloring", + "wings: black with white stripes and large white patches", + "nape: red topped with black feathers", + "tail: black with white accents", + "throat: white with black striping" + ], + "Red-bellied Woodpecker": [ + "back: black and white striped pattern", + "beak: long, chisel-like, and light grey", + "belly: pale, reddish hue", + "breast: white and slightly speckled", + "crown: bright red patch", + "forehead: white or pale gray", + "eyes: black with white surrounding feathers", + "legs: sturdy and grey", + "wings: black with white spots", + "nape: black and white striped", + "tail: black feathers with white bars", + "throat: white and unmarked" + ], + "Red-cockaded Woodpecker": [ + "back: black and white barred pattern", + "beak: sharp, elongated, and black", + "belly: white with faint black barring", + "breast: white with black streaks", + "crown: black with red streaks (only in adult males", + "forehead: black, rectangular-shaped", + "eyes: dark, circular, with a white outline", + "legs: gray, slender, with sharp claws", + "wings: black with white spots and bars", + "nape: black with horizontal white stripes", + "tail: black with white spots and red markings (only in adult males", + "throat: white with faint black streaks" + ], + "Red-headed Woodpecker": [ + "back: black and white striped pattern", + "beak: strong, slightly curved, black", + "belly: white, fairly unmarked", + "breast: white, contrasting with black back", + "crown: bright red, eye-catching", + "forehead: continuation of red crown", + "eyes: black, sharply focused", + "legs: grayish, strong with sharp claws", + "wings: black with prominent white spots", + "nape: red, connecting crown to back", + "tail: black with white outer feathers", + "throat: white, merges with belly" + ], + "Downy Woodpecker": [ + "back: black and white horizontal stripes", + "beak: straight, strong, chisel-like", + "belly: white, soft feathers", + "breast: plain white, unmarked", + "crown: black with a red patch (males", + "forehead: white or buff, clean", + "eyes: small, black, alert", + "legs: short, gray, sturdy", + "wings: black with white spots or bars", + "nape: black, sometimes with red patch", + "tail: black with white outer feathers", + "throat: white or buff, clean" + ], + "Bewick Wren": [ + "back: reddish-brown and well-feathered", + "beak: thin, curved, and dark in color", + "belly: light grey and soft-looking", + "breast: pale grey with subtle streaks", + "crown: streaked brown, lightly striped", + "forehead: slightly paler brown than the crown", + "eyes: dark, small, and expressive", + "legs: slender, long, and dark", + "wings: reddish-brown with faint bars", + "nape: matching brown with the crown", + "tail: long, barred, and slightly uptilted", + "throat: pale grey, meeting the breast smoothly" + ], + "Cactus Wren": [ + "back: light brown with white spotting", + "beak: long, slightly curved, black", + "belly: dusty white with black streaks", + "breast: covering of dark brown spots", + "crown: brown, with a slight reddish tinge", + "forehead: brown, blending with the crown", + "eyes: small, black, encircled by a white eyering", + "legs: long, thin, grayish-brown", + "wings: brown with white bars and a black streak", + "nape: light brown, similar to the back", + "tail: brown with black and white bands", + "throat: white with black streaks" + ], + "Carolina Wren": [ + "back: rusty-brown and black-striped", + "beak: thin, slightly curved", + "belly: cream-colored", + "breast: warm reddish-brown", + "crown: rusty-orange with a faint streak", + "forehead: slightly buffy-brown", + "eyes: large, dark, with a white eyestripe", + "legs: sturdy, pinkish-brown", + "wings: reddish-brown, with black barring", + "nape: rich, chestnut brown", + "tail: reddish-brown, barred, upward-cocked", + "throat: pale buffy-white" + ], + "House Wren": [ + "back: brown, mottled feathers with subtle barring", + "beak: thin, slightly curved, brownish-black", + "belly: light buff or creamy-white with sparse spots", + "breast: pale brown with faint barring", + "crown: brownish-gray with subtle streaking", + "forehead: light brown blending into the crown", + "eyes: dark brown, encircled by thin white eyering", + "legs: long, thin, pinkish-brown", + "wings: brown with black bars and pale spots", + "nape: brown, mottled with light speckles", + "tail: short, brown with faint black bars", + "throat: creamy-white, unmarked" + ], + "Marsh Wren": [ + "back: streaked brown and black", + "beak: long and slightly curved", + "belly: pale whitish-gray", + "breast: lightly streaked with brown", + "crown: dark brown with a broad white stripe", + "forehead: reddish-brown", + "eyes: small and black", + "legs: thin and brown", + "wings: short with barred patterns", + "nape: reddish-brown with white stripes", + "tail: short and upright, barred with black and white", + "throat: white and unmarked" + ], + "Rock Wren": [ + "back: brownish-grey with subtle spotting", + "beak: slim, slightly curved, blackish-brown", + "belly: pale white with light speckling", + "breast: greyish-white with darker spots", + "crown: brown with fine black streaks", + "forehead: whitish-grey with faint markings", + "eyes: black, round, encircled by white eye-ring", + "legs: slender, long, pale brown", + "wings: brownish-grey with faint barring", + "nape: brownish-grey with finer streaks", + "tail: moderately long, dark brown with white outer feathers", + "throat: white with grey streaks" + ], + "Winter Wren": [ + "back: small and brown with fine barring", + "beak: tiny, slender, and slightly curved", + "belly: pale and finely barred", + "breast: creamy white with minimal spots", + "crown: dark brown with subtle streaks", + "forehead: reddish-brown and slightly tufted", + "eyes: dark and alert, with a white eye-ring", + "legs: thin, strong, and pale pink", + "wings: short and rounded, gently barred feathers", + "nape: brown with thin, white streaks", + "tail: short and upturned, with dark barring", + "throat: off-white and unmarked" + ], + "Common Yellowthroat": [ + "back: olive-green feathers", + "beak: small, pointed, and black", + "belly: white with light yellow feathers", + "breast: bright yellow with black streaks", + "crown: black with white border on male, olive-brown on female", + "forehead: black in male, olive-brown in female", + "eyes: small, dark, with white eye-ring", + "legs: pinkish-brown and thin", + "wings: olive-green with slight wing bars", + "nape: olive-green blending with the back", + "tail: olive-green feathers with white outer edges", + "throat: bright yellow on both male and female" + ], + "Forsters Tern": [ + "back: sleek and light gray", + "beak: long, slender, and orange", + "belly: clean white and fluffy", + "breast: white and smooth plumage", + "crown: black and streamlined", + "forehead: smooth blending from black to white", + "eyes: piercing and dark in color", + "legs: strong and orange-red", + "wings: lengthy and sharp-edged, with gray and black tips", + "nape: black seamlessly transitioning to gray", + "tail: elongated and forked, with white and gray feathers", + "throat: white and smooth plumage" + ] +} \ No newline at end of file diff --git a/data/jsons/cub_boxes_owlvit_large.json b/data/jsons/cub_boxes_owlvit_large.json new file mode 100755 index 0000000000000000000000000000000000000000..642d519bdb4379bfd459d1d787a8d17e41c588cc --- /dev/null +++ b/data/jsons/cub_boxes_owlvit_large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd450e625f9da019bb967b96cbf14ba3b0757e29d47df746f66736a20b493269 +size 14190737 diff --git a/data/jsons/cub_vis_dict_binary.json b/data/jsons/cub_vis_dict_binary.json new file mode 100644 index 0000000000000000000000000000000000000000..77b81f4e0fd19ac3ddadf2d432b1a62f01f9734c --- /dev/null +++ b/data/jsons/cub_vis_dict_binary.json @@ -0,0 +1,165034 @@ +{ + "Brandt_Cormorant_0009_22890.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "House_Wren_0087_187946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0037_99954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0061_116751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0007_8366.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0070_795310.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0105_145673.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0109_135272.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0024_188942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0085_159119.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0117_177858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0013_79301.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Henslow_Sparrow_0027_796543.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Ovenbird_0096_93131.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0031_796594.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0037_28751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0010_34151.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "House_Wren_0083_187406.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0056_45751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0055_146014.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0030_98272.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0114_104136.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0109_66326.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0006_22925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0025_25893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0118_158285.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0031_93874.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0051_155464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0083_8300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0117_90464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0040_472.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Golden_Winged_Warbler_0030_164462.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0107_186972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0071_133742.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0080_177080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0019_188968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0055_570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rose_Breasted_Grosbeak_0001_39801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0068_23019.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "House_Sparrow_0059_111164.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0074_43955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Gull_0028_55680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0036_174699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Green_Jay_0066_65902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0114_100380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0053_160010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0003_65036.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0035_92003.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0071_159072.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0034_168185.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0115_115914.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0039_164928.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0041_160639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0081_110682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0033_171657.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0133_99129.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0091_113486.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0011_794812.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0114_42807.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rufous_Hummingbird_0116_58568.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0003_797376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0049_797025.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0025_113683.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0113_98630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0102_37927.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0086_111385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0092_36121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Acadian_Flycatcher_0032_795622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0041_184528.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0030_795736.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0049_167974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0030_794937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0038_115704.jpg": { + "crown": false, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0121_190597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0086_63394.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0013_34150.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Gray_Kingbird_0028_70303.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0117_73283.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0092_162044.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Worm_Eating_Warbler_0023_176118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0072_39905.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Common_Yellowthroat_0075_190900.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Black_And_White_Warbler_0072_160353.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0044_125470.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0015_165817.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0064_34251.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Sparrow_0004_107496.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0055_23415.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0064_57387.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0033_107042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Sayornis_0076_98941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0065_166885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0065_85829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0002_158319.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0065_141472.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0032_794931.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Least_Flycatcher_0010_30149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0037_60415.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Spotted_Catbird_0036_19406.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0103_168566.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0043_136878.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Groove_Billed_Ani_0027_1754.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0006_43381.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Thrasher_0052_155254.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0101_35203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Creeper_0064_24840.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0097_177944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rhinoceros_Auklet_0006_797512.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Breasted_Chat_0077_21986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0055_117036.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0058_40184.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Sparrow_0064_107502.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Parakeet_Auklet_0078_2004.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Goldfinch_0045_31974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0001_36481.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Brown_Pelican_0056_95229.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0081_124348.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0136_175186.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0089_33807.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0009_114796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0127_56520.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0054_129440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0008_145044.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0027_154823.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0029_796143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0028_74408.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0088_152941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0089_18005.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ring_Billed_Gull_0070_51316.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0055_114809.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0047_795677.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0043_24549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0100_166871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0100_41088.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0050_161154.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0056_167876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Swainson_Warbler_0002_174683.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Myrtle_Warbler_0103_166963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0013_61463.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0009_794813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0016_129158.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0013_22008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0034_795384.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0057_180612.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Long_Tailed_Jaeger_0054_797088.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0026_30434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0019_796104.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bank_Swallow_0023_129878.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0124_93103.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0011_159736.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0007_795600.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0077_39885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Creeper_0042_24578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0026_116620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0035_177457.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Fulmar_0095_43860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Grey_Shrike_0032_797021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0083_70162.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0014_24214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0050_796415.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orchard_Oriole_0082_91654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0091_129470.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0085_36224.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clay_Colored_Sparrow_0087_110946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0038_797230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ovenbird_0136_92859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0060_107391.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0055_77102.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0044_72976.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Herring_Gull_0114_46956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0026_8545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0025_797401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0006_794626.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0033_797176.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pacific_Loon_0031_75531.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bay_Breasted_Warbler_0077_797144.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0022_37761.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0077_795696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0026_176096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0075_90788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0120_181420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0058_182317.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0008_796703.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0084_166747.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0040_167454.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0025_5342.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0018_40195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0033_10809.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0019_6704.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0064_136322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0074_175058.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0021_160686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0049_69933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0055_797352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0085_11991.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0009_29831.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0078_30752.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": false + }, + "Green_Jay_0014_65825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0052_46810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0054_110948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0107_141181.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0122_189042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0003_795175.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Jay_0039_66118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0035_151757.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0032_108882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0059_129357.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0095_149960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0046_125344.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0038_794882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Philadelphia_Vireo_0049_794756.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Puffin_0006_100989.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0019_83850.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Boat_Tailed_Grackle_0067_34032.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0003_51480.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0065_160111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0059_117271.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0106_22032.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0061_128902.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0055_113929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0014_117883.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0001_16585.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0089_74386.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0103_34822.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0070_125555.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0032_117747.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0079_22690.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0043_113607.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0025_185696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0056_795816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0066_74796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0022_172197.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0056_172064.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0108_124754.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0017_56954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rufous_Hummingbird_0089_59524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Summer_Tanager_0013_140828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Kingfisher_0061_72193.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0036_42389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0079_19044.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0002_110606.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0056_8455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0014_158412.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0100_797142.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0115_42973.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nighthawk_0055_83352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Blue_Warbler_0063_161213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0006_794661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0044_795388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0072_1696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Flicker_0138_28476.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0126_155199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0075_17946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0047_795468.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Forsters_Tern_0119_152709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0013_30240.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0035_190567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0137_165507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0047_12966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0006_104523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0047_794918.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Prairie_Warbler_0002_172622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0104_78105.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0058_133060.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rock_Wren_0080_189340.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0104_64885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0046_33307.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0090_34640.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pigeon_Guillemot_0028_40046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Thrasher_0085_155445.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0110_164023.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0078_795758.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0075_12835.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0066_101461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0060_795160.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0110_24866.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0003_29094.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0095_183688.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0088_190594.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0067_149540.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0124_104141.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0062_72379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0004_43755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bronzed_Cowbird_0060_24082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0128_128956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0072_115663.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0048_71164.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0049_795440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0008_796968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ruby_Throated_Hummingbird_0079_58075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Gull_0114_55644.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0035_38729.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0035_116529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0012_796247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0043_186286.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bewick_Wren_0047_184707.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0136_85490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Crested_Auklet_0069_785258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Faced_Cormorant_0048_796296.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Yellow_Bellied_Flycatcher_0016_795476.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ring_Billed_Gull_0055_51156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0028_104751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0066_15241.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0065_37296.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0035_795062.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Faced_Cormorant_0064_23464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Least_Flycatcher_0092_30154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Oriole_0130_90422.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0081_26429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0111_113899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "American_Redstart_0096_102853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0017_129337.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0069_74093.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0024_129779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "House_Wren_0011_187547.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0079_45468.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0010_69583.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0005_108931.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bobolink_0013_9367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0038_795909.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0112_121027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0113_74613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0070_154844.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0009_34.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Headed_Woodpecker_0016_183007.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Marsh_Wren_0019_188460.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0061_30540.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0084_46406.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0059_26828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cerulean_Warbler_0039_163420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0087_121062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0040_24134.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0020_795080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0064_41562.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0067_129959.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0019_149769.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0083_175253.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0051_75514.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Prothonotary_Warbler_0073_174607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Spotted_Catbird_0023_796793.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0040_22341.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0092_796666.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Magnolia_Warbler_0102_165884.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0050_80184.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0050_166820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0062_185063.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0041_796108.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Jay_0038_62784.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Western_Grebe_0067_36610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Warbling_Vireo_0132_158420.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0035_96312.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0055_168600.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0055_26223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0069_41827.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0067_21043.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0110_180521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Le_Conte_Sparrow_0067_117146.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0062_33650.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Field_Sparrow_0102_113595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0063_796714.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0056_500.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Gadwall_0086_31346.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Redstart_0024_103042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0061_91941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0049_132965.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0082_30132.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Headed_Woodpecker_0020_183255.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0120_173097.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0091_188046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0060_797209.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0081_159963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0093_110990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0070_63684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0072_166702.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0117_58092.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0062_100000.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0069_70082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0021_2089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "White_Crowned_Sparrow_0064_126467.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0111_189443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0075_37302.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0010_14915.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0079_73958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0030_155152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0070_797090.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0050_177331.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0023_43809.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Warbler_0009_171869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0043_110685.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0109_154127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0014_21970.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0036_154875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0134_164708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0048_796995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0137_111219.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0016_796974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Pipit_0021_100378.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0007_69361.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0002_18424.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0032_10217.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0019_26803.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0030_102701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Billed_Grebe_0122_35970.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Barn_Swallow_0084_130800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0108_29712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sayornis_0111_98406.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0096_174993.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "American_Redstart_0022_103701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0013_178830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0068_82368.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Legged_Kittiwake_0024_795441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0034_116439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0081_64859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0107_21698.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0052_794774.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Breasted_Chat_0068_21860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0049_5598.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0068_90397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0034_100895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Bellied_Woodpecker_0050_180751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0015_34231.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0008_15195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0018_794705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0021_23097.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rusty_Blackbird_0001_6548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0044_110942.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0078_794827.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0066_34738.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cactus_Wren_0125_185648.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0070_29455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0092_164465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0108_133902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0042_22155.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Olive_Sided_Flycatcher_0064_30485.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bewick_Wren_0067_184816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0096_154945.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0096_178164.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0057_143884.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Artic_Tern_0032_141313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0048_24976.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0112_104548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Northern_Waterthrush_0016_177345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0095_127118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0044_184170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "American_Redstart_0027_103168.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0077_795831.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0048_80441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0033_2169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pied_Kingfisher_0046_72156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0002_116930.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0028_167641.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0071_42429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0065_42467.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0002_794551.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0128_105238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0046_153006.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Legged_Kittiwake_0004_73811.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": false + }, + "Rufous_Hummingbird_0048_58478.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0021_155548.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0004_72966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0053_64966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0076_107393.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0070_147548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0055_24076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0012_179905.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": false, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Merganser_0058_796770.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ring_Billed_Gull_0114_50214.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0036_54329.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0083_170281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0032_162029.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Crested_Auklet_0073_785248.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Warbler_0007_171523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0090_21931.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0040_72739.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Kingfisher_0059_71119.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0027_58191.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0050_797374.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0081_99785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0099_113872.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0015_91565.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0027_87561.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0109_41465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0046_150905.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Marsh_Wren_0027_188376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0030_130191.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rusty_Blackbird_0032_6611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0011_72143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0080_162392.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0012_44264.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0081_185080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0024_92583.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Loggerhead_Shrike_0117_104838.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0029_166530.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Canada_Warbler_0007_162364.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0029_794624.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Olive_Sided_Flycatcher_0033_30532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Great_Crested_Flycatcher_0023_29481.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0041_156954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0119_160898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0070_150292.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0074_98282.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Common_Tern_0053_148472.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0025_75436.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bewick_Wren_0010_185142.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0100_735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0021_116931.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0082_795706.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0130_37813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0054_175285.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0053_34084.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "American_Pipit_0034_99946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0015_184981.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0046_145627.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0029_37197.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0045_26685.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Grosbeak_0003_38437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0016_158681.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0057_795323.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0073_33723.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0066_125619.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0046_43760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0086_27637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0063_189121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0083_794801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Winged_Warbler_0079_161909.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Prairie_Warbler_0135_172745.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0047_39407.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0001_9261.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0032_45774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0044_1731.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0065_185247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0006_796864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0035_139561.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0048_26351.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "European_Goldfinch_0003_33066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0092_797048.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0022_796821.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0039_107864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0088_883.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": false + }, + "Horned_Puffin_0056_101030.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0073_156944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0059_794709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0033_25915.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Pine_Warbler_0091_171627.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0004_100479.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": false, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Anna_Hummingbird_0044_56066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0025_17239.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0043_37200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0088_180941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0016_164837.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0061_163061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0073_37148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0027_795091.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0012_797473.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Warbling_Vireo_0030_158488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0051_17223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0011_37913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0017_36218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Eyed_Vireo_0003_157226.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0015_177515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Painted_Bunting_0070_16515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0042_71028.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0116_115311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0037_23889.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0002_62657.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Palm_Warbler_0117_170073.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0042_159012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0119_156259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0089_144174.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0022_117039.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0079_26030.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0087_190135.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0061_161667.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0090_106461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0127_51485.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0017_795084.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Whip_Poor_Will_0001_796411.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Throated_Vireo_0006_159693.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0041_144103.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0115_86760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0035_797471.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0119_158819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0010_179874.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": false + }, + "Pine_Grosbeak_0002_38214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0019_118066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Kentucky_Warbler_0025_165304.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0062_157324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0076_671.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0077_75911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Fish_Crow_0001_26031.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0068_94430.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0050_1924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "American_Goldfinch_0122_32186.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0110_44377.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0105_155187.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0132_184906.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0094_25576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0005_162095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0040_77823.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0056_99553.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0009_794976.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Cape_Glossy_Starling_0080_129362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Prothonotary_Warbler_0020_174122.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0014_797522.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Headed_Blackbird_0040_7514.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0111_41033.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0026_189181.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0092_39864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Whip_Poor_Will_0006_22800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Downy_Woodpecker_0066_183953.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0005_26161.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0076_163294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0069_190400.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0045_795587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cliff_Swallow_0055_133624.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Acadian_Flycatcher_0019_795592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0060_152190.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0083_24967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0058_164674.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0025_571.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0036_794606.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orchard_Oriole_0059_92046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0035_163269.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0043_164864.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0018_794584.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0053_116595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0022_794570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0056_794845.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0005_796998.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Glaucous_Winged_Gull_0002_44612.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0047_150626.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Necked_Raven_0025_797346.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Eared_Grebe_0045_34212.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0024_26064.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0056_18352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0077_155608.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0086_159860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "American_Pipit_0089_100260.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0029_75495.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sooty_Albatross_0077_1080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Song_Sparrow_0010_121331.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Florida_Jay_0050_65099.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0007_796280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Slaty_Backed_Gull_0006_796014.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0037_173418.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0073_96260.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0073_117127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0046_796153.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0074_33348.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0003_25130.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0004_795796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0097_78239.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0017_33480.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0112_187355.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0076_797050.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0042_117507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0058_114789.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0085_116971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0065_809.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Marsh_Wren_0062_188158.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0069_107116.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0068_188446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0041_795279.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0097_106935.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0066_24358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0100_113503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0090_137703.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0085_79285.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pigeon_Guillemot_0024_39814.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0038_797544.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Necked_Raven_0068_102610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0083_161462.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0109_105710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0010_794575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0021_78841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0014_75468.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fox_Sparrow_0010_114728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0108_170597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0007_796958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0103_137272.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0062_177285.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0076_98002.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0038_61446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Headed_Blackbird_0082_8577.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0123_125324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0081_167234.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0074_172061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0033_51288.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0042_177551.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0019_17368.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0038_797369.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Savannah_Sparrow_0011_119459.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0128_190093.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0095_795646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0095_30277.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0080_163399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0070_23137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Belted_Kingfisher_0044_70494.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Breasted_Merganser_0055_79397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Great_Grey_Shrike_0003_106552.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0080_61617.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0065_36847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0014_40040.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0020_14837.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0053_42184.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0128_138711.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0026_166680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0051_796902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0033_797255.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0073_184430.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Common_Yellowthroat_0032_190592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0066_130214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0015_177816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0088_183246.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0060_4688.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0079_159576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0103_36673.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0052_129575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0072_797114.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vermilion_Flycatcher_0005_42478.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0038_26000.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0045_795274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0016_794556.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mourning_Warbler_0011_795380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0113_24560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0090_166087.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0078_795833.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0112_78760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0108_64694.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0017_75835.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Swainson_Warbler_0021_794898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0125_128832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0008_165369.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0009_74646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0001_795772.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tennessee_Warbler_0043_175003.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0034_26694.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Flicker_0132_28313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0013_165228.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0008_797053.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0094_177955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0034_45914.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Herring_Gull_0106_46930.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0110_101775.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0061_796300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Clark_Nutcracker_0075_85715.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0079_138669.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0095_42785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Cedar_Waxwing_0092_179123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0110_27750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0132_175600.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0097_128967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0089_168968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0074_73408.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0077_797443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0093_73311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0093_79075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Forsters_Tern_0027_151456.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0054_23812.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Glaucous_Winged_Gull_0045_44906.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0109_98906.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0118_159036.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0020_155994.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0094_187226.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0006_91724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0061_42397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0074_24045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0058_795181.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0089_796740.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Waterthrush_0076_176986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0066_71200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0033_159079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0021_171525.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0126_44761.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0061_158494.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0029_61101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Oriole_0111_89988.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0038_34321.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Bewick_Wren_0112_184956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0025_177403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0051_1020.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0080_72199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Grebe_0072_34497.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baltimore_Oriole_0038_87083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0054_51414.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0024_78432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Painted_Bunting_0099_16525.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0104_172615.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0045_20950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0008_797066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Winged_Blackbird_0012_6015.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0084_173939.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0095_155082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0098_167293.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Golden_Winged_Warbler_0068_794825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0110_113995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0077_137626.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0061_120891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0013_23391.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0100_20674.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0115_42137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0032_1149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rusty_Blackbird_0093_6628.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0003_795982.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0077_796114.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brandt_Cormorant_0082_22978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Herring_Gull_0047_46218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0007_102020.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Field_Sparrow_0127_114087.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0047_36203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tennessee_Warbler_0061_174775.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0095_104358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0040_173056.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0075_104334.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0112_166754.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0084_147980.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0017_152696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0072_80789.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0094_797396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0015_794778.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0100_21913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Mockingbird_0038_81299.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0104_90264.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0085_62831.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0049_86557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0020_49978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0066_26303.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Eared_Grebe_0026_34383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Olive_Sided_Flycatcher_0009_796885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0039_794736.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Blue_Warbler_0002_161533.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0057_795040.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0040_795100.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0040_42398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Glaucous_Winged_Gull_0132_44435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0100_175168.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0111_70375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0026_73201.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0045_151227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0094_56092.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0070_31187.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rose_Breasted_Grosbeak_0019_39274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Orange_Crowned_Warbler_0118_167640.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0068_22194.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0033_153796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0019_40515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Shiny_Cowbird_0055_24331.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0086_45304.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0020_8549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0081_163854.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0007_42214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0100_94434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0014_120072.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0064_174106.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0040_117088.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0088_151089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Gull_0089_55306.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0043_1076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Great_Crested_Flycatcher_0019_29801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0016_179927.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0057_182154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0096_79878.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0099_67868.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0012_38466.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0066_182253.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0003_796977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nighthawk_0041_82183.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0066_118088.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0088_134188.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0053_173290.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0036_105904.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0069_26597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0105_795694.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0086_69759.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0052_35937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Slaty_Backed_Gull_0058_796024.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0043_60813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Florida_Jay_0021_64698.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0023_75476.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Great_Crested_Flycatcher_0063_29507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0076_45597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0091_162051.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pomarine_Jaeger_0039_61348.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mallard_0018_76511.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0038_8689.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0119_155170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0004_185202.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0060_15224.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0114_39770.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0020_125794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Footed_Albatross_0040_796066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scott_Oriole_0001_795826.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Magnolia_Warbler_0077_165674.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0132_38025.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0044_26976.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0037_171649.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0054_133287.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0043_184314.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0094_26643.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Horned_Puffin_0021_100780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bobolink_0052_9423.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0074_113504.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0079_15197.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0046_82246.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rock_Wren_0069_188969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0016_794607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gadwall_0084_31135.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Merganser_0059_79016.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clark_Nutcracker_0017_84777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0059_39929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0062_23623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Gull_0098_53925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0008_179850.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cliff_Swallow_0065_133858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0053_10166.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0017_796429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Swainson_Warbler_0032_174728.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Loggerhead_Shrike_0024_105593.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0019_99810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0037_95570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Carolina_Wren_0112_186562.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0009_797070.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Catbird_0103_20930.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0061_4196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0037_161999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0054_38953.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Canada_Warbler_0032_162229.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0073_143486.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0094_9823.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0016_70288.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0121_94067.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Ovenbird_0118_93002.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0060_168686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0051_37954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0010_101390.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0124_118820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0091_56004.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0060_123743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0071_148796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0042_797056.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0115_2279.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0137_85172.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0006_145594.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0011_796416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0067_36965.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0026_68061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Horned_Puffin_0040_100891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Ring_Billed_Gull_0108_51108.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0111_76722.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0062_134383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0014_72119.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0035_166586.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0078_795377.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0067_785249.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0084_43006.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Myrtle_Warbler_0008_166927.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0024_71560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0072_127080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vesper_Sparrow_0022_125719.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "European_Goldfinch_0101_33127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0074_2277.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0102_184263.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0016_92398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0084_95877.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0082_72955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0061_164516.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0033_29195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0011_60963.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Field_Sparrow_0029_113434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0015_23198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Brandt_Cormorant_0029_23043.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Spotted_Catbird_0047_19400.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Mourning_Warbler_0081_166434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0128_86947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0128_72775.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0119_101595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0106_104216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0039_154802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0048_38434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Northern_Flicker_0016_28603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0069_116832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0032_41335.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0117_51363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0019_41377.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0047_24210.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0036_110924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0108_167259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0065_179017.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0043_43685.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Fox_Sparrow_0044_114747.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0040_30620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Savannah_Sparrow_0021_118886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0013_795684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0021_796870.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0067_34416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Ringed_Kingfisher_0041_72853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0027_128847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0054_30732.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0005_30734.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0048_20558.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0092_165807.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0020_168857.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0013_155329.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0069_133521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0094_17165.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Ring_Billed_Gull_0020_50204.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0087_73264.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0030_118064.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0071_163201.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0073_99642.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0023_797501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Legged_Kittiwake_0031_795442.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Necked_Raven_0014_102687.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0073_166798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0085_95053.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Tropical_Kingbird_0018_69619.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0093_37608.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0081_70953.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0078_171374.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0034_126199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0083_167948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0026_796847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0051_186510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0016_106720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0035_22223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0024_174980.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0001_797412.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0107_20513.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "White_Throated_Sparrow_0069_128951.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0044_77758.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0098_56388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Raven_0116_101350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Horned_Grebe_0070_34514.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Goldfinch_0053_32359.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0045_796814.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0049_65600.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0069_166914.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0058_34174.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Throated_Sparrow_0102_128911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0054_172602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0077_72872.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mallard_0005_76026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Elegant_Tern_0014_150523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0103_155575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0135_93168.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0035_56493.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0014_795238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0046_796696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0137_92639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0075_63021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Headed_Woodpecker_0021_183454.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Myrtle_Warbler_0098_166794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0057_101324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Wood_Pewee_0079_795047.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0086_104755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0036_117280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0120_145650.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0063_183358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0068_153738.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0012_143410.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0105_29456.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0043_74450.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0024_27057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0130_161682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0016_70495.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0065_9375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0072_117951.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0077_795247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0005_71352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0005_130591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Grosbeak_0114_38259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Frigatebird_0051_43043.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Sayornis_0086_98829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0118_93475.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Herring_Gull_0024_48309.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0095_74640.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0136_170276.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0142_86805.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0122_175937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0036_28681.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0106_113350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0076_31639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Canada_Warbler_0024_162218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0041_797452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0026_794574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Black_Throated_Sparrow_0102_107243.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0006_795595.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0007_182728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0087_32363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0062_24271.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Tropical_Kingbird_0096_69684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0053_70899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Gray_Catbird_0131_19633.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0035_795027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0105_176970.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Scarlet_Tanager_0033_137603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0040_165921.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0005_104187.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0056_796078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0018_795494.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0115_54950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0019_144680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0105_38210.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0003_32236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0017_79224.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Elegant_Tern_0026_150869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0099_154882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0022_174799.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0068_115799.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0126_170311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0064_117602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0085_6713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0088_184733.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0101_85656.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0054_46164.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0017_795652.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0011_108081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0028_33777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0109_2232.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0044_24145.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0089_14598.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0066_12869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0016_42196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0118_55773.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0030_795116.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0009_40662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0012_796802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baltimore_Oriole_0101_87207.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0050_173281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0114_86554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0065_49566.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Louisiana_Waterthrush_0091_795246.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0007_179932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0002_796908.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0007_22172.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0126_90319.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0114_136265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Blue_Grosbeak_0053_36709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0036_73403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0094_128627.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0037_129903.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0023_185400.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0106_171107.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0068_139875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0074_14854.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0057_796970.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chuck_Will_Widow_0012_796956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baltimore_Oriole_0064_89554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0056_106752.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0023_124956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clay_Colored_Sparrow_0023_797258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0099_22566.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0036_121679.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0081_107111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0104_190489.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0048_43672.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0097_41701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0024_79623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0018_8588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0007_173081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0046_144229.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0035_23849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orchard_Oriole_0092_92128.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0103_180803.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0040_4522.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0106_32182.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0067_90416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0049_45065.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0037_796405.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Eyed_Vireo_0074_159279.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0107_138577.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0023_796887.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0059_25599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0074_1221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Headed_Vireo_0054_156455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0097_21748.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0119_57575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0038_104266.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0067_49659.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0075_61349.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pileated_Woodpecker_0065_180324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0087_794767.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0092_41300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0066_150864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0050_51567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0012_100763.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Green_Jay_0006_65788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0094_148309.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0093_23722.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0045_42575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0027_60950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Crowned_Sparrow_0105_126818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0048_106215.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0080_796096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0060_134961.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0104_38362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Nuthatch_0104_85969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0020_794863.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Henslow_Sparrow_0087_116942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0040_795629.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0010_797210.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0006_795436.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0069_151229.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0069_76926.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0090_69051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0125_139399.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0103_94787.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0081_190525.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0035_167283.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0014_183701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Grey_Shrike_0064_106778.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0072_795743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0021_182303.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0090_797195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0065_797301.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0018_795077.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0030_68439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Common_Yellowthroat_0003_190521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0039_71052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0010_24439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0040_162352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Anna_Hummingbird_0028_55993.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0004_42395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0078_160365.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0113_56296.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0063_75865.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Yellow_Breasted_Chat_0098_21987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rose_Breasted_Grosbeak_0011_39207.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0059_102668.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0030_796325.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0039_795606.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Geococcyx_0068_104149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0026_23792.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0001_37437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0023_797371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Hooded_Oriole_0035_90331.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0041_69954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0088_170980.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0078_795532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0101_164324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0015_166535.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0091_120630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0095_174903.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0076_796001.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0063_39802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0028_796813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0013_796942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0001_20695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Evening_Grosbeak_0069_37684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0018_24140.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0119_128827.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0028_190527.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0066_795007.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0052_22558.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0066_129559.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0005_116694.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0024_96554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Pipit_0002_100023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0084_8435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0078_795889.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0091_162378.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0004_796957.jpg": { + "crown": false, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Scarlet_Tanager_0120_138344.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0008_41670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0041_116288.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0107_166917.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0004_25936.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0059_188941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0025_85803.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0061_106580.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0063_1101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Kingbird_0062_795026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0058_38431.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0022_75405.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0023_795478.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0021_128804.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0040_794912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0043_155574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0040_169922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0085_92206.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0137_86910.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0047_24984.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0059_98262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0124_25356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0050_38475.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0032_796702.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0075_22588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0046_187477.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0060_31686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0085_564.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mangrove_Cuckoo_0033_26359.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tennessee_Warbler_0084_174891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0038_57036.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0001_107233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0027_797455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0093_170499.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Red_Bellied_Woodpecker_0002_180879.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0097_158579.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0110_108974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0090_117857.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0120_35764.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Rusty_Blackbird_0102_6590.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0114_127027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0062_129548.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "House_Wren_0085_187723.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0111_32022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0050_797085.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0067_75266.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0103_179559.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0100_24502.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0015_41392.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0003_92910.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0069_29603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0059_40764.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0064_35843.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Tropical_Kingbird_0023_69998.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0060_130110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cerulean_Warbler_0084_797177.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0066_41188.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0133_44738.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0127_74414.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0116_105286.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0084_16531.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0033_174772.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0045_794571.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0071_73800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0039_794859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0090_26311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0075_186066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0075_21715.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0097_85940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0126_187647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0060_160764.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0079_167213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0003_42316.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0041_105002.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0033_155156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0033_37707.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0081_25837.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0069_36486.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Groove_Billed_Ani_0077_1724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0083_111470.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0030_100725.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0005_44860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0003_177479.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0098_43578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ruby_Throated_Hummingbird_0071_57886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0005_35437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0077_77814.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0100_138006.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0081_180249.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0065_44081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Tailed_Towhee_0074_154915.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0013_96901.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Canada_Warbler_0041_162418.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0004_129549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0066_797439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0073_34172.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Laysan_Albatross_0050_870.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Goldfinch_0086_31887.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0083_23156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Thrasher_0079_155394.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0009_15163.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0030_180208.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0008_8756.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0071_136749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0066_100877.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0042_26479.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0019_75422.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Lincoln_Sparrow_0057_117334.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0052_18334.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0064_132688.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Cedar_Waxwing_0130_178308.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0029_127503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0008_28591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0026_48041.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0114_41704.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0128_166444.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0044_22884.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0027_26360.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Redstart_0056_103241.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0045_119398.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0058_137710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0015_75443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bay_Breasted_Warbler_0045_797135.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0089_795154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Capped_Vireo_0013_155815.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Jay_0051_65662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0025_139320.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0066_5070.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0034_107327.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0033_148675.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0062_85464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0084_795189.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0099_139310.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0023_794701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0096_57505.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Palm_Warbler_0001_170297.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0096_188966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0061_796874.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0034_796849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0009_166752.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0085_99503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0013_66332.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0068_119972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0079_159998.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0013_70753.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0031_26401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0052_105120.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0076_23021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Henslow_Sparrow_0030_116890.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0061_15155.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Tree_Swallow_0002_136792.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0005_68813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pacific_Loon_0046_75439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cerulean_Warbler_0087_163451.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Grosbeak_0097_38735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0071_64993.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0117_44697.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Kentucky_Warbler_0066_165290.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0063_42704.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0028_163177.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0004_98257.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_May_Warbler_0032_162659.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0045_157252.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Tern_0048_153550.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0002_34577.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Geococcyx_0047_104259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0136_29490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0037_190123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0115_24488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0048_29586.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0105_85097.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0066_98309.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0110_173857.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0010_180772.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0024_794807.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0040_177914.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0011_797410.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0044_796407.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Jay_0042_61545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0141_47184.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0031_797518.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Orchard_Oriole_0024_91755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0071_71255.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0055_59935.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0071_27443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0043_796009.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0043_166708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0052_794973.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Red_Cockaded_Woodpecker_0010_182451.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0056_156968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0022_154892.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "House_Sparrow_0106_111564.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0094_164152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0061_104553.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0062_794968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Slaty_Backed_Gull_0046_796035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0075_130014.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Pelican_0071_96061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Yellow_Breasted_Chat_0065_22137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0018_64994.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0046_104998.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0054_97982.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0054_148028.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0098_39902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0033_21873.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0080_795716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nighthawk_0027_84697.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Thrasher_0026_155438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0127_105742.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0088_187243.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0037_795500.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Headed_Blackbird_0072_8606.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0048_795277.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0113_6664.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0061_795788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cactus_Wren_0123_186068.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0091_4096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0113_177823.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Footed_Albatross_0051_796103.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fox_Sparrow_0053_114780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0001_118956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0102_25066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0001_185645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0034_91825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0047_30393.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0080_30457.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0019_1585.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Palm_Warbler_0061_169954.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0046_125575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0071_72958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Boat_Tailed_Grackle_0056_33649.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0011_25866.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0014_69647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0039_188201.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0108_6867.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0027_796796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0075_39795.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0013_90445.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0113_163130.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0062_795958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0047_1706.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0013_910.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Three_Toed_Woodpecker_0024_179876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0028_795008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0056_16599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0040_125441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0012_181765.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0128_57047.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0009_797038.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0131_87542.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Seaside_Sparrow_0050_796508.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0029_55823.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Eyed_Vireo_0106_157102.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0109_103795.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brandt_Cormorant_0023_23254.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Winter_Wren_0113_189558.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0052_41047.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0049_83621.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Acadian_Flycatcher_0004_795623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0128_158993.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0086_6658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0016_795460.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0039_75517.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Winged_Blackbird_0081_6081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0096_74075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0084_11848.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0120_162415.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vesper_Sparrow_0029_125498.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0034_26415.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0039_129469.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0088_162341.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0067_29384.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0021_794821.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Prothonotary_Warbler_0079_173899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0050_797534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0048_177129.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0071_89611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0003_92247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0068_107422.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0050_176150.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Shiny_Cowbird_0036_24274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Brown_Creeper_0114_24649.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0021_796339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Wilson_Warbler_0065_175924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0096_107238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0013_182721.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0122_156017.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0013_163052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0018_174715.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Kentucky_Warbler_0020_795903.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Golden_Winged_Warbler_0012_164496.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cliff_Swallow_0028_132365.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0043_68689.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0086_123751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0018_165958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0076_137232.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0014_183975.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Prothonotary_Warbler_0116_173444.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0053_163615.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0026_26794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chipping_Sparrow_0030_109741.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0020_42498.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Kingfisher_0054_73587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0024_129384.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0050_70056.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0034_37349.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0037_109851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0087_168439.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0060_159863.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Nashville_Warbler_0053_167403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Parakeet_Auklet_0032_795986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Herring_Gull_0116_47222.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0057_55312.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0099_35872.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Billed_Cuckoo_0096_26204.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0101_156203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0001_796219.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0072_24977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0065_156260.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0012_107411.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0012_39149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0097_71102.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0102_160073.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0004_91275.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0032_36439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Lark_0059_74144.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0028_107467.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0013_179833.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0030_27068.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0050_27702.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0016_23077.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Fulmar_0070_43916.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Tern_0025_147728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0064_108204.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0030_796144.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0051_189990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0015_1653.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0049_24911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mourning_Warbler_0052_166537.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0087_69592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0088_38830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0047_795956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Loggerhead_Shrike_0019_106132.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0030_31855.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Nuthatch_0066_86159.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0115_184096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Painted_Bunting_0076_16765.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0073_159583.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0002_24380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0141_45391.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0064_796343.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0081_190049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0010_107375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0087_190414.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0095_177709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0019_156311.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0032_71050.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0047_173210.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0083_23557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Pelican_0013_93589.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Black_And_White_Warbler_0051_160603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0054_4625.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0118_189805.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0011_34020.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0047_9204.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0065_75588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Fulmar_0010_44112.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0129_127860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0102_27308.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0045_88178.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0045_189153.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0032_167589.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0064_10092.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0013_794687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Gadwall_0001_31235.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Prairie_Warbler_0063_172682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Swainson_Warbler_0044_794894.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0074_8452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0064_185826.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0101_36719.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0073_16737.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0139_112438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0030_54083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0025_76465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0011_797530.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Canada_Warbler_0048_162326.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0123_161542.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Purple_Finch_0082_27639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0039_796132.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0031_61420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Eared_Grebe_0016_34334.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Tern_0038_153087.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0108_183403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0044_96028.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0107_145639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0011_85698.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0130_98678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0115_55766.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0021_30355.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0060_164368.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0081_162936.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0028_129118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0074_101576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0006_1763.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0039_91267.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0012_98881.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0104_185256.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0077_93464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Florida_Jay_0085_65129.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0035_187708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0112_34864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baird_Sparrow_0043_794555.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Sparrow_0125_123078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Tern_0082_144372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Forsters_Tern_0007_152110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0063_795585.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fish_Crow_0069_26008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0014_795607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0003_795778.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rufous_Hummingbird_0113_59444.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0079_61370.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Pipit_0024_99813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0043_129358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0051_161766.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Carolina_Wren_0117_186916.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0018_796443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0050_117744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0081_69656.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0022_26423.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0127_126923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0126_171282.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0043_31993.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0137_161207.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0123_166389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0087_79600.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0057_125649.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0092_121969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0131_104300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0052_168013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0057_796742.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cliff_Swallow_0066_133206.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Parakeet_Auklet_0042_795961.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Footed_Albatross_0036_796127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Caspian_Tern_0051_145930.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0022_794868.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0002_797370.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0050_168166.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0098_108644.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0101_795557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0012_30920.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0045_130244.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0126_161724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0040_42860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0105_15017.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0036_107695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0098_160808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0071_79379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Capped_Vireo_0040_797463.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0086_797214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0062_8310.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0051_105447.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0084_73247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0098_178971.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0053_125641.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0094_21693.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0066_177110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0069_78587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0044_23536.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0111_36841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0041_796807.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0063_150873.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0096_177969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0039_97363.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0006_795473.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Sparrow_0051_796710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0020_797461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0039_796168.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0037_71113.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0027_26844.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0057_160037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0119_51551.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0016_185582.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0068_35963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Olive_Sided_Flycatcher_0067_30749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Kingfisher_0016_71198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0026_53245.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0034_795150.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0097_79951.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0014_76166.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pileated_Woodpecker_0116_179948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0050_167475.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0097_2322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Hooded_Oriole_0069_90981.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0054_106768.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0056_117974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0025_40511.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ovenbird_0004_92868.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0012_2161.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Eyed_Vireo_0071_156967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0070_8583.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0062_73425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0120_73439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0085_23821.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Pelican_0081_96148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Baltimore_Oriole_0133_87602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0055_90850.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0046_41209.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0032_796233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0111_28402.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0028_44628.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0118_185788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0075_48935.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0049_796705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ovenbird_0050_92672.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0077_30296.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0042_72913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Anna_Hummingbird_0021_55763.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0034_82578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Tern_0059_153746.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0002_102582.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0069_40278.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Myrtle_Warbler_0007_166897.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0130_85304.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0129_158823.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0008_23602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Crested_Flycatcher_0038_29533.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0006_129295.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0141_76977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Carolina_Wren_0013_187086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0023_796979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Louisiana_Waterthrush_0056_795245.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0014_32154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0087_162342.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0051_787319.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0039_26348.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Breasted_Merganser_0021_79168.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0018_118011.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0035_63560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0063_795149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0012_166515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0109_73683.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0045_186165.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0016_27181.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0092_29583.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Green_Violetear_0027_60841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0031_26318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0053_143882.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ringed_Kingfisher_0028_73018.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Slaty_Backed_Gull_0077_796017.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0058_44114.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0017_39161.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0067_71093.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0057_794932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0034_12464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0046_177864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0035_795934.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Fox_Sparrow_0035_114866.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0020_116379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0078_100777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Herring_Gull_0143_46461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0045_18021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0045_82807.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bronzed_Cowbird_0005_24173.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0032_796046.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": false, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Slaty_Backed_Gull_0021_796008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0026_180783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0049_120735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0116_118108.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0071_94549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0072_98035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0018_797183.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0037_797099.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Crested_Auklet_0029_1824.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "White_Breasted_Nuthatch_0131_86416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0013_796660.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0020_129007.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0064_40044.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0113_186675.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0015_129853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Green_Tailed_Towhee_0071_154870.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0061_795327.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Tennessee_Warbler_0063_168561.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0018_164148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0020_98727.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Brown_Creeper_0053_24451.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0088_163149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": false + }, + "Brewer_Blackbird_0014_2679.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baltimore_Oriole_0128_87796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0095_160406.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0110_155952.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0020_121490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0005_95916.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Marsh_Wren_0094_188710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0009_190578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0077_104042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0034_185817.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0075_162428.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0109_172909.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Jay_0048_62433.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0014_30651.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0054_79542.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Long_Tailed_Jaeger_0041_60891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Eyed_Vireo_0058_156965.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0021_117105.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bohemian_Waxwing_0122_796654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0095_78568.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0010_79567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0058_78247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0086_26188.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0055_13473.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0093_44724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0016_2114.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Rufous_Hummingbird_0022_58725.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0073_796726.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0042_794628.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Nashville_Warbler_0006_167497.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bobolink_0107_10252.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0070_25504.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0006_155106.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0078_57208.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0005_92362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0075_24335.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0028_161787.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0085_170981.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0029_23545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0013_145553.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Bobolink_0050_9821.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0058_25999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0001_795394.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0069_155151.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0053_41011.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0004_795550.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0037_794733.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0029_794724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Gadwall_0096_31560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Yellowthroat_0037_190698.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0066_107510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0114_104960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0041_104273.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0107_188390.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0103_795644.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0137_172610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0030_33615.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0069_795936.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Northern_Fulmar_0060_43813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Capped_Vireo_0009_797493.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0069_797441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0096_71080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0002_796244.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0114_165467.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0095_2610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0055_167331.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Hooded_Oriole_0043_90499.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0055_795555.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0030_184368.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0119_43042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0062_68198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0025_28174.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0027_37824.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0021_795127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Tropical_Kingbird_0116_69714.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0016_178629.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0025_179918.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rusty_Blackbird_0009_6853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0031_796455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0127_171742.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0034_129054.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0074_116539.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0068_794763.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0035_161741.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0091_20416.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0034_795560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0050_129051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0123_184692.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0050_77864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0025_176189.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0119_25610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0008_180400.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0055_40171.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0087_133294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Caspian_Tern_0117_146009.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Acadian_Flycatcher_0065_29070.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Legged_Kittiwake_0002_73788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bank_Swallow_0064_129816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0106_165689.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0049_118033.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0065_71132.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Hooded_Merganser_0015_79132.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Yellow_Bellied_Flycatcher_0064_795466.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0122_114776.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0024_186377.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0038_26912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Horned_Puffin_0082_100876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Legged_Kittiwake_0068_795430.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0096_145009.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0022_73459.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Philadelphia_Vireo_0042_156528.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0057_795485.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0079_110449.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Kingfisher_0018_71189.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0105_21714.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0006_15249.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0007_797521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Warbling_Vireo_0029_158679.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0026_189816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0051_794805.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0043_794792.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0118_20476.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0115_45797.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0044_161760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0124_53838.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0075_65701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0103_177162.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0077_182334.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0040_117721.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0015_2160.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Herring_Gull_0004_48046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Caspian_Tern_0070_147545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0112_93018.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0013_75530.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fox_Sparrow_0036_115581.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0124_22585.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0097_174554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bewick_Wren_0042_184878.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0024_59636.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pigeon_Guillemot_0053_39876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0077_81470.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0083_144083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0039_12756.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0065_795969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0040_159101.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0029_104849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0075_4953.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0031_42580.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0099_36828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0014_797462.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0047_56049.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0038_794592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0022_162912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0093_114757.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0051_1650.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Billed_Cuckoo_0050_26424.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0034_185130.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0052_63148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0140_157237.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0120_22189.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0025_796361.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Gray_Crowned_Rosy_Finch_0068_27196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0035_796430.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Caspian_Tern_0078_146824.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bobolink_0102_10807.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0022_84183.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0007_24902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0078_117052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0064_796573.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0016_33770.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0059_82126.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0040_794581.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0080_144130.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0056_21117.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0049_53318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Cockaded_Woodpecker_0033_794721.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Summer_Tanager_0097_140042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0068_726.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Eyed_Vireo_0115_157004.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0082_49306.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0047_794870.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bank_Swallow_0036_129567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0057_106681.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0003_164915.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0070_115645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0010_61939.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0026_795066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bank_Swallow_0069_129802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0103_794664.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0085_70503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0069_31291.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Crow_0025_25522.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0068_33387.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0073_158315.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0076_35432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0088_66722.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0084_159639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0035_101466.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0074_59.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Headed_Vireo_0039_156397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0098_51410.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0079_34342.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "House_Sparrow_0073_112745.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0008_795043.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0010_171239.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0081_43912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Red_Breasted_Merganser_0022_79274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Sparrow_0074_107408.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0061_26979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0091_88487.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0041_33396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0001_155380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0058_106634.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0001_149721.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0092_153361.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0069_28924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0010_795912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0004_29701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0026_27160.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0022_794625.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0081_98270.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mourning_Warbler_0079_166564.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "House_Sparrow_0074_111997.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0014_116129.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0101_51375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0058_186409.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0133_141069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0062_53538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0030_796003.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0015_98184.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Grosbeak_0006_38421.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0081_161427.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0002_16887.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0011_183934.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0045_175623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0112_85350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0045_120696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0098_173913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0017_796910.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0010_797545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_May_Warbler_0066_163005.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0019_38845.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0127_160031.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0023_26037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0041_31969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0021_22152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0101_184139.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0104_155529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0029_794760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Florida_Jay_0092_64924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0058_121832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0122_190570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0136_76593.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mallard_0030_77143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Least_Tern_0056_153965.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0024_61281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Parakeet_Auklet_0027_795925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Goldfinch_0128_32333.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0020_40088.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0095_60360.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0059_795365.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0046_154967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Eyed_Vireo_0077_157005.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0030_165782.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0086_795639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0125_122435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0095_139882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0046_171452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0052_123869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0006_188126.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0083_796773.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Sparrow_0065_107087.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0028_796322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Frigatebird_0090_43511.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0010_46425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0015_190099.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0040_78984.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Wood_Pewee_0026_98191.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0012_26382.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0056_81986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Horned_Lark_0046_73950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Black_Billed_Cuckoo_0047_26176.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Redstart_0067_103259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0097_144724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0041_796529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0105_41116.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0131_190061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0007_72438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0049_795244.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0066_785251.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0067_39592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0009_795510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0037_144110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0002_1670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0015_796922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0133_169575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0088_26217.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0087_15232.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0065_131555.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0001_796797.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Headed_Woodpecker_0081_182811.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Sparrow_0078_107298.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0020_85099.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0030_156533.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0018_1613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0093_155309.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0003_82827.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0117_134925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0046_120768.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0115_38330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0042_129385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0075_22970.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Horned_Puffin_0081_101054.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "American_Redstart_0049_103176.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0109_159883.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Tern_0050_153254.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0045_794876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Laysan_Albatross_0071_792.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Warbler_0069_176346.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0090_183964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Tern_0015_143979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0139_28419.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0077_86462.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0050_175573.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0116_103631.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0040_796272.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Yellowthroat_0098_190430.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Winter_Wren_0065_189675.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0091_115550.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0001_188047.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0044_797348.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "House_Wren_0117_187492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0010_796097.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "European_Goldfinch_0078_33170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0034_1154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Pelican_0125_93461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0056_176320.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0036_794572.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Black_Footed_Albatross_0071_796113.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Crested_Flycatcher_0068_29416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0049_80336.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0094_55156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0034_14864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0032_35931.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vesper_Sparrow_0080_125606.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0068_41835.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0011_98205.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0068_163147.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0056_797092.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0073_21932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Chipping_Sparrow_0088_107562.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Horned_Grebe_0031_34626.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Baltimore_Oriole_0007_88038.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0068_796135.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0129_175256.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0017_138484.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0017_797028.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0018_797517.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0068_167585.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0109_49382.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0075_796678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0075_795817.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0055_121158.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0055_144607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0077_162021.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0034_19437.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "American_Three_Toed_Woodpecker_0038_796182.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0032_172080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0049_57891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0017_107355.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0081_116326.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0006_6633.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0033_184636.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0033_796337.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rose_Breasted_Grosbeak_0084_39053.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0020_144163.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0009_117535.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0019_30358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vesper_Sparrow_0079_125579.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0028_181830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0019_81296.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0015_125653.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0032_159632.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0001_179912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0126_33593.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0049_183920.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0032_61177.jpg": { + "crown": false, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sage_Thrasher_0095_796446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0072_37301.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0034_147643.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0103_189509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0058_139427.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0120_140060.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0062_166531.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0105_49559.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0003_797467.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Groove_Billed_Ani_0105_1562.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0086_101221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0144_113216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0003_189167.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0049_177173.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0080_91417.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0017_171678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0102_88818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0104_166829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Least_Tern_0006_153921.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0034_42356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0050_39695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0013_19428.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0014_794549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0024_92302.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Heermann_Gull_0077_45711.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0061_177172.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0008_795599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0069_175181.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0111_157030.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0138_44694.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0133_2324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0024_24281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0004_28854.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0034_30151.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0044_129687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Marsh_Wren_0036_188374.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0068_40039.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Kingfisher_0085_73363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0093_41111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0021_174761.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Northern_Waterthrush_0011_177311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0008_795814.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0065_104856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0142_2636.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0091_30941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0020_159737.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0075_129431.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0014_797044.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0001_30669.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0079_26180.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0129_124960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0034_174854.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0099_29305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0125_188951.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0077_59452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0014_155541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0108_28143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0024_73178.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Tern_0020_153458.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0014_796739.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ivory_Gull_0036_49754.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0114_181092.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0063_795553.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0001_139008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0047_43698.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cardinal_0084_17576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0029_148035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0092_170604.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0014_794672.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0002_41762.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0007_795148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0018_130709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Boat_Tailed_Grackle_0112_33841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0005_796516.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0060_171635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Meadowlark_0085_77745.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0019_795329.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0097_187760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0062_797104.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clark_Nutcracker_0071_85125.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0135_121261.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0049_130181.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0041_797394.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0098_33152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0044_795480.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0024_13523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0023_797191.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pine_Warbler_0083_171117.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0133_187101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0058_173440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0039_794944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Warbling_Vireo_0053_158675.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0052_155605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0048_46061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0058_794994.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0073_40209.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pileated_Woodpecker_0105_180246.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0048_795771.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Wood_Pewee_0060_795045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0023_795835.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0024_23712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sage_Thrasher_0093_155501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0045_173536.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0036_30213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0064_796848.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0030_176236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0018_176674.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0078_180236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tropical_Kingbird_0017_69715.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0042_166493.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Painted_Bunting_0034_15207.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0051_794627.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0046_159668.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0026_32222.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0046_32105.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0110_42136.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0062_794850.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Grasshopper_Sparrow_0039_115980.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Hooded_Warbler_0053_164631.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0086_29518.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0059_42838.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Red_Legged_Kittiwake_0065_795456.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0032_12215.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0026_84945.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0075_137602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_Glossy_Starling_0034_129455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0003_69852.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0047_98274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0008_42703.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ruby_Throated_Hummingbird_0058_57298.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0014_796373.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Ovenbird_0010_92957.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0010_98611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0037_18092.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0004_43221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0011_796815.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0119_189545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0135_41383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0079_794820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0082_35356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ring_Billed_Gull_0131_51370.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0032_4004.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0011_73267.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0044_119287.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0101_9811.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0021_42913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Boat_Tailed_Grackle_0040_33417.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0056_70516.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0065_139198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "White_Breasted_Nuthatch_0002_86287.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0117_160369.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0060_23416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0027_113353.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Nelson_Sharp_Tailed_Sparrow_0038_796920.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0060_58986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0069_56933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0042_57431.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0042_795844.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Painted_Bunting_0096_15233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0064_86324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0109_60021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0109_64558.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0015_72835.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0081_25908.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0020_796697.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0118_167350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0074_22881.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Fish_Crow_0043_25847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clark_Nutcracker_0124_85128.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0066_120791.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0034_152667.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0035_2611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0076_174118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0121_124296.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0082_112478.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0013_794620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Redstart_0009_103974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0084_23836.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Summer_Tanager_0010_139948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0004_55605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0075_795234.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0141_186347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0006_161557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0074_100154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0025_180253.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lincoln_Sparrow_0110_117264.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0114_177621.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0039_177702.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0002_54825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0005_797062.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0103_67700.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0070_795135.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0088_73386.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0106_89680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0084_125532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0086_76567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0117_101833.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Tree_Swallow_0069_135148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0097_794688.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0010_26795.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0029_73165.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0009_97340.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Marsh_Wren_0095_188371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0095_91345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0018_796980.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0125_116031.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0034_58148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0043_795948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0055_180768.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0109_174121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0019_795815.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0017_62854.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0063_35529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0126_116029.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0018_168126.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0040_100482.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": false, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Green_Violetear_0021_795632.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0086_93757.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0033_105686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0032_2214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0097_30893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Capped_Vireo_0043_797458.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "American_Goldfinch_0017_32272.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0009_107333.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0031_1066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sage_Thrasher_0075_155527.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0079_101100.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0083_18042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0044_121931.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0111_64651.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0042_115638.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0082_161772.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0076_167389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0128_168012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0075_172709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0081_40339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0112_129101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0033_129435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0042_55990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0095_65881.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0042_1874.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0027_24022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0054_6676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0087_8358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0041_794645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0019_156921.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0062_156109.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0060_178190.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0051_168002.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0121_41196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0077_121196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0038_795477.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0130_138661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0031_796633.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0004_179908.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Crowned_Sparrow_0100_126267.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0083_795821.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0121_121203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0095_107268.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0095_110635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Sparrow_0035_123211.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0055_157096.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0055_183515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0044_9990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0085_66077.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0047_796520.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0020_162629.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0084_70399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0105_797143.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0079_89978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0018_51505.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0089_29592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0078_127603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0005_110911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0035_795878.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0106_155083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0066_159477.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0048_31312.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0015_134790.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Ivory_Gull_0045_49696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0039_924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0022_43457.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Bewick_Wren_0110_185216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0096_129388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0040_159624.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Black_Throated_Blue_Warbler_0010_161169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Spotted_Catbird_0029_796825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0056_180094.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0072_797391.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0046_794828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0012_18638.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0068_42701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Prothonotary_Warbler_0083_173929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Cerulean_Warbler_0056_163339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0018_796882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ringed_Kingfisher_0011_72982.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0084_129346.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0072_70924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0048_120758.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0095_176202.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Green_Jay_0121_65564.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Breasted_Merganser_0023_79477.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cliff_Swallow_0045_133591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Billed_Grebe_0115_35362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Chuck_Will_Widow_0055_796973.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0038_77785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0019_174692.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0099_30200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0058_24933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0010_144341.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Savannah_Sparrow_0107_119671.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0049_185339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0096_86140.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0049_30361.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0079_797018.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": true + }, + "Song_Sparrow_0091_121651.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0009_161880.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0060_796076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Whip_Poor_Will_0010_100464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Olive_Sided_Flycatcher_0034_30672.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mockingbird_0008_81226.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0026_70089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0022_23802.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Redstart_0054_103543.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0048_160287.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0051_54320.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0097_39514.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0028_26165.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0068_796353.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pelagic_Cormorant_0061_23548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Harris_Sparrow_0018_116402.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0063_188076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0006_111034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0129_167053.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0098_182732.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0086_34749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Lazuli_Bunting_0041_15152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0019_795987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Cape_May_Warbler_0049_162909.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0012_43062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0008_45839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0082_38552.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0013_796754.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Capped_Vireo_0015_797450.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0104_114908.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0031_90270.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0001_26242.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0120_24955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0069_166559.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0072_785260.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0015_35289.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Winged_Blackbird_0014_3761.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0082_70711.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0077_158427.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0059_795973.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Carolina_Wren_0014_186525.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0058_35503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Fox_Sparrow_0025_114555.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0093_795316.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0062_174949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0095_797113.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Canada_Warbler_0085_162385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Philadelphia_Vireo_0024_156645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0068_177462.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0022_133786.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": false, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rusty_Blackbird_0017_6755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0033_88347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0131_2289.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0111_87449.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0011_796750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Tree_Swallow_0102_135061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0057_127927.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0099_9314.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0069_130368.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0019_115958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0012_794785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0045_57347.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0057_17128.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0060_90879.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0119_126932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0082_173970.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0048_129397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0070_30490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "House_Sparrow_0067_112913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0091_44848.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0021_173816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0017_51412.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0123_76653.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0039_794794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0121_151385.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Fulmar_0050_43839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Barn_Swallow_0073_131389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0066_167949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Yellow_Warbler_0087_176591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0120_77834.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0068_795893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0034_34142.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Purple_Finch_0053_27543.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0083_16587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0076_73095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0099_49218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0110_158947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0001_794941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "American_Crow_0130_25163.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Breasted_Merganser_0081_79396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Tern_0095_154680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0041_8264.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0011_164801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0032_795186.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0088_794651.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0029_106668.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0009_106882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0068_70292.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ruby_Throated_Hummingbird_0107_57339.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0121_101744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0031_796172.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0040_796976.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Canada_Warbler_0077_162437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Ring_Billed_Gull_0059_51554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bewick_Wren_0084_184715.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0097_33759.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0010_37108.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0008_797531.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "House_Sparrow_0121_113182.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0036_61410.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Breasted_Merganser_0032_79280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Jay_0129_65680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0033_796169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0042_46637.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0078_113575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0076_108919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0012_153871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0020_34131.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0021_797286.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0035_30985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Henslow_Sparrow_0052_796599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0058_134987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0076_165832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0085_5846.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0107_36696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0007_156617.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0077_796913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0012_189021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0033_1494.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0016_138008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0067_795674.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0098_148785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clark_Nutcracker_0083_85480.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0089_141652.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0041_44013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ivory_Gull_0104_49666.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0123_145774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0059_145582.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0012_27062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0035_1888.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0101_179707.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0082_22330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0104_10273.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0062_79548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Palm_Warbler_0003_170474.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pacific_Loon_0036_75539.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Tennessee_Warbler_0023_174977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0045_145554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sayornis_0003_98618.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0050_22257.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Rock_Wren_0123_189405.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0026_110774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Ivory_Gull_0061_49416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0113_116801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0040_155667.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0008_72943.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0097_176538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0027_796147.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0056_29086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0007_795932.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0020_795482.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0030_795338.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Cockaded_Woodpecker_0022_794700.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Anna_Hummingbird_0121_56436.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Pelican_0129_94074.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0045_795162.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0033_30449.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0068_86033.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0020_76239.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Chestnut_Sided_Warbler_0126_164090.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0015_179827.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Great_Grey_Shrike_0083_797051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0103_143956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Florida_Jay_0002_64476.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0038_188530.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0094_190690.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0013_795534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0067_14672.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0105_113822.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0005_133696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0032_794679.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0022_95897.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Prothonotary_Warbler_0112_174594.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0041_39807.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0092_32910.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ruby_Throated_Hummingbird_0083_57397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baird_Sparrow_0021_794576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Clay_Colored_Sparrow_0071_110656.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0032_795333.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Auklet_0038_795132.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0044_176367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0051_796031.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0085_41830.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0093_138250.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Palm_Warbler_0134_168943.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0054_90849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0126_190342.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0099_44015.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bay_Breasted_Warbler_0097_159974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0067_170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0025_156439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0017_796323.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0087_70724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Wilson_Warbler_0108_175179.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0053_77774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0019_98636.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0044_37938.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0068_38981.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0029_39434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0060_69942.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0112_37922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0082_33488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0011_27633.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0012_129225.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0050_76519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orchard_Oriole_0023_91705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0038_175449.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0064_117965.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0031_8456.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0125_77850.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0039_46420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0079_143998.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0045_118004.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0071_165342.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0040_65863.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0118_114884.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0012_162701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0040_56293.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0130_67867.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0135_32107.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0030_156987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0129_189843.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0054_26313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0020_116289.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0053_797478.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0110_115644.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0027_22372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0091_167578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0113_147949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0001_1071.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Green_Tailed_Towhee_0043_797430.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0027_72948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0084_163132.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0101_141075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0048_70532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "American_Pipit_0102_99979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0015_159081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0123_94368.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0010_169452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0105_134648.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0109_41720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0100_65786.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0056_72863.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0094_124974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0003_794974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0049_106958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0075_147650.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0004_143881.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0022_123496.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0021_75859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Carolina_Wren_0091_186464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0049_186129.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0134_44743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bewick_Wren_0054_184902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0042_177887.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0047_43039.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0013_109937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0037_161707.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Carolina_Wren_0038_186436.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0005_125440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0025_24444.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0073_172771.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0087_6727.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0101_163169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0073_1171.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "White_Crowned_Sparrow_0033_127728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0018_175389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0061_82509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0025_108653.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0056_168740.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0049_796889.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0043_45939.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0069_84767.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0006_43753.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cliff_Swallow_0011_133033.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Eared_Grebe_0068_34052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Blue_Winged_Warbler_0036_161758.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0056_132916.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0057_795126.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Least_Tern_0052_154021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0023_165827.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0104_181616.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0053_161684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0127_44258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0027_158576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0055_42442.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Marsh_Wren_0103_188483.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0020_177149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Worm_Eating_Warbler_0015_795570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0053_43220.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chuck_Will_Widow_0037_796961.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Carolina_Wren_0086_186431.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0007_166500.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0072_177901.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Boat_Tailed_Grackle_0043_33595.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0058_29523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0031_71229.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0005_13832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0042_19430.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Yellow_Breasted_Chat_0012_21961.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0114_175295.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Meadowlark_0079_78856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0080_190663.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0005_27512.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0002_166520.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0041_125458.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Legged_Kittiwake_0030_73818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Common_Yellowthroat_0106_190989.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0076_785252.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Magnolia_Warbler_0052_165474.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0101_124104.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0028_176391.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0063_20707.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0095_189985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0025_796819.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": false, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Great_Crested_Flycatcher_0040_29447.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0071_175084.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0023_134314.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0094_119040.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0029_165567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0087_44550.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0035_794991.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0037_75800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Whip_Poor_Will_0033_82166.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_May_Warbler_0031_163012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0004_34277.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Herring_Gull_0051_46276.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0007_97985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0003_795487.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0027_34341.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_May_Warbler_0040_163036.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0102_176821.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "California_Gull_0074_41358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0055_57781.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0123_129009.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0106_41684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0041_26370.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vesper_Sparrow_0087_125712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0051_167250.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0069_71053.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Shiny_Cowbird_0044_24239.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0046_796966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Parakeet_Auklet_0025_795975.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0020_87066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0021_98101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0091_175050.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0079_796934.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0107_796614.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0033_188778.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0019_24323.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0061_16930.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0116_187604.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0015_26380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rose_Breasted_Grosbeak_0068_39094.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0030_111387.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0011_116597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0082_75954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Least_Tern_0112_153074.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0115_165041.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0018_154825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0027_795917.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0066_110819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0090_121057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0033_159912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0046_112845.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0031_129507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Philadelphia_Vireo_0001_156554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Prairie_Warbler_0051_172585.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0024_30942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Philadelphia_Vireo_0061_156613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0024_797529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Scissor_Tailed_Flycatcher_0111_42118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0098_41731.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0115_117216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0024_45486.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0083_150829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0062_137426.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0088_129437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0113_162403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0099_159753.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0126_19446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0022_71223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Henslow_Sparrow_0023_796582.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0108_112963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0094_797200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0039_116409.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0071_161900.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0004_164470.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0011_182803.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0013_135923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0019_23546.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pigeon_Guillemot_0005_40375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Nelson_Sharp_Tailed_Sparrow_0062_796919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0004_796941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Eastern_Towhee_0111_22168.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0034_93006.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0085_79146.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Horned_Grebe_0046_34926.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pine_Warbler_0105_170983.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0023_795035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0078_78959.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Song_Sparrow_0132_121153.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0023_167242.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0103_162972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nashville_Warbler_0121_167078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0030_134942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0126_159341.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0073_45714.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0095_63505.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0113_138262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0004_1528.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0080_79488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Crow_0136_25117.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0069_61060.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Eastern_Towhee_0093_22621.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0017_35073.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ivory_Gull_0117_49227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0098_85105.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0004_179215.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0073_14594.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0082_159186.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0026_797357.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0005_188235.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0054_101750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0080_14893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0056_141858.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0010_175750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0020_175505.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "White_Breasted_Kingfisher_0035_73290.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0045_109985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0064_69889.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Horned_Puffin_0007_100699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Mallard_0052_76946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0050_89750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0110_138274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0028_182395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0018_1817.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Mourning_Warbler_0064_166447.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Billed_Grebe_0125_35322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Song_Sparrow_0107_120990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0074_49698.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0039_165324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0080_159087.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0021_176421.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0102_171147.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0057_44807.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0075_158480.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0105_46113.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0111_59408.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0110_104163.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0063_794901.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0054_22782.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bronzed_Cowbird_0092_796215.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0141_188796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0092_17591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0063_51256.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0042_796277.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rhinoceros_Auklet_0043_2096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Black_Throated_Sparrow_0026_107198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0123_33695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0109_188329.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0078_110912.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0089_49699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0107_25353.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0091_796634.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0033_35379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Groove_Billed_Ani_0023_1485.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0034_155139.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0122_69687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0079_36656.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0043_177070.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0025_795692.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0029_144140.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0139_47006.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0090_796774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Prairie_Warbler_0034_172549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0111_27293.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0064_22649.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0010_129592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0098_164352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Long_Tailed_Jaeger_0048_797087.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0087_68102.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0075_161844.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0020_161875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0067_158283.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0075_188549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0095_64707.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0088_180054.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0074_25350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0124_164923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0106_81381.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0003_163305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0076_163075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0008_40942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0016_796424.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0005_565.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Henslow_Sparrow_0018_116834.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0053_165682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0008_33153.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0083_796450.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0039_34848.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Belted_Kingfisher_0020_70922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0062_41952.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0072_189521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0045_150752.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Jay_0044_66228.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0098_91401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0016_100993.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Eyed_Vireo_0006_157025.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0018_106776.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0122_123927.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0096_176586.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0099_70942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0018_795546.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0093_5948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0103_69311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0084_91658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Legged_Kittiwake_0019_795398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0018_796403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Forsters_Tern_0075_152258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0071_797108.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0094_68735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0064_795235.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Winged_Warbler_0021_161858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Kentucky_Warbler_0069_165318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0043_161438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0013_177343.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0039_26510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0024_165405.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0001_796860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0006_796607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0017_30979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_Glossy_Starling_0065_129299.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0022_104157.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0108_174125.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0037_32071.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0113_35703.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Necked_Raven_0045_797381.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Cockaded_Woodpecker_0027_794713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Song_Sparrow_0116_121211.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0021_795250.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0017_73145.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0049_79432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cedar_Waxwing_0093_178139.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0064_2290.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0015_62916.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0121_164125.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Least_Tern_0119_153950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0030_190311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0010_129352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0018_160438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Rock_Wren_0043_188933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0075_184346.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0001_43101.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bank_Swallow_0058_129756.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Henslow_Sparrow_0059_796569.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0101_156988.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0062_174412.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0063_166121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0033_71883.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0036_65107.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0014_24030.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0036_37048.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0058_162948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Flicker_0091_28799.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0017_796349.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Crow_0036_25313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0118_103033.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0071_796946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0015_96952.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rufous_Hummingbird_0115_59202.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0048_6632.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0073_115996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0080_165351.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0028_795057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0115_160654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0044_22106.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0054_42210.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0004_161404.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0051_177120.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0031_165363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0100_175726.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0024_29041.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0134_74689.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0016_796803.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Black_Footed_Albatross_0057_796106.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Indigo_Bunting_0006_14317.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0023_116363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0054_19334.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0082_177596.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0098_57514.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0046_23446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Jay_0051_63339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0073_85343.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0036_99658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0031_178929.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0134_20596.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0093_37107.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Blackbird_0070_2325.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0069_796709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0011_94683.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0047_619.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0021_796732.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sayornis_0011_98610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Prairie_Warbler_0112_173383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0082_2593.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0009_155221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0007_174745.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0052_797125.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0008_795071.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0119_105138.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0003_110672.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0100_32183.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0073_927.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Headed_Blackbird_0003_8337.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0124_142121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0009_189162.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0057_82640.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Eyed_Vireo_0002_159180.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Painted_Bunting_0025_16722.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0038_117461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0076_158500.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0071_105040.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0020_173359.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0076_90895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0007_184051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0089_186023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0086_33818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0073_180994.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0013_163749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0001_795271.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0023_42117.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0006_797065.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nighthawk_0090_82579.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Whip_Poor_Will_0038_100443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chestnut_Sided_Warbler_0006_163858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0081_77798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0029_190376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0062_165199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0076_150519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0045_155182.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Pelagic_Cormorant_0053_23760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chuck_Will_Widow_0026_796963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Slaty_Backed_Gull_0053_796051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0045_59533.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0061_76378.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Breasted_Nuthatch_0036_86596.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0076_189141.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0038_797077.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0062_178788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0045_36672.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0028_25968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0034_794766.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0111_58141.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orchard_Oriole_0009_91902.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0033_189397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0090_143880.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0056_97071.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Rose_Breasted_Grosbeak_0080_39734.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0040_165173.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0115_73252.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0064_47832.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0007_19424.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Indigo_Bunting_0022_12781.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0088_173606.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0042_132043.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0067_95573.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0098_156348.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0082_172783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0008_43058.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0087_15096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0077_190366.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0063_64781.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0102_93172.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0006_796986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bay_Breasted_Warbler_0089_797141.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0055_105246.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0084_156943.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0083_138500.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0068_53206.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Scissor_Tailed_Flycatcher_0020_41680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0037_36469.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tropical_Kingbird_0044_69815.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0078_163271.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0031_41469.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0016_79476.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0007_26023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0027_797355.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bewick_Wren_0124_184771.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0051_794900.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0049_29474.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0041_794893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Puffin_0062_100693.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Grasshopper_Sparrow_0098_116027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0003_58269.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0126_32480.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0081_17291.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0026_2625.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0035_70644.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0111_102945.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0006_20867.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0061_1510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0001_27211.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0036_120785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0012_797171.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0007_121133.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0071_44146.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Spotted_Catbird_0008_796789.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0044_14389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0052_116544.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0103_77105.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0092_111413.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0001_797384.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Kentucky_Warbler_0042_165268.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Scott_Oriole_0043_795828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0021_41471.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0020_129747.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0086_14992.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0083_185190.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0098_49810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0011_92451.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0073_797138.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0076_43893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0060_177583.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0048_91393.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0012_794697.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Headed_Woodpecker_0076_183288.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0055_182520.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0025_794647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0044_794836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0006_182592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0092_39367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0005_161168.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0009_155953.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chestnut_Sided_Warbler_0069_163921.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0018_492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bronzed_Cowbird_0053_24170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0003_171639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0017_795598.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0048_150693.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pacific_Loon_0034_75438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Cape_May_Warbler_0069_162980.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0099_180766.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0072_187899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0095_8458.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0129_106389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0002_156470.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0057_183234.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Mallard_0098_77490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0028_120766.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0088_35023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rusty_Blackbird_0074_6585.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0113_128936.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0021_182647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0054_97528.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0139_45749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0024_161619.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0017_2155.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0019_107452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0038_75526.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rufous_Hummingbird_0118_59393.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0046_107339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0063_797361.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0020_182335.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Artic_Tern_0111_143101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0048_167071.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0121_164639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0103_72894.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0117_10215.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0085_1612.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0054_70424.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0082_15047.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0011_28466.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0054_161158.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0019_155216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0108_81908.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0053_796331.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bronzed_Cowbird_0057_24074.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0005_159739.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0028_116656.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0027_48974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0073_175876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0004_794874.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0103_150493.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0055_170219.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0045_156608.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0040_796375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pomarine_Jaeger_0020_795761.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0010_796672.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clay_Colored_Sparrow_0105_110547.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0005_163197.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0102_14605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0142_186443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0078_2659.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0050_134054.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0061_34407.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Common_Raven_0061_102519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0025_166704.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0047_143549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0085_794757.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Loggerhead_Shrike_0103_105137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0060_174840.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0115_68840.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0129_51246.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Auklet_0011_795109.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Geococcyx_0084_104574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0114_153840.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0089_175619.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0019_159095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0107_6839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0023_108684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0117_33576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0061_126315.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0133_32802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0039_88027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0063_795453.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0107_173080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Thrasher_0012_155121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0036_27641.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0075_796352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Kentucky_Warbler_0004_165358.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0133_112368.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0048_27670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Meadowlark_0017_78940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0062_110908.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Black_Billed_Cuckoo_0081_26209.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Pelican_0088_94076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0018_59447.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0071_31655.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Lazuli_Bunting_0004_14887.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0092_51521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0090_1567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0079_2343.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Bellied_Woodpecker_0110_181188.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0107_38351.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0089_177167.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0103_133882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0109_157176.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Sooty_Albatross_0019_796391.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0072_23069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0001_164704.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0041_164807.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0044_784.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Merganser_0034_796762.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Le_Conte_Sparrow_0071_795185.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0022_176111.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Baird_Sparrow_0027_794590.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0038_23643.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cactus_Wren_0098_185637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0006_29362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0007_18537.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0100_23894.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Evening_Grosbeak_0122_37864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0053_797360.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0074_795976.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "White_Necked_Raven_0036_797359.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0108_73169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Footed_Albatross_0007_796138.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Green_Violetear_0089_795698.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0106_71404.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0021_797083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0045_1162.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Common_Tern_0076_148391.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0009_120205.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0076_796445.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0107_73265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0095_99959.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0067_118491.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0106_173071.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0116_189834.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0060_100726.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0064_795422.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Lark_0013_74374.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0053_138940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0082_26241.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rufous_Hummingbird_0120_59900.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0094_71112.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0042_42266.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0005_794922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0046_121903.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0068_35111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Seaside_Sparrow_0001_120720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0033_109069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0004_27565.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0029_72440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Slaty_Backed_Gull_0056_796013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Hooded_Warbler_0013_164627.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0103_73316.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0049_42593.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0044_796151.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Herring_Gull_0130_46675.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Forsters_Tern_0066_151478.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0055_138186.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0004_102714.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Yellow_Breasted_Chat_0071_22129.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0115_37490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0040_70313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0007_1615.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Puffin_0028_100765.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0041_796711.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0028_160371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0123_172603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0081_800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0065_186517.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0108_114154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0040_795839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0094_47172.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0022_188958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0091_15198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0141_21174.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0072_107255.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0080_108685.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0038_144102.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Pipit_0039_99841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0030_185798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0024_63167.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bewick_Wren_0097_185358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0035_795575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Creeper_0125_24995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0069_186033.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0009_795740.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Goldfinch_0096_31876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0051_44543.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0022_23157.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0025_796047.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0030_155861.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Headed_Woodpecker_0094_183401.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0012_794977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0018_177557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0049_119596.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0053_60906.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Field_Sparrow_0107_113659.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cedar_Waxwing_0095_178163.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0077_24273.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0076_178732.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0022_26062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0049_149159.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0067_100737.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0014_87690.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0018_139290.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0019_797513.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Frigatebird_0082_42989.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Headed_Blackbird_0077_8332.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0090_176366.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0072_190402.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Myrtle_Warbler_0015_166713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0006_176037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0055_35104.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0109_77990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0095_14919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0079_158791.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0045_42219.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0077_144117.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0023_24058.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0004_135411.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0037_70050.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0096_155449.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0009_162343.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0025_794564.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0011_24138.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0004_171215.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0001_30221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0017_796960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Bellied_Woodpecker_0086_181891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0029_186212.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0070_79054.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Grey_Shrike_0022_797057.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Worm_Eating_Warbler_0081_175971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0081_155256.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0033_796023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0045_794940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0016_158978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0023_42565.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0119_35377.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Painted_Bunting_0036_16563.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0052_42621.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0006_795775.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Field_Sparrow_0126_113426.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0131_156765.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0020_2195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chipping_Sparrow_0008_107810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0083_72430.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0008_796420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Summer_Tanager_0066_140621.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0011_180519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0130_92452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0022_796398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Painted_Bunting_0086_16540.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0093_54925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0070_35472.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fox_Sparrow_0063_114350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0046_174104.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0007_190052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0049_30936.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Kingbird_0060_795021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Forsters_Tern_0114_152768.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0067_176856.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0021_155160.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0075_91847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0121_113455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0061_143959.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0071_108735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0042_161512.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0077_152255.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0017_796098.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0045_795953.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0075_795004.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0052_143244.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0049_26766.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0071_797285.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0029_17297.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0130_189531.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0016_65864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0071_785255.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Indigo_Bunting_0003_13049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0046_794798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0041_175464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0023_6752.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0044_133927.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0010_96876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Green_Violetear_0009_795647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Indigo_Bunting_0076_12950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0130_89596.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0076_40788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0049_176526.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0028_95950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Sparrow_0055_107213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0101_145164.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0033_175259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0069_795435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Great_Grey_Shrike_0070_106547.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0070_174650.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0071_128915.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0022_158144.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Horned_Lark_0088_74590.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0075_96422.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Oriole_0050_90629.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0094_133114.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cedar_Waxwing_0048_178960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0083_148096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0097_26713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0054_14714.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Le_Conte_Sparrow_0056_795178.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bronzed_Cowbird_0056_796222.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0075_114920.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0083_116844.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0094_158894.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0030_104525.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0047_85819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0030_159265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0005_21828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Belted_Kingfisher_0040_70432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0131_94464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0061_24601.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0124_10182.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0050_20763.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0052_50013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0054_116850.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0048_132793.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0079_118817.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0031_30935.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0050_116301.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0057_8236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0080_795965.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mockingbird_0086_81868.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0024_794885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Pelican_0043_94506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0041_794582.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Cardinal_0097_17396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0015_169626.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0023_796899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ovenbird_0035_92785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0004_174997.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0052_27032.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0039_24026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0015_78610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0117_84912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0013_27110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vermilion_Flycatcher_0067_42185.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0133_188565.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0104_152666.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0058_21864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0026_95832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0085_164846.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Grasshopper_Sparrow_0040_115696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0054_42709.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0028_42010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0032_91201.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0086_138272.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0074_27156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0100_167226.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0128_110971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0014_82624.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0013_794772.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0008_64482.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0087_797122.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0031_100.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Eastern_Towhee_0013_22336.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0074_22620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0009_795023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0016_152463.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0063_71345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0065_795551.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0017_34139.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ovenbird_0090_93375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chestnut_Sided_Warbler_0073_163868.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0088_151893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0076_130757.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0062_182371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0074_71830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0025_797274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0032_165960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0053_796694.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0059_58210.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0011_69877.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0094_27323.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0103_39882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0085_24152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0068_797093.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0080_160375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0101_6244.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0049_43044.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Florida_Jay_0093_64675.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0023_45090.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0107_104534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0049_795561.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Great_Crested_Flycatcher_0084_29716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0054_61656.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0022_36148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Nashville_Warbler_0110_167268.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0111_65869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Kentucky_Warbler_0059_795905.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0014_161783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0089_8326.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0046_79330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Seaside_Sparrow_0064_120813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0011_23667.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Breasted_Merganser_0044_79321.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sayornis_0129_98924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0092_155482.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0138_74083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0006_190576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0030_57422.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0002_30776.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Evening_Grosbeak_0070_37767.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0022_107440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0004_168786.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0045_155448.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0009_158830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0028_151019.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0068_796930.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0091_91774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0020_186012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0062_168119.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0094_132154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0043_161804.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Indigo_Bunting_0017_11574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0058_83270.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0102_56087.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0024_796993.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0045_174913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0079_43599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sooty_Albatross_0038_1065.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Whip_Poor_Will_0047_796412.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Le_Conte_Sparrow_0072_795230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0124_128801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0058_796616.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0096_673.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Myrtle_Warbler_0110_166785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0085_69737.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bobolink_0059_10041.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0055_177114.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0075_795298.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0083_176292.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0088_117634.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0116_2327.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0099_795182.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0025_26375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0063_27123.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Barn_Swallow_0016_130678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0071_65799.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0062_34249.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Blue_Grosbeak_0023_37069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0102_69654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0003_70305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Waterthrush_0084_177239.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0076_1661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chestnut_Sided_Warbler_0014_163801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0060_185950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0078_165123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0105_104239.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0103_185506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0023_174717.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0016_1075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Sparrow_0088_107220.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Gray_Catbird_0094_21303.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0006_42564.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0046_98113.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0001_78676.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Philadelphia_Vireo_0002_156591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0061_563.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0013_143892.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0035_131832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Marsh_Wren_0118_188512.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0094_176365.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0069_87839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0057_176006.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0058_70998.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0013_27506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0020_797052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0019_34811.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Downy_Woodpecker_0032_184622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0116_100015.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0009_796611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0039_184989.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0075_72581.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0091_74087.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0012_188275.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0072_165305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0025_34344.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Warbling_Vireo_0045_158399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0008_159573.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0012_795927.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Winged_Blackbird_0044_5621.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0111_139605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0075_65093.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0013_797537.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Harris_Sparrow_0088_116445.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0035_30799.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Magnolia_Warbler_0064_165471.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0054_56419.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Legged_Kittiwake_0029_795403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0022_177642.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0009_45905.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0114_98976.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0054_154938.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0026_115915.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0121_176402.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0078_151196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0134_32409.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0045_36425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Carolina_Wren_0033_186848.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0033_166727.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0086_157038.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0051_795807.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0061_796723.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rusty_Blackbird_0036_6550.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0031_184120.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0028_158492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0033_36980.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0060_44215.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0100_35310.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Grosbeak_0036_38968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0060_60886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Summer_Tanager_0032_140425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0123_151789.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0033_34736.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0010_795498.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Summer_Tanager_0004_139916.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0051_82619.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Breasted_Chat_0026_21845.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0042_128899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0024_120751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0070_796571.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0027_85905.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0038_180300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0017_24019.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0022_181969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0037_795381.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0080_20139.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0019_129407.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0081_14709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0044_25964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0087_23126.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Legged_Kittiwake_0021_73808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Seaside_Sparrow_0071_796519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0051_26988.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0050_33501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0096_116758.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0064_166679.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0127_98865.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0025_795009.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0064_30328.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0041_70119.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0039_796530.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0025_794881.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0009_107481.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0038_22399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0085_29812.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0123_58546.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0041_182788.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Western_Wood_Pewee_0016_98082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0077_123417.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0050_97913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Downy_Woodpecker_0096_184532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0003_63408.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0025_116648.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Least_Auklet_0016_1903.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0006_70268.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0119_124114.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0084_26761.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0114_76924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0054_29113.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0049_98263.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0010_29199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Fox_Sparrow_0124_114662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0113_114389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0046_116425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0067_102630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0071_67426.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0004_165535.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0026_71875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "European_Goldfinch_0004_33313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0114_189283.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0089_103187.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0052_5575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0036_795635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0054_176130.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0114_65841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0081_45223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0040_79207.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ruby_Throated_Hummingbird_0054_57364.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0033_189635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0042_138287.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0072_147667.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0049_797129.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0107_37933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0066_65018.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0081_53264.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0098_78382.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0021_189175.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0005_19411.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0041_795933.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Pelican_0140_93438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0136_184534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0113_27547.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0024_177661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0139_2567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0005_794599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Kingbird_0022_70155.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0012_115324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Rock_Wren_0001_189289.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0066_85390.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0067_166828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0004_795513.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Warbling_Vireo_0017_158271.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ringed_Kingfisher_0053_72875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0004_36130.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Least_Auklet_0045_795069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0026_141839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0068_183662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0086_172534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0012_66932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0022_92702.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0091_107346.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0032_93199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0039_21654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0039_64576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0005_98958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0019_72659.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0051_34209.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Eyed_Vireo_0095_157082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0047_787318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0025_38443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0037_179710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Barn_Swallow_0043_130779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Western_Gull_0006_53504.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0049_166469.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ring_Billed_Gull_0095_50362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0015_14690.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0055_159740.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0089_179969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Pigeon_Guillemot_0083_39980.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Headed_Blackbird_0073_8442.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0081_426.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Boat_Tailed_Grackle_0113_33490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0059_49662.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0055_116512.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0077_114944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0001_51416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0048_66981.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0096_35579.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fish_Crow_0016_25854.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0002_129057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0002_129654.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Shiny_Cowbird_0076_24363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0060_795657.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0125_148767.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0056_70972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0035_79635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0105_797438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0034_795096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0122_40866.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0014_26388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0037_36794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0079_148844.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0052_51357.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0008_166467.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Nuthatch_0048_86207.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Vesper_Sparrow_0018_125651.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0100_176733.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0048_795505.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0031_102890.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0018_155868.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0043_49755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0043_176247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tropical_Kingbird_0031_69333.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0098_796601.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0116_139923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0028_169670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0085_142083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0064_159286.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0126_41905.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0066_183322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0127_20034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0060_26016.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Grosbeak_0078_38242.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0009_29155.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0086_188944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0064_162417.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0122_71789.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0128_65629.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0018_116056.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0040_86127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0117_148944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0018_2261.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0089_797036.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0063_163927.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0075_36435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Fox_Sparrow_0110_115172.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0001_796718.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0054_795396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0042_181062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0025_95218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0023_107489.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0060_156171.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Bellied_Woodpecker_0009_180961.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0023_20668.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0066_36632.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0004_797476.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0053_129501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0089_166896.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0001_58162.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Whip_Poor_Will_0048_796417.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Gray_Crowned_Rosy_Finch_0055_27112.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Jay_0015_65796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Louisiana_Waterthrush_0004_177455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0122_45627.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0088_121615.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0105_141098.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0014_164672.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0073_6744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Billed_Grebe_0086_35483.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Kentucky_Warbler_0051_795884.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0021_179832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Philadelphia_Vireo_0019_156640.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0035_160102.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0056_116532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0066_164078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0053_96236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Elegant_Tern_0065_151021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mangrove_Cuckoo_0052_794608.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0022_797459.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0060_155728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0063_159677.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0090_161507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0083_756.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Cedar_Waxwing_0026_178878.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0039_124140.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0034_139781.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0118_28500.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0069_164456.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0035_795618.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0106_85955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0080_172724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0079_180388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0043_56059.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0045_796856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0084_786383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Kentucky_Warbler_0062_795897.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Loggerhead_Shrike_0011_104921.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0077_130707.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0106_24617.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Pipit_0087_99996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0119_167658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0079_4527.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0011_91592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0108_103686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0054_190398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0030_177635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0019_91338.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0126_190407.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0020_106971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0028_129309.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0003_129623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0053_795321.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0066_102774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0052_77781.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0071_794796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0033_118024.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Tennessee_Warbler_0046_174798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0094_86156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0118_188964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0105_40078.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Yellow_Headed_Blackbird_0091_8555.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_May_Warbler_0128_162971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0117_175262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0042_100760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Olive_Sided_Flycatcher_0086_30553.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Tern_0042_153809.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Warbler_0118_171152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0050_28284.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0072_100938.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Rhinoceros_Auklet_0009_797539.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Yellow_Billed_Cuckoo_0093_26432.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0140_46455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0080_184240.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0012_797101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0080_167960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0041_42719.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0075_30892.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0045_99687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0013_77619.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0104_163638.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Golden_Winged_Warbler_0013_794837.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0129_46708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0042_797356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0002_73491.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0097_188214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0054_28913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vesper_Sparrow_0002_125454.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0003_78864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0025_175859.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0012_795074.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Barn_Swallow_0002_130551.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0113_68470.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0076_33173.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0021_72848.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0031_172818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0028_51454.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0079_796389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Headed_Vireo_0097_156272.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0047_795593.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0130_45700.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0009_144046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0127_59587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0130_74001.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0056_795926.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Breasted_Merganser_0033_79353.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Auklet_0058_1931.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0118_178779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0026_41774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0027_161795.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Black_And_White_Warbler_0046_160202.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0095_86425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0072_796269.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "American_Three_Toed_Woodpecker_0018_179831.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0121_161418.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0101_37697.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0005_15202.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0006_796823.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0078_794776.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0028_60800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0055_156247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0021_162325.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0049_796279.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "House_Sparrow_0119_111471.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0118_73511.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0050_16670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0032_73248.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0058_53882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0010_75291.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0093_72465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0046_4242.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0011_156276.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0084_164944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0039_25061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0057_75854.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Elegant_Tern_0032_150488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ivory_Gull_0055_49353.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0064_167411.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Catbird_0111_19550.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0087_29252.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0040_34340.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Harris_Sparrow_0029_116516.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0031_100804.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Canada_Warbler_0099_162425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0074_28101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0060_17139.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0025_92207.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0084_85149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0065_48098.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0002_26715.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Evening_Grosbeak_0079_37979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0083_30959.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pileated_Woodpecker_0087_179959.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0010_795092.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Olive_Sided_Flycatcher_0012_796876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0082_166574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Belted_Kingfisher_0055_70517.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0029_795262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0045_102823.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0022_183010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gadwall_0066_31557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0044_45705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0075_28729.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0047_797211.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0027_100189.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0067_127576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0077_41688.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0033_42522.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0084_58311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0074_796901.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0109_139522.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0070_796346.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0024_795120.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Ivory_Gull_0005_49021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0037_30784.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0055_41218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0130_164826.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0022_177003.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0014_796906.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0071_76940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0052_34205.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Ring_Billed_Gull_0125_51307.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0096_174372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0010_794907.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0076_25971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0085_129180.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Lincoln_Sparrow_0044_117687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0064_794992.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0120_167587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0032_167385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0063_794726.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0077_92590.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0084_117492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0004_794614.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Pied_Kingfisher_0107_71987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cardinal_0020_18664.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0017_132951.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0036_1604.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0086_65847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0060_167347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0135_39227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0012_795773.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rock_Wren_0004_189046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0010_104197.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0007_158717.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0035_74555.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0054_794847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Barn_Swallow_0026_132386.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0043_70492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Puffin_0046_100785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Cape_Glossy_Starling_0020_129328.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0016_25112.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0123_73211.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0054_120057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0059_166946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0076_125737.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0061_70363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bohemian_Waxwing_0021_796625.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0012_75736.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scott_Oriole_0032_795810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0038_23110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Tree_Sparrow_0097_123462.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0003_794962.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cactus_Wren_0078_185899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0029_34258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Kingbird_0071_70100.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Painted_Bunting_0093_15212.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0068_126156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0109_145948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0109_119674.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0041_70595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Shiny_Cowbird_0063_24259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0043_38992.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0084_26175.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Geococcyx_0096_104369.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0072_42218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0035_28332.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0069_155544.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0058_118023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0048_32885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0022_54607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0107_187230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0019_177684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0132_25704.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0088_57366.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0108_117773.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0054_795130.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Myrtle_Warbler_0023_166764.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0132_2293.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rhinoceros_Auklet_0032_797516.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0045_14954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0015_133176.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0059_96675.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0083_796834.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0023_796059.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Lincoln_Sparrow_0083_117272.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0059_795030.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0008_118929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Ruby_Throated_Hummingbird_0110_57851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0041_136439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Vesper_Sparrow_0094_125602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0036_73814.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0017_8511.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0002_79447.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0047_79486.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0130_187109.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0076_175780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0017_794988.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0055_65807.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0005_5636.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0039_17597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0008_100390.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0107_158453.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0068_167266.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0069_92271.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0036_26682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0033_118871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0025_75003.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Heermann_Gull_0020_45409.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0023_163133.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Whip_Poor_Will_0031_100397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Cockaded_Woodpecker_0052_794752.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Billed_Cuckoo_0028_26446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0040_121617.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0122_186365.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0031_6699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0116_143613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0037_174691.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Artic_Tern_0080_140889.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0017_30704.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0045_794690.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0076_79312.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0007_94078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0024_73736.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0072_796371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Billed_Cuckoo_0009_26656.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0091_1728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0049_13641.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0072_795438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0067_156584.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0014_107435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Magnolia_Warbler_0041_165709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0028_4709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0094_795634.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Anna_Hummingbird_0050_56794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Redstart_0071_103266.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0078_79393.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0001_69958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0081_149228.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0095_156092.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0045_42823.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Boat_Tailed_Grackle_0033_33524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0028_26358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scott_Oriole_0045_92237.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0009_177972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0064_150822.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Yellowthroat_0077_190990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0046_61301.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Common_Raven_0068_101216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0015_132757.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Carolina_Wren_0035_186356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0056_128906.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0125_90382.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0055_111393.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0034_156251.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0071_72576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Merganser_0036_796771.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baltimore_Oriole_0119_88022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Least_Tern_0075_153691.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0063_142495.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0058_36403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Tern_0099_144242.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0047_23718.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Crowned_Sparrow_0087_128008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0022_796905.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0035_795464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Grey_Shrike_0043_106818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pileated_Woodpecker_0119_180030.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0142_45798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0080_185901.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0039_86166.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0049_797543.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bank_Swallow_0017_129755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0012_159495.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0045_187374.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0001_166266.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0031_156056.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0020_186702.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0043_147753.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0031_15018.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0007_796431.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Sparrow_0130_124932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0029_119621.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0089_188318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0099_102534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0110_28602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0043_86196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0012_1784.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0135_45283.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0038_109234.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0079_168372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0081_116755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0047_130016.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0012_794646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0138_85633.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0040_188252.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0104_164982.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0124_90350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0029_65114.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0029_794985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0025_98620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0028_180258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Groove_Billed_Ani_0069_1546.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0037_796166.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0015_80652.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0040_137885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0045_22916.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Golden_Winged_Warbler_0014_164464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chestnut_Sided_Warbler_0097_163750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0050_796276.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Gray_Crowned_Rosy_Finch_0010_27039.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0121_162310.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Downy_Woodpecker_0038_184418.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0073_185670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0086_44268.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0074_19601.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0116_73840.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0035_106904.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0101_120920.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0080_70725.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bank_Swallow_0049_129611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0034_176204.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0074_91081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0055_795762.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Cockaded_Woodpecker_0036_182519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0091_71248.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0083_25949.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Florida_Jay_0054_65046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0010_19436.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Myrtle_Warbler_0102_166725.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0084_78954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Pipit_0067_100237.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0115_180775.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0001_115938.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0079_49179.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0002_42390.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0061_150524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0052_796316.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Marsh_Wren_0044_188270.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0065_116435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0072_102443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0054_75543.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clay_Colored_Sparrow_0099_110561.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0099_64435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0006_79216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Throated_Sparrow_0031_128808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0008_68321.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0055_1160.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0002_794696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rufous_Hummingbird_0106_60465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Capped_Vireo_0024_155905.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Nighthawk_0035_84077.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Harris_Sparrow_0072_116662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0094_795522.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0036_161517.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0006_75386.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0112_45748.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0039_796811.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0029_794583.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Faced_Cormorant_0037_796305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0056_188241.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0034_40074.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Three_Toed_Woodpecker_0049_796191.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0028_36196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Brewer_Blackbird_0045_2303.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Sooty_Albatross_0058_796360.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0080_103749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0109_57022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0068_25198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0090_107295.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pied_Billed_Grebe_0072_35939.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Tailed_Towhee_0064_154771.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0092_795524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0019_174786.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0067_795335.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0035_116049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0105_4842.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0055_173419.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0062_21673.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0076_154999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Herring_Gull_0034_48824.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0059_796982.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0015_797291.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0140_125967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pelagic_Cormorant_0012_23565.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0012_794960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Painted_Bunting_0071_15209.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0059_794855.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0026_72867.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0039_797451.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0045_797217.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0096_30233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0022_30551.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0127_135912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0101_21677.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Catbird_0027_20968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0063_24724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0024_154855.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0029_110720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0052_33082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0137_119757.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0130_113846.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0091_6695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0020_71155.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0113_25149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0015_795152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0022_117759.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Mallard_0093_77419.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0002_179885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0018_11883.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0109_79682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0113_170080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0001_12469.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Canada_Warbler_0042_162448.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0024_177293.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0047_796064.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Eyed_Vireo_0122_159284.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0006_169429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0009_145057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0037_796810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0096_155969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0068_150526.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0064_794670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0127_187832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0013_121056.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0032_44594.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0102_21696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0010_58285.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0039_114816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0045_794612.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0067_45156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0016_794841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0038_70118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0070_796832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0024_170501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0081_39136.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0018_102746.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0133_9618.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0004_69659.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0073_795939.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Pileated_Woodpecker_0124_180168.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0063_70287.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0023_129179.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0040_795051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Pigeon_Guillemot_0026_40126.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Grebe_0080_36310.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0014_14824.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0100_33985.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0017_796513.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0075_78977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0025_42248.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0023_796525.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0121_72378.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rose_Breasted_Grosbeak_0086_39658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0094_178049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0067_85302.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0055_186154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0029_120989.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0086_24386.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0068_25859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0046_91646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0052_794952.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nighthawk_0050_84094.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Caspian_Tern_0015_145664.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Crowned_Sparrow_0122_128577.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0051_179965.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Black_Footed_Albatross_0079_796122.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Wilson_Warbler_0070_175169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0095_101831.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0049_73420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0060_30214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0100_37863.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0019_796788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0004_26790.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0047_156521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0138_184385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0101_6880.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ring_Billed_Gull_0074_52258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0002_796959.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "European_Goldfinch_0090_794648.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0020_66168.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Clark_Nutcracker_0003_85296.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0039_141390.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0027_796512.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Philadelphia_Vireo_0003_156565.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0066_178719.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0024_89720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0053_73476.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0072_795379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Elegant_Tern_0009_150954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Sparrow_0035_107185.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0095_39178.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0007_122911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0073_796332.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Tern_0030_147825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0105_70550.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Swainson_Warbler_0040_794860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0052_53485.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0013_795759.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mockingbird_0046_81086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0070_152107.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0080_23890.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0094_65775.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0115_172689.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0063_79238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bank_Swallow_0030_129560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Common_Raven_0001_101213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0077_129378.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0081_27913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0047_119365.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0064_23641.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scarlet_Tanager_0089_138281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0044_26393.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Sparrow_0074_124408.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0027_795454.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0042_39158.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0051_795470.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0063_30190.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "White_Throated_Sparrow_0118_129084.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0005_797453.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0005_30924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baird_Sparrow_0046_794588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Grebe_0093_36193.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Lark_0072_74067.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0039_49412.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0012_84333.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Capped_Vireo_0010_155832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "American_Crow_0062_25587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0028_2056.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Tern_0037_153637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0002_161890.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0047_97190.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nighthawk_0083_83647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Prothonotary_Warbler_0038_173867.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0030_796801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0032_796334.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0046_139802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "American_Pipit_0085_100246.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0118_78820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0113_189204.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0054_161862.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Savannah_Sparrow_0017_119171.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0124_128082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0057_168424.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0032_1776.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0012_42253.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0052_30639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0086_106970.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0056_36216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "California_Gull_0103_41044.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0063_71999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0118_151564.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0095_28938.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0062_159783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0007_125630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0128_102983.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bohemian_Waxwing_0048_177821.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0038_156963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0098_34662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0056_1493.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0080_27108.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0020_39152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0080_177379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0056_12637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0121_6637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0076_796005.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ringed_Kingfisher_0014_72798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pigeon_Guillemot_0095_39867.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Raven_0037_101096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0051_796522.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0075_70873.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0011_166382.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0086_160836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0106_797247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0059_11596.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0022_160512.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0121_24574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0041_171477.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0041_13987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0020_163353.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Harris_Sparrow_0038_116610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0066_189637.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0050_184919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0099_141170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0090_190503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0025_64673.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0101_22559.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0094_36995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0029_179569.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0080_93439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0038_795935.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0034_796969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Billed_Cuckoo_0092_26859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Barn_Swallow_0021_130367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0055_187397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Hooded_Oriole_0118_90049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Least_Auklet_0007_795123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Common_Yellowthroat_0093_190609.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0128_45663.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0095_113842.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0029_115761.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0133_37976.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0040_34548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Creeper_0002_24838.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0027_107278.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0052_150695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0104_177137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0101_166942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0024_55760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bronzed_Cowbird_0086_796259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0006_796778.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Grebe_0034_36149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clark_Nutcracker_0058_85384.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0108_135068.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0089_68498.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0114_41267.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0075_189578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0048_79323.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Prothonotary_Warbler_0066_174318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0031_99607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0024_70538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0019_795512.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0099_98593.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0035_45754.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0009_102112.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0042_97250.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Grebe_0061_36181.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vermilion_Flycatcher_0027_42388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0029_797520.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Frigatebird_0057_43016.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baltimore_Oriole_0100_89908.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0029_31637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Whip_Poor_Will_0003_796409.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Caspian_Tern_0023_147194.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0011_99630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0037_166690.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Ivory_Gull_0015_49199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0112_56353.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0122_6736.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0055_795609.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0020_25618.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0016_161216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Wood_Pewee_0003_795050.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Tailed_Towhee_0042_154801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0121_155320.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0055_4345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0035_107509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0090_21464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0080_30515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0019_794621.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0010_797350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0006_179838.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0049_190708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0106_39714.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0111_93872.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0082_176144.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0052_795874.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0119_140617.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0010_156344.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pelagic_Cormorant_0017_23875.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Green_Jay_0102_65813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0019_125558.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Jay_0003_65767.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0019_107436.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0011_34687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Slaty_Backed_Gull_0087_786374.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0026_177503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0134_25206.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0045_796324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Glaucous_Winged_Gull_0034_44625.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0051_175015.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0086_8487.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0034_795511.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0111_168040.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0093_794653.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0068_152078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0119_76925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0109_72082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cardinal_0085_19162.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0088_28076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0047_59448.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0074_151036.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0015_74855.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0003_183933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bobolink_0119_10430.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0009_125713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0036_65660.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0029_45047.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Jay_0078_62351.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0099_185288.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0004_71076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0001_100973.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Caspian_Tern_0029_147589.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0014_89.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0132_66476.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0074_69949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0082_154396.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0070_90221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0066_75547.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Flycatcher_0067_30397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Winged_Blackbird_0059_4612.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0015_795065.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Green_Violetear_0102_795702.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0023_796784.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Warbling_Vireo_0116_158740.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0125_19833.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0119_115512.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Painted_Bunting_0039_15235.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0022_72247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0041_795048.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0009_24033.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0096_68514.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0023_796401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Long_Tailed_Jaeger_0058_60900.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ruby_Throated_Hummingbird_0024_57969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0026_159744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0081_35409.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0016_42111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ivory_Gull_0096_49487.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0025_41479.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0069_144359.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0036_796329.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Ruby_Throated_Hummingbird_0106_57976.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0056_186313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0012_797435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0050_11811.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0073_70326.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Purple_Finch_0032_27305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0062_42693.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Crested_Auklet_0019_794925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0117_104227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0018_71137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0009_62873.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0010_155231.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0102_45904.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Northern_Flicker_0085_28378.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0100_155129.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0006_797284.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0054_794699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Catbird_0042_20546.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0063_795134.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0041_796150.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0026_156245.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0039_15081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Kingfisher_0017_72316.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Jay_0022_63074.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0072_53314.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0007_36074.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clay_Colored_Sparrow_0080_797253.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0046_37280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0069_113827.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0076_73931.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0116_145607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0059_175249.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0060_84862.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0028_15205.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0097_69436.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0023_5257.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0001_167660.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0062_184343.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0098_69642.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0050_73002.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0038_90575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Nuthatch_0054_86551.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0034_795242.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0046_794616.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0042_796528.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0077_149196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0113_99939.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0072_163200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0089_796220.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0004_14988.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0078_26144.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0017_174685.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0049_794880.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0092_834.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Golden_Winged_Warbler_0066_794803.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0034_123799.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0020_182683.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Shiny_Cowbird_0017_796853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0075_134516.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0053_90898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Herring_Gull_0095_48058.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0061_61049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_Glossy_Starling_0070_129322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0039_796449.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0078_159694.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "American_Crow_0047_25397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0070_177096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0039_795063.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0141_94533.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0097_176010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0024_137712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0012_170857.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0072_155406.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Least_Tern_0062_153259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0088_39035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0074_79497.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Frigatebird_0112_43394.jpg": { + "crown": false, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0027_14895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0125_178921.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0037_64515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0031_174802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0006_34718.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mockingbird_0057_79643.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0024_116480.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Crested_Auklet_0061_794904.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Meadowlark_0042_78180.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0010_94370.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0004_150948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0016_73029.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0020_795054.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0079_795685.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Long_Tailed_Jaeger_0013_60887.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0030_797509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Warbler_0129_171035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0089_156062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0058_1751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "European_Goldfinch_0068_33359.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0078_130385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0107_29501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0094_1013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Henslow_Sparrow_0106_796580.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0046_14787.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0096_27688.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "European_Goldfinch_0030_33357.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0119_138291.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0063_144731.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0058_185903.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0020_29069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0038_794600.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0127_150418.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0020_102730.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0018_161871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0103_21670.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0074_155339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0027_63133.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0058_795849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0062_60797.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0026_797519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fish_Crow_0003_25970.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0015_182459.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0066_29488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0007_106101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0090_125690.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0060_795095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0094_72998.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Cockaded_Woodpecker_0040_182502.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0045_796025.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0073_106097.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0067_796912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0054_174689.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0055_86075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0076_34841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Cedar_Waxwing_0041_179183.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0076_162393.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "White_Breasted_Kingfisher_0056_73353.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0097_182903.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0018_188363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0070_36162.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Blackbird_0103_2273.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0043_796187.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0033_91532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0015_108462.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0036_795943.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Brewer_Sparrow_0026_107432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0093_25694.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0083_163380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0036_153658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0038_98441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0050_797012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mockingbird_0085_81417.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0040_795868.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0048_35670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0004_100733.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Frigatebird_0005_42828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Puffin_0029_100888.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Song_Sparrow_0110_120872.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0020_4050.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0049_22747.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Fish_Crow_0017_26127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0091_26428.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Cerulean_Warbler_0014_797226.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0087_103371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0093_30435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0112_180439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0140_2586.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0021_127092.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0007_795764.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scarlet_Tanager_0095_137618.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0074_176093.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0100_45440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0066_144541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0036_98323.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0007_794755.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Cactus_Wren_0028_185795.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0081_116574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0001_160352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0058_115862.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0065_1502.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Prothonotary_Warbler_0124_173686.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0052_795024.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0073_129110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0006_27950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0079_64713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0019_162409.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0013_77712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0054_165965.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0056_32169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0028_167065.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0112_159839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0035_59434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0088_139473.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0025_171110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0012_796414.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Whip_Poor_Will_0009_796423.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Tailed_Towhee_0090_797434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0031_796806.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0092_129349.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0086_786387.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0046_796440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cliff_Swallow_0090_133144.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0054_178141.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Horned_Grebe_0041_34535.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Winged_Blackbird_0021_3767.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0089_152372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0088_41700.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0041_163944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0057_69283.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0031_177509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0041_110726.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0067_75423.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Goldfinch_0121_32725.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0016_72280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0015_174847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0057_116374.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0047_797303.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0013_103677.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0050_29786.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0038_797309.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0029_41506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0093_34720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Slaty_Backed_Gull_0031_796029.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0100_30338.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clay_Colored_Sparrow_0018_797246.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0026_166538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0003_185072.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0010_109760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Blue_Warbler_0017_161220.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Seaside_Sparrow_0035_796533.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0102_167195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0074_24789.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0070_158459.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0026_100456.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Brewer_Blackbird_0002_2278.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Cape_May_Warbler_0043_163172.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0086_121999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0123_35469.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scarlet_Tanager_0132_138001.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0117_185591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Tree_Swallow_0017_135062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0024_100444.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Forsters_Tern_0053_152175.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0081_99508.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0063_797042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0097_54508.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0048_26632.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0075_156181.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0102_61494.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0035_49523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0030_168376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0004_162224.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0042_184144.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0126_22639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0081_795215.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0045_70256.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0058_8350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Summer_Tanager_0056_139211.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bobolink_0131_9578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0031_70506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Grebe_0014_36185.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Tern_0118_148201.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0020_176364.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0071_187399.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0034_31212.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Marsh_Wren_0058_188107.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0006_59621.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0030_22693.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0083_157063.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0108_129184.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Hooded_Oriole_0091_90821.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0121_156233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0091_104301.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0022_92356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0058_100218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Pelican_0020_95422.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Flycatcher_0024_30230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0029_796256.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0032_795789.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_May_Warbler_0073_162993.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Chipping_Sparrow_0066_109187.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0006_797491.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "White_Pelican_0012_97261.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_Glossy_Starling_0030_129443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0101_113762.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0070_159602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0027_51266.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0034_161861.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0028_155799.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0024_100620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Green_Kingfisher_0027_71048.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Three_Toed_Woodpecker_0009_179919.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ivory_Gull_0040_49180.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0041_185691.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0097_165455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Harris_Sparrow_0073_116577.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0003_34983.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Green_Jay_0023_65898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0128_93366.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0068_129806.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Auklet_0029_795122.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clark_Nutcracker_0082_85477.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0077_159581.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0087_2622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0066_114109.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0073_125605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0003_158484.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Myrtle_Warbler_0036_166833.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0064_58509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Grosbeak_0100_38988.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0059_92470.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0006_99857.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0001_3695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0057_37392.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0093_103071.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Thrasher_0051_155344.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0096_28623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0017_23141.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0025_22820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0023_164308.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0087_84898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0086_36818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0136_156418.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0077_785257.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Dark_Eyed_Junco_0056_67498.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0120_88403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0004_182340.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0058_795292.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Northern_Fulmar_0061_43653.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Purple_Finch_0114_27837.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0059_30536.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Parakeet_Auklet_0048_795980.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Baltimore_Oriole_0084_89684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0073_108881.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0104_39189.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0062_147947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0016_162411.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Golden_Winged_Warbler_0018_164558.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0077_180286.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0066_796755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Purple_Finch_0014_27322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0046_797295.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0102_34448.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Prairie_Warbler_0136_172768.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0013_84791.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "American_Goldfinch_0089_32152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0079_97380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0054_159635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0090_22273.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0042_27143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0091_163331.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0066_147680.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0067_29197.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Jay_0066_61490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Savannah_Sparrow_0118_118603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0006_176988.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0006_140137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0098_151028.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0084_105919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0012_795837.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0068_98024.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0013_113599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0004_176947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0070_794758.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0070_164930.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0030_139210.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0016_30717.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0029_150494.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0051_8387.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0077_178191.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0106_98841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0040_24379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0002_797466.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Bohemian_Waxwing_0028_796647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0042_53843.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0068_795590.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0088_36428.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Rose_Breasted_Grosbeak_0077_39613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0062_70985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0016_164060.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0050_36163.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Horned_Lark_0133_73882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0010_71191.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0001_108638.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0013_796439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0042_167614.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0135_164824.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0082_99867.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0040_794764.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0051_71429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0124_164109.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0097_22580.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0063_173830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0033_103783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0121_184002.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0101_25118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0027_145899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0050_42479.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0029_159334.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0080_70077.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0069_796139.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Field_Sparrow_0011_113420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0015_190556.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0058_796701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rusty_Blackbird_0016_6684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0041_49172.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0034_157219.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0031_37173.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0036_166432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0080_53445.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0008_178345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0100_149541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0047_133955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0004_796804.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0049_145755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0104_113105.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0035_796294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Eyed_Vireo_0050_158829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0048_787323.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0002_12163.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0021_120699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0055_20671.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0022_797074.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0104_158800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0002_177986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0006_179394.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0043_794865.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0121_26807.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Kingbird_0030_70110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0052_100977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Western_Grebe_0099_36112.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scarlet_Tanager_0018_138294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0061_119783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0049_134740.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mockingbird_0004_81991.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0080_111099.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0020_794629.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Painted_Bunting_0046_16535.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0032_26616.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0103_24632.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0121_73258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0121_188974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0053_796953.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0032_79032.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pelagic_Cormorant_0086_23719.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0060_175969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0046_36118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Black_Capped_Vireo_0007_797481.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cerulean_Warbler_0077_797202.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0086_185630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0117_21333.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0037_140330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0013_794914.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0033_140268.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0011_146058.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Warbler_0007_176616.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0080_794990.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0016_116661.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0091_67304.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0045_129483.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Summer_Tanager_0063_139743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Savannah_Sparrow_0080_118120.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0121_77434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tennessee_Warbler_0026_175118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0092_190573.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0023_24940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0041_796364.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Goldfinch_0001_32306.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0064_110664.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0003_178570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0009_75642.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Mallard_0022_77166.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Tailed_Towhee_0068_154783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0044_190068.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0001_796975.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_And_White_Warbler_0077_160440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0055_141524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0009_36992.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0107_123822.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0002_98596.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0068_795180.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0012_162086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0056_796996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Puffin_0033_100731.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0008_111204.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0008_797454.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0020_796881.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0054_24159.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0007_102676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Least_Tern_0016_153560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0055_15043.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0045_92973.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0019_43853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Winged_Warbler_0059_162064.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Grebe_0025_36251.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Indigo_Bunting_0080_13416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0017_181131.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0012_120732.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0013_176437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0118_24500.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0048_78354.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0050_35530.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Pelican_0139_93995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0112_141893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0025_55421.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0008_70282.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0069_9085.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0131_138740.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0053_109774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0080_152521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0119_176485.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0074_795286.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Yellowthroat_0010_190572.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0032_182376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0058_98798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0028_795611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Headed_Woodpecker_0103_183571.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0012_164891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0006_796651.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0014_188802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0033_125568.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0030_794569.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0057_72812.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0042_70083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0006_34347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Nuthatch_0111_86621.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0059_180177.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0039_162330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Palm_Warbler_0054_169175.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0095_57990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0062_151780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0092_27264.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0014_44832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0118_51322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0090_40090.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0071_163784.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0014_177305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0099_70449.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0040_184061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0006_55871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0001_127115.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0102_159420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0046_117405.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0014_23050.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Horned_Grebe_0099_34989.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Hooded_Oriole_0106_90899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0125_151399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0096_40978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "American_Crow_0116_25199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0053_795620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0024_39398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0094_80232.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0036_159595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0024_796791.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0105_28836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0066_119949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Cockaded_Woodpecker_0058_794739.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0055_100882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0127_24656.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0030_794864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0004_13195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0009_104372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0092_167457.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0064_31504.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0066_17803.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0020_166440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0134_27526.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0001_797061.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Canada_Warbler_0047_162439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0084_40217.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Green_Jay_0043_65805.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0025_165306.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0072_180006.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0042_159690.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0047_186928.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0043_164114.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0067_795858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0069_181248.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0012_163417.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0027_93086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0114_35493.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orchard_Oriole_0042_91678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0002_796275.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0096_90311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0097_186015.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0022_795747.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cliff_Swallow_0046_133165.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "White_Throated_Sparrow_0134_129190.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0023_34309.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Boat_Tailed_Grackle_0063_33492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0008_796250.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0025_59461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0079_117919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0017_183777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0115_126027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0119_187552.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0119_116081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0108_795711.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0019_137073.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0107_42773.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0053_796728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Swainson_Warbler_0011_174680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Brewer_Blackbird_0135_2607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0059_38581.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0020_796012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0087_164833.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Sage_Thrasher_0066_155666.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0104_37661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0116_91645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0049_38380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0008_186083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0078_104468.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0064_119316.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0020_796794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Swainson_Warbler_0048_794887.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "American_Crow_0117_25090.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0065_104806.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0058_117503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0106_161523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Flycatcher_0011_30222.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0081_30380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0092_10026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0053_111388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0060_182377.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0049_162379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Indigo_Bunting_0028_12335.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0095_186561.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0050_794594.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Caspian_Tern_0114_145612.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0021_797341.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0044_155819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0087_117444.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0022_795418.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0019_107192.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0100_151774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0073_72508.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0112_2340.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0042_121314.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0112_156196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0047_155743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0032_65851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0122_153012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0057_28606.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0059_25010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0021_41931.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0021_87089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0112_166406.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0107_184908.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0028_795944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0002_11085.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0011_71183.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0015_21230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0078_44461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0107_175320.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0100_105106.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0064_92321.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0060_153190.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0005_41727.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Sparrow_0032_123489.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0122_187331.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0060_42293.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0029_156777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0014_166427.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0090_143583.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0034_113364.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0126_175368.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0030_100412.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0054_129743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Fox_Sparrow_0078_114582.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0085_147937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0009_796314.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Crowned_Sparrow_0101_127058.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0020_9194.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0109_25123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0068_95635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0007_160758.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0014_26041.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0092_36711.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0133_153816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0052_89553.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0069_795326.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0104_165696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0123_28381.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Horned_Puffin_0025_100942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sayornis_0098_98419.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0092_87435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0068_184895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0011_179847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0005_25912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Painted_Bunting_0100_16735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0100_122945.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0022_42559.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0089_41810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Artic_Tern_0046_140986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0021_165057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0102_175769.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0020_117035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0104_28088.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0046_176212.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0008_9289.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0031_160773.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0078_28338.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0081_110906.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0106_155618.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0102_176069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0063_796141.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tennessee_Warbler_0052_175089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0087_795300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pomarine_Jaeger_0060_795756.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nighthawk_0073_83540.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vesper_Sparrow_0017_125534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0122_73199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0027_29532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0056_69509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0104_167096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0102_38216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0011_75726.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Flicker_0077_28341.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0036_104173.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0016_37613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0004_158376.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0043_795067.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0099_869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Eastern_Towhee_0054_22147.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0043_61384.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nashville_Warbler_0103_167455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0114_116160.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0035_43420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cerulean_Warbler_0089_163412.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0003_41849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0045_797047.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0029_44049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Kentucky_Warbler_0055_165426.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0099_186237.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0039_176444.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0061_63645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0088_23855.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0035_163587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0086_115484.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0107_164040.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0043_84039.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0060_796052.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0041_115218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0061_110830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0031_58391.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0052_56344.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0018_26407.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0049_79136.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Seaside_Sparrow_0011_120820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0081_67223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Henslow_Sparrow_0037_796579.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0130_110985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0118_170081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0041_795888.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0103_79659.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0024_2045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0134_188077.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0018_83639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0053_45854.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0111_38741.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fox_Sparrow_0092_114774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0018_70241.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0047_65088.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0068_156222.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0052_796216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0076_30555.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0049_34779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Brewer_Blackbird_0111_2613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0032_21823.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0015_129138.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0070_43516.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Red_Faced_Cormorant_0070_796319.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0060_161644.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Common_Raven_0017_102044.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0067_167588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0067_136244.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0134_165801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0044_35425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Gull_0090_53603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0131_53349.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0075_79169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0070_130127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Merganser_0079_796768.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0104_32540.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0032_794553.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0112_162398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0011_795566.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0077_162979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0115_90442.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0020_795265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0089_796069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ovenbird_0098_93032.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0109_117940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0079_165339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0109_189850.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0036_167461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Blue_Warbler_0108_161714.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0104_110699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0045_795426.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0050_165278.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0023_55841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0111_112968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0053_794639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0038_796044.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rusty_Blackbird_0114_6760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0050_150521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0006_41079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0071_183132.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0066_43714.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Billed_Cuckoo_0092_795313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0071_167595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0075_785259.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0072_67810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mourning_Warbler_0074_795367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0070_30147.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0111_25127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0054_33169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0070_155732.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0062_101448.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0049_27507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0024_35949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lincoln_Sparrow_0119_117270.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0022_118989.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0033_180179.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0002_22318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0005_91682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0057_24002.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0028_18054.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0018_23880.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0071_30647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Pelican_0067_94529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0042_796595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0133_161539.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0025_8262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0055_796937.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0112_156742.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0125_159078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0027_189331.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0014_43895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Redstart_0085_103155.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0047_33500.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0066_795780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gadwall_0036_31760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mockingbird_0069_79760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0032_795399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0026_159686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0003_164469.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0043_796442.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Boat_Tailed_Grackle_0027_33743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0052_21866.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0064_116106.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0026_61273.jpg": { + "crown": false, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chuck_Will_Widow_0050_22750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Western_Gull_0128_53852.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0082_82242.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Faced_Cormorant_0062_796336.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0117_22741.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0022_100766.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Raven_0078_101148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0029_796699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0030_2268.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Gadwall_0042_31411.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0076_129377.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0067_154145.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0029_482.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Nighthawk_0063_795339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Glaucous_Winged_Gull_0129_44742.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0082_26655.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0074_160361.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0002_796536.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0058_795602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Eyed_Vireo_0053_156885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0032_796115.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0006_702.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0033_38945.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0055_1501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0088_65147.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0053_17541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0010_79955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0010_25836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0034_794890.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Baird_Sparrow_0034_794589.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": false, + "legs": false, + "tail": false + }, + "Orchard_Oriole_0044_91360.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0038_37095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0057_796354.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Throated_Vireo_0041_794998.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0082_29445.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0008_188533.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0096_45012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0012_98031.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0016_29217.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0028_102452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0129_90165.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0040_135172.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0032_24800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0076_30117.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0138_102869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0033_186014.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0030_795830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0101_133069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sage_Thrasher_0025_155661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0066_186028.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0062_795309.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0003_79303.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0071_795769.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0080_43064.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Black_Capped_Vireo_0029_797469.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0005_2111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Artic_Tern_0122_142448.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0047_80819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0070_33612.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0046_92821.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0067_796532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0042_107791.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0044_177526.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0089_45679.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0108_163108.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cactus_Wren_0108_185733.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0087_188988.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0089_61521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0056_797293.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0067_795401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0116_43410.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chuck_Will_Widow_0035_796985.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Faced_Cormorant_0065_796293.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0042_796911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Bellied_Woodpecker_0112_180827.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0008_106929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0056_34098.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Fox_Sparrow_0109_114859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0044_174824.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0145_112703.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0005_70389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brandt_Cormorant_0080_23002.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0025_184932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0012_795515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0083_79862.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0034_23425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Elegant_Tern_0073_150925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Downy_Woodpecker_0005_184098.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0049_89955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0033_794964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Headed_Woodpecker_0078_183427.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0018_132974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0071_1559.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0100_46677.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0074_63487.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0135_185251.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baird_Sparrow_0049_787324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0003_1033.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Yellow_Warbler_0104_176541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0037_49068.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0129_187376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0050_795633.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0035_42025.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0010_73789.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Wilson_Warbler_0047_175304.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0036_103231.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0033_155511.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0049_26040.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0097_74496.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Savannah_Sparrow_0052_118583.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0066_106974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0025_70152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0005_162389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Field_Sparrow_0059_113759.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0012_183395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0128_117851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0078_797163.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0065_30357.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0032_106521.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0084_66455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0104_17122.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0041_116611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0077_26222.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Forsters_Tern_0002_151622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0063_108139.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0113_128095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0051_795352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0067_23352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Western_Grebe_0086_36478.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Legged_Kittiwake_0007_795402.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0089_21804.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0041_61305.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0085_795540.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0119_41879.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0090_102940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0079_155718.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0090_24179.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0063_22865.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Tree_Sparrow_0057_123665.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0049_169885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0108_187102.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0043_58652.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0125_179971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0100_52779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0069_101825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0073_161558.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0052_75451.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Artic_Tern_0050_140887.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0104_86979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0015_796500.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0004_795921.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Common_Raven_0029_102039.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0082_155965.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0015_177075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0100_794685.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0112_155183.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0043_797001.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Winter_Wren_0005_189750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0041_37928.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0041_123497.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0011_7028.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0071_164370.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0068_42795.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0017_115908.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0012_108576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0053_75985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0107_14705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0035_75395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Ovenbird_0064_93208.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0012_41272.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0026_76725.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0108_177059.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0092_132971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0011_70923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Song_Sparrow_0089_120894.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0102_59414.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0076_82686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Pelican_0036_93843.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0043_26990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ovenbird_0054_92594.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0071_155642.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0104_92763.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Horned_Lark_0049_74574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0071_796037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0005_183414.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0125_180780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Sparrow_0011_107115.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0048_129546.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Gull_0009_54768.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0090_177283.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0047_70705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0041_795648.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0098_110735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0106_28441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0105_172982.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0099_127213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0034_180419.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0091_110768.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0073_22247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0101_182538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0066_795419.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0014_47814.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0070_99354.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0015_794819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0030_172338.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0015_99932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0064_148761.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0038_41649.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0111_162959.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0032_180347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Henslow_Sparrow_0076_116810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0125_39597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0062_39234.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Western_Gull_0073_54118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0051_37065.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0039_794591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0001_795972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Shiny_Cowbird_0069_24351.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0083_43618.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Winged_Warbler_0076_161894.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0055_15208.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0060_154820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0027_116687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0070_117342.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0016_797489.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0023_156112.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0039_43689.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0038_38956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Winged_Blackbird_0096_5019.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0072_186309.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0018_61081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0128_163696.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0001_152174.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0010_127651.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0039_31013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Glaucous_Winged_Gull_0073_44253.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0061_66858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0051_91787.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0036_107451.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0085_33384.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0035_64463.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0129_20987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0078_34799.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bobolink_0019_10552.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0092_141849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Kentucky_Warbler_0033_165271.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0098_73110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0001_139289.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0004_180307.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0025_796518.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0063_84869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0067_129380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0009_177078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0016_795223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0057_164137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0057_129499.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0024_796779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Mourning_Warbler_0021_166560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Gray_Crowned_Rosy_Finch_0075_27165.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0051_797383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0107_794655.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0107_128662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0077_30929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0056_796297.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0040_161883.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0058_797399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0004_190606.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0063_797204.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Mallard_0095_76080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0032_96920.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Warbler_0008_164641.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0005_795666.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0087_795261.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0122_188323.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0035_23000.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0020_36967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0087_137354.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0073_166524.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0026_11964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0060_138384.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0044_163975.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0093_159764.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0014_11055.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0091_60551.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0105_163996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0041_34157.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ivory_Gull_0107_49186.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0095_170610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0038_212.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baird_Sparrow_0028_794557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0032_159145.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0075_164231.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0044_176961.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0063_117509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0072_36774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0052_795088.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "House_Sparrow_0011_112099.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0131_45548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0052_72871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0057_36157.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Sparrow_0018_123574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0098_45753.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0066_29190.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Winged_Warbler_0023_161774.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0039_797089.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Indigo_Bunting_0082_11907.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0056_110848.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0062_23038.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vermilion_Flycatcher_0069_42502.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0006_116364.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0117_189999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0023_795269.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0125_113869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0062_125669.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Grey_Shrike_0004_797041.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0032_22886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0074_116905.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0084_795641.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0021_143477.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0059_144159.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Tennessee_Warbler_0067_174999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0128_186581.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0004_84011.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Slaty_Backed_Gull_0002_53238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0112_169595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0086_66437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0068_177273.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0003_115676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0059_28488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Bank_Swallow_0007_129514.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Cactus_Wren_0044_185492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0091_31938.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0043_795213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0107_28667.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0138_114586.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0023_107104.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0046_129434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0008_173425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0068_795804.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0002_25122.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0111_135253.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0074_156492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0012_25305.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0076_6716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0100_43732.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0046_135770.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0052_182702.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0033_6879.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0092_41767.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_May_Warbler_0085_162628.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0056_185626.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0117_165106.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0027_64689.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0086_125776.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0004_41643.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0082_129216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0113_85587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0045_100803.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Black_Billed_Cuckoo_0046_795328.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0057_107036.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0131_119946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0066_173350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0068_1538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0065_61042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clay_Colored_Sparrow_0038_110799.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0039_38400.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0004_157224.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "White_Necked_Raven_0034_102598.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0089_152912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0022_80552.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0079_156086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mockingbird_0082_80570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0058_794665.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0078_177444.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0099_158933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0075_668.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0116_184326.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0002_49788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0079_70524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0024_24167.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0117_115983.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0088_160668.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0049_43906.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Evening_Grosbeak_0038_37228.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0007_797215.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0116_58031.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Geococcyx_0040_104507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0057_187157.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0107_78608.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0106_56335.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0102_44579.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0047_140164.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0130_65885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0086_794844.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0078_796649.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0059_156974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0036_31910.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0004_128944.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0022_797189.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0073_795895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0079_98434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0079_69371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0117_164066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0030_79876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0042_188195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0005_69662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0051_118574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0131_57813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0101_150715.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0147_188367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0056_155048.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0039_170894.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0005_187493.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0070_137714.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0050_164589.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0064_49406.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0128_161708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0046_28391.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_Glossy_Starling_0013_129244.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0080_46806.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0085_25919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0027_100906.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0048_25062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0113_172544.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0007_116484.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0096_43654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0004_173475.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0085_185515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0053_122933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0041_30470.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0021_795472.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0099_796567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0057_42562.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Wood_Pewee_0070_98225.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0016_109051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0057_121090.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0108_42013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0031_796981.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vesper_Sparrow_0045_125643.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0017_116636.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0018_796800.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0081_9439.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0079_27258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0018_129891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0076_14662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0052_171380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0021_796265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Herring_Gull_0076_47497.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0061_133259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cardinal_0074_18339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0023_49385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0112_73971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0026_161813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "European_Goldfinch_0047_33332.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0050_73682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0013_35882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Palm_Warbler_0106_169571.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0065_23118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Jay_0126_65716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0043_157162.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0097_137717.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0040_795455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0045_182832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0110_136921.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0090_160247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0041_134111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0038_155246.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0019_42241.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0069_39254.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0045_50215.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cactus_Wren_0124_185501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0024_143268.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0021_29929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0034_32371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0098_107138.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0076_137702.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0095_795307.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0052_133055.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0051_159033.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0057_794725.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0109_137698.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0041_180461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0068_146615.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0003_796822.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0114_89873.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0065_2310.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0076_796756.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Swainson_Warbler_0027_794877.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0072_85742.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0029_167044.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0071_49402.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0075_794660.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0020_83869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Glaucous_Winged_Gull_0076_44744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0024_90157.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0020_132317.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0025_188897.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0093_725.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Faced_Cormorant_0069_796274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chuck_Will_Widow_0011_796954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Three_Toed_Woodpecker_0023_179909.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Raven_0092_102550.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Common_Yellowthroat_0070_190678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0017_176888.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0058_163990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0040_57982.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0015_155165.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0068_46392.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0062_162955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0114_37416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0124_139963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0102_16642.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0022_116835.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0104_28371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0031_24999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0004_796841.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0035_796799.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0072_129386.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0135_137699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0121_100040.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0022_188280.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0096_170867.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0068_110706.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0074_132094.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0091_44120.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0134_175374.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0064_187489.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0059_129896.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Mangrove_Cuckoo_0018_794593.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0099_177747.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clay_Colored_Sparrow_0097_110516.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0030_129076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0074_34238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Sparrow_0008_107000.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0110_41063.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0063_116383.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0060_185366.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0041_23763.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0116_159028.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0098_177116.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0012_73367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0090_187762.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0027_79284.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0116_116066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0026_796289.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Herring_Gull_0001_48205.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0064_78027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0074_173443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0013_64706.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0107_139488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0062_797382.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0012_796748.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "House_Sparrow_0041_112706.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0086_88375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0027_26319.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Blue_Warbler_0086_161716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0033_133836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0026_120798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Pipit_0101_100053.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0118_175779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0038_19203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0035_154888.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0081_15230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0126_167274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0022_155447.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0075_168751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0028_40666.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0069_186230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0131_117277.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0019_130555.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0055_110647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Winged_Blackbird_0058_4141.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0113_167984.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Warbler_0111_171040.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0011_190401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0069_101018.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Breasted_Nuthatch_0042_86488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0089_127778.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0027_796850.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0101_35464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Shiny_Cowbird_0051_24438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0062_64996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0052_164529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0022_78410.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0031_126457.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0099_152529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0125_164247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0028_797119.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0003_22922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "American_Three_Toed_Woodpecker_0035_796158.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0032_16605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0078_796042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0105_91186.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0104_20716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0041_797515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Grey_Shrike_0012_106661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Horned_Puffin_0035_100690.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Frigatebird_0054_43019.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Gadwall_0047_31360.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Yellow_Billed_Cuckoo_0078_26888.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0086_22611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pigeon_Guillemot_0009_40218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Northern_Flicker_0044_28592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0116_54037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0066_796333.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0091_602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0046_186017.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0039_184243.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0002_795829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0078_184375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0033_62024.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0070_93140.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0057_149749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0099_64735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0051_150469.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0004_108430.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0016_156598.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0089_162026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0038_121666.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0050_31913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0127_190091.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0014_794858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Acadian_Flycatcher_0050_795608.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0011_115937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0005_107150.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0007_99808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0106_147645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0070_33084.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0014_185993.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0057_163227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0068_61543.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0058_41948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0006_794857.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0070_54978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0018_25879.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0054_796347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_And_White_Warbler_0003_160228.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0004_45936.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0060_33589.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0046_797222.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Kentucky_Warbler_0003_795892.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0044_107270.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0038_51275.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0006_166595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0082_87838.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0079_24399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0072_165534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0040_163219.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0127_90200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0018_159897.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0031_797299.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0048_57222.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0087_89726.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0089_33279.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0025_129521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Eastern_Towhee_0110_22549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0124_113868.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0054_100915.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Throated_Sparrow_0026_128843.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0065_24464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0009_8248.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0012_104352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0041_53554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0018_94432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0088_100213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0010_794769.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0078_1780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0014_36708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0041_142079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0007_20186.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0017_30460.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0014_176414.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0036_56809.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0090_28491.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Eyed_Vireo_0052_157185.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0009_138076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0007_92439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0017_795782.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "European_Goldfinch_0062_794657.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0091_41276.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0127_87560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0048_165862.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0060_20656.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0141_127766.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0004_152358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0064_65552.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0081_36578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gadwall_0058_31660.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0044_62759.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0060_78368.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0038_797465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0098_111073.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0075_44455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0096_163672.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0004_73861.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0111_45652.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0100_110545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0034_796646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0017_37379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0076_106995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0041_31064.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Billed_Cuckoo_0051_795318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0008_190703.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Gadwall_0022_31616.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nashville_Warbler_0123_167324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0021_116399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0017_42407.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0110_39373.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0039_102699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0074_175645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0045_75589.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "American_Redstart_0058_103082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0053_25203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0012_41853.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0133_173279.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0034_797305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0082_86435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0134_156919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0060_162949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0044_795717.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0075_40159.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0018_38374.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fish_Crow_0032_26014.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0043_796857.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0083_794761.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0087_56435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Seaside_Sparrow_0069_120700.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Yellow_Throated_Vireo_0011_794986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0098_27280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0125_58932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0134_98339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0025_795188.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0050_174851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0066_190646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0037_102818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0034_97466.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0027_796978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": false + }, + "Forsters_Tern_0057_151570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0001_184484.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0054_126068.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0043_164476.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Painted_Bunting_0077_16819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Rufous_Hummingbird_0101_59420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lincoln_Sparrow_0061_117529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0120_85890.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0122_101708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0015_162388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0012_24956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0022_120721.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0036_795872.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0007_37312.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0090_158958.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Chestnut_Sided_Warbler_0001_163813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0051_176068.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mangrove_Cuckoo_0049_794631.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0012_187973.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0015_73192.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0038_796313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Anna_Hummingbird_0031_56709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0009_173022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0014_70227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0069_33685.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0023_140898.jpg": { + "crown": false, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0083_92561.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0084_23265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0064_24199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0023_35687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0073_134997.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0070_174962.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Indigo_Bunting_0061_13259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0087_164221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0095_175595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0127_154141.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0063_37409.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0007_796700.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0060_14495.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0139_25186.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0011_65947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Blue_Winged_Warbler_0052_161739.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0023_1059.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0060_797008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0044_165599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0088_8257.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0076_27200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "White_Throated_Sparrow_0059_128964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0081_795283.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0035_796837.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0127_125322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0130_186369.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0014_172542.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0015_796307.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0054_157158.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0077_34587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Tree_Swallow_0098_134916.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Faced_Cormorant_0003_796270.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Carolina_Wren_0090_186942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0054_107026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Blackbird_0017_2668.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0037_797212.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0023_143985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Catbird_0101_21178.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0062_49722.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0044_183141.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0002_71055.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0002_1027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0015_125105.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0111_29543.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0110_64605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0079_185560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0042_794895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0094_114634.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0081_70276.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0028_164883.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0074_30816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0053_62744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0079_795252.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0035_17678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0026_109010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Heermann_Gull_0133_45415.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0039_796589.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0106_77568.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0015_114650.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0035_120099.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0065_795899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Sayornis_0007_99117.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0112_11073.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0034_69242.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0036_795577.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0077_33346.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0128_102017.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0091_101524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0068_785253.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Horned_Puffin_0036_100974.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0010_1704.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0042_797160.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0023_102437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0096_121313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0023_181958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0055_18898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0003_796032.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0091_180343.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0037_27088.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0005_156007.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0024_155363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0040_31788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0023_165247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0001_34433.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Indigo_Bunting_0025_12532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ringed_Kingfisher_0074_73130.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Carolina_Wren_0011_186871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0097_180392.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0086_795170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0004_185797.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0022_29145.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Crested_Auklet_0044_1825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Prothonotary_Warbler_0069_174210.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Lark_0108_74193.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0075_24947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0033_794856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0015_70638.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0089_24841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0058_125661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0080_113811.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0051_6715.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0098_22676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0038_794675.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0106_149345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0074_129294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0118_156193.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0021_109588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0021_144734.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0094_92577.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0004_154951.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0029_154064.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0092_155415.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0052_14618.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0106_36986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0008_162416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Kentucky_Warbler_0019_165389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0022_179933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Ruby_Throated_Hummingbird_0120_58316.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0022_174138.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0041_91258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0083_33590.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Brown_Pelican_0081_94085.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0028_106221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Herring_Gull_0078_48718.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0059_1480.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0033_166489.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0082_1697.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bohemian_Waxwing_0041_177630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0024_1161.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": false + }, + "Pied_Billed_Grebe_0071_35386.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Baltimore_Oriole_0083_89712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0107_154015.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0024_60915.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0024_79483.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Winged_Warbler_0065_162030.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Golden_Winged_Warbler_0035_164362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0067_113448.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0060_116576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0068_79057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Le_Conte_Sparrow_0013_795176.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0047_795445.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0010_145667.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0038_69455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0003_189838.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0017_4116.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0040_26378.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Wilson_Warbler_0060_175420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0041_79574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Waterthrush_0082_177243.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0096_70347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0017_794623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0046_118032.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0112_87447.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0014_797248.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0051_33600.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0101_796653.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0025_796434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "European_Goldfinch_0034_33256.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0009_161534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Marsh_Wren_0055_188123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0077_186294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0083_159203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0010_24146.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0041_93720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0084_794790.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0053_165332.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0075_796027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0006_795146.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0048_796749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0090_45834.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0028_153781.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0017_45224.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0010_23421.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0053_56112.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0046_796764.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Billed_Grebe_0084_35863.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Groove_Billed_Ani_0080_1549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0019_795013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Summer_Tanager_0064_140725.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0068_125601.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0044_156548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0009_23561.jpg": { + "crown": false, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0076_59563.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Eyed_Vireo_0138_156798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Carolina_Wren_0062_186390.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0025_2231.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0016_110297.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0096_23775.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0049_18258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0040_96026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Le_Conte_Sparrow_0011_117038.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0014_31570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Legged_Kittiwake_0061_795420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0088_156416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0021_70228.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0094_5856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0085_155562.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0050_795343.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0003_23695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0037_794839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0023_26637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0134_104196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0018_22546.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0044_92828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0011_100621.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0031_24139.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0028_82636.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Groove_Billed_Ani_0037_1560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0116_77862.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0072_17159.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "American_Pipit_0090_99651.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0016_29406.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0018_63455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0081_115630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0025_102584.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0106_128815.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0009_115984.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0005_42627.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0044_795624.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0040_174933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0048_113387.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0006_26233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0017_187330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0018_34357.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vermilion_Flycatcher_0024_42506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0015_66576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0089_85004.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0056_183913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Groove_Billed_Ani_0014_1755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0028_797082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Tern_0017_143876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0048_797345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Orchard_Oriole_0017_91801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0081_795638.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0036_61560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0017_117432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0064_32142.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0043_42182.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Mockingbird_0023_80121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0040_185859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0073_180345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0016_135549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0029_83733.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Goldfinch_0029_32218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0059_60873.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Fox_Sparrow_0083_114496.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0069_75446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Necked_Raven_0065_797354.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0029_60808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0023_43110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0027_69735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Cape_May_Warbler_0008_163062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Groove_Billed_Ani_0100_1646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0048_116405.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0084_183004.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0029_38995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0060_34133.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Summer_Tanager_0073_139379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0016_797084.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0021_98710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0089_4188.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0073_100830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bewick_Wren_0066_184928.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0010_16948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0010_151243.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0008_16416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Wood_Pewee_0024_98229.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0066_795514.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0003_72994.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0037_102734.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0019_73996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0076_89705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0065_87303.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0058_47383.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0019_112645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0031_797446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0070_14665.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0065_8481.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0031_25909.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0086_28360.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0004_44361.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0033_39290.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0127_111935.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0013_42024.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0003_796917.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Cape_May_Warbler_0124_163037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0049_37180.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0084_32295.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0046_1211.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Purple_Finch_0124_27567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0099_106944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0007_795258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0009_64723.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0100_154966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0039_34257.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Yellow_Warbler_0122_176182.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0116_156049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0052_38804.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Carolina_Wren_0083_186324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0099_78176.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0004_796652.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0053_796109.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Olive_Sided_Flycatcher_0082_796893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Flicker_0072_28678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0051_163244.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0083_164056.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Myrtle_Warbler_0014_166831.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0058_42311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0085_161621.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0056_6856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0027_155999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0031_79372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Throated_Sparrow_0098_129089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0086_164024.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0024_797364.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Seaside_Sparrow_0034_796521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0099_145939.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0032_14778.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0028_150117.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0020_27961.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0070_164460.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0094_74407.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0067_794846.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Black_And_White_Warbler_0085_160110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0106_33298.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0057_6935.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0118_37299.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0016_794981.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0024_178230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0019_159871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0045_159232.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0125_29593.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Winged_Warbler_0056_162013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0034_796413.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Goldfinch_0082_31890.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0001_794578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Pied_Billed_Grebe_0007_35399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Palm_Warbler_0111_169663.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0039_107431.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0023_139859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0129_156781.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0136_166388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0079_100847.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0101_176864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0041_167534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0034_796950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0101_73261.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0021_107021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0026_158963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0073_27104.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0013_25939.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Glaucous_Winged_Gull_0007_44575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0013_70135.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0010_796785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Breasted_Chat_0081_21829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0081_164487.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0079_72961.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ovenbird_0084_92901.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0016_68738.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0042_164895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0003_73195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0071_189689.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0045_796422.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0037_77759.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0108_172559.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0113_88407.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0012_46654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0027_185893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0036_795850.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0054_796623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Billed_Cuckoo_0073_26744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0100_133665.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0111_44856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0071_796760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0028_14950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0129_137745.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0053_38805.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0041_174900.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0046_30529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0027_10569.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0009_30303.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Artic_Tern_0014_141716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0059_99628.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0044_797502.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Geococcyx_0062_104743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0012_179976.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0054_795337.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Breasted_Merganser_0082_79214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0131_32911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0002_21395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0072_155539.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0123_176471.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0005_155176.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0021_794938.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": false + }, + "Tropical_Kingbird_0040_69728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0053_161896.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0100_796565.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0030_794711.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0033_22975.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0125_153996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0054_145890.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Savannah_Sparrow_0025_119124.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0018_159450.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0020_117542.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0122_22538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0024_795331.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0074_91979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0004_76958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0032_128866.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0053_150507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "European_Goldfinch_0108_33176.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0071_23007.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Great_Crested_Flycatcher_0010_29396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0046_795596.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Kingfisher_0028_70981.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0039_796308.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0065_167952.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0068_69397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0130_45210.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0048_2162.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0045_43581.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Frigatebird_0073_43038.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Brown_Pelican_0097_93767.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0068_186830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0057_24345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0085_92.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0028_795797.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Savannah_Sparrow_0139_119444.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0061_176559.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0111_78674.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Brown_Creeper_0029_24912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0028_63599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0053_38005.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0030_141816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0022_22279.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Canada_Warbler_0022_157106.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0006_796909.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0031_29825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0005_168314.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0058_637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Kingfisher_0096_73552.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0037_796638.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0061_795060.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0063_129774.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0093_150534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Herring_Gull_0087_47841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0014_42533.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0032_797150.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0092_175676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0093_71185.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0092_795221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0033_26521.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0009_26354.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0034_187120.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0047_26070.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Long_Tailed_Jaeger_0045_61007.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0031_190582.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0052_40137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bohemian_Waxwing_0026_177845.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0043_187224.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0074_157170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Myrtle_Warbler_0078_166875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0085_109506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0007_29280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0113_172456.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0091_36194.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Warbler_0005_171548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0052_33676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0011_797367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0050_148928.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0045_796148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0067_98930.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0067_161860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Chestnut_Sided_Warbler_0127_163860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Henslow_Sparrow_0108_796592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0098_99986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0050_30189.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0067_59510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0083_66449.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0040_796180.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Billed_Cuckoo_0060_26686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0055_30912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Boat_Tailed_Grackle_0105_33663.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Herring_Gull_0061_46501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0035_165040.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0011_795836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0002_27266.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0018_158304.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0123_156780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0049_161856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0018_45608.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0031_125631.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0057_156525.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0002_103723.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0001_24449.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0001_167117.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0115_28190.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0105_149841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Billed_Grebe_0091_35276.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Laysan_Albatross_0033_658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0018_43771.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0125_187009.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0032_98121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0086_78636.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0019_795046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0005_796090.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0099_55916.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0065_157019.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0065_42635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0002_23680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nashville_Warbler_0054_167258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0079_22874.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "White_Throated_Sparrow_0135_128819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0076_172104.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0100_189426.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0028_79061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Glaucous_Winged_Gull_0038_44719.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0052_79178.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Headed_Woodpecker_0024_183297.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0032_26292.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Winter_Wren_0090_190104.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0021_72498.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0121_184765.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0043_54706.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0078_149161.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0051_25934.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0087_796223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0094_62698.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0032_182815.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Sage_Thrasher_0023_796458.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0067_794637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Horned_Puffin_0071_100651.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Brewer_Blackbird_0015_2286.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0055_795507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0084_28318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0020_93049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0050_794979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0044_142151.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0075_38619.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0059_795424.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pelagic_Cormorant_0073_23785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0057_155488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0030_24206.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0082_24279.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0058_87296.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0019_129788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Canada_Warbler_0117_162394.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Crow_0067_25443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0053_43843.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0028_118217.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0031_176075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0051_25505.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0032_794849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0075_176978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0015_794573.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": false + }, + "Baltimore_Oriole_0074_87214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0031_45822.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0072_154946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0030_162088.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0093_84809.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0142_190379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0009_98115.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0029_73233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0009_168228.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0105_174097.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0104_162958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0021_14686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0082_23844.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0122_103102.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0077_71129.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0018_91601.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0061_184898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0074_139592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0023_173788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0042_128395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0012_24249.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Sayornis_0032_98962.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0053_797157.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0020_26027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0123_24589.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Harris_Sparrow_0066_116362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bank_Swallow_0033_129509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0008_180858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0009_51301.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0085_159580.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0057_797094.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Slaty_Backed_Gull_0024_796028.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0067_797426.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0085_797260.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0091_125598.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0025_15079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0094_796786.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "House_Wren_0099_187240.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0021_28741.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0014_794718.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0126_120901.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0068_24413.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0115_47123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0002_105195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0003_137724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0055_795963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0092_43206.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0042_36742.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0027_167224.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0123_32505.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0111_165478.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0035_113479.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clark_Nutcracker_0024_85718.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0004_38396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0067_26878.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_And_White_Warbler_0111_160342.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0038_166549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0080_95721.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Evening_Grosbeak_0040_37429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0042_65740.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0025_797508.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Lark_0075_74126.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0096_77901.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0021_80343.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0001_73048.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0011_39935.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "American_Pipit_0109_99710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0055_166436.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0013_159531.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0073_23259.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0058_178795.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0097_103238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0022_4483.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0010_795166.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0073_138108.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0025_23776.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0086_56495.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Footed_Albatross_0088_796133.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Winged_Blackbird_0029_4804.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0086_190639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0061_794728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0073_35553.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Wilson_Warbler_0029_175417.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0021_190655.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0075_106153.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0111_156258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0053_70166.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0084_80670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0127_174149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0022_32111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0027_11579.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0042_151644.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0121_129201.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0093_17676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0010_795255.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0068_125230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0083_61492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0067_11533.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0058_40858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0088_82225.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Evening_Grosbeak_0076_37818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0034_175443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0055_106858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Song_Sparrow_0118_121905.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0094_42018.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0108_40235.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0068_30886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Kingfisher_0004_73741.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0075_21125.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0124_178857.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0103_39580.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0064_177380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0027_30549.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Yellow_Headed_Blackbird_0100_8407.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0072_57391.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0051_72997.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Crow_0066_25827.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0111_127404.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0016_43159.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Violetear_0022_60799.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Wilson_Warbler_0012_175328.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0024_118010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0046_795508.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0081_41318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0057_177784.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Anna_Hummingbird_0055_56396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Horned_Lark_0048_73894.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0048_797449.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0059_75706.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Marsh_Wren_0080_188812.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0051_162447.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0019_73306.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0112_70634.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0094_106576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rock_Wren_0067_189152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0026_180078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0068_155452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0076_794984.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Kentucky_Warbler_0021_165230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0131_113582.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Harris_Sparrow_0002_116356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0068_796682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0017_795924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0110_73826.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0042_179391.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0053_44881.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0042_796721.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0042_801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Faced_Cormorant_0020_796318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0044_144021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Eastern_Towhee_0134_22624.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0011_42734.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0002_106962.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0067_797289.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0060_86031.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0043_10607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0009_34952.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Mockingbird_0098_81117.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0004_111989.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0046_163167.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Florida_Jay_0061_65097.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0002_179071.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0014_795827.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Seaside_Sparrow_0030_120780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0038_120819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0029_151228.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0127_172913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0035_98396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0016_795240.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0086_102876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vermilion_Flycatcher_0011_42554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0030_25092.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0101_139441.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0096_143917.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Raven_0082_102306.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Fish_Crow_0040_25158.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0017_794638.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0025_70501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0036_23503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0037_189256.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0126_89651.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0059_35507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Kingfisher_0045_71143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0037_172550.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0078_186570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0127_28411.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Crow_0050_25255.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0079_161194.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Loggerhead_Shrike_0026_104898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0106_188100.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0028_794951.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0021_82562.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Kingbird_0056_70156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0044_163055.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0012_44131.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0040_190427.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0065_82895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0015_36985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0067_38524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0025_57835.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0035_797100.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "European_Goldfinch_0094_794673.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0135_104716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0067_107508.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0032_797470.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Philadelphia_Vireo_0035_156596.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0025_72795.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0054_114541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0003_175154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0016_13661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0077_169042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0014_38398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0063_161810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0032_120767.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ringed_Kingfisher_0107_72983.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0034_794720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Footed_Albatross_0003_796136.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0102_116101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0026_795962.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Footed_Albatross_0090_796077.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Slaty_Backed_Gull_0023_796030.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0012_794552.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0073_177063.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0044_132542.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Clark_Nutcracker_0078_85416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0095_33568.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Song_Sparrow_0050_121514.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0026_42375.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0041_796572.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0125_187251.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0005_797206.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0079_30662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0024_29173.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0109_161635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Lincoln_Sparrow_0066_117875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0061_184285.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0133_29314.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0108_7937.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0006_796065.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Flycatcher_0044_30349.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Violetear_0106_795643.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0043_75747.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Wood_Pewee_0073_795044.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0126_157179.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0036_142447.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0016_59660.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0042_41990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Fulmar_0078_43985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0078_167964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0105_25283.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0041_794910.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Spotted_Catbird_0002_796827.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sayornis_0137_98305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0088_22948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Eyed_Vireo_0114_159206.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0017_156063.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0056_107010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0026_796229.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0033_27926.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0112_159147.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0039_22945.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Loggerhead_Shrike_0030_104930.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0015_46353.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Chuck_Will_Widow_0030_796994.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "White_Breasted_Nuthatch_0129_86761.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0050_155475.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0084_90607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0001_129516.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cardinal_0050_18035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0036_164779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0089_71325.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0009_36477.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Black_Throated_Blue_Warbler_0107_161214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0056_30570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": false + }, + "Green_Tailed_Towhee_0092_797397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0055_796879.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0034_794993.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0015_12632.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0129_117898.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0070_116400.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0020_796965.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Thrasher_0130_155350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0048_53776.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0083_95840.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Brown_Creeper_0079_24647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0105_20864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0112_44731.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0011_104779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0013_29496.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0023_794559.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0018_146010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0052_795610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Warbling_Vireo_0089_158519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0105_64522.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0038_49298.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0037_796531.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0067_151185.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0046_24463.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0068_159620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0049_9540.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0007_131030.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Frigatebird_0096_43571.jpg": { + "crown": false, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Eastern_Towhee_0112_22231.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0088_26812.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0022_37082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0047_89686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0021_66261.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0083_133771.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0049_128311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0071_140289.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0045_71064.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Gadwall_0079_31052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brandt_Cormorant_0028_22892.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Heermann_Gull_0109_45619.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0083_100649.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Clark_Nutcracker_0110_85217.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0072_26993.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0052_66174.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0034_187656.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0054_797235.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0045_91205.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0105_66479.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Billed_Cuckoo_0061_26692.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0121_78402.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0062_35955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Winter_Wren_0141_190152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0108_91530.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0037_117986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0042_795571.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0005_795919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Vermilion_Flycatcher_0068_42535.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0061_34613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pine_Warbler_0097_171671.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0055_794899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ovenbird_0043_93374.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0043_28117.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0120_185956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0040_175347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0008_797115.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0025_30486.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Hooded_Merganser_0018_78979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0098_144089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rose_Breasted_Grosbeak_0052_39044.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0062_4233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0044_115681.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0053_188276.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0017_21719.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Warbler_0141_171263.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0054_70264.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0056_797373.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0026_155745.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Scarlet_Tanager_0022_138049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0018_56732.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0083_48674.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0046_795227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Purple_Finch_0008_27455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0024_29516.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0023_26409.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0001_21928.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Brandt_Cormorant_0047_23337.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0067_24392.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bay_Breasted_Warbler_0051_797132.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0095_81177.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0070_91383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0066_56486.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0063_42812.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Bewick_Wren_0056_184834.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0110_177074.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0005_118078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0082_524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Acadian_Flycatcher_0041_795605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ring_Billed_Gull_0107_51306.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0002_21819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0027_53080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Frigatebird_0050_43084.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Belted_Kingfisher_0019_70744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0138_48023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0108_188788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0004_189670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0016_118077.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0048_167610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0060_795604.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Redstart_0107_102888.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0024_69582.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0058_183086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0019_164710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0076_57649.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0100_41796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0088_159084.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0040_189159.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0038_76902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0047_174340.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0089_40008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0073_129465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0019_92699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0014_17389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0093_141880.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0080_6877.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0121_59376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0051_84950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0032_24284.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0108_86308.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0066_135788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Yellow_Breasted_Chat_0066_21839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0029_172618.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0033_795281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0051_796991.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Slaty_Backed_Gull_0008_53145.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0048_41121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0028_163302.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0036_133168.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": false + }, + "Green_Violetear_0073_795680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0003_794558.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0059_45642.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0027_36703.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Florida_Jay_0026_64938.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0118_27604.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0080_131829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0013_159787.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0099_133948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Downy_Woodpecker_0098_184567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0052_96865.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Forsters_Tern_0109_152094.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0079_176036.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0046_57225.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0076_164591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0090_116664.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0002_75775.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Long_Tailed_Jaeger_0044_60968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chuck_Will_Widow_0058_796999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_Glossy_Starling_0018_129356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0096_177007.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0028_72221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0060_102013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0007_174796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0100_162923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0131_166197.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0005_84594.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0047_796185.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0087_72794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Scott_Oriole_0057_795856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0116_189101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0121_85435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0088_125305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0119_162307.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0116_71900.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Mallard_0131_76296.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Forsters_Tern_0003_151547.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0023_150654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0063_155127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0045_30174.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0044_26243.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0092_163455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Yellowthroat_0016_190986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0044_68213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0117_140812.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "White_Crowned_Sparrow_0037_126969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0132_86876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0031_796851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0029_176855.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0031_174696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0022_110518.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0033_36395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Purple_Finch_0076_27441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0028_795094.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Blue_Headed_Vireo_0037_155955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0055_159532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0039_2174.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fox_Sparrow_0026_115281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0058_796239.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0077_97025.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0021_189597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0105_156229.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0011_21820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0017_70161.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0074_59231.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Hooded_Merganser_0022_79153.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chestnut_Sided_Warbler_0046_163856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0009_70933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0061_179305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0077_795739.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Rufous_Hummingbird_0100_59541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0043_797203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0052_173400.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0079_506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0021_42378.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0020_100396.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vesper_Sparrow_0032_125564.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0041_117636.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0084_111300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0115_74271.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0089_93234.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0030_166732.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0051_29530.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0048_106754.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0032_796437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mockingbird_0064_81068.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0034_121255.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0018_795840.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Yellow_Breasted_Chat_0086_21877.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0064_35015.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Kentucky_Warbler_0002_795886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0095_18108.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Violetear_0072_60858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Brown_Pelican_0009_94256.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Magnolia_Warbler_0139_166081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0107_170620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0127_158601.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0038_176388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0065_73372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0048_1130.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Loggerhead_Shrike_0089_106055.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0054_138210.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0051_169487.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0067_122424.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0087_33369.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0071_9503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0026_41386.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0030_795885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0075_69978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0044_42305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0080_98518.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0014_129148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0087_45658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0003_179891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0033_78312.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0115_77882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0090_14718.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0013_6902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0024_123805.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0110_53861.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0061_795537.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0051_24468.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0010_174724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Bellied_Woodpecker_0068_180949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0137_25221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0054_166985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0056_79112.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0021_794602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Tennessee_Warbler_0080_167714.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0083_158284.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0002_71698.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0021_71009.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0015_61429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Headed_Vireo_0022_156184.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0087_77499.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0037_167687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0094_26880.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0072_94974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0006_89935.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0018_26978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0050_155836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0019_179870.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0034_794800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0101_41140.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0023_105892.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0029_120828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0035_188998.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0036_797076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0049_180755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rose_Breasted_Grosbeak_0101_39495.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0025_796945.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0077_186003.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0065_14558.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Glaucous_Winged_Gull_0022_44733.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0039_21040.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0040_30366.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Slaty_Backed_Gull_0050_796045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0029_78832.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0078_41550.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0043_69613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0055_149486.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cedar_Waxwing_0011_179149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0010_49169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Geococcyx_0116_104240.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0032_166847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0050_111087.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0107_129046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0006_6005.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0044_182374.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0014_78421.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0011_153722.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0088_117040.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Pelagic_Cormorant_0001_23538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Hooded_Warbler_0068_164872.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0051_79474.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Capped_Vireo_0033_797474.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Shiny_Cowbird_0018_796830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0005_156599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0005_75829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Grosbeak_0009_38609.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0031_797137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0050_170042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0078_35410.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Blue_Warbler_0076_161162.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0069_30544.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0053_543.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sooty_Albatross_0069_796358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bank_Swallow_0008_129590.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0016_48969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0119_795724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0025_82808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Wilson_Warbler_0027_175290.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0068_28330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0004_188188.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0098_174800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0055_795106.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0104_100147.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0010_796600.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0074_796757.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Geococcyx_0079_104249.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0109_4454.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Lincoln_Sparrow_0010_117263.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0020_159634.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0118_43189.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sage_Thrasher_0005_155569.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0016_176452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0003_795662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0115_158932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0078_76238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0077_125597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0056_46783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0065_91397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Blue_Headed_Vireo_0123_156443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0101_116094.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0025_106622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0090_37225.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0068_105400.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0102_40986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0137_102848.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0027_168381.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0100_796627.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0031_71829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0032_42578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0083_128777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0051_97833.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0090_164794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0035_34137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Kentucky_Warbler_0048_165360.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Tailed_Towhee_0003_797414.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0033_1128.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0031_66785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0046_129742.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0018_87782.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0059_14749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0081_173510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0001_71138.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0096_84996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0089_43013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Sparrow_0037_107442.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0070_788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Sooty_Albatross_0049_796350.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Crowned_Sparrow_0071_127922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0075_102530.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0089_174636.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0071_73236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0021_795594.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0035_117383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0078_181887.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0083_125718.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0041_796997.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bay_Breasted_Warbler_0068_797133.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0108_78155.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0101_33611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0104_36164.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Song_Sparrow_0108_121327.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0097_795183.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0017_795041.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0065_795819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0040_79680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0120_104176.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0036_100399.jpg": { + "crown": false, + "forehead": true, + "eyes": false, + "beak": false, + "throat": false, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lincoln_Sparrow_0037_117837.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0018_9402.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0100_34462.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Philadelphia_Vireo_0082_156574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0125_105594.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0094_117762.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0103_149733.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0057_68650.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0094_91950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0059_30152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0082_183922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0036_29693.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0057_795701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0027_794989.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0051_796374.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Prothonotary_Warbler_0117_174622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0107_136223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0004_795112.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fish_Crow_0080_25861.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0025_39252.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0082_36991.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0082_90045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0074_1730.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rufous_Hummingbird_0128_60398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0094_144466.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0109_6698.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0053_154921.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0044_122946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0059_27966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0126_55983.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0010_6386.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0119_161416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0043_34427.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Downy_Woodpecker_0028_184131.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0058_172573.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0120_6762.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0045_90415.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0019_178654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0057_70582.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0032_156239.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0057_795342.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0050_75388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Clay_Colored_Sparrow_0049_110736.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0094_44696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0091_38811.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0007_169473.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Ovenbird_0092_93416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0075_98350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0084_116519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0061_25884.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Magnolia_Warbler_0026_165498.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0115_114855.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0017_614.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Breasted_Kingfisher_0116_73295.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0106_174221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0043_119362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0094_139351.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0086_159202.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0044_76317.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0008_110536.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0047_113801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0099_129412.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0072_161636.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0048_162915.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0093_30898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Sparrow_0053_107282.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0136_45416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0060_107177.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0110_103924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0090_797128.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0020_75596.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Field_Sparrow_0042_113815.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0027_797496.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "House_Wren_0137_187273.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0030_151067.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0091_151895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0026_117754.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0047_7929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0063_797073.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Painted_Bunting_0011_16690.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0034_142022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0052_109874.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0017_185745.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0120_27597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0072_99631.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0059_100925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0028_42639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Jay_0081_61714.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0093_177141.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0047_93203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0050_162057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0053_797276.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0014_42608.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Grosbeak_0021_38382.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0103_27461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0121_114886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0043_165240.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0107_85662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0027_179956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0011_66280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "American_Pipit_0078_99898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0085_37487.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0014_79205.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Headed_Woodpecker_0031_183096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0028_797392.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0001_25053.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0124_24963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0042_794902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0077_36355.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Herring_Gull_0027_46389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0134_112644.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0062_140633.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0041_795358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0055_796720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0048_182599.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Headed_Blackbird_0102_8441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0128_113587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0099_28312.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0057_176675.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0074_107113.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0025_79935.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0076_85801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0033_163607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0027_27153.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0029_142220.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0025_796057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Summer_Tanager_0044_140611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Nighthawk_0031_83636.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rusty_Blackbird_0112_3415.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Sooty_Albatross_0029_796357.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Boat_Tailed_Grackle_0019_33687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0048_188370.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0015_795504.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Louisiana_Waterthrush_0030_795248.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0015_43132.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Long_Tailed_Jaeger_0066_60921.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0108_115894.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0141_157205.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Bronzed_Cowbird_0016_796245.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Lark_0125_73910.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0036_34048.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Fish_Crow_0042_26148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0064_36613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_And_White_Warbler_0049_160749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0018_183455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0096_38441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0035_795214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0014_116494.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0056_180946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0014_39037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0043_139884.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0017_22138.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0145_188193.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0019_37205.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0021_51300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0036_43718.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Vermilion_Flycatcher_0049_42380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Breasted_Chat_0088_21686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0056_175269.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0060_43054.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Breasted_Chat_0063_21783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0117_163079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Evening_Grosbeak_0025_37230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0122_189475.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0086_34064.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Long_Tailed_Jaeger_0020_61084.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ruby_Throated_Hummingbird_0128_58281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Grebe_0095_34491.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Flicker_0124_28966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0095_35496.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Nuthatch_0003_86029.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0024_796463.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0101_797146.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Gull_0013_54794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0100_117835.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Artic_Tern_0083_141579.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0012_53605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0118_160363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0012_147632.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Bellied_Woodpecker_0044_181122.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0044_150946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Grebe_0011_36522.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ruby_Throated_Hummingbird_0123_57745.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0038_106617.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Bellied_Woodpecker_0079_181010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0016_796067.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0036_797287.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0096_151068.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0037_183968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0105_22675.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0060_15159.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0003_6749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0061_53309.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0078_27136.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0031_30502.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0022_796221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0015_163159.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Florida_Jay_0011_64920.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0093_189686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0008_58204.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0001_79812.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0061_107438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0044_148680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0006_150963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Golden_Winged_Warbler_0095_794809.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0079_797294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0021_101767.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0020_155223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0080_64505.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0025_796972.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0034_45693.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0049_102713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0032_136216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0036_37978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0109_128529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0067_164743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Sayornis_0030_98343.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0030_1122.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0044_135984.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0062_42552.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0033_74344.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0095_69482.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0004_797541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0092_185951.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0016_36862.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0039_150944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Anna_Hummingbird_0034_56614.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0088_175163.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0031_70308.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0059_65586.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0006_30262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0054_796301.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Faced_Cormorant_0058_796315.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pomarine_Jaeger_0062_61351.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Gull_0049_53748.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0105_90875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0036_96863.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Worm_Eating_Warbler_0045_795518.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0051_178385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0001_166770.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0039_795471.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0047_117991.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0019_23058.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Yellow_Throated_Vireo_0005_159588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ring_Billed_Gull_0013_50180.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0135_155366.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0051_795738.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0074_37155.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0035_33750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0086_106533.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0007_185634.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Caspian_Tern_0022_144922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Nuthatch_0103_86470.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0018_30462.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Palm_Warbler_0013_169411.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0042_147897.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lazuli_Bunting_0066_14914.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0065_4026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0047_3802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0077_116127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0043_39861.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Cardinal_0040_17477.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0008_796538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0060_1505.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clark_Nutcracker_0090_85116.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0071_40216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0001_795488.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0082_795869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0054_795791.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chipping_Sparrow_0043_109509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0060_39279.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0080_33322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0012_696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sayornis_0100_98782.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0043_127096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0038_133701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Kingfisher_0111_73369.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0047_149195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0024_146033.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0034_795320.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0110_35012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Geococcyx_0101_104230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0037_121078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0002_23072.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fox_Sparrow_0114_114481.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0060_795355.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0002_58387.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0017_73355.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0067_796376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0023_68661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0120_148670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0047_17673.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0075_59619.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0035_55703.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0042_75385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Hooded_Oriole_0062_90089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0014_40880.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Downy_Woodpecker_0036_184048.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0133_55639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0041_144964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0065_796504.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0010_795000.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0121_116110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0013_72114.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0021_796426.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Gull_0027_53994.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0081_158344.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0082_106650.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0031_13300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0014_19425.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0054_91414.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0053_26738.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0072_130474.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0077_166567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0117_156026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0018_167191.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0123_41638.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0081_796833.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0076_186067.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Indigo_Bunting_0013_12949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0095_94290.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0031_37239.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0046_92371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0075_57537.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0109_797440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0122_162219.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0001_73835.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0056_135079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0048_120321.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0051_69609.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0047_90637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Pelagic_Cormorant_0102_23778.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0031_795038.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0066_796382.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rose_Breasted_Grosbeak_0026_39191.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0107_70883.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pacific_Loon_0068_75836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Winged_Blackbird_0088_4007.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0087_39280.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0083_795376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Belted_Kingfisher_0066_70356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tennessee_Warbler_0085_156530.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Tailed_Towhee_0082_797395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0072_90298.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0086_189692.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0034_796165.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vermilion_Flycatcher_0030_42523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0005_26684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Breasted_Chat_0010_21777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0072_150911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0004_125787.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0024_796285.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Bewick_Wren_0016_184999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0058_184520.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Swainson_Warbler_0053_174678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Grasshopper_Sparrow_0043_115880.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0082_797121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0122_165940.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0129_90441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0037_24440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0066_162062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Anna_Hummingbird_0085_56756.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Legged_Kittiwake_0050_795397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0019_57025.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0095_180948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0050_98241.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0122_164635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0036_795573.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0005_795119.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0068_164184.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0041_37174.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0032_39772.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Field_Sparrow_0051_114107.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0014_159709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0120_116021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0106_114720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0034_102866.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0002_180024.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0105_123227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0006_77171.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0115_145927.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_May_Warbler_0107_162941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0064_161656.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0085_185474.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0041_108370.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0007_41917.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0065_58497.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0043_128818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0029_54143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0118_127919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0071_116476.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0098_188947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0021_104885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0018_81183.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0047_165900.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0077_101349.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0009_31847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0072_42085.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0009_34244.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0086_105005.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0022_165693.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0090_174183.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0016_23509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0033_75571.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Warbling_Vireo_0111_158423.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0084_34936.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0019_77876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0032_795707.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0019_141922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0095_164709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0059_56674.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0041_161802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0118_57536.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0026_796095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0064_60999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0079_150953.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0106_116028.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0005_30142.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Warbler_0132_171936.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0053_22957.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Blue_Jay_0006_63504.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Carolina_Wren_0036_186722.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0024_153317.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0102_145928.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0076_417.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baird_Sparrow_0013_794587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0086_86553.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0056_120710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0028_70358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0086_180096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0047_161511.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0060_161888.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Loggerhead_Shrike_0120_105777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0079_92610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0084_150922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0119_56309.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0078_23203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Billed_Grebe_0045_35962.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Myrtle_Warbler_0063_93378.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Great_Crested_Flycatcher_0139_29302.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0047_794604.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0067_79723.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0002_797219.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0066_69320.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0023_125465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0048_42298.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0051_795404.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0056_79348.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "American_Pipit_0029_99667.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0041_795107.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Gray_Crowned_Rosy_Finch_0028_27114.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0067_34654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Bewick_Wren_0037_185332.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0039_795955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Acadian_Flycatcher_0071_795627.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0082_164544.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0086_796545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0071_190665.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0020_166211.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0087_158355.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0026_129870.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0035_42282.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0037_167280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0050_49245.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0005_794888.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0024_796089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sage_Thrasher_0002_155455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0036_796661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rock_Wren_0078_188960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0085_51292.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0035_35518.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Canada_Warbler_0093_162356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0042_175092.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0029_24372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0040_110717.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0138_172695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0090_110145.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0085_30318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0006_184538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0055_161996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Billed_Cuckoo_0043_26492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0059_106086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0057_34274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Eared_Grebe_0007_34236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Winter_Wren_0110_189569.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0102_189563.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0001_158397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0006_17684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0071_189213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0082_137978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0061_36633.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0057_178370.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Evening_Grosbeak_0005_37331.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0056_104142.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0113_51525.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0062_17334.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0064_795954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0048_14844.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0029_36379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Belted_Kingfisher_0027_70397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0049_188540.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0133_156668.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0036_185563.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0006_69521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0103_64537.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0072_795822.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0053_4072.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0083_77052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Violetear_0048_60789.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0087_795198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0014_48983.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0046_796218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0109_39872.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0042_795308.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0017_179830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Purple_Finch_0023_27986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0096_163093.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Horned_Lark_0056_74896.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0032_144029.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Sage_Thrasher_0097_155564.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0129_102094.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0085_102041.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0050_57510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "House_Wren_0086_187815.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bewick_Wren_0070_184892.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0081_176972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0135_115251.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0042_40281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Shiny_Cowbird_0039_24359.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0122_160106.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0049_35980.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_And_White_Warbler_0071_160308.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Philadelphia_Vireo_0056_156502.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0016_156971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0082_796121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Philadelphia_Vireo_0027_156585.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Western_Grebe_0042_36035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Rufous_Hummingbird_0130_59500.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0090_162432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0006_155478.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0094_797250.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0047_98524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0037_162405.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0059_168259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0006_133489.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Louisiana_Waterthrush_0057_795270.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0006_115864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pacific_Loon_0040_75414.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Headed_Vireo_0049_156082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0010_172547.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0027_71434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0099_53670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0038_73041.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0108_39000.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0065_125446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0081_59592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0112_190571.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0135_158955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0115_105575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0094_70698.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0093_126531.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0093_70360.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Carolina_Wren_0066_186818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0109_38451.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0037_797495.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0048_41646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0114_69700.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0003_130086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0040_129674.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0025_144503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0064_166929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0013_180746.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0069_188776.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0048_21797.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Acadian_Flycatcher_0038_795616.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0027_183940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0018_190904.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0058_795746.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0043_796783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mourning_Warbler_0053_795345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0075_797233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0027_59456.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0039_117054.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0030_65824.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": false, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Artic_Tern_0142_142078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0092_20735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Least_Flycatcher_0046_30316.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0031_97064.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0114_67964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0113_184413.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0115_177724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0071_45735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0048_36809.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0064_75532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Henslow_Sparrow_0055_796557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Least_Tern_0014_153757.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0013_133169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0045_161997.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cardinal_0041_17189.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0070_108281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0086_177358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0038_43846.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Worm_Eating_Warbler_0086_176073.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0022_2170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Wilson_Warbler_0131_175268.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0044_1105.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Crowned_Sparrow_0092_125934.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0104_797403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0046_176053.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0039_129599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_Glossy_Starling_0094_129368.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0058_93078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0038_795818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0106_35418.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clay_Colored_Sparrow_0075_797251.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0006_25034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0126_74354.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0108_49356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0014_34968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Forsters_Tern_0043_151332.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0076_796235.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0010_104866.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0062_84573.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_May_Warbler_0055_163171.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0104_24698.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0107_150960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Forsters_Tern_0126_151257.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0027_797009.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Caspian_Tern_0119_145492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0078_66866.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0065_100625.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": false + }, + "Vesper_Sparrow_0081_125541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0019_27192.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0065_795374.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Catbird_0071_20974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0013_44381.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0083_166738.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0014_26754.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Legged_Kittiwake_0062_795434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0108_87576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0010_61457.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Grebe_0114_34517.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0118_45626.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0035_133097.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Swainson_Warbler_0012_174739.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0030_178202.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0056_167123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0046_176984.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0044_796932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0057_114355.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0080_161681.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0037_34169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Horned_Grebe_0057_34590.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Blue_Jay_0082_62524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0040_795251.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0012_2691.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0049_158835.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0028_42197.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0031_180975.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0143_54909.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0106_150872.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Bellied_Woodpecker_0123_182116.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Yellow_Breasted_Chat_0061_21967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0115_22304.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0105_98853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0025_166608.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0012_26712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0049_165313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0079_796687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0050_137874.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Warbler_0073_176218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0046_795118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0057_120016.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0007_164633.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0038_132780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Yellowthroat_0055_190967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0007_182242.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0072_22097.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0044_189127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0119_188404.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0062_129254.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0017_104864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0078_161889.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0073_64896.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0028_796175.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Louisiana_Waterthrush_0094_795264.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0075_45295.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0119_59681.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0063_190440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0076_795907.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0041_2653.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0058_156558.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0061_79453.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pine_Warbler_0008_171330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0057_155164.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0083_795163.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0052_794875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Lazuli_Bunting_0097_14617.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0056_794871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0012_40236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0086_65025.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0023_92534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0038_139371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0025_124233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0003_26797.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Belted_Kingfisher_0008_70668.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Waterthrush_0079_177008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0045_60765.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Gull_0091_55465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0065_31659.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Legged_Kittiwake_0015_73792.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0048_166596.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0040_168029.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0086_156244.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0047_158250.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0065_155229.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0028_643.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0005_64940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0096_164739.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0055_131933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Scissor_Tailed_Flycatcher_0103_41938.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0132_29300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0082_73833.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0015_6885.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0103_187466.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0004_79232.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0008_38486.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0110_69731.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0042_796886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0029_99535.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0008_61231.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ringed_Kingfisher_0040_72852.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0048_794656.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0015_104792.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0026_74910.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0063_146082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0106_91830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0066_796016.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0088_795284.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0039_133645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Lark_0065_74279.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0088_33448.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0024_53631.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0071_48751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0044_75467.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0005_6771.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0030_24103.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0048_92876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0070_796925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0019_797377.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0015_141829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Capped_Vireo_0051_797456.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0084_100637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0028_122829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0098_37532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0087_1765.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bewick_Wren_0123_185069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0029_183337.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0050_796186.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0031_186713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0001_34723.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0054_171287.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0059_178500.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0065_102465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0001_116398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0040_176954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0111_189596.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0124_155052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0042_98126.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0101_171501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0099_33455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0063_795812.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0088_1678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0012_29264.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0063_26094.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0037_66321.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Artic_Tern_0138_142527.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0114_176201.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0046_100240.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0028_78487.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0089_73371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0104_74142.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0029_132832.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0089_133545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Painted_Bunting_0069_16462.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0003_162920.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0056_125657.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0021_177187.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0027_176062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0015_129266.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0091_158419.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0116_185927.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0046_177604.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0050_107033.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Eastern_Towhee_0031_22233.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0087_94358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0027_133203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Flycatcher_0038_30127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0094_1540.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0065_34049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Chuck_Will_Widow_0015_796962.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0035_796026.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Henslow_Sparrow_0011_796568.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0112_77046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0088_25303.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0046_38275.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0013_82010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Pine_Warbler_0136_171382.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0004_184648.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Groove_Billed_Ani_0017_1561.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0037_795330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0010_98204.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0105_51513.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0055_155467.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0128_160803.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0047_42488.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rose_Breasted_Grosbeak_0018_39731.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0013_57212.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0016_175532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0052_796498.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0015_796004.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0100_137493.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0084_155189.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0042_116499.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0084_796587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0060_42595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0125_41906.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0011_176676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0013_83670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pigeon_Guillemot_0079_40389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0041_66464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0030_795930.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0051_101048.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0041_21683.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0120_43300.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Redstart_0038_103278.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0093_102058.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0035_21870.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0037_41066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0081_24198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0024_163406.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0129_161399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bronzed_Cowbird_0021_24189.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0079_21978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0089_181907.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0072_62944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0034_38987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0050_794861.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Least_Flycatcher_0087_30123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0034_797448.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0007_167545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0094_98512.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0080_49748.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0038_129301.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0035_44576.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0047_78962.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Blue_Warbler_0022_161520.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0066_169284.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0111_114527.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0088_92086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0098_73227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0009_5841.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0030_27255.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0045_34859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Winter_Wren_0062_189501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0071_113747.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0024_22382.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0018_42474.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0001_796111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0112_36679.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0124_58465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Field_Sparrow_0008_113459.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0077_91651.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0052_158534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0067_165404.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0067_26124.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0135_160334.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0072_156655.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0100_64645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0033_144328.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Headed_Woodpecker_0038_183280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0103_78500.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0037_98949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0008_20430.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0084_44775.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0026_795489.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0048_175079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baltimore_Oriole_0051_89722.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0032_151384.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0117_41292.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0037_699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0099_137783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0054_174914.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0053_26067.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0025_795484.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0071_38207.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0061_155462.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0104_171668.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Fox_Sparrow_0123_114488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0024_101394.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Marsh_Wren_0082_188699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0007_91133.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0043_36183.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clark_Nutcracker_0131_85701.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0001_794601.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0055_39154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0087_82280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Grey_Shrike_0068_797060.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0031_794737.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0129_22358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0067_175261.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0116_26544.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "White_Throated_Sparrow_0017_128982.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0083_795883.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0113_155111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0063_128803.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0126_168445.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0071_54207.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0060_150837.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pacific_Loon_0032_75441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cliff_Swallow_0012_133527.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Black_Throated_Sparrow_0007_106999.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0010_39238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Eared_Grebe_0071_34311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Kingfisher_0004_72135.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0046_166150.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0014_795432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0113_136849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Catbird_0043_21008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0026_797098.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0021_796880.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0079_92248.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0121_25720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0029_795483.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nashville_Warbler_0044_167357.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0072_184401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0004_162928.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Savannah_Sparrow_0059_119810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0078_116052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0055_35502.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0075_136081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0034_795994.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Dark_Eyed_Junco_0040_66689.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0003_39223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0027_43705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Indigo_Bunting_0072_14197.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0067_186034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Pine_Warbler_0080_171975.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0023_135345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0117_71947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Cockaded_Woodpecker_0035_182435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0104_25086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Warbling_Vireo_0058_158539.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0046_797494.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0001_75521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Breasted_Chat_0023_21664.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0050_189514.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0053_16404.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0061_159042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0003_96691.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Sparrow_0094_107085.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0002_69595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0004_162005.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ivory_Gull_0087_49202.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0050_796351.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0109_185170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0068_170243.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0116_33808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Tree_Swallow_0082_135006.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0088_71122.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0071_52845.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0010_796964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0011_106852.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0042_136401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0103_163669.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0057_159570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0034_7736.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0082_102973.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0026_100937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0009_797201.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0047_190390.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0060_146007.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Auklet_0023_1898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0123_99929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0032_22802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Northern_Fulmar_0097_43865.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pomarine_Jaeger_0011_795777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Golden_Winged_Warbler_0041_164379.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Lazuli_Bunting_0094_11894.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0024_794708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Elegant_Tern_0035_150744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0080_100055.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0027_85266.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0006_167998.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0018_101713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Sparrow_0056_107458.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0128_77396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sooty_Albatross_0065_796367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0063_90976.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0007_795491.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Barn_Swallow_0014_130403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0098_23783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0074_159571.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0012_72974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0043_107479.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0069_98914.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0034_43053.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0075_33839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0027_45864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0118_185169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0122_171274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0007_161785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0102_48078.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0030_40089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Legged_Kittiwake_0009_795459.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0013_129563.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0042_796071.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0063_162324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0095_72008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0101_144331.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0008_34515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "House_Sparrow_0033_112590.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0063_67688.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Gray_Catbird_0130_20328.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0014_33485.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0095_166098.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0016_17862.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0075_23645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0055_795825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0112_795713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0058_102729.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Black_And_White_Warbler_0114_160537.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0079_8535.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Evening_Grosbeak_0086_38048.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Pelican_0014_96417.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Jay_0074_65889.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0034_797102.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Yellowthroat_0118_190805.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0083_36033.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Goldfinch_0090_31893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0129_29022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0094_184478.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0021_13979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0080_2234.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0132_156686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ovenbird_0015_93037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0085_182703.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0090_2658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0041_64734.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0063_61406.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Mangrove_Cuckoo_0003_794619.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0113_161407.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0012_32338.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0026_162913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0056_796457.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0055_103750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0021_37789.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0043_796224.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0001_70224.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0010_23711.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0016_182493.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0106_27607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0079_113288.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0115_32362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0052_177519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0102_67402.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0004_49019.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0045_46845.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0088_103892.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Florida_Jay_0097_64906.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0076_91527.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0093_118267.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0012_8443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0108_98553.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0019_797479.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Blue_Headed_Vireo_0008_155950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0012_94079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0062_797424.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0083_79562.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0092_78989.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Eared_Grebe_0054_34289.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Orchard_Oriole_0060_91536.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0088_147941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0086_796062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Kentucky_Warbler_0012_795875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0006_70625.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0093_56851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0077_38929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0042_150851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0036_42591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0008_30686.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_May_Warbler_0129_163157.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0039_135038.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0098_127019.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0017_67676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0041_25887.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0071_23964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0023_797288.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0086_796780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0038_35798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scott_Oriole_0035_795851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0115_9265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0010_797431.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0129_32625.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0061_160404.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0028_106678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0102_795195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Hooded_Merganser_0025_78996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0058_118323.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0086_95538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0047_165298.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0038_155498.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0105_32238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0085_31171.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Cockaded_Woodpecker_0046_794722.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0036_25911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0039_98420.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0026_14669.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0018_71657.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0020_795947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0050_129780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0089_72947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0043_116756.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0102_168189.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0045_54735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0126_92602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0071_26288.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Headed_Woodpecker_0042_182834.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chestnut_Sided_Warbler_0057_163957.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0050_159442.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Barn_Swallow_0093_130121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0031_796712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0049_151631.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0104_52614.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0129_43183.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Brown_Pelican_0017_94383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0056_15032.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0019_794567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Eyed_Vireo_0024_159193.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0041_75782.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_Glossy_Starling_0050_129274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0015_102593.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0042_34132.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Swainson_Warbler_0013_794892.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Savannah_Sparrow_0015_118910.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0096_155412.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0027_796713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0018_120716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0052_30915.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pigeon_Guillemot_0087_39897.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0047_72401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0047_797075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Laysan_Albatross_0004_930.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Rusty_Blackbird_0027_6593.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0005_795137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0001_100225.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0011_122964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0023_189075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0034_60792.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0088_69856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0007_83419.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Palm_Warbler_0105_170429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0063_11820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0024_795705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0051_79599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0127_161176.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0056_24452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0082_17875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Song_Sparrow_0009_121025.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0089_36154.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0059_107060.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0099_2560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pigeon_Guillemot_0096_39995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0055_163524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0096_109853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0036_150972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Crow_0080_25220.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0039_166546.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0071_36536.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chestnut_Sided_Warbler_0061_163978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0126_11458.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0028_186526.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0087_156461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0074_26466.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0064_22849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0092_113580.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Merganser_0087_78972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Bobolink_0048_9988.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0059_94504.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0015_22275.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0015_182320.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0070_85983.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0005_794565.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0070_100061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0045_795750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Florida_Jay_0083_64599.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0013_795970.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sooty_Albatross_0010_796355.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0102_159887.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0089_107535.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0017_796591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0073_796226.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0038_794759.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0077_49051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0109_9869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Jay_0101_62882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0013_796535.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0116_151688.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0027_4123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0074_165269.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0097_148874.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0116_153715.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0034_797497.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "California_Gull_0001_40786.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0026_796818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Downy_Woodpecker_0120_183926.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0132_51552.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0048_104817.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0128_94059.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Crow_0127_25412.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0044_796698.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0069_34199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Nuthatch_0050_85815.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0090_135325.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0073_795628.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0108_145278.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0040_797386.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0091_796212.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0125_184656.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0070_42250.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Pigeon_Guillemot_0062_39853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0132_65886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0115_135832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0060_156555.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0007_794563.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Common_Raven_0036_102025.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Louisiana_Waterthrush_0053_795241.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0093_797196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Frigatebird_0091_43066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Nashville_Warbler_0013_167326.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0119_99622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0071_159707.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0043_795032.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0043_101901.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0002_26410.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Purple_Finch_0031_28175.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0064_79040.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Flycatcher_0015_30280.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Field_Sparrow_0109_113375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0051_797095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0077_166749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0108_164356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0093_92705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0002_796427.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Carolina_Wren_0006_186742.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0043_188426.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0002_94773.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0062_796683.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0114_60809.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0050_34561.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gadwall_0019_30984.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Artic_Tern_0037_141141.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Canada_Warbler_0109_93363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Artic_Tern_0060_141955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0007_796372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Warbler_0065_172119.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Warbling_Vireo_0131_158522.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0121_42791.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0067_183710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0050_130095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0057_30282.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Sparrow_0066_123569.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0106_180446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0096_33801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0012_33998.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0018_23090.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Slaty_Backed_Gull_0079_796020.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Goldfinch_0032_31922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0025_153678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0027_129978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0117_26651.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0003_797535.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0083_78197.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0027_150113.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0073_794633.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0040_73266.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0004_2345.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "American_Redstart_0126_103091.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0060_133280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0091_26246.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0036_112847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0039_183446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0125_164925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0128_51403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0139_74492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0024_109445.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0085_53158.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0098_46971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0052_26232.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0013_15294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0002_160376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0131_153983.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0020_73914.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0115_156099.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0002_127774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0090_113613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0004_797272.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0015_40232.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Philadelphia_Vireo_0022_156546.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0017_796034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0027_42649.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0007_31537.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0071_70584.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rock_Wren_0066_189034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0053_162950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pelagic_Cormorant_0030_23732.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Faced_Cormorant_0068_796321.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Clay_Colored_Sparrow_0001_110632.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0056_38940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0082_41852.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0073_110718.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0095_30911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Field_Sparrow_0022_113838.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0047_177304.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0019_60970.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Kingfisher_0119_73401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0044_38766.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0019_88186.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0099_23784.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ringed_Kingfisher_0091_72839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0051_154768.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0025_111669.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0116_98939.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0021_15295.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0031_796526.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0008_79458.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Cape_May_Warbler_0033_162657.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Loggerhead_Shrike_0118_105157.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0072_795929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0078_796846.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0012_63753.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0071_166692.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0009_33373.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0033_796506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0010_797262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0061_187911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0086_169676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0041_65548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0040_74214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0039_180814.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0131_184446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0004_35808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Flicker_0034_28740.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Downy_Woodpecker_0048_184164.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0036_122772.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0019_797186.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0026_6768.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0078_129041.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0072_188764.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0045_26194.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Puffin_0077_100671.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0031_176282.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0073_144638.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0098_180170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0125_114557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0092_23061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Crowned_Sparrow_0090_125864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0075_175234.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Great_Grey_Shrike_0010_797023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0001_22314.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0084_27034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0057_20979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0024_37404.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0007_57388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0015_794891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Yellow_Billed_Cuckoo_0029_26865.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pigeon_Guillemot_0038_40035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0087_36780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0023_187192.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0025_104828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0055_8357.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0088_797194.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Mourning_Warbler_0019_795347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Summer_Tanager_0115_139253.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0127_175637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0089_66075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0029_796923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0018_49988.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0067_27431.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0104_70596.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0061_98375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0071_1116.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Blue_Warbler_0100_161622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0004_25819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0019_101063.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Carolina_Wren_0080_186919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0077_79180.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Shiny_Cowbird_0056_24321.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0035_110138.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0057_173865.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0016_2225.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0004_794568.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Gray_Kingbird_0077_70191.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Artic_Tern_0129_141395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0020_794644.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0034_182806.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0063_111460.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0035_100181.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0024_795190.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0070_796717.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0052_112252.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Sparrow_0095_124090.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0080_124120.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0090_158403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0006_158467.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0095_171588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0075_795981.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Fox_Sparrow_0040_115034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0042_794560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0041_100060.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Scott_Oriole_0054_92310.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0072_123991.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0080_22303.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Olive_Sided_Flycatcher_0072_796877.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ring_Billed_Gull_0089_51348.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0109_76616.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pileated_Woodpecker_0121_180026.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0014_25287.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0036_13716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Brown_Pelican_0110_93622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0076_188108.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0016_50392.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0080_11360.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0096_172577.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0017_795832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0083_51407.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0114_190501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0092_136236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0029_22751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clark_Nutcracker_0033_85358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0118_187383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0005_166853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0135_28291.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0135_119620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0029_52613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0012_79425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Gray_Kingbird_0032_70111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0061_32281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0088_105663.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0097_181363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0020_22141.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0007_53334.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0021_796952.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Least_Flycatcher_0097_30122.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0080_8601.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0028_156217.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0107_101412.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0050_104506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0076_160173.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0076_795257.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0014_66258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0003_37698.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "House_Sparrow_0096_111519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0131_25706.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0043_2597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0090_36182.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Cerulean_Warbler_0041_163535.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0077_30492.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0062_796238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0098_26501.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0044_796809.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0080_140110.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0059_103402.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0055_795280.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0009_797256.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0100_184584.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bewick_Wren_0051_185425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0035_2166.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Indigo_Bunting_0040_11805.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0102_161161.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0072_178058.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0115_188443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0115_58067.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0014_22367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0067_116707.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fish_Crow_0012_25946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0044_70322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0001_161189.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0052_128923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0034_166097.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0033_116380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0008_39481.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0036_796387.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Cape_Glossy_Starling_0047_129348.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0063_34966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "House_Wren_0025_187160.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0042_177272.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0004_91057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0087_147945.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0005_169918.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0104_113524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0060_797365.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0127_93700.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0016_180760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0017_26221.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0060_89616.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0094_28726.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0025_795087.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Evening_Grosbeak_0077_38160.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0059_31646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0027_795767.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Grosbeak_0016_38743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0047_129014.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0004_31669.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0014_167190.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0020_106863.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Groove_Billed_Ani_0075_1617.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clark_Nutcracker_0116_84807.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0078_117483.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0014_70910.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0021_737.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0003_80833.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0039_95216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0064_797378.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0054_155145.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0131_29329.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0141_37398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0055_185230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0011_53713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0002_55.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0031_41836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0007_794610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ringed_Kingfisher_0075_73135.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0118_180138.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0035_79200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0027_118028.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0074_106689.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0126_101459.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0004_37960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0066_117820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0041_149586.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0125_111130.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0049_796063.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Rufous_Hummingbird_0057_59489.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0070_71387.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0132_189861.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0011_172744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0113_158588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0040_23144.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Florida_Jay_0046_64488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0047_69719.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0045_104166.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0013_29232.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Headed_Blackbird_0109_8271.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Herring_Gull_0055_47994.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0026_103729.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0118_164991.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0101_14873.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0012_102700.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0132_128833.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Nighthawk_0048_83648.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Warbler_0080_176542.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0048_89957.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0026_71059.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0093_139517.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0092_14656.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0102_185902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0031_110769.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0009_102518.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ring_Billed_Gull_0106_52729.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0102_188654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0064_155531.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0050_31223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Cockaded_Woodpecker_0042_182373.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0007_794972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0119_186153.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0117_188676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0103_171922.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0108_33398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0057_797358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0034_78869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0095_162401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Heermann_Gull_0033_45792.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0056_795547.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0089_125705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0099_161524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0087_183271.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0099_115399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0048_164622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0002_36648.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Le_Conte_Sparrow_0023_795156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0066_106759.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0027_162223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Prothonotary_Warbler_0102_174595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0111_3220.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0067_71641.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0009_16674.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0035_152932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0030_795591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0019_175175.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0021_797404.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0103_57573.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0056_796645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Warbler_0071_176655.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0047_125788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0106_185013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0082_116660.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0031_166494.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0048_794982.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0036_797475.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0074_183907.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0082_26012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0027_30966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Artic_Tern_0059_141876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0077_14060.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0012_148477.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0033_29959.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0034_170352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0006_30824.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0037_15021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0134_158889.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0042_797483.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0078_64692.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0042_1210.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0031_794580.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0040_795974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Green_Violetear_0008_795703.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Parakeet_Auklet_0015_795966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Whip_Poor_Will_0023_796410.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": false + }, + "Warbling_Vireo_0092_158688.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0099_99971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0132_172705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0096_120376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0016_96659.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Billed_Grebe_0037_35598.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Eyed_Vireo_0132_158908.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0089_131934.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Cape_Glossy_Starling_0016_129464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0036_796444.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0133_27928.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0101_2630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0004_31903.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0081_174771.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0057_796286.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Hooded_Warbler_0116_164630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0022_177397.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0023_130325.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0123_105849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0071_795848.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0014_112947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0038_164354.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0132_47395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0070_188205.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0078_38051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0069_24618.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0018_75564.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Sparrow_0073_123871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0051_795971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Gray_Catbird_0022_19585.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0123_187095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0054_797124.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Lazuli_Bunting_0078_15164.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0047_796971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Golden_Winged_Warbler_0087_794810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0093_67335.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0137_104693.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0101_91233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0031_62913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0025_60937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0056_98026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scott_Oriole_0073_92369.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0113_123613.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0099_93148.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0047_795192.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0021_796798.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0093_176490.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0018_26535.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0008_90118.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0072_175958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0115_76840.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0026_83911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Geococcyx_0118_104131.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0086_795263.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0076_120267.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0007_163087.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0005_150708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0063_43631.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0023_156800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0008_143965.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fish_Crow_0065_25942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0031_156632.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0051_125587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Three_Toed_Woodpecker_0036_796146.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0097_43567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Anna_Hummingbird_0122_56622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0082_151937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0033_796086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0069_116332.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0001_545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0010_31158.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0078_72826.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0025_138712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0067_159895.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0028_43752.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0077_150548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bobolink_0079_10736.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0090_57411.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0038_189328.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0030_160592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0017_107552.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0065_138683.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0102_127708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0091_105076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0073_155376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0032_795068.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0119_29778.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0106_164869.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0046_19399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Meadowlark_0026_78438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0084_33147.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0032_71792.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0019_177062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0120_103089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0048_796817.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0100_28898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Blackbird_0066_2693.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0023_30352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0111_24590.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0049_164509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0056_133921.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0098_621.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Mourning_Warbler_0024_795363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0042_161869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0054_2631.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cliff_Swallow_0063_133852.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": false, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Tern_0034_153963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0113_166834.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0070_46615.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0072_158422.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0107_110825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0036_71156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0111_153308.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0096_138022.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0115_99335.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0104_152950.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0037_796731.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Blue_Warbler_0096_161654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0100_6597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0099_183524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0019_15231.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0101_154907.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0110_21871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0050_116369.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0126_110959.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mourning_Warbler_0067_795353.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0045_117547.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0018_108295.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Laysan_Albatross_0035_876.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0063_65925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0080_180589.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0074_100886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0052_797487.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0097_190139.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0074_32265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0009_70536.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Nuthatch_0101_86708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0020_166997.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0049_34100.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_Glossy_Starling_0097_129303.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0070_796540.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0089_174764.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bobolink_0021_10623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0111_145995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0002_156241.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chestnut_Sided_Warbler_0005_164061.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0005_73086.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0020_86143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0032_30146.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0005_177023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0077_57858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0035_26081.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Heermann_Gull_0091_45363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0059_159225.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0088_168052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0105_165661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0058_12207.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0004_796514.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0040_127313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0116_45236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0048_796163.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Nelson_Sharp_Tailed_Sparrow_0061_796907.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0008_796944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0075_171933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0110_188434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0047_7009.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0106_35112.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Throated_Sparrow_0105_128814.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0117_55785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0044_166852.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0041_159032.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0071_59505.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0054_30450.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0139_104277.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0004_39143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0040_116882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0092_49996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0090_45924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0033_42695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Cactus_Wren_0088_185873.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0111_108515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0075_30441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0043_79295.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0008_795305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0065_114945.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0099_175559.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0087_177148.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0037_91156.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0043_129685.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0122_94022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0019_173838.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0116_117372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0083_45879.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0039_795429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0035_174741.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0017_795490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0106_38218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0108_149672.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0119_26550.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Brown_Pelican_0075_95357.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0084_84510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0085_36990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0011_143355.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Grebe_0005_34657.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Gray_Crowned_Rosy_Finch_0022_27028.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0096_153868.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0043_796510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0104_85531.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0025_129341.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0109_87398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0033_796805.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ring_Billed_Gull_0093_51303.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0080_106850.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0048_75524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Rhinoceros_Auklet_0046_797532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Green_Jay_0029_65637.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0033_794566.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0059_82741.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lincoln_Sparrow_0013_117202.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0121_45375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0139_184839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0062_31921.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0060_795414.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0091_180938.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0053_795493.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0124_44663.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0070_144292.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0091_160896.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0014_85386.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0026_796542.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0019_189533.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0060_41655.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Grey_Shrike_0091_797054.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0020_796359.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_Glossy_Starling_0007_129345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0098_43207.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Heermann_Gull_0110_45968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0120_113953.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0084_164541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0028_797241.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0002_796395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rose_Breasted_Grosbeak_0040_39689.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0030_14986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0053_92462.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0131_66423.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0010_2269.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0013_162375.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0091_22111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0032_118036.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0048_110653.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0029_794883.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Long_Tailed_Jaeger_0003_61082.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Boat_Tailed_Grackle_0004_33858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cardinal_0001_17057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0045_28805.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0088_49177.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0009_180460.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0042_31979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0052_139804.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0056_44658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0010_66649.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Footed_Albatross_0050_796125.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Laysan_Albatross_0060_777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Wilson_Warbler_0064_175361.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0076_117964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0013_163552.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0085_71557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0044_169319.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0080_34223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Winged_Blackbird_0072_4338.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Downy_Woodpecker_0091_184537.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0027_177286.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0087_166783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0062_120185.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "American_Crow_0043_25666.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0033_167991.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0085_151091.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0029_1620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0073_169781.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0062_796503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0001_45472.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0106_68139.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0022_187848.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0079_158198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0054_131146.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0077_90886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0096_185898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0092_794671.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Eyed_Vireo_0044_156708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0009_59405.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Grebe_0013_36383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Artic_Tern_0115_142570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0022_6808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Purple_Finch_0117_27427.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0039_795081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Wilson_Warbler_0007_175618.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0126_57371.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0124_167285.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0049_918.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0035_162377.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Field_Sparrow_0123_113847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0085_796839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0027_24729.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0062_75587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chestnut_Sided_Warbler_0052_163728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0061_161984.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Pied_Billed_Grebe_0040_35981.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Necked_Raven_0047_102660.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0017_794586.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0078_796262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0047_177523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0083_190025.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0014_138298.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0009_796795.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0021_58408.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0043_175491.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0049_94598.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Faced_Cormorant_0001_796327.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Magnolia_Warbler_0120_165462.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0040_9681.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0140_165543.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0056_9080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0028_795450.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Geococcyx_0020_104164.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0016_168082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0001_14916.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "White_Necked_Raven_0043_797363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0062_30131.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0085_22674.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0073_133116.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0020_136587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0051_115923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0081_797179.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0115_118882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0119_177942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0048_173095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0042_43739.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Laysan_Albatross_0034_628.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0028_113217.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Nashville_Warbler_0015_167429.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0007_53431.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0037_74696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0044_156080.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0116_170319.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0122_92993.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0108_186089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0049_174213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0109_183385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0039_100890.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Sparrow_0009_123294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0021_25137.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0011_794577.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Northern_Fulmar_0021_43743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Black_Billed_Cuckoo_0018_26218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0009_155463.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0066_99961.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0015_72299.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0066_166491.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0021_113461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0022_795012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0133_175626.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0121_22319.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0045_98549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0101_1700.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0143_111400.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0067_79167.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Headed_Vireo_0012_156434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0015_178818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0030_26350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Clark_Nutcracker_0102_85089.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0125_22220.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0127_2235.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0071_173690.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0120_10859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0036_59562.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0011_63660.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0016_795528.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0037_26071.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0021_795776.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Catbird_0102_20644.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0102_17808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0092_147779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0007_797118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0059_177449.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0019_797049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0054_174556.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0061_795479.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0103_32225.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0005_33263.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0082_186421.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0069_122065.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0130_167101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0038_796632.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0023_61431.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0063_98295.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0016_43958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Cockaded_Woodpecker_0041_182408.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Tailed_Towhee_0061_154880.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0002_796781.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Hooded_Oriole_0041_90218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0092_117294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0042_29438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0055_117506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0081_155724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0073_29330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Scott_Oriole_0029_795846.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0048_34175.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chipping_Sparrow_0006_107849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0041_29521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0118_42067.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0037_796120.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orchard_Oriole_0085_91411.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0051_29077.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0059_794929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0137_2680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0069_53553.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0064_674.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Prothonotary_Warbler_0018_174196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0052_101909.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0030_41354.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0008_797389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0030_73335.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0031_795960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0091_155934.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0132_184408.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0075_794848.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0046_76165.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Golden_Winged_Warbler_0042_164437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0122_39284.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0079_129399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0014_86023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0129_113748.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0082_180523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0019_795554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0113_121683.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0037_73794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0042_796983.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Breasted_Merganser_0068_79203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cardinal_0078_17181.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0032_78633.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0054_12213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0024_86200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0037_33149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0030_61447.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0027_23482.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Evening_Grosbeak_0028_37410.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0024_36680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0020_188895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0044_42002.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0076_176086.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0038_177027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0025_97604.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Oriole_0010_90413.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0032_120109.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0075_185046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0085_132939.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0046_27295.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0072_16697.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0059_151269.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0014_165336.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0074_117584.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0045_171150.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0066_795206.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Cape_Glossy_Starling_0068_129446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0139_21281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0119_162976.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0016_115695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0104_26814.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0009_174937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0039_107259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0112_138695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0086_152738.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0101_164806.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0039_50191.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0072_118012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0120_48822.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0106_2608.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0027_75542.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Groove_Billed_Ani_0046_1663.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0045_39489.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0129_37831.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0130_56122.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0013_24131.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0010_795995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Anna_Hummingbird_0065_56154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0105_176849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0087_151226.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0113_185113.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0029_16530.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0044_794554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0069_68416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0085_797037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0028_188797.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0067_114528.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0029_795015.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0097_168004.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0069_117812.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0047_75393.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Cedar_Waxwing_0069_179310.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Grebe_0082_34725.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Philadelphia_Vireo_0041_156642.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0074_24297.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0005_796873.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0055_70290.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0005_154784.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0080_175770.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0133_165016.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0076_26177.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0063_120707.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0102_186332.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0010_75818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Myrtle_Warbler_0039_166709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0022_159037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0098_151258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0053_797197.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_And_White_Warbler_0089_160370.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0102_93727.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0109_115750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0057_159818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0031_21635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0041_139902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0005_145929.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Breasted_Merganser_0009_79576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cardinal_0033_19215.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0057_51315.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0034_795813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0109_129066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0041_27105.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0028_2682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0090_86856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0028_39271.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0081_6967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0039_165532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0014_23801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0042_189006.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0069_129218.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0011_155370.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0012_144091.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0013_31020.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Grebe_0049_36219.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Rock_Wren_0050_189207.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0101_72919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0060_73132.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0044_106851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0094_38912.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0053_121554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0003_101045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Gray_Crowned_Rosy_Finch_0048_27236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0080_16534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Le_Conte_Sparrow_0050_795143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0080_121033.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0083_151282.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0035_162658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Loggerhead_Shrike_0022_105501.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0079_165783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0076_79934.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0015_101364.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0049_163735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0025_796306.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0092_23639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Gull_0066_54105.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0037_14128.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0095_90337.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Gull_0065_55728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0102_144344.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Carolina_Wren_0060_186296.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0014_155421.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0054_72296.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0066_795259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "White_Throated_Sparrow_0060_128802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0006_796390.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bronzed_Cowbird_0019_796242.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0027_183029.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0014_145640.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0032_796170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0065_796068.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0031_795582.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0043_795416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Brewer_Sparrow_0024_107439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0070_10624.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0104_177676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0029_129751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0110_60866.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0072_21830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Mallard_0070_77588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Yellow_Warbler_0118_176409.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0080_107050.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0018_17071.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Blue_Winged_Warbler_0086_162027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Marsh_Wren_0099_188579.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0013_30550.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0033_60955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0087_73989.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0062_106628.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0010_70057.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Green_Violetear_0066_795682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tropical_Kingbird_0073_69401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0070_180034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "American_Redstart_0064_103081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0013_796578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0061_795990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0052_69739.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0041_796926.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Grey_Shrike_0023_106670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0063_177346.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0036_163622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0006_28290.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Grebe_0071_35078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "American_Redstart_0119_104057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0073_24546.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0004_65042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0043_77038.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0104_67820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0061_38026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0050_180398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0071_25155.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0059_39045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0014_98889.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0092_31162.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0130_76836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Groove_Billed_Ani_0009_1522.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0046_158849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0043_30632.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pileated_Woodpecker_0074_180306.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0076_85083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0073_73498.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0066_44669.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0048_76995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tennessee_Warbler_0039_174883.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0091_108308.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0036_158268.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0030_29645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0092_795704.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Tern_0091_144063.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Palm_Warbler_0100_168725.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0096_2634.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0062_163859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Ringed_Kingfisher_0102_72941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0049_24147.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0110_161726.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0033_73133.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0046_797103.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "White_Crowned_Sparrow_0017_125829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0013_189500.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0063_113667.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0071_80357.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0052_59581.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0045_69605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0058_16719.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0028_156510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0067_69792.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0115_69485.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0095_162965.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0097_177045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0037_164233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0083_38508.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0100_153461.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0019_186527.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Canada_Warbler_0002_162426.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0026_11057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tennessee_Warbler_0087_174968.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0110_9496.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0089_150854.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Puffin_0015_100889.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Green_Violetear_0078_60844.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0059_61347.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mangrove_Cuckoo_0043_794605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0075_36963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Yellowthroat_0058_190958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0111_161615.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0098_133130.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Bewick_Wren_0087_184918.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0015_796808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0017_65017.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0063_189543.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0044_20955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0001_794869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0048_1791.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Horned_Grebe_0096_34452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Chestnut_Sided_Warbler_0090_163629.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0061_106967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0097_29398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0046_18.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Philadelphia_Vireo_0059_794799.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Crested_Auklet_0006_1813.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Yellow_Bellied_Flycatcher_0050_42598.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0110_159735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0035_27972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0006_183383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Hooded_Warbler_0051_164892.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0041_131860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0078_36655.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0085_794682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0034_795583.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Brown_Thrasher_0070_155343.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0036_51461.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0039_41034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0020_167198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0110_128838.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0073_155614.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0021_794765.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0056_43880.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mallard_0016_76315.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0107_156111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0005_795372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Oriole_0056_89966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0049_2258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0071_36948.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0023_159584.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Rhinoceros_Auklet_0037_797499.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "American_Crow_0011_25151.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0004_16641.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0061_22902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Green_Jay_0047_65757.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0047_14863.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Cedar_Waxwing_0033_178737.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0011_5845.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0115_149482.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0033_101759.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0014_57477.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Canada_Warbler_0020_162354.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0063_23515.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0012_70325.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Magnolia_Warbler_0103_165647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0068_114967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0043_159628.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0040_40270.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0117_167987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0106_160014.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0062_172755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0001_796931.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0064_79563.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mallard_0138_76735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Great_Grey_Shrike_0071_106861.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Acadian_Flycatcher_0049_795580.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0011_794676.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Canada_Warbler_0104_162345.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0133_104267.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0075_128990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0051_182347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0040_795370.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0112_116845.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0073_160539.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_May_Warbler_0092_163057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Hooded_Merganser_0072_78973.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Jay_0060_62570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0019_118200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0047_160547.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ovenbird_0081_93115.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "American_Redstart_0048_104021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0099_158744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0079_71267.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Caspian_Tern_0058_145886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Horned_Lark_0064_74864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0054_33633.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0024_42616.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0115_93731.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0042_795457.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0016_795977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0095_135829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0015_796858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0029_90485.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0104_161686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0062_189045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0049_189504.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0084_14815.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0022_55779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Magnolia_Warbler_0045_165448.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0050_54425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0007_58433.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0052_73446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Sooty_Albatross_0076_796365.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pigeon_Guillemot_0037_40149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Crested_Flycatcher_0124_29294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0068_137758.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0134_85534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0037_48655.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0013_91945.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0037_26389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Hooded_Oriole_0044_90082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0059_488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Pipit_0010_99843.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0044_36188.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vermilion_Flycatcher_0032_42216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0019_43348.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pelagic_Cormorant_0046_23588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0036_118075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0085_34063.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Western_Meadowlark_0091_78576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0013_8362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0112_117631.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0091_33504.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0023_73230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0070_79570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Barn_Swallow_0013_131812.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0058_64997.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0126_172931.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0120_155133.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0031_42201.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0044_155610.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0007_9246.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0058_91819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0073_107518.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0051_182724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0009_42234.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0033_795749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Warbler_0063_176800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0009_93395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0064_795584.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Louisiana_Waterthrush_0073_177558.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0022_28952.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0049_63082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0125_28485.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0025_157173.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0086_132477.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0016_65051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0063_73365.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Pomarine_Jaeger_0049_795795.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rusty_Blackbird_0104_6685.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0014_175126.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0107_144661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0019_158313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0077_177152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0024_144039.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0014_143939.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Blackbird_0027_2329.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0030_72603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0043_124034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0015_797425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0039_71037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0068_13081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Kingfisher_0037_73220.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0049_21311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0042_98874.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0103_162339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0074_9311.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0052_184760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0009_185871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0050_139358.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0062_177364.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0042_159655.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0045_797464.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0108_32974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0045_22798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Legged_Kittiwake_0013_795413.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Chipping_Sparrow_0050_108441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0036_36521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ovenbird_0101_93104.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0104_144038.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0082_797180.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0051_70139.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0047_102860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0095_21832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0033_177214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0092_61654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0105_158727.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0042_23522.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0033_41782.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0018_85166.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0075_116404.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0057_14775.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0102_797420.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0003_796246.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0073_795800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0115_51891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0098_153820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0083_797281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0109_167428.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0125_160482.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0062_98123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0106_36509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Cockaded_Woodpecker_0053_794707.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0142_85322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0045_116603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Green_Jay_0106_65811.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0081_134119.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0006_73836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0034_41548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0067_162539.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0043_795053.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0026_129288.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0048_100916.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0055_156575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Eyed_Vireo_0061_157202.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Northern_Waterthrush_0072_177121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0017_99902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0067_104537.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0037_148048.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0055_28344.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0078_796126.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Boat_Tailed_Grackle_0065_33423.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0090_794830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0098_795231.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0002_171176.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0128_9947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0132_155337.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0051_36249.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Caspian_Tern_0079_145777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0028_92270.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0090_44836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0060_796642.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0082_795014.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0077_164432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0084_107066.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0035_796924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0102_2620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0092_182235.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0041_28697.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0091_172597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0046_797343.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0027_104004.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0011_43213.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Merganser_0020_79046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0094_166922.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0014_90594.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0075_30712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Legged_Kittiwake_0003_795389.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Tailed_Towhee_0050_154898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0074_145964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0075_179114.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Kingfisher_0097_71895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0049_16869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Footed_Albatross_0045_796129.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Warbler_0050_164662.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0094_103425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0041_795218.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0008_153313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0013_42769.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chipping_Sparrow_0062_110187.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0035_176360.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0022_796022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0074_12829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0065_794842.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0055_38730.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Kingfisher_0104_73398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Summer_Tanager_0127_139297.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0114_91412.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0076_159996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0028_173123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Least_Tern_0113_153415.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0039_176120.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0017_797400.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0089_77068.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0103_17425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0059_85903.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0123_41330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0080_795751.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0045_79358.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Sparrow_0015_107079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0079_25463.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0030_125663.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0014_796987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Winged_Blackbird_0074_4146.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": false, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0050_787316.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0046_794872.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0053_72761.jpg": { + "crown": false, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Belted_Kingfisher_0077_70620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0098_65857.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0058_177388.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0087_54193.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0078_53595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0101_78899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0065_26203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0058_120744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0002_112905.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0053_106792.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0063_132572.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ring_Billed_Gull_0044_50239.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Parakeet_Auklet_0058_795942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0020_6679.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0117_42026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0067_795520.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0021_794971.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0034_129496.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Caspian_Tern_0016_145314.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0093_133052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0017_84237.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Grosbeak_0042_38432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0048_36399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0067_165484.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0047_34204.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Warbler_0038_171386.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0022_130631.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0125_172536.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0082_150517.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0042_795755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Cockaded_Woodpecker_0001_182541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0059_101893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0126_106316.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0029_797349.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0065_182863.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0009_26977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0004_70293.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0078_159382.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0042_187098.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0002_129310.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0040_164605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0060_180443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0005_122949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0012_138410.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0015_796593.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0108_22182.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0072_795559.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0103_115038.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0005_184699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0014_59476.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0027_55873.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0110_105947.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0088_24731.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0101_49790.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0105_165095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0036_91818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0039_69253.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0024_8586.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0053_28445.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Lincoln_Sparrow_0047_117442.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0083_136800.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0034_25891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0033_129016.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0038_42262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0068_134236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0109_189094.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0034_90686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0029_797300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0094_161790.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Eyed_Vireo_0091_159045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0009_796835.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0032_34078.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mockingbird_0054_81703.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0026_81214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0029_177915.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0074_795720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0029_22017.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0096_63330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0002_175571.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0059_41998.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0032_70573.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0097_167001.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0136_32277.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Yellow_Headed_Blackbird_0035_8447.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0003_39986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0078_70366.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0108_57653.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0074_71214.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0034_70329.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Rusty_Blackbird_0075_6717.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0015_795867.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0009_72786.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0050_37336.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Golden_Winged_Warbler_0022_794833.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0053_34512.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Dark_Eyed_Junco_0058_68784.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0101_44718.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0019_22806.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Parakeet_Auklet_0070_795998.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pelagic_Cormorant_0032_23570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Grasshopper_Sparrow_0053_115991.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0097_45783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0055_91515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0027_190869.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0099_25717.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0026_30525.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Least_Tern_0058_153747.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0120_37378.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0033_150687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0032_796828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Barn_Swallow_0034_130099.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Warbler_0084_172409.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0055_6923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0050_107460.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0066_797298.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0007_79157.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Billed_Cuckoo_0006_26578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0097_10861.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0069_25506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0010_40735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0054_182031.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0022_795058.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0005_57349.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0069_145931.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0081_129220.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0145_46220.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0029_61365.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Myrtle_Warbler_0016_166736.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0087_36570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0025_36646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baltimore_Oriole_0090_87054.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0090_110669.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0038_174760.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0067_77623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Summer_Tanager_0017_140173.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0057_167008.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0039_138010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Loggerhead_Shrike_0101_105392.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Billed_Cuckoo_0007_26320.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0093_46029.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0023_177002.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0038_796884.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0043_8250.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0046_71178.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0047_154776.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Western_Wood_Pewee_0053_98186.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0038_129830.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0010_796716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0035_1591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0036_796053.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0112_164650.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0057_165673.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0114_10627.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0045_121951.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0092_86016.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0019_190524.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0049_795220.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0095_119670.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0068_166892.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0063_104250.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0056_61723.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0046_116740.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0099_190531.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0078_5372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0082_185021.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0057_24529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0044_103433.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0044_92262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0086_109022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0001_179170.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0045_796888.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Redstart_0012_103385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0118_113416.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0034_79292.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0058_796074.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Eyed_Vireo_0036_156727.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0084_34364.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Northern_Fulmar_0008_43647.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ringed_Kingfisher_0043_72877.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0032_184870.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0116_127512.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0036_794905.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0012_92778.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0003_70970.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0024_68961.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Worm_Eating_Warbler_0090_795523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0099_117482.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0005_101347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0104_796541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0015_116352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0008_796083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0095_37007.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0059_140582.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0063_34054.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Blue_Winged_Warbler_0057_162085.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cape_Glossy_Starling_0053_129219.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Frigatebird_0074_43035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Merganser_0016_79079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Downy_Woodpecker_0124_184364.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0048_73770.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Acadian_Flycatcher_0070_29150.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Throated_Vireo_0082_159597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0071_107446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0058_796883.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0128_39204.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0065_173422.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0068_113247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0056_166476.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0029_796459.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0108_180956.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0031_174578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0078_85828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Purple_Finch_0119_27260.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0120_158991.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0064_29546.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0128_123979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0033_43794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pacific_Loon_0008_75428.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Shiny_Cowbird_0080_796875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0024_150852.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0108_169426.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0130_121583.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vesper_Sparrow_0055_125611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0066_57518.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0018_72957.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0004_86969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0049_155110.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0016_129791.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0038_794719.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0049_46508.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0033_22792.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "European_Goldfinch_0081_33259.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0032_21551.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0008_795992.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Elegant_Tern_0080_150538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mangrove_Cuckoo_0035_794595.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Carolina_Wren_0002_186506.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0059_190584.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0083_795315.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0043_138236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0038_189510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0083_160237.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0114_49535.jpg": { + "crown": false, + "forehead": false, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0005_23720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cedar_Waxwing_0049_178723.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0005_29157.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0015_796435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Wilson_Warbler_0024_175278.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0079_154764.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0124_93684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0073_73118.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0058_34568.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bohemian_Waxwing_0050_796630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0022_17233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0020_36241.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Common_Tern_0004_148977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0087_137937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0072_72954.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0007_797278.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0059_42261.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0115_163121.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0017_70957.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0067_73300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0117_44298.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0015_111085.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0002_159625.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0040_795465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rock_Wren_0036_189245.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0055_45901.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0099_3985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0061_8208.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0114_162396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vesper_Sparrow_0052_125444.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0059_797079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Downy_Woodpecker_0029_184046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0090_65895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0048_30656.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0032_177385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0035_71133.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0080_159749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0109_1592.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Anna_Hummingbird_0070_56085.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0038_168384.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0026_794884.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0117_143394.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0120_29472.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0110_169490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0053_795805.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0035_143366.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0119_171551.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0078_71985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0048_95764.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scott_Oriole_0070_795808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0076_96427.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Pelican_0073_94823.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0024_4180.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Henslow_Sparrow_0068_796615.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0046_37119.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0031_34262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fish_Crow_0073_25977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0055_26077.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0073_182784.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Painted_Bunting_0044_16557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0048_100140.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0052_98006.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Harris_Sparrow_0083_116588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0084_163872.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0066_95495.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "California_Gull_0088_41296.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0079_30256.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Dark_Eyed_Junco_0124_67664.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0107_60781.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Western_Grebe_0038_36363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Artic_Tern_0048_142372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0027_141617.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0013_71293.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0108_92675.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0055_61046.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clay_Colored_Sparrow_0042_797243.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0099_121193.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0070_101896.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0077_98724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0109_108162.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0032_156897.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0068_100872.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0026_794609.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0125_88450.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Nuthatch_0030_85823.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0056_162407.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Sparrow_0003_107459.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0018_107437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0071_188111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0069_79204.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0076_41597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0125_98528.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0078_11852.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0073_87187.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0085_15282.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0047_794704.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0053_84436.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Whip_Poor_Will_0042_796419.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cactus_Wren_0095_185633.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0089_80601.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0076_151330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0001_23398.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mourning_Warbler_0018_795386.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0006_797347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0025_174973.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0001_797538.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Orange_Crowned_Warbler_0114_167732.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0015_797031.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0010_160200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0092_184901.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0026_153702.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0074_23511.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0067_40973.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0080_56366.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_And_White_Warbler_0109_160245.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0053_794966.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0026_75593.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scarlet_Tanager_0021_138199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0007_51430.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0082_44528.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0033_117303.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0007_22934.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sage_Thrasher_0098_796448.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0044_186645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0067_115979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0082_31301.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clark_Nutcracker_0126_85134.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0014_797086.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Nighthawk_0064_82196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Crowned_Sparrow_0085_127194.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0065_797027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0108_105023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0086_158564.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0005_796342.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0063_794781.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0067_125429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0020_63604.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0093_15030.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bronzed_Cowbird_0051_24083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0061_44852.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0127_155193.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0008_794753.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Barn_Swallow_0006_131315.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0045_4526.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0127_167494.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0019_69643.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0060_114177.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0010_60895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "European_Goldfinch_0022_794674.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0050_100645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0044_165436.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Carolina_Wren_0032_186566.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0067_797220.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Sparrow_0112_125014.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0102_122090.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0009_182540.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0059_794970.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": true + }, + "Mallard_0045_77129.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0050_156538.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0122_25200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0047_129520.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Northern_Fulmar_0052_43857.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0025_190547.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0028_796421.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Louisiana_Waterthrush_0002_795285.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0022_795882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0039_796408.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Horned_Grebe_0085_34713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Frigatebird_0052_43411.jpg": { + "crown": false, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Eastern_Towhee_0049_22357.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0106_176383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0009_158721.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0063_147789.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0015_8207.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0058_165441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0023_7325.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0093_45576.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0084_133974.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0047_166987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0102_25000.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0035_120986.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0009_796940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0004_24851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0012_74511.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0020_179828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Northern_Fulmar_0015_43658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chuck_Will_Widow_0009_796955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Wilson_Warbler_0055_175183.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0063_86573.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0060_177213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0042_79202.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Chuck_Will_Widow_0039_797000.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Bellied_Woodpecker_0074_180936.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Long_Tailed_Jaeger_0030_60961.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0076_77811.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0073_185049.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0022_115248.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0106_84856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0112_189507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0016_155566.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0020_104027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0076_129088.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0111_66488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Baltimore_Oriole_0041_87367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0035_11117.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0094_112773.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Philadelphia_Vireo_0020_156663.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": true + }, + "Song_Sparrow_0114_121233.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0012_795211.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Cockaded_Woodpecker_0017_794712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Tailed_Towhee_0014_797415.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0014_35424.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bohemian_Waxwing_0001_796680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Jay_0092_65884.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Sparrow_0013_107005.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0051_165646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0016_89885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0038_40865.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0086_182715.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0097_37067.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0001_27571.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0024_75555.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Field_Sparrow_0038_113356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0008_164001.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0053_795792.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0094_167584.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0131_92559.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0082_125503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0117_39601.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0136_99099.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0053_22623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0030_21964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0106_180757.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0040_107172.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0064_4936.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0030_163847.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0098_187368.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0107_183290.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0008_137607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Gray_Catbird_0028_20598.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0079_62626.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0015_26208.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0103_156382.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0001_56960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0063_138227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0009_113860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0009_127658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0074_93692.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0087_97247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0101_56459.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "California_Gull_0043_41326.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0042_2302.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0074_135219.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0088_43201.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Long_Tailed_Jaeger_0017_797081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Kingfisher_0057_71096.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0042_155213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0092_1516.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0088_158452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0041_153470.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Elegant_Tern_0058_150853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0007_49364.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0044_64664.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0029_62199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0014_98094.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0010_13000.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0108_28502.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0060_129222.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0092_182787.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0061_167355.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0032_129491.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0093_162014.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0085_24938.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0088_162018.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0047_85630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0078_16565.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0066_166184.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0088_31854.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_And_White_Warbler_0034_160695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0058_123591.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0049_175006.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0005_167103.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0047_795373.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0002_36518.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Parakeet_Auklet_0067_795964.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bronzed_Cowbird_0020_796237.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0024_794630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Pelican_0019_95158.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0020_120743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0008_21856.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0007_24434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0079_172735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0059_104258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0038_2294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0076_11093.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0016_114213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0039_794818.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mockingbird_0016_79605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0017_795451.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0069_98299.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0019_127652.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0026_796157.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0127_184756.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0046_155154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0103_44062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brandt_Cormorant_0042_23151.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Rock_Wren_0029_189145.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Fox_Sparrow_0052_114878.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0023_39829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bank_Swallow_0028_129754.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0057_27107.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0028_796988.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Bobolink_0057_10051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0020_110609.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0073_49287.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0096_185139.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0034_797252.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Shiny_Cowbird_0059_24421.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0027_185212.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0054_796507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0087_40909.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0008_156551.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Western_Grebe_0103_36515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": false + }, + "Black_Throated_Blue_Warbler_0048_161665.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0136_45059.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0008_135352.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0029_30362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ring_Billed_Gull_0078_51494.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0021_36282.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Great_Grey_Shrike_0039_797015.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0066_94840.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Spotted_Catbird_0040_796820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Geococcyx_0024_104243.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0113_146828.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mockingbird_0012_81216.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0097_107678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0025_42032.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0029_795042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Brandt_Cormorant_0026_22913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0008_26357.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0011_125608.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0020_171989.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0063_69589.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0020_795439.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0101_187133.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0005_179902.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0057_37116.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0035_181913.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0055_61507.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0035_136589.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0021_795545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0014_129668.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0069_795579.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0113_156332.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0093_182925.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0028_796570.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0042_133646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0051_94578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0023_120326.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0075_139858.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0082_142127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0013_20562.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0025_180756.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0056_148549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0081_167647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0020_190720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0108_70554.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0119_142682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0015_71042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0072_161991.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0025_797232.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ivory_Gull_0032_49322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0069_43541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Brown_Creeper_0101_24987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0068_72278.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0068_796515.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0130_159075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0105_167452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0060_6756.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0062_34523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Least_Flycatcher_0052_30321.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sage_Thrasher_0003_155479.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0061_166598.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0001_186455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0039_190513.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0053_71319.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0037_24032.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0111_99940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bobolink_0106_9126.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0056_796585.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0085_154822.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0026_145125.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0016_188006.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0073_188952.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0072_155987.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0092_71106.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0009_2616.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0113_117603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0031_1588.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0050_188657.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0097_145923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0117_119917.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0107_179098.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0025_161873.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0069_176055.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0021_165919.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0046_59647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0047_107428.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cedar_Waxwing_0053_178892.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0009_166429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0055_42051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0025_794710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Anna_Hummingbird_0096_56754.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0118_66251.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Vesper_Sparrow_0095_125459.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0083_132949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0132_101543.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0128_153732.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Mockingbird_0078_80426.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0029_34557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Worm_Eating_Warbler_0002_795533.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0081_796636.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0010_34716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Headed_Vireo_0076_156209.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0081_169256.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0141_74396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Raven_0089_101891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0031_60774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Seaside_Sparrow_0007_120690.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0093_110677.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0121_138255.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0096_6846.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0072_795336.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Purple_Finch_0065_27473.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0120_167149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0080_155200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0011_167615.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0062_795568.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0082_796655.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0110_187111.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0070_82676.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "American_Pipit_0091_100276.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0058_795417.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0007_153661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0013_796402.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Palm_Warbler_0102_168829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0104_630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brewer_Sparrow_0072_796715.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0063_796050.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0073_42573.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0027_104291.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0059_8079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Legged_Kittiwake_0033_795395.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0076_174807.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0005_111967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0045_190563.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0077_43730.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Footed_Albatross_0064_796101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "House_Wren_0047_188036.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0007_26687.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0085_21899.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0053_8410.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0115_167039.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0036_794817.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0061_796082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Billed_Grebe_0030_35498.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0090_167607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0065_71871.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Magnolia_Warbler_0113_166401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0006_103959.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "White_Crowned_Sparrow_0142_128237.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0068_106960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0034_163911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0046_157265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0112_176301.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0085_49456.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bank_Swallow_0006_129652.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Lazuli_Bunting_0040_14923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0071_152142.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0016_84490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Clay_Colored_Sparrow_0083_110734.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0040_153039.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0091_166762.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Evening_Grosbeak_0015_37238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0120_172340.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0072_794969.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0131_28962.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0122_43549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Myrtle_Warbler_0061_166816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0083_73053.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0114_180455.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0052_796984.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": false, + "tail": false + }, + "Eastern_Towhee_0048_22557.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0065_144076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0046_45888.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0049_33422.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0085_8363.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0105_162372.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0056_88355.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0074_108401.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0054_796936.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0028_166905.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": false, + "legs": true, + "tail": false + }, + "Crested_Auklet_0074_794949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Yellow_Breasted_Chat_0109_21796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0067_22142.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0040_147973.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0098_15226.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0114_188016.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0015_188852.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Field_Sparrow_0112_114159.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0070_93678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0039_180012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0104_65908.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0134_59449.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0007_111029.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0118_72115.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0089_163776.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0006_90685.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0087_116490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "White_Pelican_0046_96888.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Prairie_Warbler_0027_172465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0093_49052.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0123_180076.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0103_139267.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0023_797486.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0032_160569.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0118_32210.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0078_103268.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Nashville_Warbler_0086_167045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0090_43867.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nashville_Warbler_0107_167186.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0065_796933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0039_797152.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0049_797063.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cardinal_0023_19026.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0059_120885.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0107_91472.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0042_797223.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0085_14627.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0049_125806.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Billed_Cuckoo_0024_26832.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Catbird_0113_21270.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0005_1750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0075_86289.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0128_164620.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0073_190044.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0047_115022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0122_34023.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0049_31889.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Auklet_0014_1901.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0001_122169.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0100_178643.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0004_167146.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0087_794693.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0026_176337.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0065_70560.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Raven_0053_101291.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0017_59520.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0104_794634.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0105_36542.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Tern_0129_153449.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0086_70569.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0003_125427.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0029_13761.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0008_794886.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0021_91644.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0052_92440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0088_90356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0110_49408.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Nuthatch_0010_85783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0089_164640.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0057_40130.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0116_138242.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0027_65783.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0086_166926.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0103_504.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Clay_Colored_Sparrow_0072_110851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0043_797154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0067_162314.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0041_129625.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0033_23530.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Harris_Sparrow_0085_116534.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0072_129203.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0096_157013.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0057_165349.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0082_40290.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "White_Eyed_Vireo_0111_158864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0083_180038.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Myrtle_Warbler_0034_166720.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0022_21944.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0037_87337.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Mallard_0035_77095.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bewick_Wren_0014_184810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0063_77946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Barn_Swallow_0053_130585.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0109_36914.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0038_138198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0063_79064.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Florida_Jay_0012_64887.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0005_796425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Golden_Winged_Warbler_0091_794808.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0084_22082.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Jay_0076_61817.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "White_Pelican_0072_96975.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Barn_Swallow_0062_132755.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Forsters_Tern_0092_152119.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0062_107456.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0110_154868.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0053_118069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0016_174705.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Grosbeak_0081_37034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0058_70848.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0067_179979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0058_177143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0107_1590.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0087_129481.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0037_794770.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0062_123000.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0098_178009.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": true + }, + "Lincoln_Sparrow_0049_117265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0098_8367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0043_107236.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0053_35262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Yellow_Billed_Cuckoo_0090_26714.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pileated_Woodpecker_0075_180480.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0014_14167.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0099_85717.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0073_116803.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0049_22924.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0064_795661.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0001_79199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cedar_Waxwing_0043_178321.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0085_795294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0039_128859.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0031_25433.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0113_86057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0032_181587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0009_57904.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0004_30140.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0091_22629.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0005_797055.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0022_107825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0027_177539.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0097_27288.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0070_785261.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Canada_Warbler_0115_162309.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0113_178627.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0051_45622.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0019_796433.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Gray_Catbird_0138_20945.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0107_26838.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0049_8548.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0066_79275.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pigeon_Guillemot_0007_40313.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0017_797198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0038_128853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0112_168437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0077_104185.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0022_795319.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0108_104350.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0107_116286.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0044_154934.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0047_127575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Long_Tailed_Jaeger_0023_797072.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Flicker_0079_28630.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0023_795362.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0057_177291.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0024_38403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0034_796209.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0064_76654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0084_795860.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0076_70070.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0092_187100.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Louisiana_Waterthrush_0054_176977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0042_87216.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0023_72910.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0071_3988.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0075_70188.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0076_123669.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0039_106367.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0061_30429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0078_172729.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0049_183229.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0138_45269.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Headed_Vireo_0058_156261.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Sooty_Albatross_0004_796366.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tennessee_Warbler_0075_174763.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0094_189037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0036_72275.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0103_102946.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0081_182336.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0038_796989.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Winged_Blackbird_0039_4285.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0092_174810.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0042_83603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mallard_0081_76266.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Horned_Lark_0034_73940.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0028_31623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Le_Conte_Sparrow_0061_795194.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0069_34990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Song_Sparrow_0097_121438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0066_82238.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Jay_0088_63264.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0010_116376.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0038_100635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Eared_Grebe_0075_34115.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Savannah_Sparrow_0132_119962.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0040_173447.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0105_19045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0029_39889.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0061_100845.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0109_796577.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0059_72492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0091_183144.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0062_43193.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Painted_Bunting_0016_15200.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0084_155490.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0009_149609.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pileated_Woodpecker_0015_180072.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Warbling_Vireo_0068_158684.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0049_182452.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Winter_Wren_0082_189549.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0078_73373.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0056_35623.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orange_Crowned_Warbler_0019_167626.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0083_74444.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0082_24175.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0016_797134.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0005_107443.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0047_73251.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0016_39265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0058_43251.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rhinoceros_Auklet_0040_797503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Fox_Sparrow_0013_114344.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0099_116069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0014_176042.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0057_796949.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Violetear_0069_795723.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0071_122446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0075_148528.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0104_53816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Throated_Vireo_0031_159712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0021_797480.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0050_144000.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Field_Sparrow_0006_113839.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0034_159861.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0075_116305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0091_136870.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Black_Tern_0100_144597.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0059_29102.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0010_795852.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0016_797385.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Heermann_Gull_0013_45771.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0116_31943.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0064_43710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Catbird_0019_20567.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0049_110976.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0073_795304.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0081_42779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Groove_Billed_Ani_0108_1639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Meadowlark_0018_77880.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0080_72923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0021_116107.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Painted_Bunting_0054_16711.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tennessee_Warbler_0002_174884.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0001_43749.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Summer_Tanager_0069_139941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0060_796619.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0074_178888.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0015_795578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Catbird_0053_20694.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0027_16536.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0053_77673.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0121_41843.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0026_92850.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0127_188931.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0028_794896.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0049_797468.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0032_794603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0077_65736.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Caspian_Tern_0048_145672.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Flycatcher_0058_30143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0042_176460.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0076_127604.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0045_166710.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0042_3635.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Breasted_Chat_0087_21695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0095_152067.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0002_795699.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Mallard_0028_76010.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0139_84942.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0012_127853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0051_51440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Headed_Woodpecker_0089_183435.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0076_23523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0037_98127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Cactus_Wren_0101_185627.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0012_151558.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0013_161816.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0094_6582.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0022_69742.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chuck_Will_Widow_0022_796967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fish_Crow_0002_26072.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Rock_Wren_0104_189161.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0056_143906.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Kingfisher_0048_73292.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0043_100027.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0076_116509.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Downy_Woodpecker_0059_184396.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Downy_Woodpecker_0025_184545.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brandt_Cormorant_0036_22937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0075_167419.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0025_160584.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0005_102653.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0062_187194.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0136_119581.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0041_796428.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": false, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Vermilion_Flycatcher_0052_42551.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Throated_Sparrow_0082_129048.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0002_185680.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0027_41083.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0012_129518.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0056_189508.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0045_185556.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Eared_Grebe_0082_34227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Sparrow_0030_122850.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0087_175978.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Bay_Breasted_Warbler_0065_159722.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": false, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0009_795865.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0003_176429.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_And_White_Warbler_0024_160057.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0102_158704.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0122_41679.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0060_79972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Winter_Wren_0048_189683.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0075_116260.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0094_49347.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Kentucky_Warbler_0063_795904.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "American_Redstart_0035_103017.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0093_24581.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0067_78529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0066_87380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0062_115056.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0052_23356.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Grey_Shrike_0075_797022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0056_25851.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Palm_Warbler_0082_168709.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0047_796330.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Orange_Crowned_Warbler_0015_168196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Marsh_Wren_0134_188213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0129_57666.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bewick_Wren_0017_185127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Pacific_Loon_0049_75780.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pigeon_Guillemot_0013_40253.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "American_Three_Toed_Woodpecker_0014_179882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Grosbeak_0108_38281.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Eyed_Vireo_0001_159237.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0069_21065.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0020_35958.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Western_Wood_Pewee_0013_98268.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0136_115278.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0016_163265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0064_106225.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0089_39211.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0033_12777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0122_163131.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0088_176336.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0007_71163.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0037_794562.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0005_129262.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0066_92460.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Blue_Winged_Warbler_0017_161878.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0002_91034.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Northern_Fulmar_0011_43769.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Palm_Warbler_0046_169837.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0063_796284.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Summer_Tanager_0106_139801.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0002_61361.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0025_30933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Canada_Warbler_0074_162366.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0021_172902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0047_176456.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0009_174746.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Brewer_Blackbird_0104_2230.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0034_61247.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Florida_Jay_0065_64739.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0002_169527.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0040_16691.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0121_796658.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0047_82820.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tennessee_Warbler_0065_174757.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0040_94051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bronzed_Cowbird_0061_796232.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0104_3918.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0080_31747.jpg": { + "crown": true, + "forehead": false, + "eyes": false, + "beak": false, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0011_26406.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0033_76565.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0130_27555.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0139_187177.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0040_32323.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bronzed_Cowbird_0025_796213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0107_173921.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0062_62585.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0022_129923.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0074_56917.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0001_98045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0027_129503.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Eyed_Vireo_0014_157062.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0073_186587.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0036_69939.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Wren_0004_187448.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0026_49466.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0070_70051.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Summer_Tanager_0091_139602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0085_795167.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0065_98001.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cactus_Wren_0114_185532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0126_39361.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Winged_Blackbird_0013_5762.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0035_24941.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0107_32618.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0031_133164.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0070_107196.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0044_29995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0010_178891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0123_121249.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0053_176079.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0003_75442.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Indigo_Bunting_0051_12837.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0042_185514.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0102_72349.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Bellied_Flycatcher_0012_795469.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0042_29127.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0089_795322.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Prothonotary_Warbler_0033_174123.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Eyed_Vireo_0049_156785.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Swainson_Warbler_0003_794866.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Rock_Wren_0058_189346.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0029_35551.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Eyed_Vireo_0020_156875.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0033_796605.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0100_54761.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0052_7035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Geococcyx_0136_104144.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0082_116300.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0029_190403.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Crested_Auklet_0011_794927.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Cape_May_Warbler_0093_163089.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0088_166639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0062_145981.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "House_Sparrow_0120_113001.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0003_122425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Anna_Hummingbird_0037_56587.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Herring_Gull_0103_45996.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0069_61381.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0005_186109.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0083_178743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0034_144106.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0052_107478.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0070_23513.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cedar_Waxwing_0028_179724.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0070_181182.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0061_129484.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Ivory_Gull_0086_49532.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0064_797109.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0077_26431.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0019_120826.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0062_78998.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Brown_Creeper_0107_24827.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0047_100967.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Jay_0115_65745.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Henslow_Sparrow_0075_116805.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bank_Swallow_0035_129528.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": false, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rhinoceros_Auklet_0051_797510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fox_Sparrow_0018_114468.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0006_79819.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0062_796462.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0107_162440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Nuthatch_0018_85937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0075_180788.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0066_33368.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0067_35465.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Hooded_Merganser_0026_796782.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Scott_Oriole_0081_92374.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Gull_0021_54649.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Grasshopper_Sparrow_0049_115918.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0027_25146.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baird_Sparrow_0006_794579.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Footed_Albatross_0035_796140.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Throated_Blue_Warbler_0101_161510.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0054_40871.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0082_6906.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0055_33774.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0043_84853.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0041_189227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0033_93232.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Blue_Jay_0050_62974.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0050_796878.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0045_797536.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Green_Jay_0028_65719.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0058_143981.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0089_117527.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0060_122371.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Shiny_Cowbird_0020_24276.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sooty_Albatross_0003_1078.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Worm_Eating_Warbler_0075_176045.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0053_1672.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Painted_Bunting_0094_16467.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lincoln_Sparrow_0052_117521.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Blue_Warbler_0136_161400.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0043_795324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Breasted_Merganser_0079_79519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Chipping_Sparrow_0075_108348.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0131_40963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0057_796898.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0030_796896.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0011_796708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Prairie_Warbler_0071_173140.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Tern_0021_153979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0024_83519.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Heermann_Gull_0074_45351.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "House_Sparrow_0061_112795.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Caspian_Tern_0067_145107.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Three_Toed_Woodpecker_0042_796149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Cliff_Swallow_0017_133806.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": false + }, + "Worm_Eating_Warbler_0098_795565.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0032_58168.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Barn_Swallow_0052_131539.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0059_116608.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0013_794740.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0026_155646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0061_109113.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0100_174539.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0016_125615.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Pelican_0003_94427.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Wilson_Warbler_0109_175578.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0035_73012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Violetear_0055_795712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0086_41040.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0086_116373.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0132_40836.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0003_796539.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0045_166575.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Harris_Sparrow_0089_116531.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Seaside_Sparrow_0059_120794.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ruby_Throated_Hummingbird_0052_57432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vermilion_Flycatcher_0063_42179.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0085_797107.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mallard_0024_75932.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Grasshopper_Sparrow_0012_115849.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gadwall_0087_31821.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0043_125703.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rusty_Blackbird_0092_2727.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Vesper_Sparrow_0037_125648.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0023_794797.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Brewer_Sparrow_0006_107463.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0080_821.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_And_White_Warbler_0070_160354.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Redstart_0041_103717.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0084_796639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Breasted_Merganser_0030_79411.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Warbling_Vireo_0064_158437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0105_144380.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0017_797492.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Blue_Grosbeak_0104_36984.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0034_71075.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Worm_Eating_Warbler_0005_175977.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0071_11639.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0019_41936.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0011_44827.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0053_795187.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0010_26399.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0049_795022.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0034_179715.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0118_49191.jpg": { + "crown": true, + "forehead": false, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Bay_Breasted_Warbler_0025_159957.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0051_28650.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0022_100227.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0021_28235.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0050_190535.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0096_41733.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0027_80980.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0115_185895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rose_Breasted_Grosbeak_0051_39798.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0099_104134.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0009_81130.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0074_166637.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0003_794695.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0030_22926.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Tree_Sparrow_0042_124512.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Loggerhead_Shrike_0106_105437.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Slaty_Backed_Gull_0083_786386.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0029_134882.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "White_Breasted_Nuthatch_0110_86038.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mockingbird_0042_81728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0052_796903.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0085_173829.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0056_794734.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Throated_Sparrow_0007_128918.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Carolina_Wren_0021_186683.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0070_102645.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0032_30713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Tern_0014_149194.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0125_33867.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0040_1715.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0056_51523.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0017_70342.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0094_173607.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nighthawk_0069_82613.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orchard_Oriole_0030_91612.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0107_89985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0027_796441.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Great_Crested_Flycatcher_0028_29696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0077_98133.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scott_Oriole_0015_795862.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pigeon_Guillemot_0100_40179.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0029_796432.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0015_44198.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0053_13391.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Bohemian_Waxwing_0102_796692.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0036_794642.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Merganser_0009_79012.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Elegant_Tern_0099_150682.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Purple_Finch_0091_27425.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0015_122081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0065_188995.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0051_107217.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Breasted_Kingfisher_0045_73600.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Parakeet_Auklet_0050_795957.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Billed_Cuckoo_0066_26600.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Indigo_Bunting_0052_11893.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0046_190446.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sayornis_0022_98308.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0041_35224.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pomarine_Jaeger_0056_795770.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Black_Tern_0064_143990.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tree_Swallow_0037_134647.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Palm_Warbler_0067_169318.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0065_107419.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Canada_Warbler_0023_162383.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ivory_Gull_0024_49195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0043_71212.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0062_22418.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Yellowthroat_0111_190569.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": false, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Herring_Gull_0082_47540.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Le_Conte_Sparrow_0044_117116.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0061_29807.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chipping_Sparrow_0103_109529.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Grebe_0102_36116.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Common_Yellowthroat_0125_190902.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clay_Colored_Sparrow_0046_110728.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Olive_Sided_Flycatcher_0081_796895.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "California_Gull_0089_40716.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Indigo_Bunting_0073_13933.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0106_118294.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eared_Grebe_0081_34153.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Pileated_Woodpecker_0053_179960.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0065_152206.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Whip_Poor_Will_0022_796438.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Fish_Crow_0072_25945.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Carolina_Wren_0126_186654.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Billed_Grebe_0065_35713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pine_Warbler_0133_171641.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orange_Crowned_Warbler_0021_168263.jpg": { + "crown": false, + "forehead": false, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Oriole_0087_90037.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0085_25260.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Common_Tern_0045_150067.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0035_14920.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0034_70069.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Henslow_Sparrow_0034_796602.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Florida_Jay_0007_64708.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0061_2270.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Loggerhead_Shrike_0069_73908.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Pipit_0124_99848.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Grosbeak_0032_38473.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Red_Faced_Cormorant_0023_796328.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Harris_Sparrow_0004_116581.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pomarine_Jaeger_0014_61335.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Nighthawk_0078_795340.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Acadian_Flycatcher_0012_795612.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pine_Warbler_0044_171104.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Throated_Sparrow_0003_107035.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "European_Goldfinch_0040_794643.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Grebe_0051_35143.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0037_797405.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0097_151731.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0027_129282.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Crowned_Sparrow_0044_127386.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0030_164897.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Lark_0014_74963.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Boat_Tailed_Grackle_0024_33393.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0041_177199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0093_92020.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Thrasher_0061_155140.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Sparrow_0109_123802.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": false, + "nape": true, + "legs": true, + "tail": false + }, + "Artic_Tern_0102_141453.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0054_158321.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Groove_Billed_Ani_0062_1767.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0037_43712.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Forsters_Tern_0064_152047.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0084_70171.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Magnolia_Warbler_0043_165774.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0051_98206.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pacific_Loon_0004_75815.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": false, + "legs": false, + "tail": true + }, + "Yellow_Breasted_Chat_0034_21955.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0098_129365.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cactus_Wren_0063_185589.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Faced_Cormorant_0013_796278.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Brewer_Sparrow_0034_796693.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Glaucous_Winged_Gull_0118_2081.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Orchard_Oriole_0027_91265.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pied_Kingfisher_0025_72469.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Blackbird_0046_2688.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Lazuli_Bunting_0042_14820.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Clark_Nutcracker_0005_85190.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nelson_Sharp_Tailed_Sparrow_0039_118074.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0017_164911.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Warbler_0058_176891.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Great_Crested_Flycatcher_0074_29553.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Capped_Vireo_0011_797488.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Geococcyx_0033_104195.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0064_27007.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "House_Sparrow_0010_112678.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0048_144001.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Tern_0006_144646.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Bellied_Woodpecker_0071_180866.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Yellow_Headed_Blackbird_0042_8574.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cerulean_Warbler_0004_797199.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0060_66074.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Tailed_Towhee_0030_797417.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Myrtle_Warbler_0093_166986.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fish_Crow_0059_25864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Hooded_Warbler_0033_165213.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brown_Creeper_0005_24659.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Black_Billed_Cuckoo_0023_26258.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "White_Breasted_Nuthatch_0119_86182.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0050_135104.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0036_70184.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scarlet_Tanager_0092_138688.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0005_119735.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Fulmar_0031_43750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Tennessee_Warbler_0027_174805.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Black_Billed_Cuckoo_0030_26240.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mourning_Warbler_0054_795387.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0136_28918.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0045_97972.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Warbling_Vireo_0126_158696.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brewer_Sparrow_0067_107480.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Heermann_Gull_0023_45686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Fox_Sparrow_0020_114744.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Least_Tern_0132_154149.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0121_174643.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Mangrove_Cuckoo_0053_26390.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Scissor_Tailed_Flycatcher_0006_41601.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Philadelphia_Vireo_0062_794777.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Sayornis_0119_98864.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0072_795603.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tropical_Kingbird_0084_69312.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Frigatebird_0031_42979.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Gray_Crowned_Rosy_Finch_0040_26985.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Horned_Puffin_0075_100664.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Bobolink_0039_9779.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cape_Glossy_Starling_0022_129414.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cliff_Swallow_0085_134338.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Waterthrush_0036_177274.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Brandt_Cormorant_0091_22825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": false, + "wings": false, + "nape": true, + "legs": false, + "tail": false + }, + "Rusty_Blackbird_0105_6937.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Artic_Tern_0127_142440.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Crow_0110_25541.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Palm_Warbler_0047_169354.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Pelagic_Cormorant_0049_23714.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Rufous_Hummingbird_0090_58598.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0118_173261.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Mallard_0107_76498.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pileated_Woodpecker_0093_180205.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Cockaded_Woodpecker_0045_794727.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prothonotary_Warbler_0059_173434.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Orchard_Oriole_0026_91444.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Necked_Raven_0031_102686.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Eyed_Vireo_0075_158151.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Florida_Jay_0052_64633.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Kingfisher_0006_71297.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Laysan_Albatross_0102_611.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Meadowlark_0100_78037.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Chestnut_Sided_Warbler_0004_164279.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "White_Eyed_Vireo_0095_158886.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Tree_Swallow_0061_134712.jpg": { + "crown": false, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": false + }, + "Cliff_Swallow_0003_133496.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rufous_Hummingbird_0011_59480.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Golden_Winged_Warbler_0031_794840.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cedar_Waxwing_0070_179007.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Western_Wood_Pewee_0018_98153.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Red_Eyed_Vireo_0026_156751.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Least_Flycatcher_0007_30339.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Kingbird_0005_70103.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Ring_Billed_Gull_0079_51206.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Baltimore_Oriole_0054_89825.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0038_65702.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Belted_Kingfisher_0063_70835.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Pied_Kingfisher_0132_72706.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Song_Sparrow_0106_121154.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0028_119982.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Red_Cockaded_Woodpecker_0050_794743.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0084_120063.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "American_Goldfinch_0018_32324.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rock_Wren_0053_189112.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Prairie_Warbler_0130_172609.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Nashville_Warbler_0042_167346.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Gray_Catbird_0024_20739.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Dark_Eyed_Junco_0059_66305.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Savannah_Sparrow_0114_119750.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ovenbird_0095_92796.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ring_Billed_Gull_0034_51270.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Acadian_Flycatcher_0043_29115.jpg": { + "crown": false, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Eastern_Towhee_0095_22594.jpg": { + "crown": true, + "forehead": true, + "eyes": false, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Cardinal_0010_18894.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Green_Jay_0124_65848.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Ringed_Kingfisher_0020_72888.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": false, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Sage_Thrasher_0090_155713.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Northern_Flicker_0093_28700.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Horned_Puffin_0010_100771.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": true + }, + "Vermilion_Flycatcher_0039_42423.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": true, + "back": true, + "wings": true, + "nape": false, + "legs": true, + "tail": true + }, + "Marsh_Wren_0051_188260.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": true, + "breast": false, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + }, + "Rhinoceros_Auklet_0042_2101.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": false, + "tail": false + }, + "Red_Winged_Blackbird_0007_3706.jpg": { + "crown": true, + "forehead": true, + "eyes": true, + "beak": true, + "throat": true, + "belly": false, + "breast": true, + "back": true, + "wings": true, + "nape": true, + "legs": true, + "tail": true + } +} \ No newline at end of file diff --git a/data/jsons/descriptors_bird_soup.json b/data/jsons/descriptors_bird_soup.json new file mode 100644 index 0000000000000000000000000000000000000000..3ed6c9a2e46057e8e4b276312c0cb0852a217e7e --- /dev/null +++ b/data/jsons/descriptors_bird_soup.json @@ -0,0 +1,176163 @@ +{ + "abbott babbler": [ + "back: olive-brown with faint streaks", + "beak: short, thick, and curved", + "belly: white with subtle markings", + "breast: white with prominent dark scaling", + "crown: grayish-brown with pale streaks", + "forehead: pale-gray with small tufts", + "eyes: dark brown with pale eyering", + "legs: strong and sturdy, pinkish-brown", + "wings: olive-brown with faint wing bars", + "nape: grayish-brown with pale streaks", + "tail: long and olive-brown with white tips", + "throat: white with dark scaling" + ], + "abbott booby": [ + "back: grayish-brown feathers", + "beak: long, sharp, and pale blue", + "belly: white feathers with a soft texture", + "breast: white, fluffy plumage", + "crown: blue-gray feathers with a smooth appearance", + "forehead: slightly elevated, with blue-gray feathers", + "eyes: large and dark, surrounded by a thin blue ring", + "legs: long and slender, with pale blue-gray color", + "wings: large and elongated, with a mix of gray-brown and white feathers", + "nape: grayish-blue feathers that smoothly transition to the back", + "tail: long, wedge-shaped with white and grayish-brown feathers", + "throat: white feathers, slightly puffed outward" + ], + "abyssinian ground hornbill": [ + "back: black, sleek feathers", + "beak: long, curved, and reddish-brown", + "belly: black feathers with a hint of blue", + "breast: black and glossy with a slight bulge", + "crown: smooth, black, and featherless with a bony casque", + "forehead: flat and black, transitioning into the casque", + "eyes: piercing, with a striking reddish-orange color", + "legs: long and gray, with powerful, two-toed feet", + "wings: black, long, and sturdy, with a hint of blue iridescence", + "nape: black feathers flowing gracefully into the back", + "tail: long, black feathers with a slight curve and a hint of blue", + "throat: black feathers, featuring long wattles in males" + ], + "african crowned crane": [ + "back: covered in elongated, golden feathers", + "beak: long, sharp, and tapered", + "belly: light grey with white and gold feathers", + "breast: golden-yellow plumage", + "crown: golden feathery crest on head", + "forehead: red patch above the beak", + "eyes: large, round, and dark", + "legs: long and slender with grey scales", + "wings: broad, black-tipped feathers", + "nape: elongated, golden feathers", + "tail: short, fan-like feathers", + "throat: white, feathery tuft" + ], + "african emerald cuckoo": [ + "back: vibrant emerald green", + "beak: black, short, curved", + "belly: creamy white", + "breast: yellow-green", + "crown: vivid green", + "forehead: bright green", + "eyes: small, brown", + "legs: slender, slate-blue", + "wings: iridescent green", + "nape: rich emerald hue", + "tail: green, elongated", + "throat: pale green-yellow" + ], + "african firefinch": [ + "back: vibrant red or rusty brown feathers", + "beak: short, conical, silver-gray or blackish bill", + "belly: whitish vent with pale gray underparts", + "breast: crimson or orange breast with black spotted patterns", + "crown: red or chestnut head feathers", + "forehead: bright red or chestnut forehead stripe", + "eyes: dark, beady eyes with white eyerings", + "legs: pinkish or grayish slender legs and feet", + "wings: black feathers with white or red edges, red or chestnut secondary feathers", + "nape: red or chestnut feathers fading to gray or brown", + "tail: black, gray, or brown tail feathers with white or red outer edges", + "throat: vibrant red or chestnut throat patch" + ], + "african oyster catcher": [ + "back: black, slightly glossy feathers", + "beak: long, red-orange, and pointed", + "belly: black, blending seamlessly with breast", + "breast: black, with some white streaks", + "crown: black, smooth, and well-defined", + "forehead: black, transitioning to red-orange beak", + "eyes: bold and bright, surrounded by black feathers", + "legs: long, red-orange, sturdy with webbed feet", + "wings: black, broad, with white arm bars when open", + "nape: black, continued from crown to back", + "tail: black and fan-shaped with some white streaks", + "throat: black, connecting to breast and belly" + ], + "african pied hornbill": [ + "back: black-feathered with a slight sheen", + "beak: large, curved, yellow and black casque", + "belly: white plumage contrasting with the upper body", + "breast: white feathers extending to the undertail", + "crown: black, with short feathers on the head", + "forehead: adorned with a yellow and black casque above the beak", + "eyes: bright yellow encircled by a dark line", + "legs: sturdy, dark grey legs with scaly texture", + "wings: elongated, powerful black feathers", + "nape: black-feathered neck with white accents on the sides", + "tail: fan-shaped black feathers with white tips", + "throat: white plumage extending from the chest to the chin" + ], + "african pygmy goose": [ + "back: greenish-black glossy feathers", + "beak: small, silver-grey with dark tip", + "belly: white with grey barring", + "breast: pale greyish-white", + "crown: greenish-black with purple gloss", + "forehead: pale buff", + "eyes: bright red-orange", + "legs: orange-yellow with webbed feet", + "wings: green-black with iridescent sheen", + "nape: glossy green with purplish hue", + "tail: short, black with white undertail coverts", + "throat: off-white with grey markings" + ], + "alberts towhee": [ + "back: grayish-brown with faint streaks", + "beak: slightly curved, dark gray color", + "belly: pale gray, looking a bit lighter than the back", + "breast: soft gray with some red-brown shades on the sides", + "crown: reddish-brown, slightly darker than the back", + "forehead: pale gray or whitish", + "eyes: round, dark, and shiny", + "legs: long, slender, and grayish-brown", + "wings: grayish-brown with red-brown edging on the feathers", + "nape: grayish-brown, similar to the back", + "tail: long, reddish-brown with white corners", + "throat: pale gray or whitish, blending with the belly color" + ], + "alexandrine parakeet": [ + "back: vibrant green feathers", + "beak: strong, red upper beak and black lower beak", + "belly: light greyish-green plumage", + "breast: bluish-grey feathers", + "crown: flat bright green feathers", + "forehead: emerald green plumage", + "eyes: round, dark with a white eye-ring", + "legs: short and grey with zygodactyl feet", + "wings: green with blue and black flight feathers", + "nape: dark green with a slight glossy finish", + "tail: long and blue with dark red undertail coverts", + "throat: pale grey, leading to bluish-grey breast" + ], + "alpine chough": [ + "back: sleek, black feathers covering the upper body", + "beak: strong, slightly curved, bright yellow", + "belly: smooth, dark feathers covering lower body", + "breast: black plumage with a slight sheen", + "crown: sleek, black feathers atop the head", + "forehead: black plumage meeting bright yellow beak", + "eyes: dark and small, surrounded by black feathers", + "legs: sturdy, bright red, with sharp claws for gripping", + "wings: black, elongated feathers for agile flight", + "nape: black feathers transitioning to wings and tail", + "tail: long, black feathers with a slight fork at the end", + "throat: black plumage, part of the sleek contour of the head and neck" + ], + "altamira yellowthroat": [ + "back: olive-green upper body", + "beak: straight, dark, pointed", + "belly: lemon-yellow underside", + "breast: bright yellow and slightly rounded", + "crown: olive-green or dark masked", + "forehead: olive-green blending into dark mask", + "eyes: dark with white eyering", + "legs: dark grey or blackish", + "wings: olive-green with dark flight feathers", + "nape: olive-green transitioning from crown", + "tail: olive-green and rounded with darker tips", + "throat: bright yellow extending up to cheeks" + ], + "american avocet": [ + "back: long and sleek", + "beak: thin and upward-curved", + "belly: white and smooth", + "breast: pale buff or grayish", + "crown: cinnamon-rufous in breeding season", + "forehead: white or buffy", + "eyes: dark and medium-sized", + "legs: long, thin, and blue-gray", + "wings: white with contrasting black stripe", + "nape: cinnamon-rufous in breeding season", + "tail: short and white", + "throat: white or buffy" + ], + "american bittern": [ + "back: streaked brown and buff", + "beak: long, straight, pointed, and yellowish", + "belly: pale with brown streaks", + "breast: buff-colored with brown streaks", + "crown: dark brown with a slight crest", + "forehead: buff with brown streaks", + "eyes: large, dark-colored, with yellow ring", + "legs: long, greenish-yellow", + "wings: brown with buff mottling", + "nape: brown with buff streaks", + "tail: short, brown with faint barring", + "throat: pale, unmarked" + ], + "american coot": [ + "back: dark slate-gray feathers", + "beak: white blunt and slightly conical", + "belly: grayish with white under-tail coverts", + "breast: dark gray with white edges", + "crown: black with slight forehead crests", + "forehead: white frontal shield above beak", + "eyes: reddish-brown with dark pupils", + "legs: greenish-yellow with lobed toes", + "wings: dark gray with white secondary tips", + "nape: dark slate-gray and smooth", + "tail: short and black with white under-tail feathers", + "throat: grayish-black with white chin accent" + ], + "american flamingo": [ + "back: curved, sleek feathers", + "beak: long, curved, black-tipped", + "belly: white to light pink plumage", + "breast: rounded, light pink", + "crown: pale pink feathers", + "forehead: smooth, light pink", + "eyes: small, round, dark", + "legs: long, thin, pinkish-red", + "wings: long, pink feathers with black tips", + "nape: curved, pinkish-white", + "tail: short, pink feathers with black tips", + "throat: pale pink, smooth" + ], + "american goldfinch": [ + "back: olive-green with black streaks", + "beak: short, conical, and pale pink-orange", + "belly: pale white to light yellow", + "breast: bright yellow in males, duller yellow in females", + "crown: black on males, dull green in females", + "forehead: vibrant yellow in males, pale green in females", + "eyes: small, round, and black", + "legs: pinkish-orange and slender", + "wings: black with vivid white markings", + "nape: olive-green with a hint of yellow", + "tail: black with white edges", + "throat: bright yellow in males, light green-yellow in females" + ], + "american pipit": [ + "back: streaked pale brown and gray", + "beak: slender, pointed, dark brown", + "belly: pale buff or white with fine streaks", + "breast: lightly streaked with buff or white", + "crown: brown with a gray central stripe", + "forehead: grayish or buff with slight streaks", + "eyes: dark brown with pale eyering", + "legs: dark, long, slender, with elongated toes", + "wings: dusky brown with buff edging on feathers", + "nape: grayish or brown with fine streaks", + "tail: dark brown with white outer tail feathers", + "throat: smooth, pale, and unmarked" + ], + "american redstart": [ + "back: olive-green with black streaks", + "beak: black and pointed", + "belly: bright yellow-orange", + "breast: black upper, yellow-orange lower", + "crown: black with orange patch", + "forehead: black and sleek", + "eyes: black, small and round", + "legs: black and thin", + "wings: black with orange patches", + "nape: olive-green with black streaks", + "tail: black with orange edges", + "throat: black with yellow-orange edges" + ], + "amethyst woodstar": [ + "back: shimmering green iridescence", + "beak: long, slender, and black", + "belly: white-feathered with gray tinge", + "breast: white with wisps of amethyst feathers", + "crown: brilliant amethyst-purple", + "forehead: gradient of amethyst-purple to green", + "eyes: small, round, and dark", + "legs: thin, black, and delicate", + "wings: iridescent green with long and pointed feathers", + "nape: rich amethyst fading to green", + "tail: elongated and dark, forked shape", + "throat: stunning amethyst-purple patch" + ], + "andean goose": [ + "back: grayish-white plumage with black markings", + "beak: black, short, and slightly hooked", + "belly: white with minimal black markings", + "breast: grayish-white plumage", + "crown: black with a prominent white band", + "forehead: black coloration blending into the crown", + "eyes: dark brown with a thin white eye-ring", + "legs: pinkish-orange and strong for walking", + "wings: grayish-white with black highlights and white trailing edges", + "nape: black blending into the crown and back", + "tail: black with white outer feathers", + "throat: white, leading into the breast area" + ], + "andean lapwing": [ + "back: dark gray with a subtle green sheen", + "beak: short and black, slightly hooked", + "belly: white with some gray", + "breast: pale gray blending into white", + "crown: solid black with a slight crest", + "forehead: white with black bordering", + "eyes: round and dark, with a white eye-ring", + "legs: long and yellowish, with black claws", + "wings: dark gray with white edges, prominent in flight", + "nape: black blending into gray", + "tail: short, black with white outer feathers", + "throat: white with a black border" + ], + "andean siskin": [ + "back: vibrant green feathers", + "beak: short, conical, and black", + "belly: bright yellow underparts", + "breast: vivid yellow plumage", + "crown: black cap with green tinges", + "forehead: black feathers extending to eyes", + "eyes: small, round, and dark", + "legs: thin, grayish-brown limbs", + "wings: green with black and yellow markings", + "nape: green feathers transitioning to black", + "tail: forked with black and green feathers", + "throat: bright yellow with black border" + ], + "anhinga": [ + "back: dark grey feathers with white streaks", + "beak: long, slender, and sharp", + "belly: white or light grey feathers", + "breast: white or light grey feathers with streaks", + "crown: black or dark grey feathers", + "forehead: black or dark grey feathers", + "eyes: bright red or orange with a ring of blue skin around it", + "legs: long, thin, and grey or black", + "wings: black or dark grey feathers with white spots and streaks", + "nape: black or dark grey feathers", + "tail: elongated, black or dark grey feathers", + "throat: white or light grey feathers" + ], + "anianiau": [ + "back: vibrant olive-green feathers", + "beak: short, slightly curved black beak", + "belly: light yellowish-green plumage", + "breast: olive-yellow hues", + "crown: bright olive-green feathers", + "forehead: yellow-green hue", + "eyes: dark brown with narrow white eye-ring", + "legs: pale grayish-brown slender legs", + "wings: olive-green with darker flight feathers", + "nape: yellowish-green transitioning from the crown", + "tail: olive-green with dark feather tips", + "throat: bright yellow feathers" + ], + "anna hummingbird": [ + "back: green iridescent feathering", + "beak: long, thin, slightly curved", + "belly: light-gray to white plumage", + "breast: green and gray feathers with possible red spotting", + "crown: iridescent emerald green", + "forehead: bright green with a red gorget", + "eyes: small, black, alert", + "legs: short, thin, with sharp claws", + "wings: slender, fast-flapping, greenish tint", + "nape: green iridescent feathers", + "tail: square-shaped, dark, with white outer tail feathers", + "throat: shimmering red or purple gorget" + ], + "antillean euphonia": [ + "back: vibrant blue feathers", + "beak: short, curved, dark-colored", + "belly: bright yellow plumage", + "breast: brilliant yellow feathers", + "crown: deep blue coloration", + "forehead: striking blue hue", + "eyes: small, dark, and round", + "legs: short, gray, and sturdy", + "wings: blue feathers with yellow edges", + "nape: blue feathers transitioning to yellow", + "tail: short, blue with yellow tips", + "throat: vibrant yellow feathers" + ], + "apapane": [ + "back: vibrant red feathers", + "beak: curved, slender, black", + "belly: light white with patches of red", + "breast: bright red plumage", + "crown: fiery red feathers", + "forehead: red plumage with a small black patch", + "eyes: round black eyes with thin white ring", + "legs: skinny with dark grey scales", + "wings: radiant red with black edges", + "nape: striking red feathers", + "tail: elongated red feathers with thin black stripes", + "throat: intense red with small white streaks" + ], + "apostlebird": [ + "back: greyish-brown plumage", + "beak: short, black, cone-shaped", + "belly: lighter grey feathers", + "breast: grey with subtle streaks", + "crown: dark grey feathers", + "forehead: smooth, grey plumage", + "eyes: small, black, and shiny", + "legs: long, strong, and black", + "wings: rounded and grey-brown", + "nape: greyish-brown feathers", + "tail: long, fan-shaped, black-tipped", + "throat: pale grey, streaked feathers" + ], + "araripe manakin": [ + "back: vibrant green feathers covering the upper body", + "beak: short and black, adapted for eating fruits", + "belly: white plumage with a subtle yellow tint", + "breast: bright white with striking red fringes", + "crown: striking, vibrant red helmet-like crest", + "forehead: bright red, blending seamlessly into the crown", + "eyes: small, dark, and alert, surrounded by black feathers", + "legs: slender and black, with strong, agile feet", + "wings: green and black-tipped, designed for agile flight", + "nape: green feathers transitioning from the head to the back", + "tail: long and black with a distinct forked shape", + "throat: bright white, contrasting with the surrounding red and green" + ], + "ashy storm petrel": [ + "back: light grey, slightly darker than belly", + "beak: small, dark, narrow", + "belly: soft, pale grey", + "breast: pale grey, blending with belly", + "crown: light grey, continuous with back", + "forehead: smooth, light grey", + "eyes: small, dark, round", + "legs: short, dark, slender", + "wings: long, slender, pale grey with darker edges", + "nape: light grey, like crown and back", + "tail: slightly forked, grey with black tips", + "throat: pale grey, similar to breast and belly" + ], + "ashy thrushbird": [ + "back: olive-brown feathers covering the upper body", + "beak: thin, curved, and sharp-edged", + "belly: pale cream with subtle streaks", + "breast: grayish-white with a soft texture", + "crown: dark gray, slightly raised plumage", + "forehead: smooth, slightly paler gray", + "eyes: round, dark, with a white eye-ring", + "legs: strong, dark-colored with scaly texture", + "wings: olive-brown with blackish flight feathers", + "nape: dark gray, blending with the crown", + "tail: long, fan-shaped, with darker tips", + "throat: pale gray, blending into breast" + ], + "asian crested ibis": [ + "back: reddish-brown and white feathers, elongated", + "beak: long, curved and slender, pale pinkish", + "belly: white and fluffy feathers", + "breast: white, merging to reddish-brown feathers", + "crown: elongated white, silky feathers forming a crest", + "forehead: white with slight reddish-brown tint", + "eyes: dark-brown, surrounded with white feathers", + "legs: long, greyish-pink, and skinny", + "wings: reddish-brown and white feathers, broad and rounded", + "nape: white, merging to reddish-brown feathers", + "tail: elongated reddish-brown feathers with white tips", + "throat: white, fluffy feathers" + ], + "asian dollard bird": [ + "back: olive-green with black streaks", + "beak: short, stubby, pale-gray", + "belly: bright yellow with black barring", + "breast: vibrant golden-yellow", + "crown: glossy midnight-blue", + "forehead: vibrant turquoise-blue", + "eyes: round, small, dark brown", + "legs: long, thin, gray", + "wings: black with turquoise-blue edging", + "nape: olive-green, streaked with black", + "tail: elongated, black with blue edges", + "throat: bright yellow, black-bordered" + ], + "asian green bee eater": [ + "back: vibrant green and sleek", + "beak: long, black, and slightly curved", + "belly: light green with hints of yellow", + "breast: bright green fading to pale blue", + "crown: blueish-green, crested", + "forehead: bluish-green, blending with crown", + "eyes: round, bright, and alert", + "legs: thin, dark, and sturdy", + "wings: elongated, green with blue edges", + "nape: green, smooth transition to back", + "tail: long, slender, and forked", + "throat: yellowish-green and delicate" + ], + "asian openbill stork": [ + "back: sleek, greyish-black feathers", + "beak: long, uniquely shaped, and curved for catching prey", + "belly: white and soft feathered", + "breast: slightly rounded with white feathers", + "crown: smooth, dark grey plumage", + "forehead: narrow, feathered with dark grey color", + "eyes: small and sharp, surrounded by dark grey feathers", + "legs: tall, slender, and grey", + "wings: large, broad, with grey and white feathers", + "nape: elongated, grey feathers contrasting with the white lower neck", + "tail: long, white, and fan-shaped", + "throat: white feathers with a slight curve towards the chest" + ], + "auckland shaq": [ + "back: sleek, greenish-brown feathers", + "beak: sharp, hooked, yellowish-orange", + "belly: light golden-brown, soft plumage", + "breast: rich golden-brown, spotted texture", + "crown: dark with iridescent highlights", + "forehead: rounded, slightly paler than the crown", + "eyes: sharp, black, alert gaze", + "legs: strong, scaly, olive green", + "wings: long, powerful, greenish-brown", + "nape: slightly paler than the back, well-defined", + "tail: broad, long, greenish-blue with white tips", + "throat: buff-white, striped with fine streaks" + ], + "austral canastero": [ + "back: earthy brown with subtle dark streaks", + "beak: slim and curved, dark grey color", + "belly: off-white with light brown streaks", + "breast: pale buff with faint streaks", + "crown: brown with dark streaks, crest-like", + "forehead: light buff merging into crown", + "eyes: small, black, and circular", + "legs: slender, brownish-grey", + "wings: brown with darker flight feathers", + "nape: brown with darker streaks", + "tail: brown, long and graduated with black bars", + "throat: pale off-white with brownish tinges" + ], + "australasian figbird": [ + "back: olive-green with a slight sheen", + "beak: strong, slightly hooked, blackish-grey", + "belly: pale yellow, fading towards vent", + "breast: yellowish, blending into green on sides", + "crown: greyish with subtle streaking", + "forehead: blackish with a mask-like marking around the eye", + "eyes: dark brown, surrounded by grey eyering", + "legs: long, slender, blackish-grey", + "wings: olive-green with blackish flight feathers", + "nape: olive-green, blending into back", + "tail: long with square-shaped end, black with green edges", + "throat: yellow, demarcated from the grey crown" + ], + "azara spinetail": [ + "back: soft olive-brown feathers", + "beak: short, strong, and slightly decurved", + "belly: buff-colored with some grayish streaks", + "breast: pale gray with fine dark streaks", + "crown: rufous with a russet brown stripe", + "forehead: whitish-gray and slightly streaked", + "eyes: dark brown with a pale eye-ring", + "legs: long, slender, and dull pinkish-brown", + "wings: olive-brown with pale inner margins", + "nape: rufous blending into olive-brown back", + "tail: long and graduated with blackish-brown feathers", + "throat: pale gray with fine dark streaks" + ], + "azure breasted pitta": [ + "back: vibrant green and blue pattern", + "beak: strong, black, and curved", + "belly: bright azure blue", + "breast: rich blue and purple mix", + "crown: deep blue with green accents", + "forehead: turquoise blue outline", + "eyes: large, dark, with white rings", + "legs: pinkish-orange with sturdy talons", + "wings: gleaming green and blue feathers", + "nape: iridescent blue-green fade", + "tail: elongated, vivid blue and green feathers", + "throat: paler blue with tinges of purple" + ], + "azure jay": [ + "back: vibrant blue feathers", + "beak: short, black, curved", + "belly: pale grey plumage", + "breast: bright blue feathers", + "crown: crest of blue plumage", + "forehead: blue and tufted", + "eyes: piercing black gaze", + "legs: strong, greyish-blue", + "wings: striking blue with white edges", + "nape: blue feathered, smooth", + "tail: long, blue, with white tips", + "throat: soft, pale grey plumage" + ], + "azure tanager": [ + "back: vibrant blue feathers", + "beak: short and black", + "belly: bright turquoise", + "breast: turquoise", + "crown: deep blue plumage", + "forehead: deep blue feathers", + "eyes: small and black", + "legs: dark gray and slender", + "wings: vibrant blue with darker flight feathers", + "nape: bright blue merging with crown", + "tail: long azure feathers", + "throat: rich turquoise" + ], + "azure tit": [ + "back: vibrant blue feathers", + "beak: small, black, and sharp", + "belly: bright white plumage", + "breast: white feathers merging with belly", + "crown: deep blue crest atop head", + "forehead: vivid blue patch above eyes", + "eyes: round, black, and bright", + "legs: slim, dark grey, and featherless", + "wings: bold blue with white wing bars", + "nape: blue feathers transitioning to white", + "tail: slender, long, with blue and white feathers", + "throat: white plumage blending into breast" + ], + "baikal teal": [ + "back: light grey with intricate feather patterns", + "beak: black, short and slightly curved", + "belly: whitish-grey with delicate feather designs", + "breast: creamy-white, spotted with black flecks", + "crown: dark green, iridescent sheen", + "forehead: green with a slight metallic luster", + "eyes: dark brown with a narrow, white eye-ring", + "legs: orange-yellow and webbed feet", + "wings: mottled grey-blue with bold white stripes on flight feathers", + "nape: iridescent green, extending from the crown", + "tail: short and pointed, striped with white and black", + "throat: white, blending with breast coloration" + ], + "bali starling": [ + "back: strikingly white feathers", + "beak: bright yellow and sharp", + "belly: white, fluffy plumage", + "breast: radiant white feathers", + "crown: blue-gray tinted crest", + "forehead: smooth, pale blue skin", + "eyes: intense, dark orbs", + "legs: sturdy and gray", + "wings: white with hints of blue", + "nape: sleek, white plumage", + "tail: long, white feathers with a slight curve", + "throat: white with a smooth texture" + ], + "baltimore oriole": [ + "back: black and orange feathers", + "beak: pointed, slender silver-gray", + "belly: bright orange-yellow", + "breast: vibrant orange-yellow", + "crown: black with orange stripe", + "forehead: black with orange accents", + "eyes: black, round with white eye-ring", + "legs: bluish-gray, slender", + "wings: black with white and orange markings", + "nape: black with orange stripe", + "tail: black with orange-yellow edging", + "throat: bright orange-yellow" + ], + "bananaquit": [ + "back: olive-yellow feathers", + "beak: slender and curved", + "belly: light gray or white", + "breast: bright yellow", + "crown: black with white streaks", + "forehead: black with small white patch", + "eyes: round, dark, and alert", + "legs: thin and gray", + "wings: dark brown with yellow edging", + "nape: black with white streaks", + "tail: short and dark", + "throat: black with white streaks" + ], + "band tailed guan": [ + "back: olive-brown with lighter streaks", + "beak: strong, short, and curved, pale in color", + "belly: grayish-white with black barring", + "breast: dark gray with white speckles", + "crown: black with a small crest", + "forehead: reddish bare skin", + "eyes: dark brown with red eye-ring", + "legs: sturdy, grayish-blue, and feathered", + "wings: olive-brown with white-tipped covert feathers", + "nape: olive-brown with lighter streaks", + "tail: long, broad, and dark brown with a white band", + "throat: dark gray, slightly paler than the breast" + ], + "banded broadbill": [ + "back: black feathers with vibrant blue edges", + "beak: short, stout, and black", + "belly: light blue mixed with patches of faint white", + "breast: bold, cobalt blue feathering", + "crown: black feathers with a bright blue border", + "forehead: rich yellow band across the brow", + "eyes: small, round, with dark pupils", + "legs: black with short talons", + "wings: predominantly black, fringed with eye-catching blue", + "nape: jet black with a touch of bright blue border", + "tail: black feathers with vibrant blue edging", + "throat: bright yellow, sharply contrasting against neck" + ], + "banded pita": [ + "back: vibrant green feathers", + "beak: short, strong, black hook", + "belly: yellowish-white with blue banding", + "breast: blue and orange bands", + "crown: striking blue with black stripes", + "forehead: blue with black stripes", + "eyes: large, dark, encircled by blue feathers", + "legs: robust, pinkish-gray", + "wings: green with black and blue patterns", + "nape: green with black stripes", + "tail: elongated, green and blue feathers", + "throat: white with blue banding" + ], + "banded stilt": [ + "back: light grey plumage with a tinge of pink", + "beak: long, slender, black and slightly down-curved", + "belly: white with a hint of pink on the sides", + "breast: pink-tinged white feathers", + "crown: white with a streak of black on the rear", + "forehead: smooth white transitioning into the crown", + "eyes: small, dark with a white eyering", + "legs: long, skinny, black, webless", + "wings: light grey with contrasting black stripes", + "nape: white connecting to a dark rear stripe", + "tail: short, fan-shaped with alternating black and white feathers", + "throat: soft white blending into breast and belly" + ], + "bar tailed godwit": [ + "back: grayish-brown with faint barring", + "beak: long, slightly upturned, and dark-colored", + "belly: white or pale gray with light streaks", + "breast: light gray-brown with fine streaks", + "crown: dark brown with lighter streaks", + "forehead: pale gray with fine streaks", + "eyes: small, dark, and well-defined", + "legs: long, slender, and pale gray-blue", + "wings: pointed, grayish-brown with bar-like patterns", + "nape: brownish-gray with lighter streaks", + "tail: barred with black and white, slightly forked", + "throat: pale gray with fine streaks" + ], + "barn owl": [ + "back: rounded, buff-colored feathers with dark markings", + "beak: sharp, hooked, greyish-white", + "belly: white to beige, spotted feathers", + "breast: light, speckled plumage", + "crown: rounded, light-colored with a heart-shaped facial disc", + "forehead: white to beige, covered by facial disc", + "eyes: large, dark, forward-facing", + "legs: feathered, beige or light grey, with strong talons", + "wings: long, buff-colored with distinctive dark spots", + "nape: buff-colored, narrow feathers", + "tail: long, squared-off, light-colored with dark bands", + "throat: white, unmarked feathers" + ], + "barn swallow": [ + "back: sleek, iridescent blue-black feathers", + "beak: short, thin, black, and slightly curved", + "belly: buff to white with some pale streaks", + "breast: pale orange to brick-red hue", + "crown: shiny, dark blue-black color", + "forehead: blue-black feathers extending to the eyes", + "eyes: small, round, and black", + "legs: short, strong, pinkish to reddish-brown", + "wings: long, narrow, pointed, with dark blue-black feathers", + "nape: blue-black, blending into the back", + "tail: deeply forked, flowing streamer-like feathers", + "throat: rich chestnut shade, sharply contrasting with the breast" + ], + "barred puffbird": [ + "back: striped black and white pattern", + "beak: short, stout and slightly curved", + "belly: pale whitish yellow with black barring", + "breast: bold black and white bands", + "crown: black and white stripes", + "forehead: black with narrow white stripes", + "eyes: dark brown encircled by bare greyish skin", + "legs: short and sturdy, greyish-blue", + "wings: black with white markings", + "nape: black and white stripe pattern", + "tail: black with white spots and tips", + "throat: white with fine black bars" + ], + "barrows goldeneye": [ + "back: glossy greenish-black feathers", + "beak: bluish-gray with black tip", + "belly: pearly white with fine black spotting", + "breast: white with small black spots", + "crown: high and rounded, greenish-black", + "forehead: smoothly sloping, greenish-black", + "eyes: vivid golden-yellow", + "legs: bright orange-yellow", + "wings: blackish with bold white wing patch", + "nape: glossy greenish-black, merging to head color", + "tail: dark with white outer feathers", + "throat: white with small black spots" + ], + "bay breasted warbler": [ + "back: olive-green with black streaks", + "beak: short, thin, and pointed", + "belly: creamy white with subtle yellow wash", + "breast: bright yellow-orange with black streaks", + "crown: olive-green with faint black crown stripe", + "forehead: yellowish-green", + "eyes: dark with thin white eye-ring", + "legs: pale pinkish-gray", + "wings: blue-gray with white wing bars", + "nape: olive-green", + "tail: blue-gray with white outer tail feathers", + "throat: yellow-orange" + ], + "bearded barbet": [ + "back: vibrant yellow and green feathers", + "beak: strong, robust, and red with a black tip", + "belly: reddish-orange with dark streaks", + "breast: rich red with black markings", + "crown: black, fluffy crest feather", + "forehead: black and feathery with a hint of red", + "eyes: bright yellow with small, round pupils", + "legs: sturdy, grayish-brown, and featherless", + "wings: bold green with black and yellow patterns", + "nape: black band across the vivid yellow-green neck", + "tail: short, graduated green feathers with black and white markings", + "throat: black with minimal feathers and a prominent beard-like bristle" + ], + "bearded bellbird": [ + "back: olive-green feathers with a slight sheen", + "beak: stout, black, and slightly hooked", + "belly: creamy-white plumage, lighter than breast", + "breast: pale beige-brown with chestnut-colored barring", + "crown: olive-green blending into a grayish head", + "forehead: grayish-white with sparse black feathers", + "eyes: dark brown with a subtle ring of pale feathers", + "legs: short and black with semi-feathery 'trousers", + "wings: olive-green on top and beige underneath", + "nape: blackish-brown with white tips, forming \"beard", + "tail: long olive-green feathers, slightly darker than wings", + "throat: ivory-white with sparse chestnut-brown barring" + ], + "bearded reedling": [ + "back: pale brown with a streaked pattern", + "beak: small and pointed, light-colored", + "belly: pale whitish-grey", + "breast: light greyish-brown", + "crown: males with bluish-grey hue, females brownish", + "forehead: males with bluish-grey hue, females brownish", + "eyes: dark with white eye-ring, giving a masked appearance", + "legs: light pinkish-gray", + "wings: sleek and rounded, brown with black and white bars", + "nape: pale brown, blending into the back color", + "tail: long and thin, black with white edges", + "throat: whitish-grey, males with a black beard-like marking" + ], + "belted kingfisher": [ + "back: slate blue feathers", + "beak: long, black, dagger-like", + "belly: white with blue-gray bands", + "breast: white with blue-gray band", + "crown: large blue-gray crest", + "forehead: white patch with blue-gray accents", + "eyes: large, dark, and alert", + "legs: short and sturdy, with black-gray coloring", + "wings: slate blue with dark spots and white accents", + "nape: blue-gray with white borders", + "tail: slate blue with white bars and dark tips", + "throat: white, extending to the underside" + ], + "black and yellow broadbill": [ + "back: black with thin yellow streaks", + "beak: chunky, silver-blue", + "belly: bright yellow", + "breast: vivid yellow", + "crown: black with yellow piping", + "forehead: black with yellow accent", + "eyes: small, black, and beady", + "legs: grayish-blue, thin", + "wings: black with yellow edges", + "nape: black with yellow line", + "tail: black and broad with yellow tip", + "throat: bright yellow" + ], + "black baza": [ + "back: dark black feathers with white speckles", + "beak: stout, hooked, and black", + "belly: white with black bars", + "breast: white with black bars", + "crown: black and crest-like", + "forehead: black with small crest", + "eyes: piercing yellow", + "legs: yellow-orange with sharp talons", + "wings: broad with black and white feathers", + "nape: black with white speckles", + "tail: black and white horizontal bands", + "throat: black and white striped" + ], + "black faced spoonbill": [ + "back: sleek, white feathers", + "beak: long, black, spoon-shaped", + "belly: white and smooth underbelly", + "breast: rounded, white plumage", + "crown: black feathers with a distinctive crest", + "forehead: white with a black border", + "eyes: piercing, black orbs", + "legs: long, skinny, black stilts", + "wings: wide, white feathers with black tips", + "nape: black, stretching down the neck", + "tail: short, white feathers with subtle black markings", + "throat: white, leading down to the breast" + ], + "black francolin": [ + "back: dark brown with black and white speckles", + "beak: short, black, and slightly curved", + "belly: chestnut brown with black barring", + "breast: reddish-brown with black and white spots", + "crown: chestnut brown with a hint of red", + "forehead: black patch above the beak", + "eyes: small, bright, black eyes", + "legs: yellowish-brown with long, thin claws", + "wings: predominantly black with streaks of chestnut and white", + "nape: black strip along the back of the neck", + "tail: chestnut brown with black and white bars and white tipping", + "throat: white with black spots" + ], + "black headed caique": [ + "back: vibrant green feathers", + "beak: black, hooked shape", + "belly: creamy white coloring", + "breast: bright yellow feathers", + "crown: black cap-like pattern", + "forehead: black, connected to the crown", + "eyes: dark, encircled by white feathers", + "legs: dark gray with small scales", + "wings: green and yellow blend", + "nape: green, connects to the crown", + "tail: green and yellow, short length", + "throat: white, connects to the creamy belly" + ], + "black necked stilt": [ + "back: black, elongated feathers", + "beak: long, black, needle-like", + "belly: white, softly curved", + "breast: white, smooth transition to belly", + "crown: black, sleek and rounded", + "forehead: black, small and flat", + "eyes: dark, rounded with white edges", + "legs: extremely long, slender, and pinkish-red", + "wings: black, long, and pointed", + "nape: black, narrow and streamlined", + "tail: short, black and white, fanned", + "throat: white, slightly curved" + ], + "black skimmer": [ + "back: sleek black feathers", + "beak: long, thin, and sharp-edged with a bright orange base and black tip", + "belly: pure white underbelly", + "breast: white feathers transitioning to black on the upper breast", + "crown: solid black feathered head", + "forehead: smooth black feathers meeting the beak", + "eyes: large, dark, and positioned towards the top of the head", + "legs: short, sturdy, and bright red", + "wings: long, angular, and black with white patches underneath", + "nape: black feathers meeting the crown and back", + "tail: short, forked, and black with white edges", + "throat: white feathers extending from the chin down" + ], + "black swan": [ + "back: sleek black plumage", + "beak: vibrant red with a white strip", + "belly: black feathers transitioning to white", + "breast: shiny black plumage", + "crown: smooth black head feathers", + "forehead: black plumage meeting the red beak", + "eyes: piercing dark eyes", + "legs: dark grey to black", + "wings: elegant black feathers with white accents", + "nape: long curved black neck", + "tail: black feathers with subtle white undertones", + "throat: black leading to white lower belly" + ], + "black tail crake": [ + "back: dark olive-brown feathers", + "beak: short and pale yellow", + "belly: blackish-grey plumage", + "breast: blackish-grey feathers with a slight tinge of olive-brown", + "crown: dark olive-brown with small pale spots", + "forehead: dark olive-brown with pale spots", + "eyes: dark reddish-brown", + "legs: long, slender, and yellowish-green", + "wings: dark olive-brown with pale spots near the tips", + "nape: dark olive-brown with pale spotting", + "tail: short and blackish-grey with small white corners", + "throat: blackish-grey with simple white streaks" + ], + "black throated bushtit": [ + "back: grayish-brown feathers", + "beak: tiny, sharp, black", + "belly: white with gray sides", + "breast: white with soft streaks", + "crown: black with subtle gray edges", + "forehead: black with white above the eyes", + "eyes: small, dark, round", + "legs: thin, dark gray", + "wings: gray-brown with white markings", + "nape: black with gray transitional color", + "tail: long, narrow, gray-brown", + "throat: black and boldly marked" + ], + "black throated warbler": [ + "back: olive-green with darker streaks", + "beak: short and thin, dark gray", + "belly: pale white with light olive-green flanks", + "breast: white with distinctive black streaks", + "crown: grayish-blue with black stripes", + "forehead: grayish-blue", + "eyes: black with white eye-rings", + "legs: pinkish-gray, slender", + "wings: blue-gray with white wing-bars", + "nape: grayish-blue", + "tail: blue-gray with white outer tail feathers", + "throat: black, contrasting with white breast" + ], + "black vented shearwater": [ + "back: sleek dark feathers", + "beak: thin, slightly hooked", + "belly: white underside", + "breast: blackish-brown plumage", + "crown: dark round cap", + "forehead: black extending to eyes", + "eyes: bright, set back in the head", + "legs: pinkish-gray, strong", + "wings: long, pointed, dark", + "nape: blackish-brown, smooth", + "tail: dark with a slight fork", + "throat: white fading to gray" + ], + "black vulture": [ + "back: dark, glossy-black feathers", + "beak: large, hooked, and grayish-black", + "belly: slightly lighter black feathers with a sleek appearance", + "breast: dark black feathers with a defined pectoral area", + "crown: sparsely covered in black down feathers", + "forehead: wrinkled, dark gray skin with no feathers", + "eyes: dark brown surrounded by wrinkled, bare skin", + "legs: grayish-black, sturdy, and featherless", + "wings: long, broad, with silver-gray underside", + "nape: black feathers with a slight ruffled look", + "tail: short, square-shaped with dark black feathers", + "throat: bare, dark gray, and slightly wrinkled skin" + ], + "black capped chickadee": [ + "back: gray plumage with subtle olive-toned", + "beak: small, black, and conical", + "belly: white with buffy-to-rust hues on sides", + "breast: whitish-grey colored", + "crown: black with rounded shape", + "forehead: black, extending from beak to crown", + "eyes: dark, encircled by white eye-rings", + "legs: short and grayish-blue", + "wings: gray with white-edged feathers", + "nape: black, joining crown to back", + "tail: dark gray, short and stiff", + "throat: white, contrasting with black cap" + ], + "black necked grebe": [ + "back: dark, sleek feathers", + "beak: thin, pointed, black", + "belly: white, fluffy plumage", + "breast: white to pale grey transition", + "crown: black, rounded shape", + "forehead: black, smoothly curved", + "eyes: bright red, alert gaze", + "legs: black, slender, set far back", + "wings: dark grey, short, edged with white", + "nape: black, with distinct fan-like tuft", + "tail: short, dark, inconspicuous", + "throat: black, smooth contours" + ], + "black throated sparrow": [ + "back: light brown with thin streaks", + "beak: dark, cone-shaped", + "belly: light gray-white", + "breast: light gray-white", + "crown: black and white striped", + "forehead: black small patch", + "eyes: dark and inconspicuous", + "legs: pale pinkish-gray", + "wings: brown with white edgings", + "nape: gray with black and white stripes", + "tail: brown with white corners", + "throat: black patch" + ], + "blackburniam warbler": [ + "back: olive green with black streaks", + "beak: short and sharp", + "belly: white and free from marks", + "breast: saturated orange-red", + "crown: black with a white stripe", + "forehead: striking yellow-orange", + "eyes: black and round, with white eye-ring", + "legs: pale pink and slender", + "wings: black with white patches", + "nape: black with a white stripe", + "tail: black with white edges", + "throat: intense orange-red" + ], + "blonde crested woodpecker": [ + "back: dark, vertically striped feathers", + "beak: long, pointed, chisel-like shape", + "belly: light yellow coloring with subtle streaks", + "breast: creamy white with faint horizontal lines", + "crown: bold, blonde tufted crest", + "forehead: white to pale yellow, blending into the crest", + "eyes: small, round, and black with a white eye ring", + "legs: slate gray with sharp, curved claws", + "wings: black with white spotting and patches", + "nape: white to pale yellow, blending into crest", + "tail: mainly black with white outer feathers and tips", + "throat: white or pale yellow with minimal streaking" + ], + "blood pheasant": [ + "back: strikingly patterned with rich chestnut and black", + "beak: short, sturdy, and pale horn-colored", + "belly: chestnut brown with white, brown, and black speckles", + "breast: rusty red shading with black and white feathers", + "crown: dark, glossy blue-black with slight crest", + "forehead: glossy blue-black, smoothly merging into crown", + "eyes: deep brown with a bare, bright red orbital ring", + "legs: robust, feathered, and pinkish-gray", + "wings: chestnut-colored, barred with black and white", + "nape: rich chestnut with black streaks and speckles", + "tail: long, chestnut to black with white bands and black bars", + "throat: vibrant scarlet red, feathered texture" + ], + "blue coau": [ + "back: vibrant blue feathers", + "beak: sharp, black, and curved", + "belly: bright blue plumage", + "breast: rich blue feathery chest", + "crown: deep blue feathered crest", + "forehead: radiant blue feathers", + "eyes: small, dark, and alert", + "legs: slender, black, and strong", + "wings: wide, iridescent blue", + "nape: sleek blue feathers connecting head and back", + "tail: elongated, brilliant blue feathers", + "throat: soft, blue feathered area" + ], + "blue dacnis": [ + "back: vibrant blue feathers", + "beak: short, sturdy, black", + "belly: light blue-gray plumage", + "breast: bright blue feathers", + "crown: deep blue head crest", + "forehead: small blue patch", + "eyes: dark, rounded, expressive", + "legs: strong, grayish-black", + "wings: vivid blue with black edges", + "nape: blue and smooth", + "tail: slender, blue with black tips", + "throat: sky-blue feathers" + ], + "blue gray gnatcatcher": [ + "back: sleek blue-gray feathers", + "beak: petite, thin, and black", + "belly: white with soft gray undertones", + "breast: pale bluish-gray plumage", + "crown: blackish-blue with slender white eye-ring", + "forehead: blue-gray, fading into the crown", + "eyes: petite and black, encased in white eye-ring", + "legs: thin and dark gray", + "wings: bluish-gray with white wing bars", + "nape: subtle deep blue-gray coloration", + "tail: long, blackish-blue, with white outer edges", + "throat: white and unblemished" + ], + "blue grosbeak": [ + "back: deep blue feathers", + "beak: silver-colored, conical shape", + "belly: lighter blue plumage", + "breast: vibrant blue feathers", + "crown: deep blue with smooth contour", + "forehead: bright blue and flat", + "eyes: black, small and circular", + "legs: dark grey, sturdy", + "wings: blue and black striped pattern", + "nape: rich blue and rounded", + "tail: long, dark blue feathers", + "throat: bright blue and smooth" + ], + "blue grouse": [ + "back: short, rounded bluish-gray feathers", + "beak: short, stout, blackish hooked bill", + "belly: pale gray feathers with streaks of white", + "breast: dark slate-gray with subtle white speckles", + "crown: dark blue-gray feathers with a slight peak", + "forehead: blue-gray feathers extending to the eyes", + "eyes: black with a faint yellow ring around the pupil", + "legs: feathered bluish-gray with sturdy toes", + "wings: bluish-gray feathers with subtle white streaks", + "nape: gray-blue feathers transitioning from the crown", + "tail: medium-length, fanned gray-blue feathers", + "throat: dark blue-gray with fine, white speckling" + ], + "blue malkoha": [ + "back: vibrant blue feathers", + "beak: curved, black beak", + "belly: lighter blue feathers", + "breast: bright blue plumage", + "crown: blue feathers with a crest", + "forehead: blue feathered", + "eyes: dark, round eyes", + "legs: long, gray legs", + "wings: blue, mid-sized wings", + "nape: blue feathers at the back of the head", + "tail: long, blue, and fan-shaped", + "throat: slightly lighter blue feathers" + ], + "blue throated toucanet": [ + "back: vibrant green curved body", + "beak: large, colorful, and curve-tipped", + "belly: light yellowish-green hues", + "breast: green fading to blueish undertones", + "crown: bright green with a slight sheen", + "forehead: emerald green merging with the crown", + "eyes: bold, black, surrounded by blue circles", + "legs: dull gray with sharp claws", + "wings: green with blue-edged feathers", + "nape: green blending seamlessly with the back", + "tail: long, green feathers fanning out", + "throat: brilliant blue patch underneath the beak" + ], + "bobolink": [ + "back: black upper-side with white streaks", + "beak: short, conical, and pale", + "belly: light brownish-white", + "breast: black with white patches", + "crown: black with white median stripe", + "forehead: black with white central patch", + "eyes: small with dark pupils", + "legs: long, slender, and dark grey", + "wings: black with white edges and prominent stripes", + "nape: black with white streaks", + "tail: short and stubby with white outer feathers", + "throat: black with white patches" + ], + "bornean bristlehead": [ + "back: dark reddish-brown plumage", + "beak: thick, short, and black", + "belly: dark orange-brown feathers", + "breast: deep brown with a slight orange tint", + "crown: blackish with a spiky brush-like crest", + "forehead: black feathers with small black bristles", + "eyes: small and dark with a yellow eye-ring", + "legs: short and black, strong for perching", + "wings: long and rounded, dark reddish-brown", + "nape: black bristles extending from the crown", + "tail: medium length, dark reddish-brown with black tips", + "throat: deep brown transitioning into orange-brown on the belly" + ], + "bornean leafbird": [ + "back: vibrant green feathers with slight yellowish tint", + "beak: short, curved, dark-colored beak", + "belly: bright yellow feathering", + "breast: vivid yellow plumage", + "crown: bright green with a subtle blue shine", + "forehead: greenish-blue hue", + "eyes: small, dark, and alert", + "legs: sturdy, greyish-brown", + "wings: bright green with black and yellow feather tips", + "nape: green plumage blending with the crown", + "tail: long, green, and slightly forked", + "throat: bold yellow feathers" + ], + "bornean pheasant": [ + "back: vibrant green feathers with blue and purple sheen", + "beak: short, stout, and ivory-colored", + "belly: light brownish-orange feathers", + "breast: rich chestnut-colored feathers with darker speckles", + "crown: glossy, iridescent blue feathers", + "forehead: bright red-orange patch of skin", + "eyes: dark brown, almond-shaped with white eyelid rings", + "legs: strong, grayish-brown with sharp claws", + "wings: green feathers with a mix of blue and purple hues", + "nape: multicolored iridescent feather patterns", + "tail: long and elegant with green, blue, and purple feathers", + "throat: dark rufous plumage with grayish-brown speckles" + ], + "brandt cormarant": [ + "back: dark plumage with a slight greenish sheen", + "beak: long, thin, and hooked at the tip, colored black", + "belly: black feathering fading to white towards the tail", + "breast: mostly black with small white patches", + "crown: black with a sleek, rounded appearance", + "forehead: smooth and sloping, leading to the beak", + "eyes: small and bright, with a blue iris surrounded by a blue ring", + "legs: short and black, webbed feet for swimming", + "wings: black with a slight green sheen, long and broad for diving and soaring", + "nape: black feathers with white streaks, meeting at the back of the head", + "tail: short and wide, black with a slight green sheen", + "throat: white feathers extending from the base of the beak, blending into the black breast" + ], + "brewer blackbird": [ + "back: shiny black feathers with iridescent hues", + "beak: short, pointed, light grey to black", + "belly: sleek black plumage plus a hint of iridescent green", + "breast: reflective black feathers with a purple sheen", + "crown: iridescent black with a hint of purple sheen", + "forehead: shiny black feathers with subtle purple-blue iridescence", + "eyes: bright yellow with a black pupil", + "legs: slender and dark grey", + "wings: glossy black with blue-green sheen", + "nape: iridescent black feathers with purple and green tinges", + "tail: reflective black with a fan shape and greenish sheen", + "throat: black feathers with a faint green iridescence" + ], + "brown crepper": [ + "back: rich brown, streaked feathers", + "beak: slender, curved, light-colored", + "belly: white with faint brown spots", + "breast: pale, buff-brown with darker streaks", + "crown: rusty-brown with streaks", + "forehead: lighter brown with fine streaks", + "eyes: small, dark, and alert", + "legs: long, slender, pale gray", + "wings: brown with faint barring, rounded shape", + "nape: streaked, similar to the crown", + "tail: fanned, reddish-brown with white-tipped feathers", + "throat: buff-white with streaks on sides" + ], + "brown noody": [ + "back: dark brown and sleek", + "beak: long, thin, and black", + "belly: light brown with white undertones", + "breast: soft brown and smooth", + "crown: dark brown with a slight crest", + "forehead: lighter brown gradient", + "eyes: small, black, and piercing", + "legs: long, slender, and black", + "wings: elongated and dark brown with a tapered shape", + "nape: lighter brown, connecting crown and back", + "tail: long, forked, and dark brown with white edges", + "throat: light brown with a white patch" + ], + "brown thrasher": [ + "back: rich reddish-brown color, streaked with dark markings", + "beak: long, slightly curved, and pale yellowish", + "belly: buff-white with heavy brown streaks", + "breast: creamy white with bold dark spots", + "crown: smooth reddish-brown with slight crest", + "forehead: reddish-brown, blending into crown", + "eyes: bright yellow, surrounded by faint white eyering", + "legs: long, grayish-blue, with strong toes", + "wings: reddish-brown with bold dark bars and white wingtips", + "nape: reddish-brown, blending into back and crown", + "tail: long, reddish-brown with white tips and distinct dark bands", + "throat: paler with faint brown streaks" + ], + "bulwer pheasant": [ + "back: iridescent greenish-blue feathers", + "beak: strong, curved, blackish", + "belly: soft greyish-brown feathers", + "breast: shiny dark blue with green sheen", + "crown: black crest feathers erecting upwards", + "forehead: covered by white, small feathers", + "eyes: round and dark, surrounded by striking blue skin", + "legs: sturdy, feathered with dark blue plumage, strong talons", + "wings: elongated, greenish-blue with metallic sheen", + "nape: covered in black feathers, transitioning to iridescent blue", + "tail: strikingly elongated, curved magenta tail feathers", + "throat: shimmering yellowish-green feathers" + ], + "burchell courser": [ + "back: streaked sandy-brown color", + "beak: short, straight, black", + "belly: white or creamy color", + "breast: sandy-brown with dark streaks", + "crown: grayish-brown with fine black streaks", + "forehead: white stripe merging into the crown", + "eyes: large, dark and round", + "legs: long, light gray with scaled appearance", + "wings: sandy-brown with white and black markings", + "nape: grayish-brown with fine black streaks", + "tail: sandy brown with dark band and white tip", + "throat: clean, white color" + ], + "bush turkey": [ + "back: dark-brown, elongated feathers", + "beak: strong, slightly curved, grayish-black", + "belly: lighter brown, slightly feathered", + "breast: robust, dark-brown plumage", + "crown: small, black, prehistoric-looking crest", + "forehead: flat and feathered, transitions to crown", + "eyes: small, beady, light-brown", + "legs: strong, feathered, grayish-black", + "wings: dark-brown, fan-shaped, small for flight", + "nape: dark-brown, well-feathered, transitions to back", + "tail: flat, wide, dark-brown feathers, fan-shaped", + "throat: lighter brown, well-feathered, transitions to breast" + ], + "caatinga cacholote": [ + "back: light brown and streaked", + "beak: strong, slightly curved, black", + "belly: pale whitish-brown", + "breast: buff-brown with streaks", + "crown: tawny-brown with a crest", + "forehead: tawny-brown", + "eyes: dark with white eyering", + "legs: long, strong, grayish", + "wings: brown with lighter edges", + "nape: tawny-brown, streaked", + "tail: long, brown with lighter tips", + "throat: pale buff-brown" + ], + "cabot tragopan": [ + "back: reddish-brown with white ocelli", + "beak: short, stout, and pale yellow", + "belly: white with black barring", + "breast: deep orange with black-and-white patches", + "crown: dark blue-black with a crest-like tuft", + "forehead: bright blue skin patch", + "eyes: dark brown with bare blue skin around", + "legs: sturdy and greyish-blue", + "wings: reddish-brown with white spotting", + "nape: orange with black and white bars", + "tail: long and barred with reddish-brown, black, and white", + "throat: blue skin with inflatable dark blue lappets" + ], + "cactus wren": [ + "back: light brown with white spotting", + "beak: long, slightly curved, black", + "belly: dusty white with black streaks", + "breast: covering of dark brown spots", + "crown: brown, with a slight reddish tinge", + "forehead: brown, blending with the crown", + "eyes: small, black, encircled by a white eyering", + "legs: long, thin, grayish-brown", + "wings: brown with white bars and a black streak", + "nape: light brown, similar to the back", + "tail: brown with black and white bands", + "throat: white with black streaks" + ], + "california condor": [ + "back: dark, elongated feathers covering the upper body", + "beak: hooked, sharp, and prominent for tearing flesh", + "belly: mostly featherless, with well-developed muscles", + "breast: sturdy, with layers of feathers for insulation and protection", + "crown: bald head with small patches of feathers", + "forehead: lack of feathers, exposing the wrinkled skin", + "eyes: piercing, dark, and keen for spotting carrion", + "legs: strong, scaled, and taloned for gripping onto branches", + "wings: massive, broad, and black for soaring high in the air", + "nape: elegant arch connecting the head to the body with sparse feathers", + "tail: long, dark feathers, broad, and slightly wedge-shaped for added flight control", + "throat: bare, fleshy skin with a characteristic pinkish-red color" + ], + "california gull": [ + "back: smooth gray feathers", + "beak: medium-length, slightly hooked, pale yellow", + "belly: white plumage with light gray streaks", + "breast: white and fluffy feathers", + "crown: round, slate-gray head", + "forehead: flat, light gray feathers", + "eyes: dark, alert, and round", + "legs: thin, webbed, dusky-pink", + "wings: gray with black-tipped primaries and white edges", + "nape: light gray feather transition between head and back", + "tail: white, fan-shaped, with black border", + "throat: white, soft feathered area connecting head to belly" + ], + "campo flicker": [ + "back: yellowish-brown with black barring", + "beak: long, curved, and beige", + "belly: cream-colored with black spots", + "breast: light brown with dark spots", + "crown: solid black with a red stripe", + "forehead: black with bold white eyebrows", + "eyes: small, dark, with a white ring around it", + "legs: strong, greyish, and adapted for climbing", + "wings: yellowish-brown, black barring, and white spots", + "nape: black with white horizontal stripes", + "tail: long, blackish-brown, with white bars", + "throat: white with black spotting" + ], + "cape glossy starling": [ + "back: iridescent dark blue-green", + "beak: sharp, black, and slightly curved", + "belly: bright blue and glossy", + "breast: shimmering blue-green", + "crown: dark glossy blue with purple sheen", + "forehead: shiny blue-green, smoothly blending with the crown", + "eyes: bright orange encircled with black feathers", + "legs: long, slender, and grey-black", + "wings: iridescent blue-green with a metallic sheen", + "nape: glossy dark blue-green blending with crown", + "tail: long, shiny blue-green with a slight fork", + "throat: vibrant blue, subtly merging with the breast" + ], + "cape longclaw": [ + "back: golden-brown feathers", + "beak: strong, pointed, and black", + "belly: creamy-white with streaks", + "breast: golden-yellow patch", + "crown: dark brown with a crest", + "forehead: white stripe above the eyes", + "eyes: dark, round, and alert", + "legs: long and light-colored", + "wings: golden-brown with dark flight feathers", + "nape: golden-brown with streaks", + "tail: dark, long, and fan-shaped", + "throat: white with mottled streaks" + ], + "cape may warbler": [ + "back: bright yellow with bold black streaks", + "beak: thin, sharp, and black", + "belly: yellow with black streaks on sides", + "breast: yellow with black streaks", + "crown: yellow with a black cap", + "forehead: bright yellow", + "eyes: bold black eye stripe, white crescent below", + "legs: dark gray or black", + "wings: black with white patches and edging", + "nape: yellow with black streaks", + "tail: black with white edges", + "throat: brilliant yellow" + ], + "cape rock thrush": [ + "back: dark gray and sleek", + "beak: straight, black and thin", + "belly: light gray with fine spotting", + "breast: pale gray with gentle streaks", + "crown: dark gray with smooth feathers", + "forehead: dark gray, blending into the crown", + "eyes: beady and black, surrounded by a faint white ring", + "legs: strong, black, with sharp claws", + "wings: dark gray fading to black at tips, with subtle light gray edges", + "nape: dark gray, connecting to the back and crown", + "tail: black with a subtle white patch at the base, medium length", + "throat: pale gray with tiny streaks, transitioning to the breast" + ], + "capped heron": [ + "back: blue-gray feathers", + "beak: long, yellow with a black tip", + "belly: white feathers", + "breast: white with pale blue tuft", + "crown: black crest on the top of the head", + "forehead: pale blue frontal shield", + "eyes: yellow with a black pupil", + "legs: long, yellow-green, and slender", + "wings: blue-gray with black and white stripes", + "nape: black and white striping", + "tail: long, white central feathers with blue-gray edges", + "throat: white feathered" + ], + "capuchinbird": [ + "back: reddish-brown feathers", + "beak: short, hooked, and black", + "belly: pale, buff-colored feathers", + "breast: reddish-brown with streaks of black", + "crown: smooth with a dark brown to black crest", + "forehead: dark brown or black feathers", + "eyes: dark beady with a hint of white outline", + "legs: strong, greyish-black, suited for perching", + "wings: brownish-black, rounded for short flights", + "nape: thick with reddish-brown feathers", + "tail: long and streaming, dark brown with black streaks", + "throat: pale buff with a textured, feathery look" + ], + "caspian tern": [ + "back: sleek and gray", + "beak: long, sharp, and red", + "belly: smooth and white", + "breast: white with a slight gray shimmer", + "crown: black cap extending to the nape", + "forehead: black forehead blending into the crown", + "eyes: dark, alert, and well-spaced", + "legs: short, orange, and sturdy", + "wings: broad, tapering, and gray", + "nape: black, continuous with the crown", + "tail: narrow and forked, white with dark edges", + "throat: white and smooth" + ], + "cedar waxwing": [ + "back: smooth, sleek grayish-brown", + "beak: small, black, and pointed", + "belly: soft yellow with light gray", + "breast: pale gray, blending to yellow", + "crown: sleek, high-ridged crest", + "forehead: smooth, blending into crest", + "eyes: dark black, piercing gaze", + "legs: dark, slender, and strong", + "wings: gray with red waxy tips", + "nape: gray-brown, sleek, and smooth", + "tail: short, squared-off, with yellow band", + "throat: light gray, unmarked, blending to chest" + ], + "cerulean warbler": [ + "back: deep blue with streaks of black", + "beak: small, pointed, and black", + "belly: white and unmarked", + "breast: blue-gray with dark streaks", + "crown: bright cerulean blue", + "forehead: blue and unmarked", + "eyes: black, round and tiny", + "legs: dark gray and slender", + "wings: cerulean blue with black edging", + "nape: blue, similar to the crown", + "tail: blue-black with white edges", + "throat: clean white contrasting with blue upperparts" + ], + "chara de collar": [ + "back: vibrant green feathers brilliantly reflecting light", + "beak: sharp, slender, and slightly curved inquisitive beak", + "belly: soft, pale grey feathers providing warmth and comfort", + "breast: deep reddish-orange colored plumage", + "crown: bright green crest with hints of iridescence", + "forehead: small and unassuming, gently merging into the crown", + "eyes: round, black, and shiny orbs observantly gazing", + "legs: thin, delicate, and strong perching limbs", + "wings: expansive green and orange canvas in flight", + "nape: smooth transition from bright crown to green back feathers", + "tail: elongated green feathers aiding stability and balance", + "throat: beautiful circular black collar-like marking accentuating the neck" + ], + "chattering lory": [ + "back: vibrant green plumage", + "beak: curved, bright orange", + "belly: deep yellow feathers", + "breast: bright red and yellow mix", + "crown: vibrantly red feathers", + "forehead: deep red shading", + "eyes: dark and expressive", + "legs: grey with strong grip", + "wings: green with splashes of blue and red", + "nape: red with green blended feathers", + "tail: green and blue elongated feathers", + "throat: brilliant red with hints of yellow" + ], + "chestnet bellied euphonia": [ + "back: deep blue plumage", + "beak: short and thick, light grey", + "belly: reddish chestnut hue", + "breast: vibrant blue feathers", + "crown: bright blue cap", + "forehead: royal blue shading", + "eyes: dark with white eye-ring", + "legs: sturdy and grey", + "wings: iridescent blue with black edges", + "nape: bold blue feathers", + "tail: black with blue highlights", + "throat: gleaming blue patch" + ], + "chestnut winged cuckoo": [ + "back: olive-brown upperparts", + "beak: slender, slightly curved, dark-colored", + "belly: white with dense dark-grey streaks", + "breast: pale grey with dark grey streaks", + "crown: dark brown with darker streaks", + "forehead: lighter brown with faint streaks", + "eyes: dark brown with pale eye rings", + "legs: greyish-blue, long", + "wings: chestnut-colored primaries and secondaries, with contrasting white tips", + "nape: dark brown with dark streaks", + "tail: long and graduated, dark brown with white tips", + "throat: pale grey with dark streaking" + ], + "chinese bamboo partridge": [ + "back: brown and black streaked feathers", + "beak: short, grayish-white", + "belly: buff-white with black bars and spots", + "breast: pale chestnut with dark black spots", + "crown: chestnut-colored with black markings", + "forehead: chestnut fading to buff-white", + "eyes: dark brown, encircled by thin pale eye-ring", + "legs: sturdy, reddish-brown", + "wings: brown with rufous and pale buff barring", + "nape: chestnut with black streaks", + "tail: short, brown with black barring", + "throat: pale buff with black streaks" + ], + "chinese pond heron": [ + "back: greyish-brown plumage with white streaks", + "beak: long, sharp, and yellow-tipped", + "belly: white feathers with some brown streaks", + "breast: white with faint brown streaks", + "crown: dark and bushy crest feathers", + "forehead: smooth greyish-brown feathers", + "eyes: shiny black surrounded by white streaks", + "legs: long, yellow-green, and slender", + "wings: greyish-brown with white markings", + "nape: greyish-brown with white streaks", + "tail: short and greyish-brown with white outer feathers", + "throat: white feathers fading into greyish-brown" + ], + "chipping sparrow": [ + "back: streaked with brown and black", + "beak: dark, conical shaped", + "belly: white or pale gray", + "breast: plain grayish-white", + "crown: chestnut-colored with central stripe", + "forehead: black stripe at base of beak", + "eyes: dark with a white eye-ring", + "legs: pinkish-brown and slender", + "wings: brown with dark bars and white edging", + "nape: grayish-brown", + "tail: dark with white outer edges", + "throat: white or light gray" + ], + "chucao tapaculo": [ + "back: olive-brown with darker streaks", + "beak: short and curved, blackish in color", + "belly: reddish-brown with pale gray at sides", + "breast: reddish-brown with darker streaks", + "crown: dark olive-brown with light gray stripe", + "forehead: dark olive-brown with light gray markings", + "eyes: dark, small-sized with whitish eyering", + "legs: sturdy and pinkish-gray", + "wings: olive-brown, rounded, with faint rufous bars", + "nape: olive-brown with gray streaks", + "tail: short and rounded, dark olive-brown", + "throat: pale gray with faint dark streaks" + ], + "chukar partridge": [ + "back: brownish-grey with dark barring", + "beak: short, stout, and curved", + "belly: buff-colored with dark bars", + "breast: pale orange-brown with bold, dark bands", + "crown: reddish-brown with pale streaks", + "forehead: white-bordered black stripe", + "eyes: dark with a red orbital ring", + "legs: short and strong, with reddish-orange scales", + "wings: dark brown with white-tipped feathers", + "nape: greyish-white with dark bars", + "tail: brown with black bands and white outer tips", + "throat: white with a black band" + ], + "cinnamon attila": [ + "back: rich cinnamon-brown feathers", + "beak: short, straight, and black", + "belly: light cinnamon with slight streaks", + "breast: warm cinnamon hue, slightly paler than back", + "crown: dark reddish-brown", + "forehead: reddish-brown connecting to crown", + "eyes: small, dark, and piercing", + "legs: slim and black", + "wings: cinnamon-brown with faint darker markings", + "nape: reddish-brown transitioning to back", + "tail: long and cinnamon-brown with subtle banding", + "throat: muted cinnamon with faint streaks" + ], + "cinnamon flycatcher": [ + "back: warm brown feathers with subtle streaks", + "beak: thin, pointed, and black", + "belly: creamy white with faint streaks", + "breast: pale orange-cinnamon color", + "crown: russet-brown feathers", + "forehead: slightly paler brown than the crown", + "eyes: small, black, and alert", + "legs: thin, black, and sturdy", + "wings: brown with white-edged feathers", + "nape: seamlessly blending with the crown", + "tail: brown with white-tipped feathers", + "throat: pale cinnamon-orange hue" + ], + "clark grebe": [ + "back: sleek grayish-black feathers", + "beak: long, slender, and yellowish-green", + "belly: white and fluffy plumage", + "breast: white, merging with gray on the sides", + "crown: black, extending towards nape", + "forehead: steep profile, meeting the beak", + "eyes: bright red with a narrow white ring", + "legs: dark gray with lobed toes for swimming", + "wings: pointed, grayish-black on top, white underneath", + "nape: black, blending with crown and back", + "tail: short, pointed, grayish-black feathers", + "throat: white, contrasting with dark head" + ], + "clark nutcracker": [ + "back: striated black, white and gray feathers", + "beak: strong, pointy, black", + "belly: pale gray-white feathers", + "breast: white-gray with some black markings", + "crown: black feathers transitioning to light gray", + "forehead: light gray feathers", + "eyes: dark, round, surrounded by light gray feathers", + "legs: dark, sturdy, well-adapted for perching", + "wings: black, white and gray patterned feathers; strong for long flights", + "nape: light gray feathers blending into darker grey-back", + "tail: black feathers with white edges; long and sturdy", + "throat: white feathers with black markings" + ], + "cock of the rock": [ + "back: bright orange feathers", + "beak: black, strong, sharply hooked", + "belly: vibrant orange plumage", + "breast: rich orange feathers with a slight curve", + "crown: sleek crest of bright orange feathers", + "forehead: bold, bright orange plumage", + "eyes: small, dark, circular", + "legs: robust black legs with sharp claws", + "wings: rounded, broad, orange feathers", + "nape: glowing orange feathers tapering down the neck", + "tail: semi-circular array of long, orange feathers", + "throat: bright orange, surrounded by white tufted feathers" + ], + "collared aracari": [ + "back: greenish-black with golden hues", + "beak: large, colorful, serrated", + "belly: red to yellowish-green gradient", + "breast: bright red with black markings", + "crown: glossy green with white patches", + "forehead: glossy green", + "eyes: encircled in blue, reddish-brown iris", + "legs: strong, grayish-blue", + "wings: vibrant green and black with yellow tips", + "nape: white collar marking", + "tail: long, greenish-black with yellow tips", + "throat: red to yellowish-green gradient" + ], + "collared crescentchest": [ + "back: olive-brown feathers with lighter streaks", + "beak: thin, straight, dark-colored", + "belly: yellowish-white with black crescent markings", + "breast: bright yellow with distinctive black collar", + "crown: olive-brown with faint streaks", + "forehead: yellowish-olive transitioning into crown", + "eyes: small black with white eye-ring", + "legs: slender, grayish-pink", + "wings: olive-brown, rounded with faint markings", + "nape: olive-brown with lighter streaks", + "tail: olive-brown with faint barring, medium length", + "throat: bright yellow with tiny black streaks" + ], + "common firecrest": [ + "back: olive-green with black streaks", + "beak: short, thin, and pointy", + "belly: pale yellow with white highlights", + "breast: soft yellow with orange patch", + "crown: bright orange and yellow crest", + "forehead: yellow and black striped pattern", + "eyes: black with bold white eye-ring", + "legs: pale brown and slender", + "wings: greenish-brown with black and white bars", + "nape: olive-green with slight streaks", + "tail: dark brown with white and black bars", + "throat: pale yellow with a white central patch" + ], + "common grackle": [ + "back: iridescent black-blue sheen", + "beak: sharp, pointy, black", + "belly: dark, iridescent blue-black", + "breast: shiny, black-blue plumes", + "crown: glossy, slightly raised black feathers", + "forehead: smooth, gleaming black", + "eyes: bright yellow, piercing gaze", + "legs: slender, charcoal gray", + "wings: black-blue shimmer, faint bars", + "nape: glittering black curve", + "tail: lengthy, v-shaped black feathers", + "throat: reflective, bluish-black sheen" + ], + "common house martin": [ + "back: sleek dark-blue feathers", + "beak: short and pointed", + "belly: clean white underparts", + "breast: smooth white feathers", + "crown: glossy dark-blue cap", + "forehead: sharp contrast between dark and white", + "eyes: small and alert", + "legs: short with tiny claws", + "wings: long and pointed, adept for flight", + "nape: dark blue-black transition to white", + "tail: forked, dark-colored feathers", + "throat: bright white plumage" + ], + "common iora": [ + "back: olive-green and smooth", + "beak: sharp, pointed, black", + "belly: pale-yellow and soft", + "breast: yellowish-green, slight gradient", + "crown: bright, yellow cap", + "forehead: greenish-yellow, sleek", + "eyes: small, black, sharp gaze", + "legs: slim, gray, strong", + "wings: olive-green, long, pointed", + "nape: yellowish-green, well-defined", + "tail: black, white-tipped, forked", + "throat: pale-yellow, delicate" + ], + "common poorwill": [ + "back: brownish-gray feathers with black speckles", + "beak: small, black, and sharply pointed", + "belly: pale buff with dark brown barring", + "breast: grayish-brown with dark barring", + "crown: mottled grayish-brown", + "forehead: grayish with fine brown streaks", + "eyes: large, dark, and prominent", + "legs: short and feathered, with small black claws", + "wings: rounded, mottled brownish-gray with dark spots", + "nape: grayish-brown with dark streaks", + "tail: fan-shaped, with white-tipped outer feathers and dark brown bars", + "throat: white with dark brown streaks" + ], + "common starling": [ + "back: shiny, iridescent green-black feathers", + "beak: thin, pointy, and yellowish", + "belly: pale gray, spotted with dark feathers", + "breast: grayish-white with dark speckles", + "crown: glossy, purplish-black sheen", + "forehead: shiny, iridescent green-black feathers", + "eyes: small, round, and dark brown", + "legs: reddish-brown with sharp claws", + "wings: long, pointed, and shimmering with shades of green and purple", + "nape: iridescent green-black plumage", + "tail: short, square-shaped, and dark with a green-purple sheen", + "throat: speckled, grayish-white feathers" + ], + "coppersmith barbet": [ + "back: vibrant green feathers", + "beak: thick, short, and red-orange", + "belly: shades of yellow and green", + "breast: bright yellow with streaks of green", + "crown: red with short feathers", + "forehead: blue and compact", + "eyes: black, beady, and encircled with pale blue rings", + "legs: short, brown, and strong", + "wings: green with hints of blue in flight feathers", + "nape: green, blends with the back", + "tail: short, green, with light feather tips", + "throat: black, in contrast with the yellow breast" + ], + "coppery tailed coucal": [ + "back: earth-toned feathers with hints of copper", + "beak: strong, black, slightly curved", + "belly: creamy white with some black markings", + "breast: black and white barred pattern", + "crown: glossy black with subtle iridescence", + "forehead: sleek black transitioning to rufous", + "eyes: dark, piercing gaze", + "legs: long, sturdy, black, and featherless", + "wings: copper-rust color with black and white barring", + "nape: black and rufous striped pattern", + "tail: elongated, coppery-rust iridescent feathers", + "throat: black feathers fading into the white belly" + ], + "crab plover": [ + "back: sleek, black plumage", + "beak: long, stout, and black", + "belly: clean, white feathers", + "breast: striking white plumage", + "crown: smooth, black feathering", + "forehead: black feathers transitioning to white", + "eyes: large, dark orbs with a piercing gaze", + "legs: tall, slender, and grey", + "wings: long, black feathers with white underwing coverts", + "nape: black feathers extending down the neck", + "tail: short, black feathers with white edging", + "throat: smooth, white feathers" + ], + "crane hawk": [ + "back: sleek, brownish-gray feathers", + "beak: strong, curved, and sharp-edged", + "belly: white or light grey plumage", + "breast: pale grey with faint streaks", + "crown: darker feathers atop the head", + "forehead: white or pale grey plumage", + "eyes: piercing yellow or orange", + "legs: long, yellow, and powerful", + "wings: broad and rounded, with pronounced primary feathers", + "nape: transition from darker head to lighter back plumage", + "tail: long, banded with white and dark grey feathers", + "throat: pale grey or white feathers, sometimes with faint streaks" + ], + "cream colored woodpecker": [ + "back: sleek cream feathers", + "beak: sturdy, chisel-like", + "belly: soft cream plumage", + "breast: pale creamy feathers", + "crown: buff-cream crest", + "forehead: smooth cream finish", + "eyes: bright, inquisitive gaze", + "legs: strong, cream-colored", + "wings: cream flecked with brown", + "nape: subtly streaked cream", + "tail: elongated, cream feathers", + "throat: delicate cream shading" + ], + "crested auklet": [ + "back: dark gray with white speckles", + "beak: short, orange and curved", + "belly: pale gray with white streaks", + "breast: grayish-blue with white speckles", + "crown: black with prominent crest", + "forehead: dark gray and slightly tufted", + "eyes: dark, bead-like with white eyering", + "legs: orange and webbed", + "wings: dark gray with white tips on secondary feathers", + "nape: dark gray with white streaks", + "tail: grayish-blue with short, sharp feathers", + "throat: pale gray with white streaks" + ], + "crested caracara": [ + "back: rich dark brown feathers", + "beak: strong and curved, black-and-yellow", + "belly: creamy white plumage", + "breast: white and speckled with brown", + "crown: velvety black crest", + "forehead: red facial skin", + "eyes: sharp, piercing gaze", + "legs: long, powerful, yellow", + "wings: dark brown, long and pointed", + "nape: white collar separates neck from body", + "tail: banded in black and white", + "throat: white with dark lower edge" + ], + "crested coua": [ + "back: greenish-blue feathers with a slight sheen", + "beak: strong, slightly curved, grayish-black", + "belly: pale gray with light bluish sheen", + "breast: pale gray blending into belly", + "crown: bright blue with a distinctive crest", + "forehead: bright blue, merging into the crown", + "eyes: orange-red with distinctive blue eye-ring", + "legs: sturdy, grayish-black with zygodactyl feet", + "wings: greenish-blue with a slight iridescence", + "nape: blue-green, connecting the crown to the back", + "tail: long, iridescent green-blue feathers with white tips", + "throat: pale gray, similar to breast and belly" + ], + "crested kingfisher": [ + "back: vibrant blue and white feathered patterns", + "beak: long, sharp, black", + "belly: white and fluffy", + "breast: white with faint greyish-blue streaks", + "crown: majestic blue with a blue-black crest", + "forehead: bright blue with a dark plumage", + "eyes: deep, dark, and alert", + "legs: slender, sturdy, silver-grey", + "wings: broad, blue with bold white veining", + "nape: rich blue", + "tail: elongated, wide feathers with blue and white bands", + "throat: soft white" + ], + "crested nuthatch": [ + "back: blue-grey with faint stripes", + "beak: short and sharp, pale grey", + "belly: whitish with grey spots", + "breast: pale buff-white", + "crown: dark grey with a sharp crest", + "forehead: sleek black line", + "eyes: small, black, surrounded by white rings", + "legs: slender and grey", + "wings: slate grey with white accents", + "nape: blue-grey with black markings", + "tail: dark grey, slightly barred", + "throat: light grey underbelly" + ], + "crested oropendola": [ + "back: glossy black, smooth feathers", + "beak: elongated, silver-grey, slightly curved", + "belly: deep black feathering", + "breast: black and glossy feathers", + "crown: yellow or golden crest, slightly raised", + "forehead: black feathering, blending into the crest", + "eyes: small, deep black, with unfeathered eyering", + "legs: dark grey, strong and sturdy", + "wings: lengthy, black feathers with dim iridescence", + "nape: black, glossy feathers, connecting crest to back", + "tail: long, pendulum-like, yellow-edged black feathers", + "throat: smooth, black feathers slightly extending to neck" + ], + "crested serpent eagle": [ + "back: dark brown with horizontal streaks", + "beak: hooked, sharp, black with a yellow base", + "belly: creamy-white with horizontal dark brown bands", + "breast: white with dark brown horizontal stripes", + "crown: dark brown with a prominent feathered crest", + "forehead: white and intermixed with dark brown feathers", + "eyes: bright yellow with a piercing gaze", + "legs: strong, yellow, with sharp, black talons", + "wings: broad, dark brown, with light and dark bands visible in flight", + "nape: dark brown with a slight feathered collar", + "tail: long, brown with broad light bands at intervals", + "throat: white, sometimes with a few brownish streaks" + ], + "crested shriketit": [ + "back: olive-green plumage", + "beak: short, stout, and hooked", + "belly: pale yellow feathers", + "breast: yellowish-orange plumage", + "crown: prominent black crest", + "forehead: contrasting white stripe", + "eyes: dark brown with pale eyering", + "legs: sturdy and grayish-blue", + "wings: olive-green with black and white markings", + "nape: olive-green with a hint of yellow", + "tail: long and olive-green with white-tipped feathers", + "throat: yellowish-orange with a white spot" + ], + "crested wood partridge": [ + "back: greenish-brown feathers with black markings", + "beak: short, curved, and grey", + "belly: greyish-blue feathers with black bars", + "breast: reddish-brown feathers with black bars", + "crown: blueish-grey feathers with red crest", + "forehead: blueish-grey feathers", + "eyes: dark brown and alert", + "legs: strong, grey, with three toes", + "wings: greenish-brown, short and rounded", + "nape: bluish-grey feathers", + "tail: greenish-brown with black bands", + "throat: greyish-blue with black bars" + ], + "crimson chat": [ + "back: vibrant red-orange feathers", + "beak: small and conical, black colored", + "belly: pale white to light orange plumage", + "breast: bright crimson feathering", + "crown: red-orange feathers fading to gray at back", + "forehead: vivid red plumage", + "eyes: dark, round with a white eye-ring", + "legs: slender and gray, with three forward-facing toes", + "wings: grayish-brown with white-edged feathers", + "nape: grayish coloration, transitioning to red", + "tail: medium length, grayish-brown with white outer feathers", + "throat: bright crimson feathers, contrasting with white belly" + ], + "crimson sunbird": [ + "back: brilliant crimson-red feathers", + "beak: slender, curved, black", + "belly: shining yellow-orange plumage", + "breast: vibrant red with a metallic sheen", + "crown: iridescent red-purple cap", + "forehead: shimmering ruby-red feathers", + "eyes: round, shiny, black, with white outer rings", + "legs: thin, grayish-black, with strong claws", + "wings: dark purple-blue with flashes of red", + "nape: fiery crimson hue blending into purple-blue wings", + "tail: elongated, split-end, deep purple-blue feathers", + "throat: gleaming red merging into a yellow-orange belly" + ], + "cuban tody": [ + "back: vibrant green feathers", + "beak: short and slightly curved, black color", + "belly: pale yellow underside", + "breast: bright red patch with white borders", + "crown: bright green with a bluish sheen", + "forehead: vivid red feathers", + "eyes: large and dark, encircled by fine blue feathers", + "legs: short and slender, grayish-blue color", + "wings: short and round, green with yellow edges", + "nape: green feathers, blending with the crown", + "tail: short and square, green with a yellowish tip", + "throat: white feathers, contrasting with the red breast" + ], + "cuban trogon": [ + "back: iridescent green feathers", + "beak: short, hooked, yellowish-brown", + "belly: deep red plumage", + "breast: white band separating green and red", + "crown: bright green with slight metallic shine", + "forehead: light green transition from the beak", + "eyes: large, dark, surrounded by thin white ring", + "legs: short, reddish-brown with strong claws", + "wings: striking blue with black and white markings", + "nape: vibrant green continuing from the crown", + "tail: long, white-tipped and serrated with blue upper feathers", + "throat: greenish sheen blending into the breast" + ], + "curl crested aracuri": [ + "back: dark green feathers with a glossy sheen", + "beak: short, curved, and ivory-colored", + "belly: smooth white plumage", + "breast: white feathers with a subtle yellow tinge", + "crown: elaborately curled black feathers", + "forehead: adorned with tightly curled feather tufts", + "eyes: round and dark in color, slightly hidden by feathers", + "legs: short and strong, with grey-to-black scales", + "wings: long and green with a hint of iridescence", + "nape: dark green, transitioning into the crown's curls", + "tail: moderately long with green and blue feather banding", + "throat: white feathers extending from chin to breast area" + ], + "d arnauds barbet": [ + "back: vibrant green plumage", + "beak: thick and crimson red", + "belly: yellow with black streaks", + "breast: bright yellow feathers", + "crown: turquoise-blue feathers", + "forehead: yellow-green coloring", + "eyes: dark, beady with white eyering", + "legs: sturdy and grayish", + "wings: green with blue and red flashes", + "nape: bright turquoise-blue hue", + "tail: long, green with red-tipped feathers", + "throat: yellowish with black streaks" + ], + "dalmatian pelican": [ + "back: silvery-white with light grey feathers", + "beak: long, strong, and hooked with an orange pouch", + "belly: pale, whitish-grey feathers", + "breast: short white feathers blending into grey", + "crown: subtle crest of feathers on top of the head", + "forehead: smooth white feathers transitioning to soft grey", + "eyes: small, round, and dark", + "legs: short, thick, and pinkish-grey", + "wings: large, powerful, with white and grey plumage", + "nape: white and grey feathers extending down the neck", + "tail: short with square-cut white feathers", + "throat: puffy white feathers extending to the upper chest" + ], + "darjeeling woodpecker": [ + "back: vibrant crimson with black markings", + "beak: long, sturdy, and chisel-like", + "belly: white with black patches", + "breast: white with black streaks", + "crown: vivid scarlet hue", + "forehead: red to deep crimson coloration", + "eyes: dark and alert with a white frame", + "legs: light grey with sharp claws", + "wings: black with white markings, hint of blue", + "nape: rich, continuous red from the crown", + "tail: black with white bars, strong for bracing", + "throat: white, contrasting with the head's red color" + ], + "dark eyed junco": [ + "back: dark gray to brownish-gray feathers", + "beak: small, cone-shaped pinkish beak", + "belly: light gray or cream-colored feathers", + "breast: grayish-white with a slight pink hue", + "crown: dark gray or blackish cap-like feathers", + "forehead: smooth black or dark gray feathers", + "eyes: small, dark, and round eyes", + "legs: sturdy, thin pinkish legs", + "wings: slate gray with white outer edges", + "nape: dark gray, transitioning from the crown", + "tail: long, blackish-gray feathers with white outer corners", + "throat: light gray to off-white plumage" + ], + "daurian redstart": [ + "back: rusty-copper colored feathers", + "beak: dark, thin, pointed", + "belly: pale-gray with a hint of orange", + "breast: bright fiery-orange", + "crown: dark, grayish-black", + "forehead: grayish-black, extending to the eye area", + "eyes: small, round, dark", + "legs: dark gray, thin", + "wings: folded, gray with patches of white", + "nape: grayish-black, contiguous with the crown", + "tail: orange-red with white edges, contrasting with body", + "throat: white, with clear demarcation from breast" + ], + "demoiselle crane": [ + "back: smooth, bluish-grey feathers", + "beak: long, pointed, light grey", + "belly: white to light grey plumage", + "breast: greyish-white feathers with black edges", + "crown: pale grey with a hint of blue", + "forehead: white feathered with a small black patch", + "eyes: round, dark with a white outline", + "legs: slender, grey-blue with long, sharp claws", + "wings: bluish-grey, elongated feathers with black tips", + "nape: black plume feathers extending from the head", + "tail: grey feathers with black borders", + "throat: grey, bordered by white and black bands" + ], + "double barred finch": [ + "back: olive-brown feathers with faint barring", + "beak: thick, silvery-blue with dark tips", + "belly: white or pale with dark barring", + "breast: white with bold black bars", + "crown: dark gray-black feathers", + "forehead: white stripe above eyes", + "eyes: dark with white eye-ring", + "legs: pale pink or flesh-colored", + "wings: dark brown with white spots", + "nape: gray-black with faint barring", + "tail: dark brown edged with white", + "throat: white with faint gray markings" + ], + "double brested cormarant": [ + "back: sleek, dark feathers", + "beak: long, hooked tip", + "belly: pale, cream-colored", + "breast: two layers, white and black feathers", + "crown: pronounced, black crest", + "forehead: black feathers, smooth curve", + "eyes: bright green, sharp gaze", + "legs: short, black, webbed feet", + "wings: large, dark, powerful", + "nape: thick, elongated neck, dark feathers", + "tail: long, slender, black feathers", + "throat: white, feathered patch" + ], + "double eyed fig parrot": [ + "back: vibrant green feathers", + "beak: short, hooked, and stout", + "belly: bright yellow plumage", + "breast: vivid blue feathers", + "crown: striking red-orange patch", + "forehead: bright green with thin white band", + "eyes: white rings with black pupils", + "legs: short and sturdy with grayish scales", + "wings: green with blue highlights, strong flight feathers", + "nape: bright green feathers with a slight tuft", + "tail: short and squarish, green with light blue tips", + "throat: distinct pale blue coloration" + ], + "downy woodpecker": [ + "back: black and white horizontal stripes", + "beak: straight, strong, chisel-like", + "belly: white, soft feathers", + "breast: plain white, unmarked", + "crown: black with a red patch (males", + "forehead: white or buff, clean", + "eyes: small, black, alert", + "legs: short, gray, sturdy", + "wings: black with white spots or bars", + "nape: black, sometimes with red patch", + "tail: black with white outer feathers", + "throat: white or buff, clean" + ], + "dusky lory": [ + "back: vibrant orange feathers with hints of yellow", + "beak: short, stout, black hooked beak", + "belly: bright yellow feathers with orange undertones", + "breast: vivid orange feathers fading to yellow at the edges", + "crown: deep orangish-red feathers with lighter streaks", + "forehead: bright orange fading to yellow towards beak", + "eyes: dark, round, and attentive", + "legs: short and sturdy with dark-colored claws", + "wings: orange and yellow feathers with dark trailing edges", + "nape: fiery orange feathers with faint yellow highlights", + "tail: medium-length, orange and yellow feathers with black tips", + "throat: bright yellow feathers with a hint of orange at the edges" + ], + "dusky robin": [ + "back: brownish-grey feathers", + "beak: pointed, black, and sturdy", + "belly: light grey with faint streaks", + "breast: pale grey, blending into the belly", + "crown: dark brownish-grey feathers", + "forehead: dusky brownish-grey", + "eyes: small, black and alert", + "legs: long and thin, greyish-brown", + "wings: brownish-grey with lighter edges", + "nape: slightly darker grey than the back", + "tail: dark brownish-grey, rounded and short", + "throat: pale grey, slightly lighter than breast" + ], + "eared pita": [ + "back: olive-green with fine white streaks", + "beak: short, broad, and stout", + "belly: pale yellow with fine black streaks", + "breast: bright yellow with black streaks", + "crown: blue-grey with a black-and-white stripe", + "forehead: blue-grey with faint white streaks", + "eyes: dark, bead-like, surrounded by a pale crescent", + "legs: long and slender, pinkish-grey", + "wings: olive-green, short and rounded", + "nape: blue-grey with a distinctive black ear patch", + "tail: elongated and graduated, olive-green with black bars", + "throat: white with a sharp demarcated black border" + ], + "eastern bluebird": [ + "back: rusty brown feathered", + "beak: small and sharp-pointed", + "belly: white or light gray", + "breast: bright orange-red", + "crown: bright blue", + "forehead: vibrant blue", + "eyes: dark and round", + "legs: thin and blue-gray", + "wings: vivid blue with some white tips", + "nape: blue extending from the crown", + "tail: blue with white outer feathers", + "throat: white with a hint of orange" + ], + "eastern bluebonnet": [ + "back: vibrant blue feathers", + "beak: short, black, and pointed", + "belly: white with light blue streaks", + "breast: bright blue plumage", + "crown: deep blue top feathers", + "forehead: blue with a white stripe", + "eyes: round and black", + "legs: thin and gray", + "wings: blue with black and white edges", + "nape: blue with gray transition", + "tail: long, blue with black streaks", + "throat: white with slender blue streaks" + ], + "eastern golden weaver": [ + "back: vibrant yellow-green feathers", + "beak: strong, conical-shaped, black", + "belly: bright yellow plumage", + "breast: golden-yellow feathers", + "crown: bright golden-yellow crest", + "forehead: greenish-yellow hue", + "eyes: small, black, round", + "legs: slender, grayish-blue", + "wings: greenish-yellow with hints of black", + "nape: yellow-green coloration", + "tail: medium-length, black, and yellow-bordered feathers", + "throat: golden-yellow feathers" + ], + "eastern meadowlark": [ + "back: brown and black streaked pattern", + "beak: thin, pointed, and yellowish", + "belly: bright yellow with black v-shaped markings", + "breast: vivid yellow with black streaks", + "crown: striped with brown and light beige", + "forehead: pale beige with brown streaks", + "eyes: dark with pale eyering", + "legs: long, thin, and pinkish-brown", + "wings: brown, patterned with white and beige", + "nape: brown striped with lighter shades", + "tail: brown, fan-shaped with white outer feathers", + "throat: bright yellow, unmarked" + ], + "eastern rosella": [ + "back: vibrant green and black feathers", + "beak: off-white, strong and hooked", + "belly: bright yellow with fine dark markings", + "breast: vivid red transitioning to yellow", + "crown: bright red with white cheeks", + "forehead: iridescent blue merging into red", + "eyes: dark brown with a greyish-white eye-ring", + "legs: gray, strong and scaly", + "wings: green and black feathers with blue edges", + "nape: green and black feathers with a red patch", + "tail: long and blue, with green and black feather patterns", + "throat: yellow with black and red feathers on the sides" + ], + "eastern towee": [ + "back: dark, reddish-brown with black streaks", + "beak: conical, bicolored with gray upper and pale lower mandible", + "belly: creamy-white with tinges of buff", + "breast: warm reddish-brown with dark streaks", + "crown: deep reddish-brown with distinct streaks", + "forehead: rich reddish-brown with blackish outlines", + "eyes: dark, featuring expressive white eyerings", + "legs: pinkish-gray, slender and agile", + "wings: blackish with reddish-brown and white barring", + "nape: reddish-brown, distinct from the crown", + "tail: long and dark, typically held high and fanned", + "throat: white or cream, unmarked and clear" + ], + "eastern wip poor will": [ + "back: grayish-brown with black streaks", + "beak: small, dark-colored, and triangular", + "belly: pale gray with fine black streaks", + "breast: mixed shades of gray with black speckles", + "crown: grayish-brown streaked with black", + "forehead: slightly paler gray than crown", + "eyes: large, dark, and prominent", + "legs: short, covered in feathers, dark-colored", + "wings: long, pointed, grayish-brown with black bars", + "nape: grayish-brown with black streaks", + "tail: dark gray with white corners, thin black bands", + "throat: pale gray with faint black streaks" + ], + "eastern yellow robin": [ + "back: olive-yellow feathers", + "beak: slim and pointed", + "belly: pale yellow", + "breast: bright yellow", + "crown: olive-yellow plumage", + "forehead: unmarked olive-yellow", + "eyes: dark and round", + "legs: slender with sharp claws", + "wings: olive-yellow with some grayish-brown", + "nape: olive-yellow with subtle streaks", + "tail: grayish-brown with a slight fork", + "throat: vibrant yellow" + ], + "ecuadorian hillstar": [ + "back: iridescent green and black plumage", + "beak: long, slender, and black", + "belly: silvery-white with greenish-black speckles", + "breast: silvery-white with greenish-black speckles", + "crown: glossy violet-blue", + "forehead: glossy deep green", + "eyes: small, round, and black", + "legs: dark grey with sharp claws", + "wings: iridescent green with black edges", + "nape: iridescent green and black", + "tail: forked, black with vibrant green tips", + "throat: brilliant purple iridescence" + ], + "egyptian goose": [ + "back: brownish-grey feathers with a slight sheen", + "beak: pinkish-red with black tip", + "belly: cream to light brown feathers", + "breast: chestnut brown with dark brown speckles", + "crown: rich reddish-brown", + "forehead: pale creamy-white", + "eyes: orange to yellow with small black pupil", + "legs: pinkish-orange", + "wings: grey and white with distinctive green patches", + "nape: reddish-brown, fading to grey", + "tail: short, dark brown with white tip", + "throat: pale white or creamy-yellow" + ], + "elegant trogon": [ + "back: vibrant green plumage", + "beak: short, slightly curved, yellow", + "belly: striking red-orange", + "breast: defined green-to-red transition", + "crown: iridescent green, rounded", + "forehead: bright green, descending to the beak", + "eyes: round, dark, with light eye-ring", + "legs: thin, gray, with strong feet", + "wings: shimmering green, medium-sized", + "nape: metallic green, continuous with the crown", + "tail: black and white, long, squared-off feathers", + "throat: striking red-orange, matching belly" + ], + "elliot pheasant": [ + "back: glossy, metallic greenish-black feathers", + "beak: sharp, hooked, and grayish in color", + "belly: light brown with black and white bars", + "breast: bold, dark chestnut with white speckles", + "crown: shimmering greenish-black feathers with a crest", + "forehead: metallic green-black feathers, covering the base of the beak", + "eyes: dark, expressive and round with a brownish-orange hue", + "legs: long, slender, and featherless with strong claws", + "wings: brownish-gray with black and white bars, long and pointed", + "nape: metallic greenish-black plumage blending into the back", + "tail: long, brownish-gray with black barring, ending in curved feathers", + "throat: white and speckled, contrasting with the darker breast" + ], + "emerald tanager": [ + "back: deep emerald green", + "beak: short and black", + "belly: lighter green hue", + "breast: vibrant green feathers", + "crown: iridescent emerald green", + "forehead: slightly turquoise tint", + "eyes: dark with white ring", + "legs: black and slender", + "wings: intense green with darker edges", + "nape: rich emerald tone", + "tail: elongated with darker central feathers", + "throat: bright green blending to the belly" + ], + "emperor penguin": [ + "back: sleek black feathers", + "beak: long, curved, and sharp", + "belly: large, white, and rounded", + "breast: broad and full", + "crown: black feathers that fan out", + "forehead: black plumage with a small white patch", + "eyes: black, beady, and round", + "legs: short with strong webbed feet", + "wings: short, stiff, and flipper-like", + "nape: black, gently sloping feathers", + "tail: short, black, and wedge-shaped", + "throat: white with a touch of yellow near the neck" + ], + "enggano myna": [ + "back: dark glossy greenish-blue", + "beak: black and thick", + "belly: deep blue-black", + "breast: rich blue-black with a slight sheen", + "crown: iridescent blue-green", + "forehead: bright blue-green", + "eyes: dark brown with a thin black eye ring", + "legs: strong and black", + "wings: deep blue-black with greenish-blue gloss", + "nape: blue-green, shiny", + "tail: long and blue-black with a slight metallic sheen", + "throat: dark blue-black with a smooth texture" + ], + "eurasian bullfinch": [ + "back: greyish-blue feathers", + "beak: short and stout, blackish-grey", + "belly: light grey color", + "breast: reddish-pink for males, greyish for females", + "crown: black and curved", + "forehead: black, extending into cheeks", + "eyes: dark and small, with black outline", + "legs: short, dark grey with strong feet", + "wings: dark blue with white bars", + "nape: black in males, grey in females", + "tail: black with white markings on edges", + "throat: black, distinct from breast color" + ], + "eurasian golden oriole": [ + "back: bright yellow-green feathers", + "beak: strong, pointed and pinkish-grey", + "belly: vibrant yellow hue", + "breast: bright yellow plumage", + "crown: sleek yellow-green feathers", + "forehead: small, yellow-green feathers", + "eyes: black with white eye-ring", + "legs: blueish-grey, thin and sturdy", + "wings: black primary and secondary feathers with yellow edges", + "nape: smooth yellow-green feathers", + "tail: black with yellow outer feathers", + "throat: vivid yellow feathers" + ], + "eurasian magpie": [ + "back: iridescent black and green feathers", + "beak: strong, pointed black beak", + "belly: contrasting white plumage", + "breast: bright white feathers", + "crown: glossy black with a slight green sheen", + "forehead: shiny black plumage", + "eyes: dark, rounded black eyes", + "legs: sturdy black legs and claws", + "wings: long black feathers with blue and green iridescence", + "nape: bold black color with a greenish tinge", + "tail: elongated with multicolored black, blue and green feathers", + "throat: sleek white feathers under the beak" + ], + "european goldfinch": [ + "back: olive-green feathers", + "beak: pointed, bright orange", + "belly: creamy white feathers", + "breast: reddish-orange hue", + "crown: bold black and yellow stripes", + "forehead: vibrant red patch", + "eyes: black with white eye-ring", + "legs: pinkish-brown and slender", + "wings: black with golden-yellow bar", + "nape: pale gray-brown feathers", + "tail: black with white spots", + "throat: creamy white, blends with belly" + ], + "european turtle dove": [ + "back: soft grey-blue feathers", + "beak: short, slim, blackish in color", + "belly: light greyish-white feathers", + "breast: pale pinkish-grey with smudged pattern", + "crown: pale greyish-brown feathers", + "forehead: light greyish-blue", + "eyes: dark, surrounded by eye ring", + "legs: reddish-pink, medium length", + "wings: tan and black patterned feathers with white tips", + "nape: black and white striped patch", + "tail: square-ended, grey, black-bordered feathers", + "throat: white, bordered by dark stripe" + ], + "evening grosbeak": [ + "back: yellow-green with dark streaks", + "beak: large, conical, and pale ivory", + "belly: pale yellow", + "breast: vibrant yellow", + "crown: black and rounded", + "forehead: bright yellow", + "eyes: dark and beady, with bold white eye-ring", + "legs: short and sturdy, pinkish-gray", + "wings: dark with white patches, yellow edges", + "nape: yellow with subtle black streaks", + "tail: forked, black with white outer feathers", + "throat: yellow, blending into pale breast" + ], + "fairy penguin": [ + "back: dark-blue feathers", + "beak: small and pointy", + "belly: white underparts", + "breast: white plumage", + "crown: dark-blue feathers", + "forehead: bluish-grey", + "eyes: small and dark", + "legs: short and pinkish", + "wings: short flippers", + "nape: dark-blue feathers", + "tail: short and stiff", + "throat: white plumage" + ], + "fasciated wren": [ + "back: brown with dark streaks", + "beak: curved and sharp", + "belly: creamy white with brown spots", + "breast: light brown with dark streaks", + "crown: dark brown with rufous streaks", + "forehead: brown with fine streaks", + "eyes: dark and beady, surrounded by a lighter circle", + "legs: slender, pale brown with strong claws", + "wings: barred with dark and light brown, white-tipped feathers", + "nape: dark brown with light streaks", + "tail: long, brown with white and rufous spots", + "throat: white with light brown speckles" + ], + "fiery minivet": [ + "back: bright scarlet hue", + "beak: sharp, dark grey", + "belly: whitish-yellow", + "breast: vivid orange-red", + "crown: deep black", + "forehead: striking black", + "eyes: piercing, dark brown", + "legs: slender, greyish-blue", + "wings: bold scarlet with black edges", + "nape: shimmering black", + "tail: long, fiery orange with black bands", + "throat: intense orange shade" + ], + "fiordland penguin": [ + "back: bluish-grey feathers covering the backside", + "beak: long, hooked, and orange-tipped", + "belly: white underside with no distinct markings", + "breast: white feathers transitioning smoothly to back", + "crown: dark bluish-grey feathers extending from forehead to nape", + "forehead: bluish-grey feathers blending with crown", + "eyes: expressive and round, with a pale ring around each eye", + "legs: short and strong, with pinkish-grey, scaly skin", + "wings: long and narrow flippers, bluish-grey with white undersides", + "nape: continuation of the dark bluish-grey crown", + "tail: short and wedge-shaped, covered by bluish-grey feathers", + "throat: pale stripes on either side, separating crown from white breast" + ], + "fire tailled myzornis": [ + "back: vibrant green with subtle stripes", + "beak: petite, dark curved", + "belly: soft pale yellow", + "breast: radiant yellow-orange", + "crown: vivid orange-red", + "forehead: bright green", + "eyes: beady, dark brown", + "legs: sturdy and dark, tree-perching", + "wings: green with striking white markings", + "nape: lush, yellow-green", + "tail: elongated, with fiery reddish-orange tips", + "throat: brilliant yellow, bordered by orange" + ], + "flame bowerbird": [ + "back: vibrant orange and yellow plumage", + "beak: curved black beak", + "belly: light grey feathers", + "breast: deep orange-red coloration", + "crown: fiery yellow-orange crest", + "forehead: bright orange feathers", + "eyes: dark, round, and beady", + "legs: slender and black", + "wings: mix of grey and vivid orange feathers", + "nape: area transitioning from orange to grey plumage", + "tail: elongated orange-yellow feathers with grey streaks", + "throat: bright orange-red feathers" + ], + "flame tanager": [ + "back: vibrant blue and green feathers", + "beak: short, strong, and straight", + "belly: bright red-orange plumage", + "breast: deep red and orange feathers", + "crown: bright emerald green feathers", + "forehead: bold green and blue hues", + "eyes: dark, round, and alert", + "legs: slender, grayish-brown", + "wings: green and blue feathers with black edges", + "nape: brilliant green and blue plumage", + "tail: long, greenish-blue feathers with black tips", + "throat: vivid red and orange feathers" + ], + "forest wagtail": [ + "back: olive-green with black streaks", + "beak: slender and black", + "belly: white and unmarked", + "breast: yellowish with faint grey streaks", + "crown: grey with a prominent black stripe", + "forehead: pale greyish-white", + "eyes: dark brown with white eyering", + "legs: thin and pale pink", + "wings: dark brown with white edges", + "nape: greyish-green", + "tail: long, slightly forked, black and white", + "throat: white with black streaks" + ], + "frill back pigeon": [ + "back: rounded and smooth feathers", + "beak: short and curved, strong for pecking", + "belly: full and rounded, soft-feathered", + "breast: puffed out and fluffy", + "crown: adorned with frills, fanned out", + "forehead: flat and feathered", + "eyes: bright and alert, surrounded by thin feather ring", + "legs: short and sturdy, feathered down to feet", + "wings: wide and powerful with frilled edges", + "nape: sleek and smooth feathers, connecting to frilled crown", + "tail: long and fan-shaped, frilled feathers", + "throat: rounded, frilled feathers curving around neck" + ], + "gambels quail": [ + "back: blue-grey plumage", + "beak: short, stout, and black", + "belly: cream to buff-colored feathers", + "breast: scaled, greyish-brown pattern", + "crown: bold, black, with a topknot", + "forehead: prominent, red-brown crest", + "eyes: dark, round, with a white eye ring", + "legs: strong and featherless, greyish-blue", + "wings: rounded, blue-grey, with some reddish-brown markings", + "nape: greyish-blue with white streaks", + "tail: long, blue-grey, and squared-off", + "throat: black patch on the male, plain greyish-white on the female" + ], + "gang gang cockatoo": [ + "back: light gray feathers with white edges", + "beak: short, sharp, and light-colored", + "belly: soft gray plumage", + "breast: pale gray with a slight pink hue", + "crown: bright red crest on males, gray on females", + "forehead: light gray feathers, blending into the crown", + "eyes: dark, round, with a small white eye-ring", + "legs: short, gray, and feathered", + "wings: light gray with white-tipped feathers", + "nape: gray plumage blending into the back", + "tail: light gray feathers tipped with white", + "throat: pale gray with a pinkish hue" + ], + "gila woodpecker": [ + "back: black and white striped pattern", + "beak: long, straight, and chisel-tipped", + "belly: creamy white or pale gray", + "breast: lightly streaked beige or gray", + "crown: dark brown or black", + "forehead: light brown or beige", + "eyes: dark brown with prominent white eye-rings", + "legs: gray or black, fairly short", + "wings: black with white crossbars", + "nape: striped black and white", + "tail: black with white outer feathers", + "throat: streaked beige or gray" + ], + "gilded flicker": [ + "back: golden-olive feathers with black bars", + "beak: slightly curved, dark gray", + "belly: creamy white with black spots", + "breast: pale gray-brown with black streaks", + "crown: gray-brown with a red patch", + "forehead: pale gray-brown", + "eyes: dark brown with white eye-ring", + "legs: short, grayish-brown", + "wings: golden-olive with black barring and white patches", + "nape: gray-brown with red patch", + "tail: black with white barring", + "throat: creamy white with a black-spotted border" + ], + "glossy ibis": [ + "back: dark iridescent green-purple", + "beak: long, slender, and down-curved", + "belly: deep reddish-brown with slight shine", + "breast: metallic bronze-green", + "crown: glossy dark green", + "forehead: dark greenish-blue feathers", + "eyes: reddish-brown", + "legs: long and dark grey", + "wings: iridescent purple with green edges", + "nape: shiny bluish-purple", + "tail: short, dark iridescent green", + "throat: metallic bronze-green feathers" + ], + "gold wing warbler": [ + "back: olive-green with black streaks", + "beak: thin, pointed, black", + "belly: bright yellow", + "breast: yellow with faint streaks", + "crown: olive-green", + "forehead: yellow, with black eyeline", + "eyes: dark, expressive", + "legs: slender, pale flesh-colored", + "wings: black with bold white and yellow markings", + "nape: olive-green, unmarked", + "tail: black, white-edged", + "throat: bright yellow" + ], + "golden bower bird": [ + "back: bright golden-yellow plumage", + "beak: short, curved, light-gray", + "belly: pale golden-yellow feathers", + "breast: vibrant golden-yellow plumage", + "crown: golden-yellow crest feathers", + "forehead: bright golden-yellow feathers", + "eyes: dark, round, inquisitive gaze", + "legs: short, sturdy, grayish-brown", + "wings: golden-yellow layered feathers with dark edges", + "nape: bright golden-yellow neck feathers", + "tail: elongated, dark-tipped golden-yellow feathers", + "throat: rich golden-yellow feathers" + ], + "golden cheeked warbler": [ + "back: olive-green with black streaks", + "beak: slightly curved, thin, and black", + "belly: pale yellow with black streaks", + "breast: bright yellow with black streaks", + "crown: deep black", + "forehead: black with golden-yellow cheeks", + "eyes: dark, with a thin white eye-ring", + "legs: slender, grayish-blue", + "wings: black with two white wing-bars", + "nape: black with streaky olive-green", + "tail: black with white outer tail feathers", + "throat: bright yellow" + ], + "golden chlorophonia": [ + "back: vibrant green with yellow tinges", + "beak: thin, curved shape, dark in color", + "belly: bright yellow with some green hues", + "breast: brilliant golden-yellow, shimmering", + "crown: vivid green with slight blue tinge", + "forehead: green merging into yellow on the face", + "eyes: small, round, dark with white eye-ring", + "legs: slender, grayish-black with sharp claws", + "wings: striking green with hints of blue and yellow", + "nape: green transitioning to yellow towards the throat", + "tail: long, forked, green and yellow feathers", + "throat: rich golden-yellow, blending into belly" + ], + "golden parakeet": [ + "back: bright golden-yellow feathers", + "beak: strong, beige-colored, short, hooked", + "belly: vibrant golden-yellow plumage", + "breast: rich golden-yellow hue, feathers close to body", + "crown: striking golden-yellow crest, sleek feathers", + "forehead: striking golden-yellow feathers, blending into crown", + "eyes: dark brown with brilliant white ring around", + "legs: light beige with strong feet and sharp claws", + "wings: golden-yellow, medium length with feathers fanning outward", + "nape: golden-yellow, seamlessly blending into the crown and back", + "tail: long golden-yellow feathers, pointed tips", + "throat: golden-yellow, feathers slightly shorter than breast" + ], + "golden pheasant": [ + "back: vibrant golden-yellow plumage with subtle green accents", + "beak: strong, curved, dark-colored bill", + "belly: soft, pale gray feathers", + "breast: bright red and orange textured plumage", + "crown: sleek, brown feathers with prominent yellow crest", + "forehead: striking red and yellow coloration", + "eyes: dark, round, and alert", + "legs: long, sturdy, grayish-blue with sharp claws", + "wings: combination of red, blue and green iridescent feathers", + "nape: colorful transitional feathers from head to back", + "tail: long, barred, and golden-yellow feathers extending elegantly", + "throat: bold, deep red plumage" + ], + "golden pipit": [ + "back: golden-yellow with streaks of olive", + "beak: long, thin, and pointy", + "belly: yellowish with some white hues", + "breast: bright golden-yellow", + "crown: olive-green and gold", + "forehead: greenish-yellow with gold sheen", + "eyes: dark black with white markings", + "legs: thin and smooth with light pinkish-brown", + "wings: golden olive with darker streaks", + "nape: olive-green with a gold sheen", + "tail: long and dark brown with olive streaks", + "throat: bright golden-yellow" + ], + "gouldian finch": [ + "back: vivid multicolored plumage", + "beak: cone-shaped, light-colored", + "belly: vibrant purple or lavender", + "breast: bright, bold orange", + "crown: intense black or red color", + "forehead: matching hue with crown", + "eyes: black, beady and alert", + "legs: slender, gray, and scaly", + "wings: striking blue and green shades", + "nape: continuation of the crown color", + "tail: elongated, dark blue feathers", + "throat: brilliant white or cream patch" + ], + "grandala": [ + "back: iridescent blue-black feathers", + "beak: short, dark-colored, and conical", + "belly: white plumage with minimal markings", + "breast: vibrant cobalt blue feathers with purple sheen", + "crown: bright blue with dark head streaks", + "forehead: predominantly blue with dark streaks", + "eyes: small, round, and dark", + "legs: grayish-blue with sharp, sturdy talons", + "wings: medium-length with vivid blue and black feathers", + "nape: rich blue with dark, thin streaks", + "tail: long, dark, and slightly forked with blue and black tones", + "throat: brilliant blue with dark streaks" + ], + "gray catbird": [ + "back: slate-gray feathers", + "beak: black, slender, and slightly curved", + "belly: soft gray underbelly", + "breast: grayish-white feathers", + "crown: smooth gray plumage", + "forehead: flat, grayish-white", + "eyes: dark and round with a small white ring", + "legs: long, black, and slender", + "wings: dark gray with a hint of rust color", + "nape: pale gray feathers", + "tail: long, black, and fan-shaped", + "throat: light gray plumage" + ], + "gray kingbird": [ + "back: light gray feathers with a slight greenish tinge", + "beak: long, straight, dark grey or black", + "belly: pale grayish-white with faint streaks", + "breast: light gray fading into the white belly", + "crown: dark gray with slight crest", + "forehead: lighter gray than the crown, smooth feathers", + "eyes: dark, small, surrounded by light gray feathers", + "legs: black, slender, scaled appearance", + "wings: gray with darker feathers on the tips, prominent white patch at base", + "nape: light gray, continuous with the back and crown", + "tail: long, dark gray with white outer feathers and a forked shape", + "throat: light gray with white undertones" + ], + "gray partridge": [ + "back: gray-brown feathers with subtle patterns", + "beak: short, stout, and pale", + "belly: chestnut brown with black markings", + "breast: gray with orange-brown patches", + "crown: chestnut brown with creamy edges", + "forehead: white with contrasting black stripe", + "eyes: dark brown with pale surrounds", + "legs: sturdy, feathered, and gray", + "wings: rounded, gray-brown with darker markings", + "nape: chestnut brown with subtle patterns", + "tail: short, brown with reddish tinge", + "throat: white with black borders" + ], + "great argus": [ + "back: brownish-black and finely patterned feathers", + "beak: short, strong, and greyish-white", + "belly: dark brown with lighter buff-colored sides", + "breast: rich chestnut color with delicate, white streaking", + "crown: rusty brown and velvety texture", + "forehead: pale buff with a slight crest", + "eyes: dark brown, surrounded by a blue skin patch", + "legs: long, greyish-blue, and scaled", + "wings: elongated and intricately patterned with eye-like spots", + "nape: rich chestnut with fine white streaking", + "tail: extremely long, with broad darker brown feathers", + "throat: whitish-grey with fine, brown streaking" + ], + "great gray owl": [ + "back: thick, gray-brown plumage", + "beak: short, sharp, and hooked", + "belly: light gray with faint vertical stripes", + "breast: pale gray with dark gray barring", + "crown: rounded, gray with white-speckled pattern", + "forehead: white with a gray streak", + "eyes: large, yellow with a black ring", + "legs: feathered, pale gray with irregular dark gray bands", + "wings: broad, gray-brown with faint white markings", + "nape: gray with a slight white v-pattern", + "tail: long, pale gray with dark gray bars", + "throat: whitish-grey with fine dark streaks" + ], + "great jacamar": [ + "back: vibrant green and iridescent plumage", + "beak: long, straight, and dark-colored", + "belly: white or pale yellow underneath", + "breast: bright green or blue-green feathers", + "crown: glossy green with a slight crest", + "forehead: shimmering green or blue-green feathers", + "eyes: large and dark, surrounded by a thin white eye-ring", + "legs: short and grayish, with sharp claws", + "wings: iridescent green, with a blue or purple sheen", + "nape: brilliant green feathers", + "tail: long, slightly rounded, and green with blue or purple edges", + "throat: white or light yellow, contrasting with the vibrant body color" + ], + "great kiskadee": [ + "back: golden-olive color", + "beak: sturdy and black", + "belly: vibrant yellow", + "breast: bright yellow", + "crown: black with a white stripe", + "forehead: black and white", + "eyes: black and beady", + "legs: gray and slender", + "wings: rufous with distinct white band", + "nape: golden-olive hue", + "tail: rufous with black terminal band", + "throat: white and clean" + ], + "great potoo": [ + "back: brown and white speckled plumage", + "beak: large, wide, and hooked", + "belly: pale gray with black barring", + "breast: mottled with brown, gray, and white", + "crown: rounded, grayish-brown with white streaks", + "forehead: smooth, pale gray", + "eyes: large, forward-facing, and yellow", + "legs: short, sturdy, and feathered", + "wings: long, brown, and white streaked", + "nape: grayish-brown with white streaks", + "tail: long, brown, and white-tipped", + "throat: gray, faintly speckled with white" + ], + "great tinamou": [ + "back: olive-brown with black markings", + "beak: short and curved, pale grayish color", + "belly: whitish with fine black barring", + "breast: dark grayish-brown with fine black barring", + "crown: dark olive-brown with black markings", + "forehead: lighter olive-brown with some black markings", + "eyes: small and dark, surrounded by pale eye-ring", + "legs: long and grayish with strong feet", + "wings: round and short, olive-brown with black tips", + "nape: olive-brown with fine, dark gray markings", + "tail: long and rounded, olive-brown with black bars", + "throat: grayish-brown with subtle black markings" + ], + "great xenops": [ + "back: olive-brown with streaks", + "beak: slightly upturned, flattened", + "belly: buff-colored, light streaks", + "breast: brownish-grey, streaking", + "crown: rufous-brown, striped", + "forehead: pale buff, short line", + "eyes: dark with prominent white eyering", + "legs: dull greyish-pink", + "wings: olive-brown, barred pattern", + "nape: rufous-brown, striped", + "tail: long, rufous-brown with white tip", + "throat: white, narrow rufous band" + ], + "greater pewee": [ + "back: olive-brown with faint streaks", + "beak: long, slender, and dark", + "belly: off-white with slight yellowish tint", + "breast: pale grayish with indistinct streaks", + "crown: olive-brown, uniform with back", + "forehead: slight pale eyebrow", + "eyes: dark with pale eye-ring", + "legs: long and dark gray", + "wings: olive-brown with two white wing bars", + "nape: olive-brown, blending with back", + "tail: long and dark with slight fork", + "throat: pale grayish-white" + ], + "greater prairie chicken": [ + "back: brownish-orange with white speckles", + "beak: short, sharp, light-colored", + "belly: cream with brownish spots", + "breast: orange-brown with irregular bars", + "crown: round, red-orange crest", + "forehead: light with dark stripe above eyes", + "eyes: moderate size, dark-colored", + "legs: strong with feathered thighs, pale pinkish-gray", + "wings: brownish-orange, white tips, dark-barred", + "nape: buff-colored with lighter streaks", + "tail: elongated, central feathers dark-barred", + "throat: distinctive yellow-orange air sacs during mating display" + ], + "greator sage grouse": [ + "back: brownish-gray feathers with white patterns", + "beak: short, strong, yellowish-brown", + "belly: white, dense, feathery plumage", + "breast: dark chest feathers, round and slightly protruding", + "crown: dark feathers, slightly raised", + "forehead: white, feathery, and slightly bushy", + "eyes: small, round, black", + "legs: strong, feathered grayish-brown, with three toes", + "wings: mottled gray-brown, rounded tips", + "nape: grayish-brown with white spotting", + "tail: long, pointed, central feathers with white tips", + "throat: two large, yellow air sacs in males; white-feathered in females" + ], + "green broadbill": [ + "back: vibrant green feathers", + "beak: short, sturdy, and pale blue", + "belly: bright green with paler streaks", + "breast: rich green plumage", + "crown: striking emerald green", + "forehead: deep green with fine streaks", + "eyes: dark, beady eyes surrounded by green feathers", + "legs: sturdy and grayish-blue", + "wings: bright green with broad, rounded shape", + "nape: lush green with subtle streaks", + "tail: short, squared-off green tail feathers", + "throat: light green with faint streaks" + ], + "green jay": [ + "back: vibrant green feathers", + "beak: strong, black, and slightly curved", + "belly: soft, pale green underbelly", + "breast: light green plumage", + "crown: deep blue to purplish crest", + "forehead: striking blue-black pattern", + "eyes: expressive, dark brown", + "legs: sturdy, dark gray", + "wings: rich green with blue accents", + "nape: blue-green transition from crown", + "tail: long, blue and green feathers", + "throat: subtle light green patch" + ], + "green winged dove": [ + "back: vibrant green feathers smoothly covering the back", + "beak: small, sharp, and dark gray", + "belly: lighter green with hints of gray, fluffy feathers", + "breast: shimmering green with a purple hue, rounded feathers", + "crown: iridescent green feathers that transition from the forehead", + "forehead: radiant bright green, small smooth feathers", + "eyes: round black beads, accentuated with a thin white ring", + "legs: slim, reddish-brown with scaly texture", + "wings: large, luminous green with dark flight feathers", + "nape: continuation of the crown, shimmering green feathers", + "tail: long, green feathers tipped with black and blue bands", + "throat: subtle green with hints of blue, short and sleek feathers" + ], + "grey cuckooshrike": [ + "back: soft, grey feathers", + "beak: short, stout, and black", + "belly: pale grey, lightly streaked", + "breast: slightly darker grey than belly", + "crown: smooth, grey feathers", + "forehead: similar grey to the crown", + "eyes: small, round, and dark", + "legs: slender, black with sharp claws", + "wings: striking grey with black primary feathers", + "nape: continuation of the grey crown", + "tail: long, black with greyish outer feathers", + "throat: lighter grey, almost white" + ], + "grey headed fish eagle": [ + "back: dark brown with grey feather tips", + "beak: sturdy, hooked, black", + "belly: white with brown streaks", + "breast: white with brown streaks", + "crown: greyish-white", + "forehead: greyish-white", + "eyes: piercing yellow", + "legs: strong, yellow with sharp talons", + "wings: dark brown, wide and strong", + "nape: greyish-brown", + "tail: broad, dark brown with white band", + "throat: white with brown streaks" + ], + "grey plover": [ + "back: dark grey with intricate feather pattern", + "beak: short, straight, black", + "belly: white with hints of grey speckles", + "breast: muted grey with small black spots", + "crown: slate grey with slight white streaks", + "forehead: light grey transitioning from the crown", + "eyes: small, dark with a subtle white eyering", + "legs: pale yellow-green", + "wings: grey with bold black and white markings", + "nape: grey with thin white streaks", + "tail: dark grey with white outer feathers and black bars", + "throat: clean white, bordering the breast" + ], + "groved billed ani": [ + "back: blackish-green feathers", + "beak: large, curved, black", + "belly: dark grayish underparts", + "breast: smoky gray plumage", + "crown: glossy black feathers", + "forehead: smooth, black, few feathers", + "eyes: sparkling white with pupil", + "legs: long, dark, slender", + "wings: broad, blackish-green", + "nape: black, glossy feathers", + "tail: long, black, square-tipped", + "throat: dark grayish feathers" + ], + "guinea turaco": [ + "back: vibrant green feathers", + "beak: short, red, slightly curved", + "belly: light green, soft plumage", + "breast: emerald green feathers", + "crown: thick, green plumage with red crest", + "forehead: red coloration extending from beak", + "eyes: large, round, dark brown", + "legs: gray, scaly, strong", + "wings: green, long, strong", + "nape: green with white streaks", + "tail: long, green, white-tipped", + "throat: bright green feathers" + ], + "gurney pitta": [ + "back: vibrant blue feathers", + "beak: black and stout", + "belly: golden-yellow plumage", + "breast: bright azure feathers", + "crown: blue and black striped pattern", + "forehead: bold black markings", + "eyes: dark and round with white surrounding", + "legs: pinkish-grey with strong claws", + "wings: vivid blue with black accents", + "nape: striped blue and black design", + "tail: elongated, blue feathers with black tips", + "throat: bright golden-yellow plumage" + ], + "gyrfalcon": [ + "back: strong, broad, and slate-gray to white", + "beak: hooked, dark, and powerful", + "belly: light-colored with dark barring", + "breast: white or cream with black markings", + "crown: covered in pale feathers with subtle streaks", + "forehead: rounded and faintly streaked", + "eyes: dark, piercing, surrounded by a pale ring", + "legs: yellow and well-muscled, ending in strong talons", + "wings: broad and powerful, enabling agile flight", + "nape: pale with dark speckling, matching the crown", + "tail: long and banded, typically white with dark bars", + "throat: white or cream, transitioning into breast markings" + ], + "hamerkop": [ + "back: medium-brown feathers", + "beak: wide, short, and hooked", + "belly: lighter brown plumage", + "breast: buff and brown feathers", + "crown: flattened, crest-like appearance", + "forehead: relatively smooth feathers", + "eyes: small, dark, and piercing", + "legs: long and dark gray", + "wings: large and rounded, brown with some lighter markings", + "nape: distinctive crest extending towards the back", + "tail: medium-length, squared-off, and brown", + "throat: light brown, blending with breast plumage" + ], + "harlequin quail": [ + "back: dark brown and rust speckled feathers", + "beak: short, curved, ivory-colored", + "belly: bold white and black barring", + "breast: pale buff with black markings", + "crown: rich brown with scale-like pattern", + "forehead: rusty-brown with white streaks", + "eyes: dark brown with thin, white eye-ring", + "legs: light pinkish-brown with three toes", + "wings: speckled chocolate and chestnut, short and round", + "nape: dark brown with a scaly pattern", + "tail: short, maroon-brown with white-tipped feathers", + "throat: pale buff with small black spots" + ], + "harpy eagle": [ + "back: broad dark-grey feathers", + "beak: strong, sharp, black hook", + "belly: light-grey with dark strips", + "breast: white and fluffy", + "crown: sleek dark-gray feathers", + "forehead: slightly raised dark-gray", + "eyes: intense and yellow", + "legs: thick with powerful talons", + "wings: wide, grey-black in color", + "nape: dark-grey plumage", + "tail: striped black and grey feathers", + "throat: lighter grey plumage" + ], + "hawaiian goose": [ + "back: dark feathers with greenish sheen", + "beak: black, slightly hooked tip", + "belly: cream to light gray feathers", + "breast: buff-colored feathers with brownish streaks", + "crown: black or dark brown head", + "forehead: dark feathers with a slight crest", + "eyes: dark brown with a white eye ring", + "legs: dark grey, strong and unfeathered", + "wings: dark feathers with light brown or white secondary feathers", + "nape: black or dark brown with lighter streaks", + "tail: dark feathers with white tips", + "throat: buff-colored with light brown streaks" + ], + "hawfinch": [ + "back: brownish-grey feathers", + "beak: thick, powerful, black", + "belly: buff-hued plumage", + "breast: pale orange hue", + "crown: black feathers with a small crest", + "forehead: dark, blending into the crown", + "eyes: black with a white outer ring", + "legs: strong, pale pink-grey", + "wings: black with a bold white patch", + "nape: dark feathers transitioning to lighter shades", + "tail: short, dark with white tip", + "throat: pale greyish-white" + ], + "helmet vanga": [ + "back: deep blue feathers", + "beak: large, curved, pale blue bill", + "belly: white underside", + "breast: light blue-grey plumage", + "crown: vivid blue feathers", + "forehead: bright blue plumage", + "eyes: dark, round, expressive", + "legs: strong, black, and scaly", + "wings: short, rounded, blue feathers", + "nape: smooth, blue-toned plumage", + "tail: long, blue feathers, fan-shaped", + "throat: pale white under feathers" + ], + "hepatic tanager": [ + "back: bright olive-green", + "beak: short and stout, grayish-black", + "belly: pale orange-red", + "breast: vibrant red-orange", + "crown: deep red", + "forehead: striking red", + "eyes: small, dark brown", + "legs: slender, black", + "wings: olive-green with black edges", + "nape: rich red-orange", + "tail: olive-green with black tips", + "throat: bright red-orange" + ], + "himalayan bluetail": [ + "back: vibrant blue feathers with a slight hue of green", + "beak: slim, pointed, black beak for catching insects", + "belly: white to pale orange with soft feathering", + "breast: bright orange that fades to white towards the belly", + "crown: deep blue with a hint of purple plumage", + "forehead: royal blue with a glossy shine", + "eyes: small, round, black and alert", + "legs: slender, black, strong for perching", + "wings: striking blue with black feather tips, slightly curved", + "nape: transition from crown to back with blue-green tinting", + "tail: long, blue feathers with touches of purple and black tips", + "throat: brilliant orange, contrasting with the blue of the face" + ], + "himalayan monal": [ + "back: vibrant multicolored feathers", + "beak: strong, curved, and silverish-gray", + "belly: iridescent purplish-blue", + "breast: bright orange and blue feathers", + "crown: shimmering green and purple crest", + "forehead: metallic green with hints of blue", + "eyes: dark, alert, and expressive", + "legs: sturdy, feathered, and gray", + "wings: long and colorful with metallic sheen", + "nape: radiant turquoise and green feathers", + "tail: extended, adorned with copper feathers", + "throat: brilliant blue with iridescent hues" + ], + "hoatzin": [ + "back: olive-green feathers with a bronze sheen", + "beak: short, blunt, and yellowish-brown", + "belly: buff-colored with white barring", + "breast: russet-orange with fine white barring", + "crown: spiky, erect crest of blue feathers", + "forehead: small and bare blue skin patch", + "eyes: orange-red with a thin, pale blue eye ring", + "legs: yellowish-green with long, sharp claws", + "wings: long, rounded, with maroon and green feathers", + "nape: russet-orange with white spots", + "tail: long and brown, with ten graduated feathers", + "throat: small, cream-colored patch of feathers" + ], + "hooded merganser": [ + "back: black and white striped pattern", + "beak: thin, serrated, dark-colored", + "belly: pure white with slight shading", + "breast: white with black chestnut sides", + "crown: large, fan-shaped crest, black and white", + "forehead: sleek, narrow, black", + "eyes: bright yellow, piercing", + "legs: orange, short and sturdy", + "wings: white with black and brown feathers, iridescent patches", + "nape: black, smoothly curved", + "tail: short, dark rufous-colored feathers", + "throat: white, sharply defined" + ], + "hoopoes": [ + "back: rusty brown with broad black and white stripes", + "beak: long, slender, and slightly curved", + "belly: pale cinnamon or pinkish-buff", + "breast: beautifully barred with black and white", + "crown: elongated crest with black tips", + "forehead: white feathers with black tips", + "eyes: dark brown surrounded by thin black markings", + "legs: grayish or brownish, with sharp claws for probing the ground", + "wings: rounded with bold black and white striping", + "nape: rusty brown with black bars extending into the crown", + "tail: long, black with vivid white banding", + "throat: pale with subtle black markings" + ], + "horned guan": [ + "back: black and white spotted feathers", + "beak: short, hooked, and ivory colored", + "belly: white, grayish plumage", + "breast: grayish-white, lightly speckled feathers", + "crown: distinctive red horn protruding from the top", + "forehead: covered in fine, black feathers", + "eyes: dark brown with a prominent ring of red skin", + "legs: strong, grayish-brown with gripping toes", + "wings: long, broad, and black with white spots", + "nape: covered in a mix of black and white feathers", + "tail: black with white rectrices, extending straight back", + "throat: covered in white, downy feathers" + ], + "horned lark": [ + "back: light brown with black streaks", + "beak: small, pointed, black", + "belly: white with light brown sides", + "breast: pale with black patch", + "crown: dark brown with pointed feathers", + "forehead: yellowish-white strip above eyes", + "eyes: small, black, surrounded by white", + "legs: thin, dark-colored, strong", + "wings: brown with black tips and white stripes", + "nape: light brown, blending with crown", + "tail: short, black with white outer edges", + "throat: white, bordered by black crescent" + ], + "horned sungem": [ + "back: vibrant green feathers", + "beak: thin and needle-like", + "belly: pale gray-white with streaks", + "breast: iridescent purple-red", + "crown: green and black with tufted 'horns", + "forehead: shiny violet-blue", + "eyes: small, dark, and piercing", + "legs: slender with sharp claws", + "wings: elongated and narrow, green and black", + "nape: greenish-black feathers", + "tail: forked, with green and black feathers", + "throat: shimmering violet-red" + ], + "house sparrow": [ + "back: brown and black streaked feathers", + "beak: short, strong, conical-shaped", + "belly: pale cream or white feathers", + "breast: light grey or beige feathering", + "crown: reddish-brown color with streaks", + "forehead: pale grey tone", + "eyes: small, dark, round pupils", + "legs: thin, brown, scaly texture", + "wings: brown, black, and white feathers with wing bars", + "nape: brownish-grey feathers", + "tail: fan-shaped, brown feathers with white edges", + "throat: cream-colored, sometimes with a black patch (in males" + ], + "hyacinth macaw": [ + "back: vibrant blue feathers", + "beak: strong, curved black beak", + "belly: rich blue plumage", + "breast: bright blue feathers", + "crown: sleek blue plumage on head", + "forehead: intense blue feathers", + "eyes: expressive black eyes", + "legs: dark gray, thick legs", + "wings: expansive blue plumage with black flight feathers", + "nape: blue feathers transitioning to neck", + "tail: long blue tail feathers with black streaks", + "throat: smooth blue neck feathers" + ], + "iberian magpie": [ + "back: vibrant green-blue feathers", + "beak: strong, dark grey-black", + "belly: light grey to white plumage", + "breast: pale grey-white feathers", + "crown: blackish-blue iridescent", + "forehead: shiny black hue", + "eyes: dark, piercing gaze", + "legs: long, black, and slender", + "wings: iridescent blue-green with black tips", + "nape: blackish-blue iridescent", + "tail: long, blue-green with black bands", + "throat: soft grey-white plumage" + ], + "ibisbill": [ + "back: grayish-brown with faint streaks", + "beak: long, curved downward", + "belly: pale white underside", + "breast: light grayish-brown", + "crown: grayish-brown with slight crest", + "forehead: grayish-brown and smooth", + "eyes: small, dark with white eyering", + "legs: long, gray-greenish legs", + "wings: elongated, grayish-brown with white and black markings", + "nape: grayish-brown with white stripe", + "tail: short, grayish-brown with white tips", + "throat: white with faint gray streaks" + ], + "imperial shaq": [ + "back: royal purple plumage", + "beak: sturdy golden hooked", + "belly: pristine white feathers", + "breast: intricate silver designs", + "crown: regal crest of vibrant blues", + "forehead: diamond-shaped ruby marking", + "eyes: piercing emerald gaze", + "legs: sleek ebony with sharp talons", + "wings: majestic and wide, silver-tipped", + "nape: adorned with small opal stones", + "tail: elongated and flowing, sunset hues", + "throat: glistening sapphire feathers" + ], + "inca tern": [ + "back: dark grey plumage with contrasting lighter streaks", + "beak: vivid orange with slight curve", + "belly: soft grey, slightly lighter than back", + "breast: greyish-white with feather tufts at the neck", + "crown: dark grey with white, wispy crest feathers", + "forehead: smooth and grey with white highlights", + "eyes: dark, expressive with white border", + "legs: sturdy red-orange with webbed feet", + "wings: dark grey with white underparts and elongated feathers", + "nape: grey base with white, wispy feathers", + "tail: forked with grey feathers and elongated streamers", + "throat: white, fluffy feathers transitioning to grey on the neck" + ], + "indian pitta": [ + "back: vibrant green-blue feathers", + "beak: short, stout, and hooked", + "belly: bright yellow plumage", + "breast: vivid orange feathers", + "crown: dull green with a blue streak", + "forehead: pastel orange hues", + "eyes: dark color with a white ring", + "legs: long, slender, and pale pink", + "wings: multi-colored with blue-green tips", + "nape: greenish-blue feathers fading into darker blue", + "tail: short, stubby, and deep blue", + "throat: light cream feathers" + ], + "indian roller": [ + "back: vibrant blue coloring", + "beak: strong, black, and curved", + "belly: light blue to purplish hue", + "breast: pale bluish-green plumage", + "crown: deep blue with purplish tinge", + "forehead: bright blue strip above the beak", + "eyes: dark, round, and expressive", + "legs: short and sturdy, light gray color", + "wings: bright blue with contrasting black edges", + "nape: deep blue blending with the crown", + "tail: long, blue feathers with dark banding", + "throat: pale turquoise-blue plumage" + ], + "indian vulture": [ + "back: dark brown contour feathers", + "beak: long, hooked, pale yellow", + "belly: creamy white with scattered dark feathers", + "breast: dark brown feathers, slightly paler", + "crown: featherless red head, wrinkled skin", + "forehead: bald, red, with scattered small feathers", + "eyes: dark, encircled by pale skin", + "legs: pale yellow, strong, scaly", + "wings: broad, dark brown, white underwing coverts", + "nape: wrinkled red skin, sparse feathering", + "tail: long, dark brown feathers", + "throat: pale neck ruff, fluffy feathers" + ], + "indigo bunting": [ + "back: vibrant indigo-blue feathers", + "beak: short, conical, and silver-gray", + "belly: lighter indigo blue shading to white", + "breast: bright indigo-blue plumage", + "crown: bold, indigo-blue crest", + "forehead: deep indigo-blue hue", + "eyes: small, dark, and alert", + "legs: slender grayish-blue", + "wings: striking indigo-blue with black edges", + "nape: rich indigo-blue", + "tail: tapered, black with blue edges", + "throat: vivid indigo-blue with lighter shades" + ], + "indigo flycatcher": [ + "back: deep indigo plumage", + "beak: thin, black, pointed", + "belly: lighter indigo hue", + "breast: vibrant indigo feathers", + "crown: iridescent indigo crest", + "forehead: dark indigo gradient", + "eyes: black with white accents", + "legs: thin, black, and delicate", + "wings: vivid indigo with black edges", + "nape: rich indigo coloration", + "tail: long, slender with indigo and black feathers", + "throat: bright indigo plumage" + ], + "inland dotterel": [ + "back: light brown with thin white stripes", + "beak: short, straight, cream-colored", + "belly: white with black side markings", + "breast: white with a black dividing band", + "crown: brown with white-spotted pattern", + "forehead: sandy brown fading into white", + "eyes: dark with white eye-ring", + "legs: long and slender, cream-colored", + "wings: mottled brown and white with black tips", + "nape: pale brown with white speckles", + "tail: brownish with white outer feathers and black tips", + "throat: white transitioning into sandy brown on the sides" + ], + "ivory billed aracari": [ + "back: dark green feathers with a slight shine", + "beak: large, curved, ivory-white with a black tip", + "belly: pale yellow feathers with black markings", + "breast: bright yellow feathers with black stripes", + "crown: black feathers with a hint of metallic shine", + "forehead: black feathers blending into green on the back", + "eyes: dark brown with a white ring around the iris", + "legs: strong, gray, and scaly with sharp claws", + "wings: rounded, dark green feathers with white bands", + "nape: greenish-black feathers transitioning to dark green", + "tail: long, straight, black feathers with white bands", + "throat: vibrant yellow feathers with fine black markings" + ], + "ivory gull": [ + "back: clean white plumage", + "beak: short, pale yellow with black tip", + "belly: pristine white feathers", + "breast: white, rounded profile", + "crown: brilliant white head", + "forehead: smooth white feathers", + "eyes: dark beady with a white outline", + "legs: black with webbed feet", + "wings: white with a pale grey edge", + "nape: curved white neck", + "tail: short, white, slightly forked", + "throat: white, slender appearance" + ], + "jack snipe": [ + "back: dark brown with pale golden stripes", + "beak: long, straight, and dark", + "belly: white with brownish-grey streaks", + "breast: golden-yellow spangled with dark brown spots", + "crown: dark brown with a pale central stripe", + "forehead: pale golden with fine dark line", + "eyes: small and black, surrounded by a pale eye-ring", + "legs: greenish-yellow, with long slender toes", + "wings: dark brown with bold white markings and rich chestnut borders", + "nape: dark brown with pale golden stripes", + "tail: short, brown with prominent golden edgings on outer feathers", + "throat: white with some fine streaks" + ], + "jacobin pigeon": [ + "back: smooth, elongated feathers", + "beak: short, curved, stout", + "belly: lightly feathered, rounded", + "breast: full, puffed-out, soft feathers", + "crown: feathered hood, encircling head", + "forehead: adorned with short, curled feathers", + "eyes: round, bright, expressive", + "legs: medium length, slender, scaled", + "wings: strong, slightly arched, neat fold", + "nape: extended feather mane, flowing", + "tail: broad, straight, symmetrical feathers", + "throat: sleek, short feathers, distinct from breast" + ], + "jandaya parakeet": [ + "back: vibrant green plumage", + "beak: black, curved, and strong", + "belly: bright yellow feathers", + "breast: rich orange and yellow hues", + "crown: radiant green with blue tint", + "forehead: yellow to orange gradient", + "eyes: dark with white eye-ring", + "legs: gray and sturdy", + "wings: bold green with blue tips", + "nape: vivid green transitioning to orange", + "tail: long and green with blue accents", + "throat: brilliant orange and yellow feathers" + ], + "japanese robin": [ + "back: dark bluish-grey plumage", + "beak: short and thin, blackish color", + "belly: pale beige-white feathers", + "breast: orange, fading into belly color", + "crown: bluish-grey vibrant feathers", + "forehead: bluish-grey, similar to crown", + "eyes: small and black, encompassed by narrow white eye-ring", + "legs: slim and dark grey in color", + "wings: bluish-grey plumage with black flight feathers", + "nape: bluish-grey, aligning with crown and back", + "tail: short and dark grey, with white edges on outer feathers", + "throat: orange, matching the breast color" + ], + "java sparrow": [ + "back: soft, grey feathers", + "beak: thick, silver-grey beak", + "belly: light, greyish-white feathers", + "breast: white, plump chest", + "crown: black, rounded head", + "forehead: small, black feathers", + "eyes: round, black, beady eyes", + "legs: pinkish, scaly, and slender legs", + "wings: sleek, grey feathers with white bars", + "nape: subtle, grey feathers leading to the back", + "tail: elongated, black, forked shape", + "throat: white, contrasting against the black head" + ], + "jocotoco antpitta": [ + "back: olive-brown color, camouflaging with forest surroundings", + "beak: short and robust, curved for digging insects", + "belly: pale whitish-yellow, soft and rounded", + "breast: tawny-brown, blending with olive back", + "crown: dark olive, providing a small crest", + "forehead: lighter olive, grading into crown", + "eyes: dark, small, bright and alert", + "legs: long and sturdy, for hopping on the ground", + "wings: rounded, olive-brown, short for bursts of flight", + "nape: olive-brown, blending into back and crown", + "tail: short and fan-shaped, with black and white barred pattern", + "throat: white, providing contrast to brown surroundings" + ], + "kagu": [ + "back: pale gray with black stripes", + "beak: long, slender and orange", + "belly: white with gray shading", + "breast: light gray with white stripes", + "crown: gray-white with short crest", + "forehead: pale gray-white", + "eyes: bright orange-red", + "legs: long and strong, orange with scaled texture", + "wings: large, marked with bold black stripes", + "nape: light gray with faint black stripe", + "tail: long and fan-shaped, black and white barred", + "throat: white with fine gray striations" + ], + "kakapo": [ + "back: moss-green feathers, speckled with black and yellow", + "beak: short, curved, greyish-brown", + "belly: yellowish-green plumage with dark barring", + "breast: mossy-green feathers, speckled with blackish, yellow and brown", + "crown: densely covered in moss-green feathers with dark bars", + "forehead: flat, greenish feathers with black and yellow markings", + "eyes: beady dark-brown, surrounded by pale feathers", + "legs: short and strong, greyish-green with scaly skin", + "wings: small, round, flightless, green feathers with dark stripes", + "nape: moss-green plumage with black and yellow speckles", + "tail: short, broad fan, earth-toned feathers with dark bands", + "throat: pale greenish-yellow with dark barring" + ], + "killdear": [ + "back: sleek, grayish-brown with subtle stripes", + "beak: slim, pointed, blackish-brown", + "belly: white, unmarked", + "breast: light beige, thin dark bands", + "crown: dark, distinct stripes with white edges", + "forehead: bold white stripe above eyes", + "eyes: dark, round with thin white eyering", + "legs: long, slender, pale orange", + "wings: reddish-brown with white tips, broad black and white bands in flight", + "nape: grayish-brown, blending with crown pattern", + "tail: elongated, black with white edges and v-shape in the center", + "throat: white, unmarked" + ], + "king eider": [ + "back: dark, greenish-black feathers", + "beak: strong, orange with a prominent knob at the base", + "belly: creamy white plumage", + "breast: deep chestnut-brown feathers", + "crown: pale bluish, with a soft tuft at the top", + "forehead: bluish-white color merging with the crown", + "eyes: dark, expressive, surrounded by yellow eye-ring", + "legs: short, orange-red, webbed feet for swimming", + "wings: broad, dark, greenish-black for powerful flight", + "nape: dark feathers transitioning between the crown and back", + "tail: short, black, slightly upturned feathers", + "throat: white, contrasting with the darker head and breast" + ], + "king vulture": [ + "back: black and white plumage", + "beak: powerful, hooked, orange-yellow", + "belly: white feathers", + "breast: white and fluffy", + "crown: orange-red, fleshy crest", + "forehead: bare, bright orange skin", + "eyes: dark, round, and piercing", + "legs: strong, scaly, gray", + "wings: long, broad, black and white", + "nape: white feathers, black edges", + "tail: short, broad, black and white feathers", + "throat: bright, wrinkled, orange-yellow skin" + ], + "lazuli bunting": [ + "back: vibrant blue feathers", + "beak: short, conical-shaped, and silver-gray", + "belly: white with streaks of blue and rust", + "breast: rich rusty-orange color", + "crown: bright blue with a slight crest", + "forehead: brilliant blue feathers", + "eyes: small, black, and alert", + "legs: sturdy gray with clawed feet", + "wings: striking blue with black and white accents", + "nape: blue transitioning to rusty-orange", + "tail: long, blue feathers with a notched tip", + "throat: deep blue contrasting with rich breast color" + ], + "lesser adjutant": [ + "back: dark greyish-brown feathers", + "beak: long, pale and sharp-edged", + "belly: lighter, whitish-gray plumage", + "breast: greyish-white feathers", + "crown: sparse feathers with exposed black skin", + "forehead: dark grey plumage", + "eyes: small and deep-set with a greenish tinge", + "legs: long, greyish-black with large, webbed feet", + "wings: wide and rounded with dark grey feathers", + "nape: feathered, blending into neutral shades on the back", + "tail: short, dark grey feathers", + "throat: featherless, pendulous pouch with black or reddish-brown skin" + ], + "lilac roller": [ + "back: vibrant lilac-blue hues", + "beak: strong, black, hooked tip", + "belly: pale white with blue tinges", + "breast: rich lilac-blue color", + "crown: glossy deep blue-purple", + "forehead: smooth, light purple-blue", + "eyes: sharp, dark with white rings", + "legs: sturdy, gray-black finish", + "wings: elongated, bright lilac-blue", + "nape: shiny blue with purple cast", + "tail: long, streaming, azure-blue", + "throat: pale blue with subtle dark streaks" + ], + "limpkin": [ + "back: brownish-grey with white speckles", + "beak: long, curved, and yellowish", + "belly: pale brown with white markings", + "breast: light brown with darker streaks", + "crown: dark brown with a slight crest", + "forehead: brown with white streaks", + "eyes: small, round, and reddish-brown", + "legs: long, slender, and grey", + "wings: dark brown with white spots", + "nape: lighter brown with white streaks", + "tail: short and brown with narrow white bands", + "throat: pale brown with faint white markings" + ], + "little auk": [ + "back: black with white streaks", + "beak: short, stout, black", + "belly: white and fluffy", + "breast: black and white mixture", + "crown: black with white patches", + "forehead: black with white borders", + "eyes: small, round, black", + "legs: short, dark-colored, webbed feet", + "wings: black, short, rounded", + "nape: white, streaked with black", + "tail: short, black, fan-shaped", + "throat: white, narrow" + ], + "loggerhead shrike": [ + "back: grayish-black upperparts", + "beak: stout, hooked black bill", + "belly: creamy-white underside", + "breast: lightly streaked, grayish-white chest", + "crown: dark gray, slightly raised head", + "forehead: light gray or white, merging with eye stripe", + "eyes: prominent black stripe, white eyebrows", + "legs: sturdy and dark gray", + "wings: black with prominent white patches", + "nape: smooth gray and white transition", + "tail: black with white outer feathers", + "throat: white or light gray, unmarked" + ], + "long eared owl": [ + "back: brownish-grey feathers mottled with white", + "beak: sharp, black, and hooked", + "belly: light-grey, densely streaked with darker lines", + "breast: pale, with dark plumage and light-brown spots", + "crown: rufous or brownish-grey, well camouflaged", + "forehead: pale spot above the eyes contrasted with bold blackish background", + "eyes: large, yellow-orange, and forward-facing", + "legs: light grey and feathered, with sharp black talons", + "wings: buff-colored and mottled with brown, broad and rounded", + "nape: dark-grey feathers interspersed with lighter streaks", + "tail: long, with dark bars across the top and white underneath", + "throat: lighter patch contrasting with darker neck and head feathers" + ], + "looney birds": [ + "back: vibrant multicolored feathers", + "beak: long, curved, and bright orange", + "belly: round and fluffy with yellow feathers", + "breast: turquoise plumage with a shimmering sheen", + "crown: wild neon blue crest of feathers", + "forehead: smooth and shiny, deep purple feathers", + "eyes: large, expressive with a mischievous glint", + "legs: long and skinny with zany striped patterns", + "wings: oversized, rainbow-striped and seemingly chaotic", + "nape: soft, teal feathers that smoothly transition into the back", + "tail: extravagantly adorned with whimsical, curly fronds", + "throat: vibrant pink with exaggerated feathers jutting outward" + ], + "lucifer hummingbird": [ + "back: iridescent green with golden hues", + "beak: elongated and slender, black", + "belly: pale grayish-white", + "breast: cinnamon-orange with greenish flecks", + "crown: glittering violet-purple", + "forehead: bright magenta-violet", + "eyes: small and black", + "legs: short and slender, black", + "wings: medium-length, dark green", + "nape: metallic green-violet, transitioning to purple", + "tail: forked with rufous outer feathers, black central feathers, and white tips", + "throat: vibrant magenta with iridescent sheen" + ], + "magpie goose": [ + "back: sleek, black feathers", + "beak: broad, hooked, primarily orange with a black tip", + "belly: white, round and fluffy", + "breast: large, white feathers with black edges", + "crown: black curved plume atop the head", + "forehead: white and smooth, contrasts with crown", + "eyes: bright yellow, alert and inquisitive", + "legs: long, thin, yellow-orange, webbed feet for swimming", + "wings: wide, black and white feathers, powerful in flight", + "nape: back of the neck, white with black border", + "tail: short, rectangular, black and white feathers for steering", + "throat: white and smooth, connects with breast and belly" + ], + "malabar hornbill": [ + "back: dark greenish-black with elongated feathers", + "beak: large, curved, yellow-orange with a black stripe", + "belly: creamy-white, extending to undertail coverts", + "breast: dark olive-grey with a wavy pattern", + "crown: black, elongated feathery crest with blue sheen", + "forehead: black, blending with the crest", + "eyes: round, pale yellow surrounded by a blue-black eye ring", + "legs: short, dark grey with strong, grasping toes", + "wings: broad, black with green-blue iridescent sheen", + "nape: black, merging with crest and back", + "tail: long, black feathers with white tips", + "throat: black, blending with breast plumage" + ], + "malachite kingfisher": [ + "back: vibrant blue-green feathers", + "beak: short, thick, black", + "belly: white and fluffy", + "breast: orange-red plumage", + "crown: deep blue, crested", + "forehead: bright blue-green feathers", + "eyes: round and dark", + "legs: short and sturdy", + "wings: blue-green with black markings", + "nape: bright blue-green coloration", + "tail: short and blue-green", + "throat: reddish-orange, marking the transition to the breast" + ], + "malagasy white eye": [ + "back: olive green feathers", + "beak: small, slender, and black", + "belly: pale yellow soft plumage", + "breast: vibrant yellow feathers", + "crown: bright green with a hint of yellow", + "forehead: light green coloration", + "eyes: large, white eye-ring, dark pupil", + "legs: grayish-black, thin and agile", + "wings: olive green with hints of yellow", + "nape: light green, blending with the crown", + "tail: long, olive green, slightly forked", + "throat: pale yellow, similar to the belly" + ], + "maleo": [ + "back: black feathers with a slight sheen", + "beak: stout and slightly hooked, blackish", + "belly: whitish-grey feathers", + "breast: black, shiny feathers", + "crown: orange-yellow plumes", + "forehead: bare, black skin", + "eyes: bright and alert, black or dark brown", + "legs: strong and featherless, greyish color", + "wings: black with a hint of gloss", + "nape: orange-yellow plumage", + "tail: short, fan-shaped, black feathers", + "throat: black feathers, sometimes with a lighter patch" + ], + "mallard duck": [ + "back: glossy green and gray feathers", + "beak: yellowish-orange with black outline", + "belly: light-grey feathered area", + "breast: chestnut-brown with fine streaks", + "crown: dark green and glossy plumage", + "forehead: light green and glossy feathers", + "eyes: dark, expressive, and round", + "legs: orange with webbed feet", + "wings: gray and white with a blue speculum", + "nape: green and glossy, connecting to the crown", + "tail: black and white, slightly curled", + "throat: white-bordered, purple-blue neck ring" + ], + "mandrin duck": [ + "back: vibrant, multicolored feathers", + "beak: bright red, flattened shape", + "belly: creamy-white plumage", + "breast: rich purple with white markings", + "crown: orange-brown with black stripes", + "forehead: white and reddish-orange crest", + "eyes: dark, bright gaze", + "legs: orange-red, webbed feet", + "wings: metallic blue-green, with ornate patterns", + "nape: orange-brown, elongated feathers", + "tail: elongated, striking orange-brown plumes", + "throat: white, contrasting plumage" + ], + "mangrove cuckoo": [ + "back: olive-brown feathers with a slight sheen", + "beak: slightly curved, dark upper and lighter lower part", + "belly: pale, washed-out yellow", + "breast: yellow-orange fading into the belly", + "crown: olive-brown, in line with the back", + "forehead: slightly paler shade of olive-brown", + "eyes: large, dark, ringed with pale white", + "legs: long, sturdy; pale blue-gray", + "wings: olive-brown, distinctiv\u0435 white spots on tail feathers", + "nape: olive-brown, blending into the rest of the body", + "tail: long with white tips on outer feathers, distinct white bands", + "throat: yellowish, continues to the breast" + ], + "marabou stork": [ + "back: hunched greyish-black feathers", + "beak: long, thin, and slightly curved", + "belly: white and feathery", + "breast: white with sparse feathers", + "crown: nearly bald with sparse hair-like feathers", + "forehead: patchy grey skin with sparse feathering", + "eyes: small and dark with a focused gaze", + "legs: long and scaly with black skin", + "wings: large, grey, and widespread for soaring", + "nape: pale pink with minimal feathering", + "tail: medium-length with dark-grey feathers", + "throat: wrinkled, bare pink skin with a pouch-like appearance" + ], + "masked bobwhite": [ + "back: reddish-brown with black streaks", + "beak: short and cone-shaped, pale grayish", + "belly: white with black spots", + "breast: reddish-orange, finely barred with black", + "crown: reddish-brown, white streak", + "forehead: white stripe, short black stripe", + "eyes: dark brown, encircled by pale eyering", + "legs: grayish, slender", + "wings: reddish-brown, black barring, white patches", + "nape: reddish-brown, striped appearance", + "tail: reddish-brown, black bars, white tip", + "throat: white with black streaks" + ], + "masked booby": [ + "back: sleek, brownish-grey feathers", + "beak: long and sturdy, yellowish-white with a hooked tip", + "belly: white, fluffy under-feathers", + "breast: rounded, white plumage", + "crown: smooth, white head feathers", + "forehead: white and slightly raised", + "eyes: round, dark, and expressive", + "legs: strong, webbed, pale blue-grey", + "wings: elongated, aerodynamic, brownish-grey", + "nape: slightly curved, white feathers", + "tail: broad, fan-shaped, brownish-grey", + "throat: white, smooth feathers" + ], + "masked lapwing": [ + "back: light brown with white spots", + "beak: short, yellowish with a black tip", + "belly: creamy white with a hint of yellow", + "breast: white blending into light brown", + "crown: black with a defined crest", + "forehead: white patch with a black mask around the eyes", + "eyes: dark brown with a thin white ring", + "legs: long, yellowish with well-defined joints", + "wings: brownish with white lines and black tips", + "nape: brown with a distinct white band", + "tail: short and brown with black banding", + "throat: white with a faint yellow tinge" + ], + "mckay bunting": [ + "back: dark black-blue plumage", + "beak: thick, black conical shape", + "belly: white with black streaks", + "breast: white with black patches", + "crown: jet black, rounded", + "forehead: smooth black feathers", + "eyes: small, dark with narrow white eye-rings", + "legs: long, dark gray", + "wings: black with bold white tips", + "nape: black, bordered with white", + "tail: black, long and forked", + "throat: white with black streaks" + ], + "merlin": [ + "back: blue-gray feathers with dark bands", + "beak: short, strong, and sharp", + "belly: light cream with dark brown streaks", + "breast: creamy white with brown streaks", + "crown: dark blue-gray with streaks", + "forehead: pale with dark feather lines", + "eyes: large, dark, and piercing", + "legs: yellow with sharp talons", + "wings: slate-blue with dark barring", + "nape: blue-gray with dark streaks", + "tail: dark bands on a light background", + "throat: white, lightly streaked with brown" + ], + "mikado pheasant": [ + "back: vivid blue with reddish-brown bars", + "beak: strong, long, curved, and dark", + "belly: velvety black feathers", + "breast: deep bluish-purple with vibrant blue crescents", + "crown: metallic violet-blue, tall and crest-like", + "forehead: white streak extending to neck", + "eyes: expressive, brown, surrounded by red skin", + "legs: sturdy, long, featherless, and reddish-brown", + "wings: elongated, deep blue and bronze barred", + "nape: blue-violet, contrasting with white neck feathers", + "tail: long, graduated, black and reddish-brown barred", + "throat: striking white contrasting with black belly" + ], + "military macaw": [ + "back: vibrant green feathers", + "beak: strong, hooked, black", + "belly: olive-green hue", + "breast: lighter green plumage", + "crown: blue-green feathers", + "forehead: bright-red patch", + "eyes: white eye-ring, dark pupil", + "legs: dark grey, scaly", + "wings: blue and green feathers with red accents", + "nape: greenish-blue feathers", + "tail: long, blue and green with a red underside", + "throat: light greenish-grey feathers" + ], + "mourning dove": [ + "back: soft, grayish-brown feathers", + "beak: short, slim black beak", + "belly: pale buff-grey coloring", + "breast: rosy pinkish-brown hue", + "crown: bluish-gray crest", + "forehead: light gray-tan shade", + "eyes: dark, round eyes with bluish eye-ring", + "legs: short, reddish-pink legs", + "wings: grayish-brown with black spots", + "nape: subtle iridescent patch", + "tail: long, tapered with white edges", + "throat: light-brown or grayish-white" + ], + "nicobar pigeon": [ + "back: iridescent green-blue feathers", + "beak: short, stout, and hooked", + "belly: soft, white plumage", + "breast: metallic green feathers", + "crown: sleek, bluish-grey feathers", + "forehead: pale grey plumage", + "eyes: dark, round with a white eye-ring", + "legs: sturdy, red with strong feet", + "wings: vibrant green-blue, short, and round", + "nape: long, cascading, dark greenish-blue feathers", + "tail: white-tipped feathers with a medium length", + "throat: silvery-grey plumage" + ], + "noisy friarbird": [ + "back: grey-brown with fine white streaks", + "beak: long, curved, and black", + "belly: pale grey-white with light streaks", + "breast: grey-white with dark streaking", + "crown: black with a distinct raised crest", + "forehead: black, blending into the crest", + "eyes: dark brown, surrounded by black feathers", + "legs: sturdy, black and scaly", + "wings: brown-grey with white edges on the flight feathers", + "nape: grey-brown with white streaks, connecting the crown to the back", + "tail: long and grey-brown with white tips on the outer feathers", + "throat: black with a brown or yellowish tinge, depending on geographic variation" + ], + "northern beardless tyrannulet": [ + "back: olive-green with subtle streaks", + "beak: short, pale, and slightly curved", + "belly: pale yellowish-white", + "breast: pale grayish-olive", + "crown: grayish-brown", + "forehead: slightly paler brown", + "eyes: dark, surrounded by pale eyering", + "legs: slender, light pinkish-brown", + "wings: olive-green with two faint wingbars", + "nape: gray-brown, blending with back", + "tail: long, narrow, and olive-green", + "throat: whitish with faint grayish streaks" + ], + "northern flicker": [ + "back: brownish-gray with black barring", + "beak: slender, slightly curved, dark gray", + "belly: creamy or buff-colored with black spots", + "breast: pale gray, featuring a spotted pattern", + "crown: gray with red markings on the nape (red-shafted) or beige (yellow-shafted", + "forehead: tan or light brown, may include black whisker marks", + "eyes: dark, encircled by a light gray-white ring", + "legs: short, gray, adapted for clinging to trees", + "wings: brownish-black with white or yellow shafts, displaying white spots and a white raptor-like patch in flight", + "nape: red patch on red-shafted, beige on yellow-shafted variety", + "tail: brownish-black, featuring white, yellow or salmon undertail coverts", + "throat: beige or light gray, adorned with a black crescent shape" + ], + "northern fulmar": [ + "back: light grey or dark brown feathered", + "beak: thick, hooked, pale yellowish", + "belly: white with some brownish speckles", + "breast: white with possibly light brown streaks", + "crown: light grey to dark brown feathered", + "forehead: lighter grey to brown shaded", + "eyes: dark, medium-sized, encircled with white", + "legs: short, pale bluish-grey", + "wings: long, slender, dark grayish-brown", + "nape: light gray or brownish feathers", + "tail: short, fan-shaped, pale grey or brown", + "throat: white with some possible light streaks" + ], + "northern goshawk": [ + "back: horizontally striped with wavy dark gray and white patterns", + "beak: sharp, short, and hooked with dark gray upper and yellow lower mandibles", + "belly: light gray with fine horizontal darker stripes", + "breast: pale gray with faint wavy bars", + "crown: dark grayish-brown feathers forming a small crest", + "forehead: pale gray with sparse, small darker stripes", + "eyes: piercing yellow-orange orbital ring with dark brown irises", + "legs: feathered pale gray with strong yellow talons", + "wings: dark grayish-brown flight feathers with lighter gray barring", + "nape: slightly paler grayish-brown with subtle barring", + "tail: long, broad feathers with alternating dark and light gray bands", + "throat: pale gray with delicate horizontal dark gray barring" + ], + "northern jacana": [ + "back: dark olive-brown feathers", + "beak: long, sharp, and dark grey", + "belly: white or cream-colored feathers", + "breast: smooth, chestnut brown feathers", + "crown: black feathers with brownish-yellow edges", + "forehead: smooth, dark crown feathers with a yellow frontal shield", + "eyes: small and dark with a white ring", + "legs: long, slender, grayish-blue with large, elongated toes", + "wings: dark brown with a yellow stripe and yellow spur at the bend", + "nape: dark olive-brown feathers fading into the crown", + "tail: short, chestnut brown with a white or buff tip", + "throat: white or cream feathering transitioning into the breast" + ], + "northern mockingbird": [ + "back: grayish-brown, smooth feathers", + "beak: slender, slightly curved, black", + "belly: grayish-white, soft feathers", + "breast: light gray, faint streaks", + "crown: gray, with slight crest", + "forehead: light gray, smooth feathers", + "eyes: dark, expressive, surrounded by faint eyering", + "legs: long, thin, grayish-brown", + "wings: grayish-brown, white patches when extended", + "nape: gray, slightly darker than crown", + "tail: long, dark gray, with white outer feathers", + "throat: light gray, unmarked" + ], + "northern parula": [ + "back: olive-green with bluish-gray wash", + "beak: short, thin, and pointed", + "belly: bright yellow with a white lower belly", + "breast: yellow with distinctive black-and-rufous band", + "crown: bluish with a black patch on the sides of the head", + "forehead: yellow with a bluish-gray hue", + "eyes: dark, surrounded by a thin white eye-ring", + "legs: pale and slender", + "wings: bluish-gray with two white wing bars", + "nape: olive-green blending into the back", + "tail: dark with white crescent-shaped spots on outer feathers", + "throat: brilliant yellow" + ], + "northern red bishop": [ + "back: deep red feathers with a black border", + "beak: short and conical, silver-grey color", + "belly: bright red-orange feathers", + "breast: vibrant red plumage", + "crown: red feathers with a slight crest", + "forehead: bright red coloration", + "eyes: small, dark, and surrounded by red feathers", + "legs: greyish, short, sturdy", + "wings: dark brown with red highlights", + "nape: deep red feathers", + "tail: elongated, black with red edges", + "throat: bright red plumage" + ], + "ocellated turkey": [ + "back: iridescent green and bronze feathers", + "beak: sturdy and slightly curved, grayish-brown in color", + "belly: bluish-gray with black and white spots", + "breast: vibrant blue feathers with iridescent bronze tips", + "crown: small and rounded, covered in red-orange warty skin", + "forehead: red-orange warty skin, extending from the crown", + "eyes: bright yellow irises with black pupils, surrounded by blue skin", + "legs: sturdy and long, grayish-blue with sharp spur on each leg", + "wings: iridescent green and bronze feathers with white spots at the tips", + "nape: bluish-green feathers transitioning to bronze near the mantle", + "tail: large, fan-shaped with iridescent green and black feathers, rounded tips and blue-gray spots", + "throat: blue, dewlap with red-orange warty skin, extending to the neck" + ], + "okinawa rail": [ + "back: olive-brown with black streaks", + "beak: stout and slightly curved, yellow-green", + "belly: white with dark streaks", + "breast: white with black streaks and spots", + "crown: olive-brown with dark streaks", + "forehead: whitish with dark streaks", + "eyes: black with a white ring", + "legs: strong and yellow-green", + "wings: olive-brown with black and white markings", + "nape: olive-brown with dark streaks", + "tail: short and olive-brown with black bands", + "throat: white with dark streaks" + ], + "orange breasted trogon": [ + "back: vibrant green feathers", + "beak: short, sharp, and black", + "belly: bright orange plumage", + "breast: vivid orange mixed with white", + "crown: green with a slight metallic sheen", + "forehead: smooth green feathers", + "eyes: dark, round, and alert", + "legs: slender and gray", + "wings: green with intricate barring", + "nape: gleaming green feathers", + "tail: long, elegant, and patterned", + "throat: white with a contrasting orange breast" + ], + "orange brested bunting": [ + "back: vibrant blue with bold stripes", + "beak: short, gray, strong and conical", + "belly: bright orange", + "breast: striking orange hue", + "crown: deep blue with a black stripe", + "forehead: intense blue coloring", + "eyes: dark, round, with subtle white eye-ring", + "legs: sturdy gray with sharp claws", + "wings: brilliant blue with white and black accents", + "nape: ornate blue with black streaks", + "tail: long, blue, with distinctive white markings", + "throat: brilliant orange, blending into the breast" + ], + "oriental bay owl": [ + "back: rusty-brown with dark streaks", + "beak: pale grayish-yellow", + "belly: buff-colored with fine dark barring", + "breast: rufous-brown with dark streaks", + "crown: reddish-brown with dark streaks", + "forehead: reddish-brown with fine black speckles", + "eyes: large dark brown", + "legs: yellowish with pale feathering", + "wings: rufous-brown with dark barring on primary feathers", + "nape: reddish-brown with dark streaks", + "tail: rufous-brown with dark brown bars", + "throat: pale buff with fine dark speckles" + ], + "ornate hawk eagle": [ + "back: dark, linear feathers with lighter edges", + "beak: strong, slightly curved black beak", + "belly: off-white or cream-colored with dark streaks", + "breast: white or cream with bold, dark spots", + "crown: black plumage with crest-like appearance", + "forehead: white or cream with dark streaks", + "eyes: piercing yellow-orange eyes in a dark patch", + "legs: sturdy, pale yellow with powerful talons", + "wings: dark, broad feathers with white or light-colored underwing patches", + "nape: dark, long plumaged feathers cascading down the neck", + "tail: long, dark feathers with prominent white stripes", + "throat: white or cream with dark mottling" + ], + "osprey": [ + "back: brown and white feathers, streamlined", + "beak: sharp, hooked, black", + "belly: white, speckled with light brown", + "breast: white, sometimes marked with light brown", + "crown: dark brown, helmet-like", + "forehead: white, with pronounced dark eye stripe", + "eyes: yellow, piercing gaze", + "legs: long, grayish-blue, featherless", + "wings: brown, large, span up to 6 feet", + "nape: dark brown, continuous with crown", + "tail: brown and white bands, fan-shaped", + "throat: white, contrast with dark crown" + ], + "ovenbird": [ + "back: olive-green feathers with streaks", + "beak: thin, pointed, light color", + "belly: light yellowish hue with black streaks", + "breast: white or pale yellow with black streaks", + "crown: orange stripe bordered by black", + "forehead: olive-green, blending into crown", + "eyes: dark, medium-sized, expressive", + "legs: strong, gray or pinkish-gray", + "wings: olive-green with white streaks", + "nape: olive-green, elongating the back", + "tail: medium length, brownish-green with white spots", + "throat: pale white or yellowish hue" + ], + "painted bunting": [ + "back: vibrant green coloring", + "beak: conical and silver-gray", + "belly: rich red hue", + "breast: bright blue plumage", + "crown: purplish-blue tint", + "forehead: deep blue coloring", + "eyes: black with white eye-ring", + "legs: light gray and slender", + "wings: green with dark edges", + "nape: green-blue transition", + "tail: green feathers with dark tips", + "throat: bright red plumage" + ], + "palila": [ + "back: yellow-tinged olive-green", + "beak: stout, hooked, silver-gray", + "belly: pale yellow-white", + "breast: golden-yellow", + "crown: brilliant yellow", + "forehead: yellow", + "eyes: dark with white eye-ring", + "legs: gray, featherless", + "wings: olive-green with white tips", + "nape: olive-green", + "tail: olive-green, squared-off", + "throat: same as breast (golden-yellow" + ], + "palm nut vulture": [ + "back: black feathers with white streaks", + "beak: hooked, strong, ivory-colored", + "belly: black plumes with white edges", + "breast: sleek, white feathers", + "crown: white-feathered head, balding", + "forehead: white feathers fading to black", + "eyes: dark, piercing gaze", + "legs: strong, yellow-gray legs with sharp talons", + "wings: large, black and white feathers, broad outline", + "nape: white plumage, occasionally with black streaks", + "tail: elongated black feathers with white accents", + "throat: white feathers with black fine lines" + ], + "paradise tanager": [ + "back: vibrant green-blue feathers", + "beak: short, pointed black beak", + "belly: bright yellow plumage", + "breast: iridescent turquoise feathers", + "crown: radiant deep blue head", + "forehead: turquoise-blue feathers", + "eyes: small, black, beady eyes", + "legs: slim, grayish legs", + "wings: shimmering green-blue wings", + "nape: lustrous blue plumage", + "tail: long, black, forked tail feathers", + "throat: vivid yellow feathers" + ], + "parakett auklet": [ + "back: sleek, coastline-hugging feathers", + "beak: short, stout, angled", + "belly: soft, whitish-gray plumage", + "breast: deep grayish-blue feathers", + "crown: jet-black feather cap", + "forehead: black feathers blending into bill", + "eyes: dark, expressive, and round", + "legs: short, sturdy, bluish legs", + "wings: compact, strong, and curved", + "nape: black feathers transitioning to gray", + "tail: short, wedge-shaped, and black", + "throat: white, pronounced feathered curve" + ], + "great tit": [ + "back: yellowish-green with black stripes", + "beak: short, sharp and black", + "belly: bright yellow with black central stripe", + "breast: vibrant yellow with bold black markings", + "crown: glossy blue-black color", + "forehead: deep blue fading to black", + "eyes: large, dark and outlined by white patches", + "legs: bluish-grey and slender", + "wings: blue and white with black flight feathers", + "nape: deep blue fading to black", + "tail: black with white outer edges and blue tint", + "throat: striking yellow with black markings" + ], + "patagonian sierra finch": [ + "back: olive-gray with light streaks", + "beak: short, stout, and cone-shaped", + "belly: pale grayish-white", + "breast: grayish-brown with small streaks", + "crown: olive-gray with light streaks", + "forehead: olive-gray with streaks", + "eyes: small, dark, and round", + "legs: short and strong with dark grayish-brown color", + "wings: olive-gray with brownish edges", + "nape: olive-gray with light streaks", + "tail: long and dark brown with olive-gray edges", + "throat: pale gray with faint streaks" + ], + "pink robin": [ + "back: soft pinkish-grey feathers", + "beak: petite, dark, cone-shaped", + "belly: light creamy-pink hue", + "breast: vibrant pink plumage", + "crown: dusky pink-grey feathers", + "forehead: subtle blush pink tinge", + "eyes: small and beady, dark hue", + "legs: slender, charcoal-grey limbs", + "wings: pink-grey feathers with dark edges", + "nape: delicate pink-grey feathering", + "tail: elongated pink-grey plumes", + "throat: rosy pink feathers" + ], + "plush crested jay": [ + "back: vibrant blue feathers", + "beak: sturdy black beak", + "belly: light grey fluff", + "breast: grey-blue feathers", + "crown: plush crest atop head", + "forehead: sleek blue and black", + "eyes: piercing white-ringed eyes", + "legs: strong grey legs", + "wings: bold blue wingspan", + "nape: sleek blue and black feathers", + "tail: elongated blue-black feathers", + "throat: grey-blue feathered throat" + ], + "pomarine jaeger": [ + "back: tawny-brown to dark-brown feathers", + "beak: stout, pointy, hooked tip", + "belly: pale gray to white feathers", + "breast: dark brown or grayish-brown feathers", + "crown: dark-brown head feathers", + "forehead: tawny-brown or dark-brown feathers, continuous with the crown", + "eyes: dark, round, with a piercing gaze", + "legs: long and slender, blue-gray or grayish-black", + "wings: long, pointed, with dark flight feathers", + "nape: dark-brown or grayish-brown feathers", + "tail: central tail feathers elongated in adults, typically white with black tips", + "throat: pale-gray or white feathers" + ], + "puna teal": [ + "back: blue-black with white speckles", + "beak: bluish-gray with black tip", + "belly: white with grayish-blue sides", + "breast: blue-black with white speckles", + "crown: black with green shimmer", + "forehead: dark gray-blue", + "eyes: dark brown with white surrounding", + "legs: grayish-yellow", + "wings: blue-black with green speculum and white patches", + "nape: black fading to gray-blue", + "tail: dark gray with white edging", + "throat: light gray" + ], + "purple finch": [ + "back: reddish-purple plumage", + "beak: short, conical, and stout", + "belly: soft white with streaks", + "breast: rosy-pink to reddish-purple", + "crown: purple-red with a peaked shape", + "forehead: similar reddish-purple hue", + "eyes: small, round, and dark", + "legs: slender and brownish-gray", + "wings: reddish-brown with white wing-bars", + "nape: purple-red plumage continued from the crown", + "tail: short and notched, with a reddish-brown color", + "throat: rosy-pink shade, blending with the breast" + ], + "purple swamphen": [ + "back: rich violet-blue feathers", + "beak: red cone-shaped bill", + "belly: cool blueish-grey plumage", + "breast: vibrant purple-blue feathers", + "crown: deep violet-blue plumage", + "forehead: striking red frontal shield", + "eyes: small, dark and beady", + "legs: long, strong, and red-orange", + "wings: broad and dark purple-blue", + "nape: rich blue-violet feathers", + "tail: short, dark, and fan-like", + "throat: pale purple-blue hue" + ], + "pyrrhuloxia": [ + "back: grayish-brown with streaks", + "beak: short, stout, and yellowish", + "belly: pale gray or whitish", + "breast: grayish-ivory tint", + "crown: bright red or reddish crest", + "forehead: red and tufted", + "eyes: dark with a white eye ring", + "legs: sturdy, grayish-brown", + "wings: dark gray with red-tinged edges", + "nape: grayish-brown with streaks", + "tail: long and dark gray with red-tinged edges", + "throat: pale gray or whitish" + ], + "rainbow lorikeet": [ + "back: vibrant green feathers", + "beak: bright orange, curved tip", + "belly: deep royal blue", + "breast: bright red plumage", + "crown: violet-blue plumage", + "forehead: velvety blue-black", + "eyes: dark brown with white rings", + "legs: gray with strong claws", + "wings: mix of green, blue and red feathers", + "nape: green feathers transitioning to blue", + "tail: long, red feathers with hints of green and blue", + "throat: vibrant yellow with blue-black streaks" + ], + "razorbill": [ + "back: black sleek feathers", + "beak: black, thick and sharp-edged", + "belly: white, smooth feathers", + "breast: white and rounded", + "crown: black, rounded top", + "forehead: black with a curved shape", + "eyes: dark, medium-sized and alert", + "legs: short, black and webbed", + "wings: black, streamlined for swimming", + "nape: black, narrow feathers", + "tail: short, black with pointed feathers", + "throat: white, smooth and curved" + ], + "red bearded bee eater": [ + "back: vibrant green feathers", + "beak: long, slender, and slightly-curved", + "belly: soft orange-to-yellow hues", + "breast: brilliant reddish-orange plumage", + "crown: bright green with blue tinge", + "forehead: narrow blue band above the beak", + "eyes: piercing black with thin eyering", + "legs: short and sturdy, light brown", + "wings: vivid green with dark feather edges", + "nape: green-to-blue gradient", + "tail: long, blue-green feathers with needle-like tips", + "throat: fluffy red beard-like feathers" + ], + "red bellied pitta": [ + "back: vibrant green-blue feathers", + "beak: short, sturdy, and black", + "belly: bright red-orange patch", + "breast: bluish-green plumage", + "crown: green with blue highlights", + "forehead: greenish-blue feathers", + "eyes: black and piercing", + "legs: dark and slender", + "wings: brilliant blue-green", + "nape: greenish with blue accents", + "tail: short, blue-green feathers", + "throat: pale bluish-white" + ], + "red billed tropicbird": [ + "back: sleek, white feathers", + "beak: long, thin, and vibrant red", + "belly: pure white underside", + "breast: smooth, white chest feathers", + "crown: rounded white head", + "forehead: unmarked, white plumage", + "eyes: dark, with a narrow black stripe", + "legs: short, webbed, black feet", + "wings: long, white, pointed feathers", + "nape: white connecting to the crown", + "tail: distinctive, elongated white streamers", + "throat: white, blending with breast and belly" + ], + "red browed finch": [ + "back: olive-green with light streaks", + "beak: bright red-orange tapering point", + "belly: pale, off-white with minimal markings", + "breast: light grayish-brown, lightly streaked", + "crown: grayish-brown with red brow stripe", + "forehead: red stripe extending above eye", + "eyes: black with thin white eye-ring", + "legs: pinkish, slender with small claws", + "wings: olive-green with bold white bar", + "nape: grayish-brown, in line with crown", + "tail: olive-green with white tip", + "throat: light grayish-brown, blending into breast" + ], + "red faced cormorant": [ + "back: sleek dark plumage", + "beak: long, slender, and hooked", + "belly: dark-feathered underside", + "breast: smooth, dark feathers", + "crown: crimson-colored crest", + "forehead: glowing red forehead", + "eyes: sharp, black, and piercing", + "legs: sturdy orange-red legs", + "wings: large, extended dark wingspan", + "nape: rich deep-colored feathers", + "tail: long and dark tapering tail feathers", + "throat: dark and smooth feathered" + ], + "red faced warbler": [ + "back: bright olive-green feathers", + "beak: slender, pointed black bill", + "belly: white with light streaks", + "breast: white with gray streaks", + "crown: ruby red feathers", + "forehead: red merging with white cheeks", + "eyes: round, prominent black orbs", + "legs: pale pinkish-gray, long", + "wings: olive-green with darker tips", + "nape: distinct white collar", + "tail: olive-green, forked-shaped", + "throat: brilliant white patch" + ], + "red fody": [ + "back: vibrant red feathers", + "beak: sharp, pointed black beak", + "belly: brilliant red plumage", + "breast: stunning red chest feathers", + "crown: bright red crest atop head", + "forehead: red feathers extending to eye area", + "eyes: small, dark attentive eyes", + "legs: slender black legs and claws", + "wings: red and black mix of feathers", + "nape: radiant red feathers near neckline", + "tail: elongated red and black feathers", + "throat: eye-catching red plumage" + ], + "red headed duck": [ + "back: smooth feathers in brown and black shades", + "beak: narrow and pointed with pale bluish-gray color", + "belly: white or light grey with a fine pattern of dark speckles", + "breast: deep chestnut-brown with grayish-white edges on feathers", + "crown: bright red feathers on the head's top", + "forehead: vivid red, continuous with the crown", + "eyes: dark, surrounded by red feathers", + "legs: short, sturdy with dark grey or black color", + "wings: elongated with dark brown and white markings", + "nape: red feathers transitioning to brown and black on the back", + "tail: short, fan-shaped with brown and white feathers", + "throat: rich red, contrasting with the white belly" + ], + "red headed woodpecker": [ + "back: black and white striped pattern", + "beak: strong, slightly curved, black", + "belly: white, fairly unmarked", + "breast: white, contrasting with black back", + "crown: bright red, eye-catching", + "forehead: continuation of red crown", + "eyes: black, sharply focused", + "legs: grayish, strong with sharp claws", + "wings: black with prominent white spots", + "nape: red, connecting crown to back", + "tail: black with white outer feathers", + "throat: white, merges with belly" + ], + "red knot": [ + "back: light gray with streaks of white", + "beak: straight, slender black", + "belly: clean white with gray spots", + "breast: grayish-white with faint streaks", + "crown: reddish-brown with white spots", + "forehead: light gray, blending with crown", + "eyes: dark, round with white eye-ring", + "legs: short, black", + "wings: brownish-gray with white edges", + "nape: grayish-brown with white streaks", + "tail: dark brown with white tips", + "throat: white, blending with breast" + ], + "red legged honeycreeper": [ + "back: vibrant turquoise feathers", + "beak: long, slender, black", + "belly: light teal plumage", + "breast: deep blue feathers", + "crown: eye-catching azure crest", + "forehead: bright blue plumage", + "eyes: dark, piercing gaze", + "legs: vivid red with sharp talons", + "wings: turquoise feathers with distinct markings", + "nape: contrasting blue and turquoise feathers", + "tail: elongated, iridescent blue feathers", + "throat: deep blue plumage" + ], + "red naped trogon": [ + "back: vibrant green feathers covering the bird's upper back", + "beak: sharp, short, and slightly curved black beak", + "belly: soft, pale gray feathers extending from breast to tail", + "breast: bright crimson red feathers at the upper chest area", + "crown: brilliant green and blue feathers on top of the head", + "forehead: green-blue feathers transitioning from the crown to the face", + "eyes: round, black, piercing eyes on each side of the face", + "legs: two slender, gray legs with strong, sharp claws for perching", + "wings: long, green-blue feathers with black and white bars and patterns", + "nape: red patch of feathers at the back of the head and neck", + "tail: long, green-blue feathers with black and white bars at the tips", + "throat: white feathers transitioning from the red breast to the gray belly" + ], + "red tailed thrush": [ + "back: reddish-brown feathers", + "beak: strong, slightly curved, black", + "belly: light cream with dark spots", + "breast: pale orange with black spots", + "crown: reddish-brown on the head", + "forehead: lighter, smoother feathers", + "eyes: dark, beady with a thin black outline", + "legs: strong, scaled, grey", + "wings: reddish-brown with dark bars", + "nape: lighter reddish-brown feathers", + "tail: long, red with black horizontal stripes", + "throat: pale beige, unspotted" + ], + "red winged blackbird": [ + "back: jet black feathers covering", + "beak: sharply pointed, grayish-blue", + "belly: sleek black underside", + "breast: black feathers meeting at the center", + "crown: subtle peak with black plumage", + "forehead: smooth, black space between eyes and beak", + "eyes: small, dark orbs on the side of the head", + "legs: sturdy, dark gray to black appendages", + "wings: long black feathers with red and yellow patches on the shoulders", + "nape: black plumage connecting head and back", + "tail: fan-shaped black feathers creating a sleek profile", + "throat: black feathers curve gracefully under the head" + ], + "red wiskered bulbul": [ + "back: olive-green shade with distinct feathers", + "beak: sharp, thin, slightly curved, black color", + "belly: light greyish-white, gentle curve", + "breast: warm brown, soft plumage", + "crown: black with pointed crest", + "forehead: reddish patch between beak and eyes", + "eyes: large, dark brown, alert expression", + "legs: slender, grey, featherless", + "wings: brownish-black with white tips, medium length", + "nape: olive-brown, smooth transition from crown", + "tail: long with white outer feathers, black center feathers", + "throat: light greyish-white, unmarked" + ], + "regent bowerbird": [ + "back: velvety black plumage", + "beak: slightly curved, pale grayish-yellow", + "belly: black with hints of blue iridescence", + "breast: bright yellow with hints of orange", + "crown: glossy blue-black with opalescent sheen", + "forehead: striking golden-orange crest", + "eyes: bright silver, surrounded by black feathers", + "legs: sturdy grayish-black with scaled texture", + "wings: black and blue iridescent feathers, slightly rounded", + "nape: smooth black with faint blue iridescence", + "tail: long, black, and slightly tapered with a flared, fan-like shape", + "throat: vibrant golden-yellow with fine, lace-like feather patterns" + ], + "rock dove": [ + "back: light gray feathers with darker shading", + "beak: short and sturdy, pale orange with dark tip", + "belly: pale gray with slightly darker feather edges", + "breast: slightly iridescent pinkish-purple hue", + "crown: smooth, light gray feathers", + "forehead: light gray plumage seamlessly blending into the crown", + "eyes: bright orange with thin black pupil and delicate eye-ring", + "legs: reddish-pink, scaly texture with strong talons", + "wings: light gray with black barring and white fringes", + "nape: grayish-blue feathers blending into the back", + "tail: dark gray feathers with white terminal band", + "throat: irisdescent green or purple patch on sides, surrounded by light gray feathers" + ], + "rose breasted cockatoo": [ + "back: pale pinkish-white feathers", + "beak: large, light grey curved beak", + "belly: soft pinkish-white feathers", + "breast: rosy pink plumage with white accents", + "crown: crest of white and pink feathers", + "forehead: white feathers fading into pink", + "eyes: expressive black eyes with white eye-rings", + "legs: short grey legs with strong claws", + "wings: white feathers with pink undertones", + "nape: pinkish-white feathers leading to crest", + "tail: long, white fan-shaped feathers", + "throat: white with a hint of pink coloration" + ], + "rose breasted grosbeak": [ + "back: black feathers with white patches", + "beak: short, stout, and conical", + "belly: white with faint streaking", + "breast: rose-red splashes on male, pale on female", + "crown: black on males, brown or gray on females", + "forehead: black on males, brown or gray on females", + "eyes: dark with white eye-ring", + "legs: pale pink or grayish", + "wings: black and white with large white patches", + "nape: black on males, brown or gray on females", + "tail: black with white outer feathers", + "throat: black on males, white or gray on females" + ], + "roseate spoonbill": [ + "back: pinkish-white with hints of orange", + "beak: long, flat, spoon-shaped and pale greyish", + "belly: pale pink with white undertones", + "breast: rosy pink feathers fading to white", + "crown: bald, pale green and slate blue skin", + "forehead: pale white patch above the beak", + "eyes: reddish surrounded by a blue thin patch", + "legs: long, thin with greyish-pink scales", + "wings: mix of vibrant pink, orange and white feathers", + "nape: rosy pink and white feathers", + "tail: downward-curved pink feathers with orange streaks", + "throat: white and pink feathers under the beak" + ], + "rosy faced lovebird": [ + "back: vibrant green plumage", + "beak: sharp, pointed and black", + "belly: pale grayish-green feathers", + "breast: bright orange-yellow feathers", + "crown: deep blue-violet hue", + "forehead: rosy pink patch", + "eyes: round, black and alert", + "legs: short, gray with strong grip", + "wings: green with black flight feathers", + "nape: green with transition to blue-violet", + "tail: long, squared-off with green and blue feathers", + "throat: light grayish-green, connecting to breast" + ], + "rough leg buzzard": [ + "back: brown and white speckled plumage", + "beak: sharp, hooked, grayish-black", + "belly: white with rufous barring", + "breast: light with rufous streaking", + "crown: dark brown with lighter streaks", + "forehead: tawny with darker streaks", + "eyes: piercing yellow or orange", + "legs: feathered, whitish with dark bands", + "wings: broad, dark brown, white underwing with dark spots", + "nape: light brown with some white spotting", + "tail: banded white and dark brown", + "throat: white with light rufous streaking" + ], + "royal flycatcher": [ + "back: vibrant reddish-brown feathers", + "beak: long, black, slightly hooked tip", + "belly: pale yellowish-white plumage", + "breast: bright yellow-feathered chest", + "crown: prominent, fan-shaped crest with red or yellow feathers", + "forehead: smooth feathers transitioning into the colorful crown", + "eyes: small, dark, alert gaze", + "legs: slender, grayish-black, with sharp claws", + "wings: brownish-gray with black and white markings", + "nape: transition from the colorful crest to the brownish back", + "tail: long, brownish-gray with black and white bars", + "throat: bright yellow or white, complementing breast color" + ], + "ruby crowned kinglet": [ + "back: olive-green feathers", + "beak: black, short, and sharp", + "belly: pale yellow with faint streaks", + "breast: light grayish-green plumage", + "crown: bright red crest (male), duller crest (female", + "forehead: pale grayish-white plumage", + "eyes: small and black, encircled by white eye-ring", + "legs: black and slender with sharp claws", + "wings: olive-green with white wing-bars", + "nape: greenish-gray feathers", + "tail: short and dark with white outer tips", + "throat: grayish-white with faint streaking" + ], + "ruby throated hummingbird": [ + "back: iridescent green feathers", + "beak: long, slender, and slightly curved", + "belly: light gray and white feathers", + "breast: vibrant red throat patch (male) or smudged gray patch (female", + "crown: glistening green plumage on top of the head", + "forehead: bright green plumage above the eyes", + "eyes: small, dark, and round", + "legs: delicate and extremely short", + "wings: long, narrow, and pointed, capable of rapid movement", + "nape: green feathers transitioning to gray", + "tail: forked with white-tipped outer feathers (male) or rounded and banded (female", + "throat: brilliant red gorget (male) or white to light gray (female" + ], + "ruddy shelduck": [ + "back: warm, rusty-brown with pale fringes", + "beak: black, thick, and slightly upturned", + "belly: beige or creamy white, with a slight tinge of rusty-brown", + "breast: deep, rich golden-brown fading to lighter shade near belly", + "crown: rusty-orange, bordering on the forehead", + "forehead: pale, creamy orange blending into the crown", + "eyes: dark brown, with a thin, white eye ring", + "legs: dark slate-grey or black, with webbed feet", + "wings: rusty-brown with shiny, iridescent green speculum feathers", + "nape: same rusty-orange as the crown, flowing down the neck", + "tail: dark brown with lighter, pale edges", + "throat: pale creamy white, fading into the breast coloration" + ], + "rudy kingfisher": [ + "back: brilliant blue and green feathers", + "beak: long, bright red-orange", + "belly: white and soft", + "breast: orange with bluish feathers", + "crown: blue-green with distinctive white markings", + "forehead: blue-green with a white stripe", + "eyes: dark, intense gaze", + "legs: short and red-orange", + "wings: vibrant blue-green with black tips", + "nape: blue-green feathers and white markings", + "tail: long, bright blue with black bands", + "throat: white, contrasting with breast color" + ], + "rufous trepe": [ + "back: reddish-brown feathers", + "beak: slender, slightly curved, and dark", + "belly: pale and white with black-brown streaks", + "breast: rich rufous color with streaks", + "crown: rufous-orange with a crest", + "forehead: rufous-orange blending into the crown", + "eyes: dark with a white eye-ring", + "legs: long and strong, with olive-brown color", + "wings: rufous-brown with darker flight feathers", + "nape: continuous rufous from crown, slightly paler", + "tail: reddish-brown with dark central feathers", + "throat: white streaked with rufous-brown" + ], + "rufuos motmot": [ + "back: olive-green feathers with a slight sheen", + "beak: long, slightly curved, black", + "belly: rufous-orange with light blue streaks", + "breast: pale green-blue transitioning to rufous-orange", + "crown: black with a blue stripe", + "forehead: black with a short blue line", + "eyes: large, dark, with white crescent below", + "legs: sturdy, dark gray", + "wings: green-blue with black tips and rufous-orange patches", + "nape: blue stripe connecting crown to mantle", + "tail: long, dark blue with black and white central feathers forming unique \"racquet\" shape", + "throat: light turquoise-blue" + ], + "samatran thrush": [ + "back: olive-brown feathers", + "beak: short, stout, and pale", + "belly: pale grey or whitish", + "breast: gray with faint brownish streaks", + "crown: dark brown with faint streaks", + "forehead: brownish-gray feathers", + "eyes: dark, encircled by pale rings", + "legs: long, slender, and pale", + "wings: brownish-black with light streaks", + "nape: olive-brown with faint streaks", + "tail: dark brown, often fanned", + "throat: pale grey, lightly streaked with brown" + ], + "sandhill crane": [ + "back: sleek, grayish-feathered", + "beak: long, slender, and pointed", + "belly: smooth, light-toned feathers", + "breast: curved, light gray plumage", + "crown: small patch of red skin", + "forehead: white streak above beak", + "eyes: round, dark, and focused", + "legs: lengthy, thin, and sturdy", + "wings: broad, powerful, and gray", + "nape: lengthy with grayish-brown feathers", + "tail: short, fan-shaped, and pointed feathers", + "throat: light gray, smoothly feathered" + ], + "satyr tragopan": [ + "back: vibrant reddish-orange feathers with white speckles", + "beak: short, curved, light-colored", + "belly: deep red with white speckles", + "breast: bright red, adorned with blue inflatable pouches during mating", + "crown: dark, short crest feathers", + "forehead: blueish-grey bare skin", + "eyes: black with a yellowish iris", + "legs: sturdy, greyish-brown, and scaled", + "wings: reddish-orange with white speckled feather patterns", + "nape: deep red feathers with white speckles", + "tail: long, white-tipped, black and brown feathers", + "throat: bright blueish-grey bare skin" + ], + "say phoebe": [ + "back: olive-grey plumage", + "beak: short, straight, black", + "belly: buff-white feathers", + "breast: pale grey-brown", + "crown: greyish-brown with slight crest", + "forehead: faint pale eyebrow", + "eyes: black with fine white eye-ring", + "legs: dark and slender", + "wings: dusky with white edges", + "nape: olive-grey shading", + "tail: dark, forked, with white outer feathers", + "throat: pale grey-brown" + ], + "scarlet crowned fruit dove": [ + "back: vibrant green feathers", + "beak: short and powerful, yellowish-orange", + "belly: light green with small specks", + "breast: deep orange fading to yellow", + "crown: brilliant red-orange with small feathers", + "forehead: bright green fading into the crown", + "eyes: small, black, and beady", + "legs: short and yellow-green", + "wings: wide, green with subtle orange-yellow highlights", + "nape: bright green, transitioning to the crown", + "tail: elongated, green with orange-yellow tips", + "throat: lime green with faint speckles" + ], + "scarlet faced liocichla": [ + "back: vibrant green and yellow feathers", + "beak: short, strong, and black", + "belly: rich, yellowish-orange hue", + "breast: striking scarlet-red plumage", + "crown: vivid red with black streaks", + "forehead: intense scarlet patch", + "eyes: dark, alert, and expressive", + "legs: sturdy and greyish-brown", + "wings: bold green and yellow coloring with black patterns", + "nape: smooth transition of red to green-yellow feathers", + "tail: long and green with yellow and black highlights", + "throat: brilliant scarlet-red feathers" + ], + "scarlet ibis": [ + "back: vibrant red feathers covering the upper body", + "beak: long, slender, downward-curving", + "belly: lighter red to pinkish feathers, slightly fluffy", + "breast: rich scarlet color, smooth feathers", + "crown: red-feathered, gently rounded", + "forehead: red feathers meeting the beak base", + "eyes: round, black eyes, contrast with red feathers", + "legs: long, thin, dark grey with partially webbed feet", + "wings: brilliant red, elongated and elegant", + "nape: red feathers transitioning from head to back", + "tail: long, red feathers extending past body", + "throat: slightly paler red, blending with breast and belly" + ], + "scarlet macaw": [ + "back: vibrant blue-yellow feathers", + "beak: large, strong, hooked, and white", + "belly: bright yellow plumage", + "breast: vivid red feathers", + "crown: red feathers atop head", + "forehead: red plumage transitioning into blue and green", + "eyes: round, expressive, surrounded by white skin", + "legs: sturdy, dark grey, scaly", + "wings: large, colorful, with red, yellow, and blue feathers", + "nape: red feathers transitioning into blue", + "tail: long, red feathers with blue and yellow bands", + "throat: brilliant red plumage" + ], + "scarlet tanager": [ + "back: vibrant red with black streaks", + "beak: short, thick, and grayish-black", + "belly: bright scarlet red", + "breast: rich crimson color", + "crown: deep scarlet hue", + "forehead: intense red shade", + "eyes: small, dark and expressive", + "legs: grayish-black and sturdy", + "wings: black with red highlights", + "nape: red transitioning to black", + "tail: long, black, and fan-shaped", + "throat: brilliant red hue" + ], + "shoebill": [ + "back: blue-grey feathers with a horizontal posture", + "beak: large, hooked, boat-like and light grey", + "belly: pale grey with a mix of white feathers", + "breast: broad, blue-grey with a powerful build", + "crown: flat, blue-grey feathers, bald at the head-top", + "forehead: broad and flat with blue-grey feathers", + "eyes: yellow to white with a piercing stare", + "legs: long, stork-like, grey with strong feet", + "wings: blue-grey, wide and long, well-suited for soaring", + "nape: smooth, blue-grey feathers covering the neck", + "tail: short, fan-shaped, blue-grey feathers", + "throat: blue-grey with a loose, inflatable gular pouch" + ], + "short billed dowitcher": [ + "back: covered in dark brown feathers", + "beak: relatively short, straight, and pointed", + "belly: white with brownish speckles", + "breast: light brown with dark streaks", + "crown: dark brown with light spots", + "forehead: pale brown with darker markings", + "eyes: small and black, surrounded by a white eye-ring", + "legs: yellowish-green and slender", + "wings: dark brown with white tips and fringes", + "nape: brown with light speckles", + "tail: short and dark with white edges", + "throat: white and unmarked" + ], + "smith longspur": [ + "back: streaked brown with black markings", + "beak: short, conical, and yellowish", + "belly: white and unmarked", + "breast: buff-orange with dark streaks", + "crown: rust-colored with a white central stripe", + "forehead: pale with a whitish stripe above the eye", + "eyes: small and dark, surrounded by a white eye-ring", + "legs: long and dark, with strong claws", + "wings: black with white and rust-colored edgings", + "nape: brown with faint streaks", + "tail: dark with white outer feathers and a forked shape", + "throat: white, contrasting with buff-orange breast" + ], + "snow partridge": [ + "back: white with black bars and spots", + "beak: short and curved, dark gray", + "belly: white with minimal markings", + "breast: white, barred with black and brown", + "crown: white, streaked with black", + "forehead: white, slightly streaked", + "eyes: dark, surrounded by grayish-white feathers", + "legs: feathered, grayish-white", + "wings: rounded, white with black and brown bars", + "nape: white with subtle streaks", + "tail: short, black and white bands", + "throat: white, unmarked" + ], + "snowy egret": [ + "back: white, sleek feathers", + "beak: long, slender, black", + "belly: soft, white plumage", + "breast: rounded, white feathers", + "crown: white plumage, sometimes with wispy plumes", + "forehead: smooth, white feathers", + "eyes: bright yellow with black pupils", + "legs: long, black, and thin", + "wings: large, white, and feathered", + "nape: white feathers, possible plumes during breeding season", + "tail: short, white, fan-like feathers", + "throat: smooth, white plumage" + ], + "snowy owl": [ + "back: covered in white feathers with some dark speckles", + "beak: short, black, and hooked", + "belly: white with minimal dark spots", + "breast: white with light speckling", + "crown: rounded and covered in white feathers", + "forehead: white with a smooth appearance", + "eyes: large, round, and yellow", + "legs: white feathers with black claws", + "wings: broad and white with dark spots", + "nape: white with no distinct markings", + "tail: white feathers with dark bands", + "throat: white and relatively unmarked" + ], + "snowy plover": [ + "back: pale sandy-brown with subtle markings", + "beak: slender, black, and slightly curved", + "belly: white and unmarked", + "breast: pale brown blending into white lower down", + "crown: sandy-brown with thin white streak", + "forehead: white with black patch", + "eyes: dark, encircled by a thin eye-ring", + "legs: greyish to black, thin and long", + "wings: sandy-brown with black and white pattern", + "nape: sandy-brown with white streak", + "tail: short with white edges and dark central feathers", + "throat: white, unmarked" + ], + "sora": [ + "back: brownish-grey feathers with dark streaks", + "beak: short, conical, and yellowish", + "belly: whitish with black and white barring", + "breast: greyish-brown with white and dark streaks", + "crown: black with a white central stripe", + "forehead: black with white streaks", + "eyes: small and dark", + "legs: long, greenish-yellow, and slender", + "wings: short and rounded with brown, black, and white feathers", + "nape: brownish-grey with dark streaks", + "tail: short, dark, and slightly forked", + "throat: white with dark streaks" + ], + "spangled cotinga": [ + "back: vibrant turquoise-blue feathers", + "beak: small, dark, and pointed", + "belly: bright turquoise-blue hue", + "breast: deep blue-turquoise plumage", + "crown: saturated blue-violet shade", + "forehead: brilliant blue-violet feathers", + "eyes: small, dark, and focused", + "legs: slender, dark, and twig-like", + "wings: broad with cobalt-blue markings", + "nape: shimmering blue-purple color", + "tail: long, blue feathers with darker spangles", + "throat: iridescent blue-violet sheen" + ], + "splendid wren": [ + "back: vibrant blue feathers", + "beak: slender black beak", + "belly: pale cream-colored plumage", + "breast: delicate sky-blue feathers", + "crown: striking cobalt blue crest", + "forehead: bright electric blue streak", + "eyes: shiny black with white outline", + "legs: sturdy dark gray appendages", + "wings: mixture of blue, black, and white feathers", + "nape: deep blue neck feathers", + "tail: long, black with a hint of blue, fan-shaped", + "throat: soft white chest feathers" + ], + "spoon biled sandpiper": [ + "back: light brownish-grey with dark feather edges", + "beak: long, flattened, and spoon-shaped", + "belly: white with light brown streaks", + "breast: white with brown speckles", + "crown: pale grey-brown with darker streaks", + "forehead: pale grey-brown, merging with crown", + "eyes: dark with thin white eyering", + "legs: long, slender, and dark grey", + "wings: grey-brown with white edges on flight feathers", + "nape: pale grey-brown with subtle streaks", + "tail: grey-brown with white outer feathers and dark band", + "throat: white with light brown speckles" + ], + "spotted catbird": [ + "back: greenish with dappled spots", + "beak: dark grey and hooked", + "belly: cream-colored with dark spots", + "breast: cream with irregular spots", + "crown: greenish and densely feathered", + "forehead: bright green strip", + "eyes: black with thin white eye-ring", + "legs: strong and greyish-brown", + "wings: green with dapple pattern", + "nape: greenish with subtle spots", + "tail: long and green with brown bands", + "throat: cream with dark streaks" + ], + "spotted whistling duck": [ + "back: deep brown feathers with black-edged pattern", + "beak: dark gray and slightly curved", + "belly: white feathers with black speckles", + "breast: brownish-gray with lighter spots", + "crown: dark brown extending to nape", + "forehead: slightly lighter brown with small spots", + "eyes: bright and round with black pupils", + "legs: long and reddish-orange", + "wings: brown and white with distinct spots pattern", + "nape: dark brown, blending into the crown", + "tail: long, dark brown feathers with black barring", + "throat: lighter, rich brown with smaller spots" + ], + "squacco heron": [ + "back: light brown with white streaks", + "beak: long, pointed, and yellowish-orange", + "belly: white with light brown spots", + "breast: creamy white with subtle brown striping", + "crown: golden-brown plumage with a crest", + "forehead: white, blending into the crown", + "eyes: bright yellow, surrounded by white feathers", + "legs: long, slender, and yellow", + "wings: white with light brown patterns and markings", + "nape: golden-brown, transitioning into back coloration", + "tail: white with light brown stripes", + "throat: white, clean with no markings" + ], + "sri lanka blue magpie": [ + "back: iridescent blue feathers", + "beak: sturdy, blackish-blue hooked beak", + "belly: vibrant blue plumage", + "breast: rich cobalt-blue feathers", + "crown: bright blue slicked-back crest", + "forehead: deep blue, slightly curved feathers", + "eyes: large, dark brown orbs", + "legs: sturdy, dark blue legs with sharp talons", + "wings: elongated, iridescent blue feathers with a hint of chestnut", + "nape: curved blue plumage towards the shoulders", + "tail: long, cobalt blue feathers with chestnut tips", + "throat: deep blue feathers transitioning into the breast" + ], + "stork billed kingfisher": [ + "back: blue and green iridescent feathers", + "beak: large, bright red-orange bill", + "belly: white with slight blue tint", + "breast: white and well-rounded", + "crown: blue and green with a slight crest", + "forehead: broad, blue-green iridescent feathers", + "eyes: dark, medium-sized, and alert", + "legs: short and bright red-orange", + "wings: large with bright blue and green feathers", + "nape: blue and green, connects to the crown", + "tail: long and blue, slightly forked", + "throat: white and smooth" + ], + "striated caracara": [ + "back: striated dark brown and black feather pattern", + "beak: strong, hooked, black beak", + "belly: creamy-white with black streaks", + "breast: white with thin dark brown stripes", + "crown: dark brown with faint streaks", + "forehead: black with a few white streaks", + "eyes: piercing, intelligent gaze with yellow-orange eye rings", + "legs: scaled, dark grey with black talons", + "wings: long, broad with dark brown and black striped pattern", + "nape: dark brown with faint streaks", + "tail: alternating cream and dark brown bands", + "throat: white with black horizontal streaks" + ], + "striped owl": [ + "back: streaked dark and light brown pattern", + "beak: short, black, hooked", + "belly: off-white, striped with brown accents", + "breast: beige with thin brown stripes", + "crown: dark brown, gray patterned streaks", + "forehead: pale gray with fine brown streaks", + "eyes: large, dark, surrounded by brown facial disks", + "legs: feathered, yellowish-brown", + "wings: pale and dark brown stripes, rounded tips", + "nape: light gray, streaked with brown", + "tail: short, brown barred with white bands", + "throat: off-white, lightly streaked" + ], + "stripped manakin": [ + "back: bright olive-green", + "beak: short and curved", + "belly: lemon-yellow", + "breast: vibrant golden-yellow", + "crown: glistening iridescent blue", + "forehead: bold white stripe", + "eyes: small and black", + "legs: thin and gray", + "wings: olive-green with yellow edges", + "nape: rich olive-green", + "tail: long and olive-green", + "throat: brilliant golden-yellow" + ], + "stripped swallow": [ + "back: sleek feathers with iridescent blue-green hues", + "beak: short and sharp, designed for catching insects", + "belly: pale, creamy-white with some light streaks", + "breast: light and slightly speckled, blending into belly", + "crown: vibrant blue-green, streamlined along the head", + "forehead: bright blue-green, continuing from crown", + "eyes: dark and small, alert and quick to spot prey", + "legs: short and sturdy, perfect for perching on branches", + "wings: elongated and pointed, with unique striping", + "nape: iridescent blue-green, transitions smoothly to back", + "tail: slightly forked and deeply striped, aiding in swift flight", + "throat: white or pale in color, leading to the breast area" + ], + "sunbittern": [ + "back: reddish-brown with black stripe patterns", + "beak: long, slender, and pointed", + "belly: white with dark markings", + "breast: pale yellowish-brown with fine black stripes", + "crown: streaked black and white", + "forehead: white with black streaks", + "eyes: dark brown, surrounded by thin white eye-ring", + "legs: long, thin, and yellowish", + "wings: large, striking pattern of red, yellow, and black bands", + "nape: black and white stripes", + "tail: long, broad, black and grey with white bands", + "throat: white with lateral black streaks" + ], + "superb starling": [ + "back: vibrant blue sheen with metallic tones", + "beak: short and thick, black in color", + "belly: bright white with contrasting blue edges", + "breast: rich chestnut hue that transitions to blue", + "crown: shiny dark blue with iridescence", + "forehead: brilliant blue with metallic shine", + "eyes: deep black, surrounded by striking white eye-ring", + "legs: grayish-blue, sturdy and slender", + "wings: blue-black with a shining green sheen", + "nape: deep blue, bold and iridescent", + "tail: dark blue, slightly elongated and iridescent", + "throat: white, bordered by a blue-black band" + ], + "swinhoe pheasant": [ + "back: vibrant blue-green with black barring", + "beak: short, curved, grayish-white", + "belly: dark purple-blue plumes", + "breast: iridescent purple-blue feathers", + "crown: glossy dark blue", + "forehead: white extending to upper cheeks", + "eyes: bright, attentive, surrounded by blue skin", + "legs: strong, powerful, dark-colored", + "wings: mix of blue, purple, green, and black feathers", + "nape: metallic blue feathers transitioning from crown", + "tail: long, flowing, with multiple shades of blue, green, and black", + "throat: white feathers contrasting with the surrounding colors" + ], + "taiwan magpie": [ + "back: iridescent green-black plumage", + "beak: strong, black, slightly curved", + "belly: white-feathered and elongated", + "breast: snowy-white and sizeable", + "crown: glossy black with a slight crest", + "forehead: smooth, black, and slightly rounded", + "eyes: dark, expressive, with bold white crescents", + "legs: sturdy, black, with sharp talons", + "wings: long, green-blue, with trailing white and black feathers", + "nape: thick, black feathers tapering down the neck", + "tail: long, white, with streaming black feathers", + "throat: velvety black feathers, connecting to the breast" + ], + "tasmanian hen": [ + "back: dark brown with subtle gray spots", + "beak: short, stout, and blackish-gray", + "belly: off-white with gray-brown barring", + "breast: pale gray-brown with darker speckling", + "crown: brownish-gray with faint lighter spots", + "forehead: slightly paler brown-gray with thin barring", + "eyes: dark brown with a pale gray eye-ring", + "legs: sturdy and dark gray-brown", + "wings: brownish-gray with visible light-edged feathers", + "nape: gray-brown, slightly darker than the crown", + "tail: rounded, dark brown with grayish bars and white tips", + "throat: off-white, demarcated from the breast by a faint brown streak" + ], + "tawny frogmouth": [ + "back: mottled brown and gray plumage", + "beak: wide and hooked, whitish-gray", + "belly: pale gray with fine dark streaks", + "breast: light brownish-gray, striated pattern", + "crown: rounded, gray-brown feathers", + "forehead: light gray-brown with delicate streaks", + "eyes: large and dark with silvery-gray eye rings", + "legs: strong, feathered gray-brown", + "wings: mottled gray and brown, broad and rounded", + "nape: gray-brown with white streaks", + "tail: long and tapering, gray-brown with fine bars", + "throat: softly barred, pale grayish-brown" + ], + "teal duck": [ + "back: iridescent greenish-blue feathers", + "beak: short, dark grey bill", + "belly: light greyish-white feathers", + "breast: chestnut-brown plumage", + "crown: dark greenish-black, capped head", + "forehead: greenish-black fading to lighter feathers", + "eyes: dark, round, almond-shaped", + "legs: short, dark grey, webbed feet", + "wings: bluish-green speculum with white bar", + "nape: greenish-black with lighter feather edging", + "tail: pointed, black and white feathers", + "throat: white feather patch, sharply defined" + ], + "tit mouse": [ + "back: gray with slight olive tinge", + "beak: small, pointed, black", + "belly: off-white, sometimes pale-yellowish", + "breast: lighter gray or off-white", + "crown: dark gray-black, slightly crested", + "forehead: dark gray-black, connected to the crown", + "eyes: black, prominent against lighter face", + "legs: thin, gray-black, strong for perching", + "wings: gray-blue, black and white edging on feathers", + "nape: gray, slightly paler than back", + "tail: gray-blue, black and white edging on feathers", + "throat: off-white, often with a pale-yellowish hue" + ], + "touchan": [ + "back: sleek, grayish-brown feathers", + "beak: slim, pointed, dark-colored", + "belly: light cream, soft plumage", + "breast: pale gray, fluffy feathers", + "crown: grayish feathers with a hint of purple", + "forehead: smooth, continuous gradient with crown", + "eyes: small, round, inquisitive gaze", + "legs: thin, long, sturdy bird's legs", + "wings: wide, grayish-brown with white streaks", + "nape: subtle blend of gray and brown feathers", + "tail: fan-like, elongated, grayish-brown", + "throat: lighter in color, hint of cream against a gray base" + ], + "townsend warbler": [ + "back: olive-green with black streaks", + "beak: thin, sharp, black", + "belly: yellowish-white", + "breast: bright yellow with black streaks", + "crown: black or dark gray with yellow sides", + "forehead: bright yellow", + "eyes: black with white eye rings", + "legs: pale pinkish-gray", + "wings: dark gray with two white wing bars", + "nape: olive-green", + "tail: dark gray with white edges", + "throat: black or dark gray" + ], + "tree swallow": [ + "back: iridescent blue-green upperparts", + "beak: small, thin and sleek black", + "belly: bright white underparts", + "breast: white, smoothly curving into belly", + "crown: vibrant blue-green with a slight sheen", + "forehead: iridescent blue-green transitioning into the crown", + "eyes: dark, slightly almond-shaped, centered on the head", + "legs: short, thin, and black with tiny, clawed feet", + "wings: long, pointed, and blue-green with black flight feathers", + "nape: sleek blue-green connecting the crown and back", + "tail: slightly forked, black with blue-green tint, and white outer edges", + "throat: white, curving up around cheeks" + ], + "tricolored blackbird": [ + "back: black feathers with glossy sheen", + "beak: long, slender, and pointed", + "belly: reddish-brown with black streaks", + "breast: reddish-brown with black streaks", + "crown: glossy black feathers", + "forehead: black with a white stripe on the edges", + "eyes: dark and round, surrounded by a thin white ring", + "legs: sturdy, black with sharp talons", + "wings: black with white patch on primaries", + "nape: black, glossy feathers", + "tail: long, black with rounded feathers", + "throat: reddish-brown, sometimes with a black bib" + ], + "tropical kingbird": [ + "back: olive-green upper body", + "beak: sturdy, black, and slightly hooked", + "belly: pale yellow underbelly", + "breast: light gray plumage", + "crown: olive-green with hidden orange-yellow crest", + "forehead: light gray to olive-green transition", + "eyes: dark, surrounded by faint white eyering", + "legs: black, slender, and long", + "wings: olive-green with black edges and white wingbars", + "nape: olive-green, connecting to the crown and back", + "tail: slightly forked, black with white outer edges", + "throat: light gray, leading down to the breast" + ], + "trumpter swan": [ + "back: elongated, arched", + "beak: straight, black and orange", + "belly: rounded, soft white feathers", + "breast: plump, white feathers", + "crown: smooth curve, white feathers", + "forehead: wide, flat, white feathers", + "eyes: small, black, wide-set", + "legs: strong, black, webbed feet", + "wings: broad, powerful, white feathers", + "nape: gracefully curved, white feathers", + "tail: short, pointed, white feathers", + "throat: white, smooth feathers" + ], + "turkey vulture": [ + "back: dark brown feathers", + "beak: sharp and hooked, ivory-colored", + "belly: dark brown, soft feathers", + "breast: dark brown feathers with hunched appearance", + "crown: small and featherless, red skin", + "forehead: featherless, red skin", + "eyes: dark and alert, surrounded by red skin", + "legs: pale pink, scaly with sharp talons", + "wings: long and broad, dark brown with silver-gray underside", + "nape: featherless, red skin", + "tail: long and narrow, dark brown feathers", + "throat: soft, dark brown feathers" + ], + "turquoise motmot": [ + "back: vibrant blue-green feathers", + "beak: black, slightly curved tip", + "belly: light turquoise feathers", + "breast: pale blue with black markings", + "crown: bright turquoise cap", + "forehead: blue-green with black markings", + "eyes: dark, surrounded by black feather mask", + "legs: grayish-blue, slender", + "wings: iridescent blue-green with black tips", + "nape: blue-green, with black markings", + "tail: long, racket-shaped, turquoise with black tips", + "throat: pale turquoise with black stripe" + ], + "umbrella bird": [ + "back: black-feathered with a slight sheen", + "beak: stout, strong, and hooked", + "belly: black-feathered and rounded", + "breast: black and fluffed out feathers", + "crown: striking crest of long hair-like feathers", + "forehead: black and smoothly feathered", + "eyes: small, round, and dark", + "legs: short and sturdy with sharp claws", + "wings: long, black, and broad for strong flight", + "nape: black feathered with unique umbrella-like crest", + "tail: elongated black feathers, often with a white tip", + "throat: distinctive, inflatable pouch for vocalizations" + ], + "varied thrush": [ + "back: dark blue-grey with orange-brown markings", + "beak: slender, slightly curved black beak", + "belly: rich orange with dark banding", + "breast: boldly striped black and orange", + "crown: blue-grey with a faint orangish tinge", + "forehead: white-line bordered grey", + "eyes: black with a thin white eye-ring", + "legs: bright orange", + "wings: dark blue-grey with orange-brown patches", + "nape: blue-grey with a hint of orange", + "tail: dark blue-grey with orange undertail coverts", + "throat: white with black streaks" + ], + "veery": [ + "back: warm brown with faint streaks", + "beak: slim, straight, and pointed", + "belly: pale and lightly speckled", + "breast: soft buff with light spots", + "crown: russet-brown and smooth", + "forehead: light brown blending with crown", + "eyes: dark and beady, encircled by light feathers", + "legs: thin, delicate, and light gray", + "wings: warm brown with darker bars", + "nape: russet-brown, merging with back", + "tail: brown, lengthy, and fan-shaped", + "throat: pale with minimal streaks" + ], + "venezuelian troupial": [ + "back: vibrant orange coloring", + "beak: solid, pointy, and silver-black", + "belly: sunshine yellow hue", + "breast: striking orange-yellow tinge", + "crown: deep black and glossy", + "forehead: sleek black contrast", + "eyes: alluring touch of white with black pupils", + "legs: grayish-blue and slim", + "wings: mixture of black and orange feathers", + "nape: bold black and shiny", + "tail: long and black with orange lining", + "throat: bright yellow shade" + ], + "verdin": [ + "back: light brownish-gray feathers", + "beak: short, sharp, and black", + "belly: pale grayish-white", + "breast: yellowish-orange patch", + "crown: bright yellow to olive-yellow", + "forehead: unmarked, light gray", + "eyes: dark, beady, surrounded by pale gray feathers", + "legs: thin, gray, and sturdy", + "wings: brownish-gray with blackish flight feathers", + "nape: light gray blending into back feathers", + "tail: gray, short, and slightly notched", + "throat: off-white with a hint of gray" + ], + "vermilion flycather": [ + "back: deep red feathers", + "beak: slender and pointy", + "belly: white or light grey", + "breast: red or orangish feathers", + "crown: vivid red plumage", + "forehead: bright red feathers", + "eyes: small and dark", + "legs: thin and dark", + "wings: black with white edges", + "nape: red feathers transitioning to grey", + "tail: black with white outer feathers", + "throat: vibrant red feathers" + ], + "victoria crowned pigeon": [ + "back: metallic blue-green feathers with maroon tips", + "beak: short, pale, curved for fruit consumption", + "belly: smoky-blue feathers with white spots", + "breast: deep blue-purple plumage", + "crown: prominent white-tipped crest with fan-like feathers", + "forehead: dark blue with pale blue lacy crest", + "eyes: bold red-orange with black pupils", + "legs: strong, red-purple with scale-like patterns", + "wings: iridescent blue and green feathers", + "nape: rich blue with lacy crest feathers", + "tail: long, deep blue with maroon-tipped ends", + "throat: lighter blue with subtle white spots" + ], + "violet backed starling": [ + "back: vibrant violet iridescent feathers", + "beak: short, black, and stout", + "belly: white and fluffy", + "breast: shimmering violet plumage", + "crown: brilliant violet with a subtle shine", + "forehead: iridescent violet feathers", + "eyes: small, black, and bright", + "legs: petite and dark grey", + "wings: violet with white underparts", + "nape: striking purple-blue hue", + "tail: long, violet, and slightly forked", + "throat: luminous violet transitioning to white" + ], + "violet cuckoo": [ + "back: metallic green-violet plumage", + "beak: slightly curved black bill", + "belly: glossy green-violet feathers", + "breast: lavender-blue breastband", + "crown: glossy green-violet head", + "forehead: creamy-white streaks", + "eyes: dark brown with blue-gray eye-ring", + "legs: short and black", + "wings: long and metallic green-violet", + "nape: iridescent green-violet neck", + "tail: long and graduated with greenish-violet feathers", + "throat: white base with lavender-blue patch" + ], + "violet green swallow": [ + "back: iridescent green feathers", + "beak: short, black, and pointed", + "belly: white with a hint of green", + "breast: vibrant white", + "crown: shiny emerald green", + "forehead: bright green blending to violet", + "eyes: small, dark, and alert", + "legs: tiny and black", + "wings: pointed, dark green with violet shimmer", + "nape: iridescent violet-green", + "tail: forked and iridescent greenish-violet", + "throat: glistening white" + ], + "violet turaco": [ + "back: iridescent green feathers", + "beak: short and red with a yellow tip", + "belly: soft white feathers", + "breast: deep violet plumage", + "crown: purple crest with elongated feathers", + "forehead: bright red coloring", + "eyes: dark with red orbital rings", + "legs: long and gray", + "wings: green with purple flight feathers", + "nape: blending of purple and green feathers", + "tail: green feathers with a dark base and purple tips", + "throat: smooth, white feathers" + ], + "visayan hornbill": [ + "back: dark green feathers with a metallic sheen", + "beak: large, white, and curved", + "belly: white or light-colored plumage", + "breast: white or pale-colored feathers", + "crown: black feathers with a hint of blue", + "forehead: white or light-colored plumage", + "eyes: brown with a white ring around them", + "legs: short, thick, and gray", + "wings: long, dark green feathers with a metallic sheen", + "nape: black plumage", + "tail: long, dark green feathers with narrow white banding", + "throat: black feathers with streaks of blue" + ], + "vulturine guineafowl": [ + "back: dark cobalt blue with scattered white spots", + "beak: strong, pale ivory beak", + "belly: iridescent blue with white spots", + "breast: radiant blue feathers with white speckling", + "crown: red, helmet-like crest on top of head", + "forehead: smooth, bluish-grey skin", + "eyes: small, dark, and alert", + "legs: sturdy, dark grey with long toes and sharp claws", + "wings: deep blue with white spots, short and rounded", + "nape: blue feathers transitioning to a striking red crest", + "tail: dark blue with long, alternating white and blue feathers", + "throat: vibrant blue with bare, bluish-grey skin under the beak" + ], + "wall creaper": [ + "back: grayish-brown plumage", + "beak: thin, pointed, and curved", + "belly: pale gray or white", + "breast: grayish-white", + "crown: reddish-brown or gray", + "forehead: pale-colored, blending with crown", + "eyes: small, dark, with white eyering", + "legs: long, slender, and pinkish-brown", + "wings: long, pointed, and dark-colored", + "nape: reddish-brown or gray, like the crown", + "tail: squared or slightly forked, with white outer feathers", + "throat: pale gray, similar to belly" + ], + "wattled curassow": [ + "back: dark green, glossy feathers", + "beak: black, stout, hooked tip", + "belly: white with black bands", + "breast: dark green, fluffy feathers", + "crown: black, curly crest", + "forehead: black and smooth", + "eyes: dark brown with white eye-ring", + "legs: gray with strong, thick toes", + "wings: dark green, long, rounded", + "nape: bright red, fleshy wattle", + "tail: long, black, and white-tipped", + "throat: white feathers with black bands" + ], + "whimbrel": [ + "back: brownish-gray with faint streaks", + "beak: long, downward-curved, and slender", + "belly: light brown with subtle markings", + "breast: buff-colored with dark spots", + "crown: dark brown with a pale central stripe", + "forehead: pale with a dark eyestripe", + "eyes: small and dark, surrounded by white stripes", + "legs: long, bluish-gray to greenish", + "wings: dark brown with white edges on feathers", + "nape: brown with a pale lateral stripe", + "tail: dark brown with white tips on outer feathers", + "throat: light brown with minimal markings" + ], + "white breasted waterhen": [ + "back: sleek, dark grey feathers", + "beak: strong, sharp, greenish-yellow", + "belly: smooth, white feathers", + "breast: prominent, white plumage", + "crown: dark grey, slightly raised", + "forehead: smooth, dark grey blending into beak", + "eyes: piercing, red-orange hue", + "legs: long, sturdy, yellow-green", + "wings: broad, dark grey feathers with discreet white patches", + "nape: delicately curved, dark grey feathers", + "tail: short, fan-shaped, dark grey feathers", + "throat: white, smooth transition from breast" + ], + "white browed crake": [ + "back: brownish-grey feathers smoothly covering the upper body", + "beak: short, stout, and pointed in a dark gray hue", + "belly: creamy white with fine black bars and streaks", + "breast: lightly streaked with black and grayish-brown hues", + "crown: dark gray cap extending from the forehead to the nape", + "forehead: white-browed with distinct thin black band separating the crown", + "eyes: small, black, and well-defined, surrounded by white feathers", + "legs: relatively long, slender, and yellowish-green for wading", + "wings: brownish-grey with some white stripe detailing", + "nape: continuation of the dark gray crown with a slight brownish hue", + "tail: short, brownish-grey, and slightly spread out at the base", + "throat: white and unmarked, contrasting with the dark breast and face" + ], + "white cheeked turaco": [ + "back: vibrant green feathers", + "beak: short, curved, red-orange", + "belly: deep green plumage", + "breast: iridescent green", + "crown: rich green, crest-like", + "forehead: bright green, slight gradient", + "eyes: dark, framed by white cheek patches", + "legs: greyish-blue, strong and sturdy", + "wings: deep green, reddish-purple tips", + "nape: vibrant green, elongated feathers", + "tail: long, dark green, white tips", + "throat: white feathers, contrasting with green" + ], + "white crested hornbill": [ + "back: sleek, glossy black feathers", + "beak: elongated, curved, pale ivory-yellow", + "belly: bright white plumage", + "breast: soft white feathers with black markings", + "crown: distinct, flowing white crest", + "forehead: smooth black feathers meeting crest", + "eyes: captivating, dark brown with white eyelids", + "legs: sturdy, black with sharp talons", + "wings: long, black feathers with white accents", + "nape: black, feathered neck contrasted with white crest", + "tail: elongated black feathers with a white base and white tip", + "throat: black feathers transitioning to white belly" + ], + "white eared hummingbird": [ + "back: iridescent green feathers", + "beak: slender, straight black bill", + "belly: light gray underbelly", + "breast: vibrant green with white touches", + "crown: iridescent green crown", + "forehead: shimmering green feathers", + "eyes: small, dark, and alert", + "legs: thin, black, and delicate", + "wings: fast-beating, translucent, and slender", + "nape: shining green plumage", + "tail: dark, forked, with white outer feathers", + "throat: bright white ear patch and throat" + ], + "white necked raven": [ + "back: sleek black feathers", + "beak: strong, slightly curved, and black", + "belly: smooth black feathers", + "breast: black plumage, subtly glossy", + "crown: black, feathery crest", + "forehead: smooth black feathers meeting the beak", + "eyes: dark, intelligent gaze", + "legs: black, powerful, and scaly", + "wings: expansive black feathers, large span", + "nape: white neck feathers, distinct", + "tail: long black feathers, fanned shape", + "throat: black feathers transitioning to white" + ], + "white throated bee eater": [ + "back: bright green feathers", + "beak: long, slender, and black", + "belly: soft pastel green", + "breast: yellow-orange plumage", + "crown: vibrant green crest", + "forehead: bluish-green feathers", + "eyes: large, round, black", + "legs: slender, pale", + "wings: elongated green with blue-black tips", + "nape: white streaked with green", + "tail: elongated, green, and black tipped", + "throat: pure white patch" + ], + "wild turkey": [ + "back: broad, rounded, and covered in dark brown feathers", + "beak: strong, hooked, and dark in color", + "belly: large, beige, with feathered underparts", + "breast: big, muscular, and bronze-colored", + "crown: patch of bare skin, often red or blue in males", + "forehead: featherless area above the beak, sometimes with wattles", + "eyes: small, dark, and slightly bulging", + "legs: strong, sturdy, and featherless with large, curved spurs in males", + "wings: large and folded against the body, with strong, barred flight feathers", + "nape: long neck covered in narrow, iridescent feathers", + "tail: big, fan-shaped, with alternating dark and light bands", + "throat: pouch-like area where the wattle hangs, featherless and colorful in males" + ], + "willow ptarmigan": [ + "back: tawny brown feathers", + "beak: short and strong black upper beak", + "belly: white feathers with grayish spots", + "breast: tawny and white markings mixed", + "crown: grayish-brown feathers with a slight red crest", + "forehead: pale feathers with a reddish hue", + "eyes: small and black, with a white eye-ring", + "legs: feathered and white, with short claws", + "wings: white with brown-black barring", + "nape: grayish-brown feathers with rusty-red streaks", + "tail: short and square with a white edge", + "throat: white feathers with tawny spots" + ], + "wilson bird of paradise": [ + "back: vibrant emerald green plumage", + "beak: short, sharp, and curved; ivory-like color", + "belly: bright blue feathers with velvet sheen", + "breast: eye-catching red plumage with a touch of indigo", + "crown: iridescent green with a slight curve", + "forehead: shiny green plumage, blending into the crown", + "eyes: round, dark, and focused; encircled by a thin, light blue ring", + "legs: slim, strong, and deep purple; ending in sharp, black claws", + "wings: elongated and vibrant green, with hints of indigo and gold", + "nape: a striking mix of green and blue, connecting the head and back", + "tail: unique twin-wired structure, dotted with neon blue ornamentation", + "throat: covered in delicate, neon-like blue feathers" + ], + "wood thrush": [ + "back: reddish-brown plumage", + "beak: straight and slender", + "belly: white with dark spots", + "breast: white with dark spots", + "crown: brown with faint streaks", + "forehead: light brown", + "eyes: large, dark, and expressive", + "legs: thin and long, grayish color", + "wings: brown with white edges", + "nape: light brown with streaks", + "tail: square-shaped with brown feathers", + "throat: white with dark spots" + ], + "woodland kingfisher": [ + "back: vibrant blue feathers", + "beak: sturdy black and elongated", + "belly: white, soft plumage", + "breast: pale sky blue with thin black stripes", + "crown: bright blue with dark center stripe", + "forehead: vivid light-blue shade", + "eyes: large, dark with a white eye-ring", + "legs: short, gray and delicate", + "wings: mixed blue hues with black accents", + "nape: deep blue feathers with black streaks", + "tail: long, blue feathers with black markings", + "throat: white with thin black stripe" + ], + "wrentit": [ + "back: olive-green with slight brownish hue", + "beak: short, thin, and curved", + "belly: soft gray-white color", + "breast: pale gray with warm undertones", + "crown: olive-brown with faint streaks", + "forehead: unmarked olive-brown", + "eyes: dark with narrow white eye-ring", + "legs: long and slender, gray-brown", + "wings: rounded, olive-brown with faint bars", + "nape: olive-brown with subtle streaks", + "tail: long and rounded, olive-brown", + "throat: light gray with a slight buff wash" + ], + "yellow bellied flowerpecker": [ + "back: vibrant green feathers", + "beak: short, sharp, black", + "belly: bright yellow underbelly", + "breast: light olive-green feathers", + "crown: blueish-green head", + "forehead: small patch of white feathers", + "eyes: small, shiny black", + "legs: thin, dark gray", + "wings: olive-green with blue tinge", + "nape: blue-green with white streaks", + "tail: short and forked, greenish-blue", + "throat: white feathers transitioning to yellow" + ], + "yellow cacique": [ + "back: dark greenish-yellow feathers", + "beak: long, slender, black", + "belly: vibrant yellow plumage", + "breast: bright yellow feathers", + "crown: black with yellow streaks", + "forehead: yellow and black markings", + "eyes: dark, surrounded by thin black line", + "legs: black, extending to sharp claws", + "wings: dark greenish-yellow with black tips", + "nape: black with subtle yellow streaks", + "tail: long, dark, forked with yellow edging", + "throat: vivid yellow plumage" + ], + "yellow headed blackbird": [ + "back: glossy black feathers", + "beak: sharp-pointed, black", + "belly: black feathers", + "breast: vibrant yellow patch", + "crown: bright yellow on head", + "forehead: striking yellow color", + "eyes: small and black", + "legs: long and dark grey", + "wings: black with white markings", + "nape: glossy black plumage", + "tail: black with white accents", + "throat: brilliant yellow hue" + ], + "zebra dove": [ + "back: pale brown with black and white stripes", + "beak: short, slender, and light-colored", + "belly: creamy white with delicate barring", + "breast: pinkish-grey with fine black bars", + "crown: grayish-blue with slight barring", + "forehead: pale grey-blue, unmarked", + "eyes: small and dark, with a light eye-ring", + "legs: short and pinkish-red", + "wings: pale brown with black and white striping", + "nape: grayish-blue with fine black bars", + "tail: long and tapered, with black and white striping", + "throat: light with subtle, dark barring" + ], + "yellow breasted chat": [ + "back: olive-green plumage", + "beak: short and stout", + "belly: bright yellow hue", + "breast: sunny yellow", + "crown: greenish-yellow blend", + "forehead: yellowish-green tint", + "eyes: dark with white eye-ring", + "legs: sturdy and grayish-brown", + "wings: greenish-brown with white patches", + "nape: yellowish-olive color", + "tail: greenish-brown with white markings", + "throat: vibrant yellow" + ], + "american dipper": [ + "back: dark slate-grey plumage", + "beak: small, black, and slender", + "belly: pale grey with white undertones", + "breast: slate-grey with slight gloss", + "crown: dark grey feathers with white tips", + "forehead: smoky grey with white accents", + "eyes: dark brown surrounded by faint white eye-ring", + "legs: short, sturdy, and black", + "wings: slate-black with white streaks", + "nape: glossy grey with white-tipped feathers", + "tail: short, dark grey feathers with narrow white bars", + "throat: light greyish-white with faint markings" + ], + "blue throated piping guan": [ + "back: glossy blue-black feathers", + "beak: strong, ivory-colored beak", + "belly: pale blue with white spotting", + "breast: deep blue with large white spots", + "crown: velvety black with blue highlights", + "forehead: smooth blue-black feathers", + "eyes: bright red eye ring", + "legs: long, sturdy reddish-orange legs", + "wings: rounded wings, blue-black with white edging", + "nape: deep blue with white stripe", + "tail: long, black tail feathers with white tips", + "throat: vibrant blue throat patch" + ], + "oilbird": [ + "back: sleek, dark brown feathers", + "beak: long, hooked and slender", + "belly: lighter brown feathers", + "breast: dark brown, slightly mottled plumage", + "crown: rounded with dark brown feathers", + "forehead: smooth and dark brown", + "eyes: large, dark, adapted for night vision", + "legs: short, strong with scaly texture", + "wings: elongated, dark brown with white speckles", + "nape: slightly curved, dark brown, connecting head and back", + "tail: long, narrow, dark brown with white tips", + "throat: dark brown, blending with breast coloration" + ], + "snowy sheathbill": [ + "back: sleek and white feathers", + "beak: short and thick, pale-colored", + "belly: soft white feathers", + "breast: fluffy and white", + "crown: smooth white plumage", + "forehead: white feathered area above beak", + "eyes: small and dark, black or brown", + "legs: pinkish stubby legs with webbed feet", + "wings: broad and rounded, white with a black tip", + "nape: white and subtly curved", + "tail: short and fan-shaped, white feathers", + "throat: white-feathered, blending into breast area" + ], + "knob billed duck": [ + "back: olive-brown feathers with a slight gloss", + "beak: large, knobbed upper bill in males, grayish in females", + "belly: creamy white soft feathers", + "breast: pale grayish-brown with faint speckling", + "crown: dark brown with a slight green sheen", + "forehead: lighter pale brown and smooth", + "eyes: dark brown with a surrounding contrasting white ring", + "legs: orange or yellow webbed feet, stout and fleshy", + "wings: olive-brown primary feathers with iridescent green speculum", + "nape: dark brown, transitioning from the crown", + "tail: dark brown feathers that are relatively long and stiff", + "throat: pale grayish-brown, blending with the breast" + ], + "grey headed chachalaca": [ + "back: slate-gray feathers with subtle sheen", + "beak: short, curved, dark gray beak", + "belly: lighter gray feathered underbelly", + "breast: soft gray plumage, subdued patterns", + "crown: gray-headed with minimal crest", + "forehead: smooth, light gray feathers", + "eyes: small, black, slightly almond-shaped", + "legs: slender, long, grayish-orange legs", + "wings: compact, gray with barred patterns", + "nape: gray, slightly downy feathers", + "tail: long, fan-like, gray with distinct barring", + "throat: lighter gray, blending with breast" + ], + "black breasted puffbird": [ + "back: dark olive-green plumage", + "beak: large black hooked bill", + "belly: pale white-yellowish underparts", + "breast: black distinctive band", + "crown: plain blackish-brown", + "forehead: dark brown", + "eyes: yellow encircled by black mask", + "legs: grey with sharp claws", + "wings: dark olive-brown with white spots", + "nape: olive-brown feathers", + "tail: olive brown with white tips", + "throat: pale white-yellowish color" + ], + "acadian flycatcher": [ + "back: olive-green feathers", + "beak: small, straight, and black", + "belly: pale yellow hue", + "breast: light olive-green with subtle streaks", + "crown: olive-green with a slight crest", + "forehead: smooth, olive-green plumage", + "eyes: small, dark, and round", + "legs: thin, dark-grey appendages", + "wings: olive-green with pale wing bars", + "nape: olive-green plumage", + "tail: dark, forked, and short", + "throat: pale yellow feathers" + ], + "acorn woodpecker": [ + "back: black plumage with white streaks", + "beak: strong, chisel-shaped, black", + "belly: white with slight black markings", + "breast: solid black", + "crown: bright red patch", + "forehead: white band above the beak", + "eyes: black, alert, and surrounded by feathers", + "legs: short, gray, and powerful", + "wings: black with white patches", + "nape: white, bordered by black plumage", + "tail: black with white outer feathers", + "throat: black, extending to the chest" + ], + "alder flycatcher": [ + "back: olive-brown with subtle darker streaks", + "beak: short, straight and black", + "belly: creamy white with light olive wash", + "breast: pale yellow with faint streaks", + "crown: uniform olive-brown without a crest", + "forehead: plain olive-brown blending with crown", + "eyes: dark, surrounded by white eyering", + "legs: black and slender", + "wings: olive-brown with two white wing bars", + "nape: same olive-brown as back and crown", + "tail: fairly short with dark feathers", + "throat: creamy white with faint streaks" + ], + "altamira oriole": [ + "back: vibrant orange-yellow with contrasting black streaks", + "beak: long, slender, and slightly curved black beak", + "belly: pale white or creamy yellow", + "breast: bright orange-yellow with faint streaks", + "crown: sleek black with smooth feathers", + "forehead: shiny black extending from beak", + "eyes: alert, with black pupils surrounded by white", + "legs: thin, sturdy dark gray legs with sharp claws", + "wings: black, with two distinct white wing bars", + "nape: rich orange-yellow, fading into black towards the crown", + "tail: long, pointed, black with white edges", + "throat: brilliant orange-yellow, gradually fading to lighter yellow on the belly" + ], + "american black duck": [ + "back: dark brown with subtle barring", + "beak: olive green to dusky yellow", + "belly: dull grayish-brown", + "breast: chocolate brown with fine streaking", + "crown: dark brown along the top of the head", + "forehead: lighter brown, blending with the crown", + "eyes: deep dark brown, surrounded by a thin white eye-ring", + "legs: reddish-orange with webbed feet", + "wings: dark brown with bold speculum comprising an iridescent purple-green, and white edges", + "nape: dark brown, transitioning from the crown", + "tail: dark brown, slightly elongated and pointed", + "throat: lighter brown, separating the breast and head" + ], + "american crow": [ + "back: sleek black feathers", + "beak: strong, black, and slightly curved", + "belly: smooth dark plumage", + "breast: black, slightly rounded", + "crown: dark feathers, slightly raised", + "forehead: black, smooth, and flat", + "eyes: dark and piercing", + "legs: long, black, and sturdy", + "wings: large, black, with splayed feathers", + "nape: black feathers, merging with the crown", + "tail: broad, black, and fan-like", + "throat: black, slender, and smooth" + ], + "american golden plover": [ + "back: speckled brown and black feathers", + "beak: short, thin, and pointed", + "belly: white with black speckles", + "breast: white with black streaks", + "crown: dark brown with streaks", + "forehead: white stripe above beak", + "eyes: small, black, and alert", + "legs: slender and grayish", + "wings: long, pointed, and black-edged", + "nape: grayish speckled brown", + "tail: short, brown, and black-striped", + "throat: white with black streaks" + ], + "american oystercatcher": [ + "back: dark brown to black feathers", + "beak: long, bright orange-red with a sharp tip", + "belly: white underside with dark brown streaks", + "breast: white chest feathers with brown to black edging", + "crown: dark brown to black feathers on top of the head", + "forehead: white patch above the beak", + "eyes: bright yellow with a red eye-ring", + "legs: long, pinkish-grey and unfeathered", + "wings: dark brown to black feathers with white patches", + "nape: dark brown to black feathers on the back of the neck", + "tail: dark brown to black feathers with white tips", + "throat: white with dark brown streaks near the beak" + ], + "american three toed woodpecker": [ + "back: black and white striped pattern", + "beak: straight, chisel-shaped, black", + "belly: white with faint barring", + "breast: white with minimal markings", + "crown: black with yellow patch in males", + "forehead: white, blending into crown", + "eyes: dark, encircled by white", + "legs: short, grayish with three toes", + "wings: black with large white patches", + "nape: black, blending into back", + "tail: black with white outer feathers", + "throat: white, bordered by black stripes" + ], + "american tree sparrow": [ + "back: streaked brown with gray", + "beak: small and conical, yellow lower mandible, dark upper mandible", + "belly: light gray-white", + "breast: buff-colored with central dark spot", + "crown: rusty red with thin gray stripe", + "forehead: reddish-brown spot in front of crown", + "eyes: black, encircled with faint white eyering", + "legs: pinkish-brown and thin", + "wings: brown with multiple white wing bars", + "nape: gray with reddish-brown streaks", + "tail: brownish, notched, and short", + "throat: light grayish-white" + ], + "american white pelican": [ + "back: pale gray with a smooth feather texture", + "beak: long, flat, orange-yellow with a prominent hooked tip", + "belly: large, white feathered area", + "breast: white feathers with an occasional tinge of yellow", + "crown: flat, white head with a subtle feathered crest", + "forehead: smooth, white with subtle feather lines", + "eyes: small, dark, and slightly sunken, surrounded by bare, white skin", + "legs: thick, short, orange-yellow with large, webbed feet", + "wings: broad, long, black-tipped primaries with strong white coverts", + "nape: white feathers merging into a gentle curve at the back of the head", + "tail: short, white feathers with a square-shaped end", + "throat: bare, orange-yellow pouch used for catching and carrying fish" + ], + "american woodcock": [ + "back: well-camouflaged, mottled brown with black and gray markings", + "beak: long, straight, and slender for probing in moist soil", + "belly: buff-colored with faint dark bars", + "breast: rufous-chestnut with dark spots and bars", + "crown: mottled brown, streaked with black and gray", + "forehead: wide and rounded, with buff and gray markings", + "eyes: large, dark, and set high on the sides of the head", + "legs: short and sturdy, with light-colored, scaled appearance", + "wings: rounded and mottled brown, with a distinctive whistling sound in flight", + "nape: buff-colored with gray and black streaks", + "tail: short, with banded outer feathers and a dark band near the tip", + "throat: light buff with some dark markings" + ], + "ash throated flycatcher": [ + "back: olive-brown with slightly paler grayish-brown feathers", + "beak: short, thin, and slightly hooked with a black upper part and pale lower part", + "belly: pale grayish-white with faint yellow undertones", + "breast: light grayish-brown with subdued streaks", + "crown: olive-brown blending seamlessly with the back", + "forehead: light grayish-brown, leading into the crown", + "eyes: black and round, encircled by thin pale-gray eye-ring", + "legs: dark gray and sturdy with sharp claws for perching", + "wings: olive-brown with faint pale bars and a conspicuous white wing patch", + "nape: olive-brown, consistent with the crown and back coloration", + "tail: long and slightly forked, with olive-brown feathers and white outer tail feathers", + "throat: pale grayish-white, contrasting lightly with the breast" + ], + "audubon oriole": [ + "back: olive-green upper body", + "beak: slim and pointed silver-gray", + "belly: light grayish-yellow", + "breast: vibrant yellow-orange", + "crown: black with green tinges", + "forehead: black with green sheen", + "eyes: dark, rounded with a white eye-ring", + "legs: slim, bluish-gray", + "wings: black with bold white edging", + "nape: black with a greenish tint", + "tail: long, black with white outer feathers", + "throat: brilliant yellow-orange" + ], + "baird sandpiper": [ + "back: brown and streaked with faint black markings", + "beak: long, straight, and thin with a dark brown color", + "belly: white and unmarked", + "breast: pale brown with a hint of light streaks", + "crown: medium brown with darker streaks", + "forehead: pale brown with streaks gradually fading towards the eyes", + "eyes: small, dark, and beady with a pale brown eyering", + "legs: slender with a greenish or yellowish tint", + "wings: brown with dark flight feathers and white edges", + "nape: light brown, smoothly transitioning to the back color", + "tail: medium brown with dark bars and white outer tail feathers", + "throat: white with a hint of light brown streaks near the breast" + ], + "band tailed pigeon": [ + "back: bluish-gray feathers", + "beak: short, pale yellow with black tip", + "belly: soft gray plumage", + "breast: rosy-purple hue", + "crown: glossy bluish-gray", + "forehead: white crescent-shaped marking", + "eyes: dark with pale eye-ring", + "legs: reddish-purple with yellow feet", + "wings: dark gray with wide white bands", + "nape: iridescent greenish-black", + "tail: long, gray with broad black band", + "throat: pale grayish-white" + ], + "barred owl": [ + "back: dark brown with white horizontal barring", + "beak: sharp, hooked, yellowish in color", + "belly: light grey with dark horizontal stripes", + "breast: light grey with dark vertical streaks", + "crown: rounded, brownish-grey with faint white spotting", + "forehead: light grey with faint horizontal barring", + "eyes: large, dark brown with a prominent white eyering", + "legs: feathered, light grey with dark barring", + "wings: broad, dark brown with white horizontal bars and spots", + "nape: greyish-brown with fine white horizontal barring", + "tail: long, brown with several thick white horizontal bars", + "throat: light grey with minimal dark streaks" + ], + "bell vireo": [ + "back: olive-green with faint streaks", + "beak: short, hooked, and pale gray", + "belly: whitish-yellow or pale yellow", + "breast: pale olive with faint streaking", + "crown: grayish-blue with light streaks", + "forehead: whitish with pale streaks", + "eyes: dark with white eye-ring", + "legs: short and grayish-blue", + "wings: olive-green with white wingbars", + "nape: grayish-blue with light streaks", + "tail: olive-green with white outer feathers", + "throat: whitish or pale gray" + ], + "bewick wren": [ + "back: reddish-brown and well-feathered", + "beak: thin, curved, and dark in color", + "belly: light grey and soft-looking", + "breast: pale grey with subtle streaks", + "crown: streaked brown, lightly striped", + "forehead: slightly paler brown than the crown", + "eyes: dark, small, and expressive", + "legs: slender, long, and dark", + "wings: reddish-brown with faint bars", + "nape: matching brown with the crown", + "tail: long, barred, and slightly uptilted", + "throat: pale grey, meeting the breast smoothly" + ], + "black oystercatcher": [ + "back: dark black feathers", + "beak: long, orange-red bill", + "belly: black feathered", + "breast: black with slight white streaks", + "crown: sleek black feathers", + "forehead: black, connected to beak", + "eyes: bright yellow, piercing gaze", + "legs: red-orange, strong", + "wings: black, elongated feathers", + "nape: black, smooth transition from head", + "tail: black, short and pointed feathers", + "throat: black, connecting to breast and belly" + ], + "black phoebe": [ + "back: dark grey with streamlined feathers", + "beak: black, slender, and pointed", + "belly: contrasting white or pale grey", + "breast: greyish-white, merging with belly", + "crown: dark grey, well-defined", + "forehead: greyish-black, blending into crown", + "eyes: black with a sharp gaze", + "legs: thin and black with strong claws", + "wings: dark grey with white wing-bars", + "nape: dark grey, continuous with crown", + "tail: long and dark, often flicking", + "throat: white or pale grey, contrasting with darker feathers above" + ], + "black rosy finch": [ + "back: deep black with subtle iridescence", + "beak: short and conical, dark gray", + "belly: soft rosy pink fading into gray", + "breast: rosy pink transitioning to gray", + "crown: glossy black with a slight purple sheen", + "forehead: black with a hint of metallic purple", + "eyes: small and round, dark brown", + "legs: thin and dark gray, strong feet", + "wings: black with a rosy pink tinge, long and pointed", + "nape: deep black gently blending into the rosy pink", + "tail: dark black feathers with subtle rosy accents, forked shape", + "throat: rosy pink blending smoothly into gray" + ], + "black tern": [ + "back: smooth dark gray feathers", + "beak: thin, sharp, and black", + "belly: light gray to white plumage", + "breast: white feathers with a hint of gray", + "crown: sleek black cap on the head", + "forehead: black feathers covering the front of the head", + "eyes: small, dark, and round, with a noticeable white eye-ring", + "legs: slender, red-orange color, with webbed feet", + "wings: elongated, dark gray with black edges", + "nape: black feathers extending down the back of the neck", + "tail: forked and dark gray with black central feathers", + "throat: white feathers with a slight gray hue" + ], + "black turnstone": [ + "back: dark blackish-brown with white speckles", + "beak: short, straight, and black", + "belly: solid black with white patches on the sides", + "breast: black with white spotting", + "crown: black with white speckles", + "forehead: black, transitioning into white speckles on the crown", + "eyes: small, black, and inset with white outlines", + "legs: orange or yellow, thin and bird-like", + "wings: black with white speckles and white-tipped feathers", + "nape: black with white flecks", + "tail: black with white speckles and distinct white patches", + "throat: white, contrasting with the black breast" + ], + "black and white warbler": [ + "back: black and white striped pattern", + "beak: slender and black", + "belly: mostly white with black streaks", + "breast: white with black stripes", + "crown: black and white striped", + "forehead: white with thin black stripes", + "eyes: small, black, surrounded by white feathers", + "legs: long and grayish", + "wings: layered black and white feathers", + "nape: black and white striped", + "tail: black feathers with white edges", + "throat: white with some black streaks" + ], + "black backed woodpecker": [ + "back: jet black feathers", + "beak: sturdy, chisel-like, black", + "belly: white with barred pattern", + "breast: white with black speckles", + "crown: solid black, glossy", + "forehead: black with distinctive marking", + "eyes: dark with intense gaze", + "legs: strong, grayish-blue", + "wings: black with white spotting", + "nape: black and fully feathered", + "tail: long, black with white markings", + "throat: smooth, white with slight flecks" + ], + "black billed cuckoo": [ + "back: dark olive-green feathers", + "beak: black, slightly curved upper part", + "belly: white with gray-brown sides", + "breast: smooth grayish-white feathers", + "crown: muted dark gray-brown", + "forehead: slightly lighter gray-brown", + "eyes: dark with a faint white eyering", + "legs: grayish-blue, long and slender", + "wings: dark olive-brown with white spots on feathers", + "nape: dark gray-brown, blending with crown", + "tail: long and edged with white tips on outer feathers", + "throat: pale grayish-white, blending with breast" + ], + "black billed magpie": [ + "back: glossy black plumage", + "beak: black, strong, and slightly hooked", + "belly: white feathers with iridescent shades", + "breast: bright white plumage", + "crown: black feathers with metallic sheen", + "forehead: shiny black feathers", + "eyes: dark brown with black pupil", + "legs: black, long, and sturdy", + "wings: iridescent black and blue-green feathers", + "nape: black and glossy feathers", + "tail: long, black iridescent feathers", + "throat: smooth white feathers" + ], + "black chinned sparrow": [ + "back: grayish-brown with faint streaks", + "beak: dark gray and conical", + "belly: whitish-gray with light streaks", + "breast: pale gray with soft streaks", + "crown: dark gray with slight chestnut edging", + "forehead: light gray fading into darker crown", + "eyes: small, dark, and expressive", + "legs: dark gray and slender", + "wings: grayish-brown with pale wing bars", + "nape: grayish-brown fading into darker crown", + "tail: long, dark gray with faint white tips", + "throat: pale gray merging with the breast" + ], + "black crested titmouse": [ + "back: dark gray feathers", + "beak: small, black, and sturdy", + "belly: creamy white with gray shading", + "breast: pale gray with slight peach tint", + "crown: black crest with gray edges", + "forehead: blending of black crest and gray face", + "eyes: large and dark, outlined in gray", + "legs: thin, black, with sharp claws", + "wings: gray with white-edged feathers", + "nape: gray transitioning into black crest", + "tail: long and gray with white tips", + "throat: slightly lighter gray than breast" + ], + "black throated blue warbler": [ + "back: deep blue feathers", + "beak: dark, pointed bill", + "belly: pristine white", + "breast: vivid blue hue", + "crown: dark blue, sleek", + "forehead: brilliant blue plumage", + "eyes: alert, dark eyes", + "legs: thin, black legs", + "wings: blue with white accents", + "nape: blue, blending with crown", + "tail: dark blue, short", + "throat: distinct black patch" + ], + "black throated gray warbler": [ + "back: gray with black streaks", + "beak: thin and pointed", + "belly: clean white", + "breast: white with black streaks", + "crown: black with gray edges", + "forehead: black and distinct", + "eyes: black with white eye arcs", + "legs: pale and thin", + "wings: gray with white patches", + "nape: gray with black streaks", + "tail: gray with outer white edges", + "throat: black and bold" + ], + "black throated green warbler": [ + "back: olive green with black streaks", + "beak: thin and pointy", + "belly: white with faint black streaks", + "breast: yellow and vibrant", + "crown: solid black", + "forehead: bright yellow", + "eyes: small and black, with white eyering", + "legs: thin and grayish-pink", + "wings: olive-green with dark stripes", + "nape: black with two white wing bars", + "tail: dark with white patches on the outer feathers", + "throat: black and well-defined" + ], + "blackburnian warbler": [ + "back: dark olive-green with streaks", + "beak: small, pointed, black", + "belly: white with some stripes", + "breast: bright orange, bordered with black", + "crown: black with orange-yellow patch", + "forehead: black with orange-yellow tinge", + "eyes: black, almond-shaped, gold eyering", + "legs: grayish-black", + "wings: black with white stripes and bars", + "nape: black with yellow-orange patch", + "tail: black with white edges", + "throat: bright orange with black borders" + ], + "blue jay": [ + "back: striking blue feathers", + "beak: sturdy black bill", + "belly: white/gray underbelly", + "breast: blended blue and white plumage", + "crown: bold blue crest", + "forehead: vibrant blue hues", + "eyes: curious black orbs", + "legs: strong gray limbs", + "wings: brilliant blue with black bands", + "nape: transitional blue and white feathers", + "tail: long, blue, fan-like appendage", + "throat: white/gray frontal feathering" + ], + "blue headed vireo": [ + "back: olive-green feathers", + "beak: short, hooked, dark gray", + "belly: white with yellow wash", + "breast: white with subtle streaks", + "crown: blue-gray fading to green", + "forehead: blue-gray with black border", + "eyes: deep black with white eye-ring", + "legs: thin and grayish-blue", + "wings: olive-green with black and white-edged feathers", + "nape: gently sloping, olive-green", + "tail: olive-green with black and white elements", + "throat: white with light streaks" + ], + "blue winged warbler": [ + "back: olive-green with subtle streaks", + "beak: sharp, black, and slender", + "belly: yellow, unblemished", + "breast: yellow, with fine black streaks", + "crown: bright yellow, with bold stripes", + "forehead: pale yellow, unmarked", + "eyes: dark, with bold white eye-ring", + "legs: pinkish, thin and long", + "wings: vibrant blue, with white and black bars", + "nape: olive-green, with faint striping", + "tail: dark, with blue edges and white spots", + "throat: bright yellow, with dark streaks" + ], + "boat tailed grackle": [ + "back: iridescent black-blue feathers", + "beak: long, slim, and dark", + "belly: shiny black feathers", + "breast: sleek black plumage", + "crown: smooth glossy black", + "forehead: gleaming black feathers", + "eyes: bright yellow with black pupils", + "legs: strong and dark gray", + "wings: shimmering black with blue-green highlights", + "nape: glossy black plumage", + "tail: long, boat-shaped, and black", + "throat: smooth black feathers" + ], + "bohemian waxwing": [ + "back: silky gray with subtle brown hue", + "beak: sharp and dark, slightly curved", + "belly: pale yellow or light gray", + "breast: warm reddish-brown with soft gray gradient", + "crown: plush crest in a gray hue", + "forehead: bright yellow band", + "eyes: round, black, and alert", + "legs: sturdy dark gray with sharp claws", + "wings: slate gray with elegant white and red tips", + "nape: smooth blend of gray and brown tones", + "tail: short tapering with a bold yellow band", + "throat: soft beige transitioning to chestnut breast" + ], + "bonaparte gull": [ + "back: pale gray plumage", + "beak: thin and black-tipped", + "belly: white, often clean", + "breast: white with minimal markings", + "crown: black during breeding, white in nonbreeding", + "forehead: white with a subtle black smudge", + "eyes: dark with a noticeable white eye-ring", + "legs: bright orange-red", + "wings: gray with black tips and a white trailing edge", + "nape: black during breeding, white with limited dark streaks in nonbreeding", + "tail: short, white with outer feathers black-tipped", + "throat: white, unmarked" + ], + "boreal chickadee": [ + "back: brownish-gray feathers", + "beak: small, black, cone-shaped", + "belly: white with buffy sides", + "breast: pale grayish-white", + "crown: brownish-black cap", + "forehead: same color as crown", + "eyes: shiny black with white eyering", + "legs: short, grayish-black", + "wings: brownish-gray with white-edged feather tips", + "nape: lighter brown than crown", + "tail: long, brownish-gray with white outer feathers", + "throat: pale grayish-white" + ], + "brandt cormorant": [ + "back: dark grey feathered coat", + "beak: long, slender, hooked tip", + "belly: lighter grey shading", + "breast: dark grey with some white feathers", + "crown: sleek black feathers", + "forehead: smooth, dark grey to black", + "eyes: piercing blue-green", + "legs: black with webbed feet", + "wings: dark grey with wide span", + "nape: black with distinctive white patches", + "tail: dark grey, fan-shaped", + "throat: vibrant blue-purple pouch" + ], + "brant": [ + "back: sleek, dark plumage", + "beak: short, black, and pointed", + "belly: white with fine black markings", + "breast: charcoal grey feathering", + "crown: black or dark brown rounded top", + "forehead: slope from crown to the beak", + "eyes: small, dark, and round", + "legs: short, black, and webbed", + "wings: elongated with white striping", + "nape: dark grey, transitioning to black on crown", + "tail: short and black, sometimes with a white edge", + "throat: lighter grey, nearing white" + ], + "brewer sparrow": [ + "back: light brown with darker streaks", + "beak: short, sharp, conical and greyish", + "belly: creamy white with faint brown streaking", + "breast: pale brown with diffused streaks", + "crown: brown with grey central stripe", + "forehead: greyish-brown, slightly paler than crown", + "eyes: black with thin white eye-ring", + "legs: pale pinkish-grey, thin and slender", + "wings: brown with light buffy wing bars", + "nape: brown with faint streaks, continuous with crown", + "tail: brown and medium length, notched tip", + "throat: pale greyish-white, unmarked" + ], + "bridled titmouse": [ + "back: light gray with white spots", + "beak: small, black, and conical", + "belly: pale grayish-white", + "breast: gray with subtle orange wash", + "crown: gray crest with black border", + "forehead: black band across the eyes", + "eyes: large, dark, and expressive", + "legs: bluish-gray and slender", + "wings: gray with white wingbars", + "nape: black and white bridle-like pattern", + "tail: gray with black edges", + "throat: white with thin black streaks" + ], + "bronzed cowbird": [ + "back: glossy, dark bronze-green feathers", + "beak: short, thick, and conical", + "belly: iridescent dark black-bronze coloration", + "breast: shiny, dark bronze-black feathers", + "crown: dark black-bronze feathers, often forming a small crest", + "forehead: sleek black-bronze feathers transitioning to the beak", + "eyes: bright, piercing, red eyes", + "legs: strong and black with dark gray feet", + "wings: dark bronze-green feathers with rounded tips", + "nape: glossy black-bronze feathers continuing from the crown", + "tail: short, rounded, and black-bronze in color", + "throat: shimmering dark bronze-black feathers descending towards the breast" + ], + "brown creeper": [ + "back: brown and streaked with a white pattern", + "beak: thin, decurved, and pointed", + "belly: white and light brown", + "breast: pale brown with white streaks", + "crown: reddish-brown with lighter markings", + "forehead: pale brownish-white", + "eyes: small, black, surrounded by pale feathers", + "legs: long and slender, light brown", + "wings: brown with intricate white barring", + "nape: streaked brown and white", + "tail: long, stiff, with brown and white banded feathers", + "throat: pale brown with white streaks" + ], + "brown pelican": [ + "back: dark brown feathers", + "beak: long, hooked, grayish", + "belly: white to light brown", + "breast: mostly white plumage", + "crown: dark brown to black crest", + "forehead: smooth, white", + "eyes: small, pale yellow", + "legs: short, webbed, gray", + "wings: long, brown, arching", + "nape: dark brown with neck pouch", + "tail: short, square, brown", + "throat: large, expandable gular pouch" + ], + "brown capped rosy finch": [ + "back: light brown with dark streaks", + "beak: thin, pointed, blackish", + "belly: soft whitish-pink", + "breast: pale pinkish-brown with brown streaks", + "crown: rich brown", + "forehead: slightly lighter brown than crown", + "eyes: small, dark, round", + "legs: long, slim, blackish", + "wings: dark brown with white-tipped feathers", + "nape: light brown with darker streaks", + "tail: dark brown with white outer feathers", + "throat: pale pinkish-brown with faint streaks" + ], + "brown crested flycatcher": [ + "back: brownish-olive hue with subtle streaks", + "beak: straight, pointed, and grayish-black", + "belly: creamy yellow undertones with faint brown spots", + "breast: grayish-white with streaks of brown", + "crown: chestnut-colored crest with darker borders", + "forehead: grayish-white hues blending into the crown", + "eyes: dark, rounded, surrounded by faint off-white rings", + "legs: slender with grayish-black coloring", + "wings: olive-brown with darker, well-defined feathers", + "nape: olive-brown fading into the crown", + "tail: moderately-long with darker brown feather tips", + "throat: pale grayish-white with subtle tinges of brown" + ], + "brown headed nuthatch": [ + "back: bluish-gray feathers", + "beak: short, stout, and black", + "belly: creamy white or light gray", + "breast: pale grayish-white", + "crown: rich brown covering head", + "forehead: brown blending into the crown", + "eyes: shiny black, inquisitive gaze", + "legs: grayish-blue, slender", + "wings: bluish-gray, white wing bars", + "nape: brown blending into back", + "tail: short, grayish-blue", + "throat: pale gray, white borders" + ], + "burrowing owl": [ + "back: brownish feathers with white spots", + "beak: short, sharp, and hooked", + "belly: white or cream-colored with brown barring", + "breast: pale with vertical brown streaks", + "crown: rounded with white and brown speckled feathers", + "forehead: white with brown streaks or spots", + "eyes: large and yellow, encircled by white feathers", + "legs: long, feathered, and grayish-brown", + "wings: brown with white bands and spots", + "nape: brown with white speckles", + "tail: short, brown with white bands", + "throat: white, sometimes with light brown markings" + ], + "bushtit": [ + "back: grayish to pale-brown", + "beak: short, thin, and dark-colored", + "belly: pale gray or cream", + "breast: light gray or buffy", + "crown: grayish-brown", + "forehead: pale gray or grayish-brown", + "eyes: small, round, and black", + "legs: short and grayish-blue", + "wings: rounded, grayish-brown", + "nape: grayish-brown to pale buff", + "tail: long, dark, and straight", + "throat: light gray or cream" + ], + "cackling goose": [ + "back: dark brown feathers spanning down the spine", + "beak: short, orange with black tip", + "belly: light gray with subtle brown streaks", + "breast: pale chestnut, blending into the belly", + "crown: rounded, dark brown feathers fading to lighter brown", + "forehead: gentle slope from crown into beak, light brown coloring", + "eyes: small, shiny black dots surrounded by light brown feathers", + "legs: orange and slightly webbed feet, medium length", + "wings: dark brown feathers with white stripes on the edges", + "nape: lighter brown feathers with dark streaks at the base of the neck", + "tail: short, dark brown feathers with black and white banding", + "throat: creamy white under the beak, blending slightly with breast" + ], + "california thrasher": [ + "back: dark brown with a streaked appearance", + "beak: long, curved, and black", + "belly: pale grayish-browns", + "breast: slightly darker grayish-brown, spotted", + "crown: dark reddish-brown", + "forehead: rusty-orange", + "eyes: dark, with a pale eye ring", + "legs: gray, with strong feet for scratching", + "wings: medium brown with small pale spots", + "nape: dark brown, blending with the crown", + "tail: long and dark brown, with lighter edges", + "throat: pale grayish-white, contrasting with breast color" + ], + "california towhee": [ + "back: light brown and grayish", + "beak: short and conical", + "belly: pale grayish-brown", + "breast: grayish-brown with slight reddish tint", + "crown: brownish with slight reddish tint", + "forehead: light reddish-brown", + "eyes: dark, beady, surrounded by a small pale ring", + "legs: long, slender, and grayish", + "wings: gray-brown with reddish-brown edges", + "nape: light reddish-brown", + "tail: long, reddish-brown with black tips", + "throat: pale grayish-brown" + ], + "canada goose": [ + "back: smooth, grayish-brown feathers", + "beak: long, black, and slender", + "belly: creamy-white underside", + "breast: light grayish-brown chest feathers", + "crown: rounded top of the head with dark feathers", + "forehead: narrow, flat area above the beak", + "eyes: dark, shining orbs with black pupils", + "legs: black and webbed for swimming", + "wings: wide, gray-brown feathers for powerful flight", + "nape: back of the neck with distinctive white chinstrap marking", + "tail: short, wedge-shaped feathers aiding in stability", + "throat: soft, light grayish-brown area below the beak" + ], + "canada warbler": [ + "back: olive-green with streaks", + "beak: short, slender, and pointy", + "belly: bright yellow", + "breast: yellow with black streaks", + "crown: grayish-blue", + "forehead: blue-gray", + "eyes: large, prominent, surrounded by yellow spectacles", + "legs: pale pinkish-brown", + "wings: rounded, blue-gray with two white wing bars", + "nape: grayish-blue", + "tail: dark with white undertail coverts", + "throat: bright yellow" + ], + "canyon towhee": [ + "back: reddish-brown feathers", + "beak: short and thick, grayish color", + "belly: pale grayish-white plumage", + "breast: light pinkish-brown feathers", + "crown: reddish-brown, slightly raised", + "forehead: smooth grayish-brown color", + "eyes: dark, medium-sized, surrounded by faint whitish ring", + "legs: sturdy, grayish-pink color", + "wings: reddish-brown with faint streaks and white-tipped primary feathers", + "nape: reddish-brown, blending with crown and back", + "tail: medium length, reddish-brown with white-tipped outer feathers", + "throat: pale gray with faint pinkish-brown wash" + ], + "canyon wren": [ + "back: reddish-brown with subtle darker markings", + "beak: slender and slightly curved", + "belly: light buff to whitish", + "breast: pale greyish-brown", + "crown: rich chestnut color", + "forehead: smoothly transitions from reddish-brown to pale grey", + "eyes: small, dark and bead-like", + "legs: sturdy and pinkish-brown", + "wings: reddish-brown with distinct black bars", + "nape: chestnut-colored and blends with crown", + "tail: long, chestnut-colored with narrow black bars", + "throat: white with greyish-brown spots" + ], + "carolina chickadee": [ + "back: gray feathers with slight brown tinge", + "beak: short, black, and thick", + "belly: soft, white feathers", + "breast: white with gray sides", + "crown: black with a slight crest", + "forehead: black, same color as the crown", + "eyes: dark and round, surrounded by white feathers", + "legs: strong, gray-black with three toes facing forward and one facing backward", + "wings: gray, edged in white", + "nape: black stripe down the back of the neck", + "tail: gray, short and slightly forked", + "throat: white with a black patch under the chin" + ], + "carolina wren": [ + "back: rusty-brown and black-striped", + "beak: thin, slightly curved", + "belly: cream-colored", + "breast: warm reddish-brown", + "crown: rusty-orange with a faint streak", + "forehead: slightly buffy-brown", + "eyes: large, dark, with a white eyestripe", + "legs: sturdy, pinkish-brown", + "wings: reddish-brown, with black barring", + "nape: rich, chestnut brown", + "tail: reddish-brown, barred, upward-cocked", + "throat: pale buffy-white" + ], + "cassin kingbird": [ + "back: olive-green upperparts", + "beak: solid black, strong, hooked tip", + "belly: pale yellow underparts", + "breast: light gray, blending into yellow belly", + "crown: dark gray, slightly raised crest", + "forehead: smooth transition into the dark gray crown", + "eyes: dark and piercing, surrounded by white eyering", + "legs: black and slender, strong for perching", + "wings: dark gray with pale edges on flight feathers", + "nape: blending from dark gray crown to olive-green back", + "tail: dark gray with white outer tail feathers and notched tip", + "throat: pale gray, borders onto the light gray breast" + ], + "cassin sparrow": [ + "back: brownish-gray with subtle streaks", + "beak: short and pale gray", + "belly: light buff-gray", + "breast: beige-gray with light streaks", + "crown: brownish-gray with a central stripe", + "forehead: light brownish-gray", + "eyes: dark with a faint white eyering", + "legs: pale grayish-pink", + "wings: brownish-gray with buff edges on feathers", + "nape: brownish-gray with subtle streaks", + "tail: brownish-gray with white outer tail feathers", + "throat: light beige-gray" + ], + "cassin vireo": [ + "back: olive-green, subtly streaked", + "beak: pale gray, slightly hooked", + "belly: off-white, unmarked", + "breast: light gray, crisp white boundary", + "crown: grayish-blue, well-defined", + "forehead: pale gray, uniform color", + "eyes: dark brown, with white eye-ring", + "legs: grayish-blue, strong and sturdy", + "wings: olive-green, short primary projection", + "nape: olive-gray, blending with crown", + "tail: olive-green, squared-off tips", + "throat: chalky white, unmarked" + ], + "cattle egret": [ + "back: white, sleek feathers", + "beak: orange-yellow, sharp and pointed", + "belly: white, fluffy feathers", + "breast: white, smooth feathers", + "crown: white with slight cream tinge", + "forehead: white and close-feathered", + "eyes: deep orange or red, alert gaze", + "legs: yellow, slender, and long", + "wings: white, broad, and strong", + "nape: white with beige streaks", + "tail: short, white feathers", + "throat: white, smooth feathers" + ], + "cave swallow": [ + "back: smooth and dark brown feathers", + "beak: short and stout with a slight curve", + "belly: buff-colored feathers with light streaks", + "breast: pale orange-brown with faint markings", + "crown: dark brown with a slightly raised crest", + "forehead: white to pale orange-brown coloring", + "eyes: small and black, surrounded by feathers", + "legs: short and sturdy with dark gray scales", + "wings: long and pointed, dark brown with white streaks", + "nape: dark brown with a slight curve to the head", + "tail: square-shaped and dark brown with white outer feathers", + "throat: pale orange-brown with a distinct dark brown band" + ], + "chestnut backed chickadee": [ + "back: olive-brown feathers with soft texture", + "beak: short, black, and conical", + "belly: off-white with warm brownish tinge", + "breast: grayish-white feathers", + "crown: black cap extending to nape", + "forehead: black color continuous with the crown", + "eyes: black, glossy, and round", + "legs: grayish-blue with sharp claws", + "wings: olive-brown with whitish edging", + "nape: black like the crown, connecting to back", + "tail: grayish-brown with subtle white tips", + "throat: white, contrasting with black head" + ], + "chestnut collared longspur": [ + "back: streaked, brown and gray plumage", + "beak: sharp, conical, and black", + "belly: cream-white with a hint of rusty brown", + "breast: chestnut collar outlining white underparts", + "crown: dark brown with streaks of white and gray", + "forehead: white with brownish streaks", + "eyes: dark brown, well-defined, and attentive", + "legs: slender, pale pinkish-gray", + "wings: black with white edges and long, pointed shape", + "nape: grayish brown with a streaked pattern", + "tail: black with white outer feathers, forked appearance", + "throat: white extending up to the cheeks" + ], + "chestnut sided warbler": [ + "back: olive-green with streaks", + "beak: thin, pointy, and black", + "belly: white and unmarked", + "breast: white with distinct chestnut streaks", + "crown: yellow with black stripe", + "forehead: bright yellow", + "eyes: black with white eye-ring", + "legs: pale pinkish-brown", + "wings: grayish-blue with two white wing-bars", + "nape: olive-green", + "tail: grayish-blue, white-edged feathers", + "throat: bright white" + ], + "chihuahuan raven": [ + "back: smooth, black feathers", + "beak: slightly curved, black", + "belly: black feathers, slightly lighter than back", + "breast: dark black plumage", + "crown: shiny black feathers", + "forehead: black, blending with crown", + "eyes: dark, almost black", + "legs: strong, black with sharp claws", + "wings: long, black feathers with white flight feathers", + "nape: black, shiny plumage", + "tail: rounded, black feathers with white tips", + "throat: black feathers, lighter than breast" + ], + "chimney swift": [ + "back: sleek black-gray feathers", + "beak: short, narrow, slightly curved", + "belly: lighter gray plumage", + "breast: gray-toned feathers, streamlined", + "crown: rounded, blackish-gray plumage", + "forehead: slightly lighter gray than crown", + "eyes: dark, small, set on the sides", + "legs: short, tiny, with sharp claws", + "wings: elongated, curved, slender", + "nape: smooth black-gray feathers", + "tail: short, squared-off, with needle-like spines", + "throat: lighter gray, contrasting with breast" + ], + "clapper rail": [ + "back: striped pattern with brown and gray hues", + "beak: long, straight, and slender", + "belly: barred with white and brown markings", + "breast: brownish-grey with streaked flanks", + "crown: reddish-brown with a slight crest", + "forehead: lighter brown blending into crown", + "eyes: small and dark brown", + "legs: long, slender, and yellowish-green", + "wings: relatively short with brown, black, and white feathers", + "nape: reddish-brown, extending from the crown", + "tail: short and round, showing barred pattern when fanned", + "throat: buffy or light-colored, transitioning into breast and belly" + ], + "clay colored sparrow": [ + "back: reddish-brown hue with white stripes", + "beak: small and conical, dark gray", + "belly: pale and light grayish-white", + "breast: slightly streaked, light brown", + "crown: patterned with grey, brown, and white stripes", + "forehead: pale gray with thin brown stripes", + "eyes: dark with thin white eyering", + "legs: slender, grayish-brown", + "wings: rich brown with white wing bars", + "nape: grayish-brown with light stripes", + "tail: dark brown with white outer edges", + "throat: clean white, unmarked" + ], + "cliff swallow": [ + "back: slate-blue upper body", + "beak: short, dark, and slightly hooked", + "belly: creamy white underside", + "breast: buff-colored chest", + "crown: dark blue, rounded head", + "forehead: chestnut-brown patch", + "eyes: small, dark, piercing gaze", + "legs: petite black limbs", + "wings: silver-edged, pointed tips", + "nape: black collar at base of neck", + "tail: forked, dark, short tail feathers", + "throat: buff-colored, leading to chest" + ], + "common black hawk": [ + "back: dark gray to black feathers", + "beak: strong, curved, black", + "belly: lighter gray feathers", + "breast: grayish-black plumage", + "crown: black feathered crest", + "forehead: smooth black feathers", + "eyes: piercing yellow", + "legs: powerful, yellow", + "wings: broad, black, long-span", + "nape: black, feathered", + "tail: black feathers with white banding", + "throat: dark gray feathers" + ], + "common ground dove": [ + "back: grayish-brown, feathered surface", + "beak: short, dark, and slightly curved", + "belly: pale grey with fine darker patterns", + "breast: pinkish-brown with faint streaks", + "crown: soft grey with a tinge of blue", + "forehead: pale grey-blue blending into the crown", + "eyes: black with a pale blue orbital ring", + "legs: short, red-brown with scaly texture", + "wings: brownish-gray with black spots and rufous edges", + "nape: pale grey-blue blending into the back", + "tail: long, tapered with black and white markings", + "throat: plain and unmarked light grey" + ], + "common murre": [ + "back: sleek black-gray feathers", + "beak: long, thin, sharp-edged", + "belly: white and smooth", + "breast: white with gray-black edges", + "crown: dark, glossy black", + "forehead: black, blending into crown", + "eyes: round, black, glossy", + "legs: short, webbed, pale red-orange", + "wings: narrow-pointed, black upper, white under", + "nape: black, continuing from crown", + "tail: short, pointed, dark feathers", + "throat: white, contrasting with black head" + ], + "common nighthawk": [ + "back: mottled gray-brown", + "beak: small and dark", + "belly: streaked and pale", + "breast: marked with brown bands", + "crown: blended gray-brown", + "forehead: smooth and grayish", + "eyes: large and dark", + "legs: short and feathered", + "wings: long and slender with white streaks", + "nape: same as back coloration", + "tail: slightly forked with white banding", + "throat: white crescent-shaped patch" + ], + "common raven": [ + "back: iridescent black feathers", + "beak: large and curved, dark in color", + "belly: sleek black feathers", + "breast: smooth black plumage", + "crown: shiny black feathers atop the head", + "forehead: black feathers near the beak", + "eyes: dark, piercing gaze", + "legs: dark, strong and featherless", + "wings: broad and black with finger-like feathers", + "nape: black feathers on the back part of the neck", + "tail: long, wedge-shaped black feathers", + "throat: jet black feathers tapering towards beak" + ], + "common redpoll": [ + "back: subdued olive-brown with streaks", + "beak: short, conical, yellowish", + "belly: whitish with faint streaks", + "breast: light pinkish-red wash", + "crown: bright red patch", + "forehead: red-tinted", + "eyes: small, dark", + "legs: thin, blackish", + "wings: dark with white wing bars", + "nape: olive-brown with faint streaks", + "tail: forked, dark with white tips", + "throat: plain white" + ], + "common tern": [ + "back: sleek, light grey feathers", + "beak: sharp, pointed, and orange-red", + "belly: smooth, white plumage", + "breast: light grey-white feathers", + "crown: black cap with white forehead", + "forehead: white patch above the beak", + "eyes: small, dark, and well-defined", + "legs: long, slender, and orange-red", + "wings: long, tapered, with dark-tipped primaries", + "nape: light grey feathers connecting to the crown", + "tail: deeply forked, white and grey feathers", + "throat: white, unmarked feathers" + ], + "common yellowthroat": [ + "back: olive-green feathers", + "beak: small, pointed, and black", + "belly: white with light yellow feathers", + "breast: bright yellow with black streaks", + "crown: black with white border on male, olive-brown on female", + "forehead: black in male, olive-brown in female", + "eyes: small, dark, with white eye-ring", + "legs: pinkish-brown and thin", + "wings: olive-green with slight wing bars", + "nape: olive-green blending with the back", + "tail: olive-green feathers with white outer edges", + "throat: bright yellow on both male and female" + ], + "connecticut warbler": [ + "back: olive-green with faint streaks", + "beak: relatively thin and pointed", + "belly: clean, light yellow color", + "breast: pale yellow with light streaking", + "crown: uniform olive-gray with a darker eyestripe", + "forehead: olive-gray, blending into the crown", + "eyes: small, dark, surrounded by a distinct white eyering", + "legs: pinkish-gray and sturdy", + "wings: olive-gray with faint wingbars", + "nape: olive-green, matching the back", + "tail: olive-gray with slightly rounded edges", + "throat: pale yellow, blending into the breast" + ], + "cordilleran flycatcher": [ + "back: olive-green or brownish coloration", + "beak: short and sharp, dark-colored", + "belly: pale yellow or whitish hue", + "breast: yellowish-green or light brown shades", + "crown: distinct dark-gray stripe", + "forehead: slightly lighter gray than the crown", + "eyes: dark, beady, and expressive", + "legs: thin and long, dark-colored", + "wings: olive-brown with white wingbars", + "nape: olive-green or brownish, connecting the crown and back", + "tail: olive-brown with a slight fork", + "throat: pale yellow or white, contrasting with breast color" + ], + "couch kingbird": [ + "back: sleek gray feathers", + "beak: strong and slightly hooked", + "belly: pale yellow plumage", + "breast: soft yellow feathers", + "crown: dark gray with a slight crest", + "forehead: smooth gray plumage", + "eyes: beady and black, with a curious gaze", + "legs: sturdy gray with sharp claws", + "wings: long, gray feathers with white bars", + "nape: well-defined gray contour", + "tail: forked and elongated wingtips", + "throat: vibrant yellow plumage" + ], + "curve billed thrasher": [ + "back: brownish-grey feathers", + "beak: long, curved and black", + "belly: pale grey with dark streaks", + "breast: greyish-brown with streaks", + "crown: dull brown, slightly raised", + "forehead: light brown with thin feathers", + "eyes: bright orange-yellow", + "legs: long, slender, and dark grey", + "wings: brownish-grey with faint bars", + "nape: brownish-grey, blending with crown", + "tail: long and dark with pale tips", + "throat: light grey with dark streaks" + ], + "dickcissel": [ + "back: yellow-green with dark streaks", + "beak: short, conical, pale gray", + "belly: pale, off-white", + "breast: bright yellow with black markings", + "crown: rusty brown with gray streaks", + "forehead: black or gray", + "eyes: dark, surrounded by yellow", + "legs: light brown, slender", + "wings: brown with white edges", + "nape: brownish-gray with streaks", + "tail: brown, forked with white outer feathers", + "throat: yellow with black bib" + ], + "dusky grouse": [ + "back: dark grayish-brown with subtle feather patterns", + "beak: short and stout, light gray", + "belly: pale grayish-white with minimal patterns", + "breast: light gray with subtle wavy feather patterns", + "crown: dark grayish-brown blending with the back", + "forehead: slightly lighter gray-brown transitioning into the crown", + "eyes: black with a faint yellow ring", + "legs: sturdy, feathered, grayish-brown", + "wings: dark grayish-brown with faint barring patterns", + "nape: lighter gray transitioning from the crown to the back", + "tail: dark grayish-brown with broad white terminal band", + "throat: pale grayish-white, blending with the breast" + ], + "eared grebe": [ + "back: dark grayish-brown with subtle stripes", + "beak: slender, straight, and pointed", + "belly: white with grayish undertones", + "breast: reddish-brown to chestnut color", + "crown: black with slight crest", + "forehead: steep black slope meeting beak", + "eyes: small, bright red", + "legs: set far back, lobed toes for swimming", + "wings: short, grayish-brown with limited flight capability", + "nape: black with a slight crest", + "tail: short, light gray to white, often held erect", + "throat: black, blending into breast color" + ], + "eastern kingbird": [ + "back: bluish-gray feathers", + "beak: black, short, and pointed", + "belly: white and smooth", + "breast: pale gray with slight horizontal streaks", + "crown: black with concealed red patch", + "forehead: black, blending into the crown", + "eyes: dark brown with a thin black eye-line", + "legs: black and slender", + "wings: bluish-gray with white edges", + "nape: black, connecting to the crown", + "tail: black, squared-off with white outer tail-feathers", + "throat: pale gray, blending into the breast" + ], + "eastern phoebe": [ + "back: olive-brown to gray-brown plumage", + "beak: small, thin, and black", + "belly: pale white with light yellow hues", + "breast: dull white and unstreaked", + "crown: olive-gray or dark gray", + "forehead: smooth and gray", + "eyes: small and dark with white eyering", + "legs: thin and black", + "wings: moderately long with dark wing bars", + "nape: grayish-brown coloration", + "tail: dark, relatively long with slight flicking motion", + "throat: pale white or light yellowish" + ], + "eastern screech owl": [ + "back: vertical streaks on gray or reddish-brown feathers", + "beak: light-colored and hooked", + "belly: soft white with dark vertical stripes", + "breast: thickly barred with gray or reddish hues", + "crown: gray or red-brown feathers with indistinct streaks", + "forehead: rounded with camouflaging feathers", + "eyes: large, yellow, and forward-facing", + "legs: feathered with sharp talons", + "wings: mottled with dark-edged feathers", + "nape: streaked with gray or reddish-brown feathers", + "tail: banded with intricate markings", + "throat: light-colored with black vertical stripes" + ], + "eastern towhee": [ + "back: reddish-brown with black streaks", + "beak: short and conical, dark color", + "belly: white with faint grayish marks", + "breast: reddish-brown merging into the white belly", + "crown: black or dark brown, depending on the gender", + "forehead: same color as the crown", + "eyes: bold red or reddish-brown color", + "legs: long, slender, and grayish", + "wings: reddish-brown with black and white markings", + "nape: dark brown or reddish-brown", + "tail: black with white outer feathers", + "throat: white or grayish, contrasting with the darker head" + ], + "eastern wood pewee": [ + "back: light olive-green", + "beak: thin black", + "belly: pale yellow", + "breast: buff-white", + "crown: grayish-brown", + "forehead: beige smooth-feathered", + "eyes: black with white eye-ring", + "legs: thin dark-gray", + "wings: dark gray with white wing-bars", + "nape: olive-gray", + "tail: long, dark gray", + "throat: light buff-white" + ], + "elf owl": [ + "back: small, rounded, and covered in grayish-brown feathers", + "beak: short, sharp, and slightly curved, yellowish in color", + "belly: light grayish-white with faint barring", + "breast: pale gray with fine, dark streaks", + "crown: grayish-brown with small, dark spots", + "forehead: light grayish-brown with faint streaks", + "eyes: large, round, and yellow with a dark border", + "legs: short, featherless, and yellow", + "wings: grayish-brown with faint barring and white spots", + "nape: grayish-brown with fine, dark streaking", + "tail: short, fan-shaped, with grayish-brown feathers and bands", + "throat: pale gray with a hint of white" + ], + "eurasian collared dove": [ + "back: pale gray with a subtle brown tinge", + "beak: short, light gray, with a small hook at the end", + "belly: light grayish-brown with faint white streaks", + "breast: soft pinkish-gray, becoming lighter towards the belly", + "crown: smooth pale gray with a slight brown tint", + "forehead: light gray, blending seamlessly with the crown", + "eyes: dark, beady, surrounded by a narrow pale gray eye-ring", + "legs: short and slender, with reddish-pink or grayish-pink scales", + "wings: pale gray with darker gray flight feathers and white edging", + "nape: distinctive black collar with a white crescent border", + "tail: long, with white outer feathers and a broad, square tip", + "throat: pale gray, blending smoothly with the breast color" + ], + "eurasian wigeon": [ + "back: dark brown with dense markings", + "beak: short and steel-blue", + "belly: white and fluffy", + "breast: reddish-brown with wavy pattern", + "crown: dark greenish-black", + "forehead: white stripe", + "eyes: small, beady, and brown", + "legs: grayish-blue with webbed feet", + "wings: gray with striking white patch", + "nape: reddish-brown with fine markings", + "tail: short and dark gray", + "throat: creamy-white with slight streaks" + ], + "ferruginous hawk": [ + "back: warm brown tones with light feather edges", + "beak: sharp, slightly curved, dark gray", + "belly: creamy white with reddish-brown streaks", + "breast: pale with reddish-brown spots", + "crown: light brown with a reddish tint", + "forehead: creamy white with sparse reddish-brown speckles", + "eyes: bright yellow with black pupils", + "legs: yellow and strong, with sharp talons", + "wings: deep brown with lighter feather edges, broad and slightly pointed", + "nape: reddish-tan with lighter streaks", + "tail: brown with narrow white bands and a broad white tip", + "throat: creamy white with sparse reddish-brown speckles" + ], + "ferruginous pygmy owl": [ + "back: rusty brown with white streaks", + "beak: sharp, grayish-black", + "belly: white with reddish-brown streaks", + "breast: buffy-white with bold dark-brown streaks", + "crown: reddish-brown with small white dots", + "forehead: pale reddish-brown with white speckles", + "eyes: intense yellow with black pupils", + "legs: short, feathered, and yellowish-gray", + "wings: rusty brown with white bands and spots", + "nape: reddish-brown, streaked with white", + "tail: brown with mottled white bands", + "throat: white, sometimes with few reddish-brown streaks" + ], + "field sparrow": [ + "back: streaked brown and gray", + "beak: short and conical, pinkish", + "belly: whitish with brown streaks", + "breast: light brown with dark spots", + "crown: reddish-brown with gray stripes", + "forehead: grayish-brown with fine streaks", + "eyes: dark, surrounded by white eye-ring", + "legs: pale pinkish-brown", + "wings: brown with white wing bars", + "nape: gray with reddish-brown streaks", + "tail: brown with distinct white edges", + "throat: white, bordered by dark streaks" + ], + "fish crow": [ + "back: sleek black feathers", + "beak: short, strong black beak", + "belly: black smooth feathers", + "breast: dark glossy plumage", + "crown: shiny black feathers", + "forehead: nearly flat feathered area", + "eyes: dark brown, watchful gaze", + "legs: sturdy black legs", + "wings: elongated, black flight feathers", + "nape: black feathers transition to neck", + "tail: moderately long, black tail feathers", + "throat: dark feathered, tapered area" + ], + "florida scrub jay": [ + "back: light blue-gray plumage", + "beak: short, stout, black beak", + "belly: pale gray-white underparts", + "breast: subtly streaked, bluish-gray feathers", + "crown: slightly raised, azure crest", + "forehead: whitish-blue base", + "eyes: dark, round, alert gaze", + "legs: strong, grayish-blue limbs", + "wings: vibrant blue, rounded edges", + "nape: striking blue-gray transition", + "tail: long, straight, blue feathers", + "throat: pale, whitish-gray color contrast" + ], + "forster tern": [ + "back: sleek and light gray", + "beak: long, slender, and orange", + "belly: clean white and fluffy", + "breast: white and smooth plumage", + "crown: black and streamlined", + "forehead: smooth blending from black to white", + "eyes: piercing and dark in color", + "legs: strong and orange-red", + "wings: lengthy and sharp-edged, with gray and black tips", + "nape: black seamlessly transitioning to gray", + "tail: elongated and forked, with white and gray feathers", + "throat: white and smooth plumage" + ], + "fox sparrow": [ + "back: reddish-brown with gray and dark streaks", + "beak: short, thick and conical", + "belly: grayish-white with sparse streaks", + "breast: heavily streaked with reddish-brown", + "crown: rufous cap with dark streaks", + "forehead: light brown with gray patches", + "eyes: small, black, and alert", + "legs: long, strong, and pinkish", + "wings: reddish-brown with dark brown bars", + "nape: brownish-gray with streaks", + "tail: long, reddish-brown, and tapered", + "throat: white with some streaking" + ], + "franklin gull": [ + "back: light grey to white feathers", + "beak: slim and dark with a slightly hooked tip", + "belly: white, soft feathered", + "breast: white with hints of grey", + "crown: black during breeding season; speckled greyish outside breeding season", + "forehead: black in breeding plumage; greyish non-breeding", + "eyes: dark, rounded", + "legs: red or pinkish, medium length", + "wings: grey with black tips and white trailing edge", + "nape: black or speckled grey, depending on breeding season", + "tail: white with black outer tips", + "throat: white, elegant" + ], + "fulvous whistling duck": [ + "back: golden-brown with fine black streaks", + "beak: pale bluish-gray with a dark tip", + "belly: pale buff with black spots", + "breast: rich cinnamon color with black spots", + "crown: dark brown fading into the golden nape", + "forehead: dark brown transitioning to lighter brown", + "eyes: dark brown with a thin white eye-ring", + "legs: long, dark gray with webbed feet", + "wings: golden-brown with black and white markings", + "nape: golden-brown, flowing into the back", + "tail: dark brown with gray undertail coverts", + "throat: light buff color, leading to the breast" + ], + "gadwall": [ + "back: grayish-brown feathers with subtle patterning", + "beak: slate-gray with black edges and hooks", + "belly: creamy-white with fine gray streaks", + "breast: speckled gray and black feathers", + "crown: dark brown with slightly raised feathering", + "forehead: dark brown blending into the crown", + "eyes: dark brown with a gentle expression", + "legs: yellowish-orange with webbed feet", + "wings: blue, gray, and white striped wing coverts, black primary feathers", + "nape: dark brown, blending with the back feathers", + "tail: long black feathers with white tips and black underside", + "throat: light gray with darker streaks" + ], + "glaucous gull": [ + "back: light gray plumage", + "beak: strong yellow with red spot", + "belly: white feathers", + "breast: pale gray plumage", + "crown: smooth white", + "forehead: white and unmarked", + "eyes: dark with thin white eyering", + "legs: light pink", + "wings: pale gray with white tips", + "nape: white and unmarked", + "tail: white with streaks of gray", + "throat: clean white feathers" + ], + "glaucous winged gull": [ + "back: light gray feathers cover the back", + "beak: strong, yellowish with a red spot", + "belly: clean white, soft plumage", + "breast: white, slightly round and plump", + "crown: sleek, light gray plumage atop the head", + "forehead: smooth, light gray feathers at front of head", + "eyes: dark, piercing, rimmed in red skin", + "legs: sturdy, pinkish with webbed feet", + "wings: pale gray with white-tipped flight feathers", + "nape: feathered transition connecting the head and back", + "tail: short, white feathers tipped in gray-black", + "throat: white, smooth feathers under the beak" + ], + "golden crowned kinglet": [ + "back: olive-green with subtle streaks", + "beak: small, sharp, black", + "belly: pale grayish-white", + "breast: light yellowish-olive", + "crown: bright yellow with central orange stripe (males), duller yellow (females", + "forehead: whitish with black borders", + "eyes: black, beady, surrounded by white eyering", + "legs: thin, grayish-blue", + "wings: olive-green with two white wingbars", + "nape: olive-green, continuous with the back", + "tail: short, olive-green, with white outer feathers", + "throat: pale grayish-white" + ], + "golden fronted woodpecker": [ + "back: olive-green with black bars", + "beak: stout, long, chisel-like", + "belly: pale yellow or cream", + "breast: bright yellow with black spots", + "crown: glossy black or deep red", + "forehead: bright golden-orange", + "eyes: piercing, black or dark brown", + "legs: grayish-blue, strong", + "wings: barred black and white", + "nape: black and white barring", + "tail: black with white accents", + "throat: white or pale gray" + ], + "golden winged warbler": [ + "back: olive-green with light streaks", + "beak: black, thin, and pointed", + "belly: white with faint yellow hue", + "breast: white with light yellow patches", + "crown: bright yellow with black border", + "forehead: brilliant yellow", + "eyes: black, with faint white eye rings", + "legs: blueish-gray and slender", + "wings: gold and black, with distinctive white wing bars", + "nape: olive-green with light streaks", + "tail: dark gray, with white outer tail feathers", + "throat: bright yellow" + ], + "grasshopper sparrow": [ + "back: brownish-gray with streaks", + "beak: short, conical, and pale", + "belly: whitish, unmarked", + "breast: buffy with streaks", + "crown: reddish-brown with a central stripe", + "forehead: pale buffy-yellow", + "eyes: small and dark", + "legs: thin, delicate, and pale", + "wings: brownish-gray with white wing bars", + "nape: streaked brown and gray", + "tail: short with a white outer edge", + "throat: pale buffy-yellow" + ], + "gray jay": [ + "back: soft gray feathers", + "beak: short and sturdy, black", + "belly: lighter gray plumage", + "breast: pale gray feathers", + "crown: dark gray crest", + "forehead: smooth gray plumage", + "eyes: round and black, alert expression", + "legs: strong black legs, compact feet", + "wings: medium-sized, lighter gray edges", + "nape: soft gray, blending into back", + "tail: long and gray, with darker edges", + "throat: white, slightly fluffy plumage" + ], + "gray cheeked thrush": [ + "back: olive-brown feathers", + "beak: short and straight, blackish", + "belly: off-white, unmarked", + "breast: pale gray with faded spots", + "crown: olive-brown with smooth texture", + "forehead: paler olive-brown", + "eyes: dark with pale eyering", + "legs: long and pinkish-gray", + "wings: olive-brown with contrasting flight feathers", + "nape: olive-brown, blending into the crown", + "tail: olive-brown, slightly darker than the wings", + "throat: pale gray, unmarked" + ], + "gray crowned rosy finch": [ + "back: pale gray feathers", + "beak: short, conical pinkish-gray", + "belly: rosy pink hue", + "breast: soft pinkish-gray", + "crown: dark gray with silver streaks", + "forehead: pale silver-gray", + "eyes: small, black, surrounded by gray feathers", + "legs: sturdy, pinkish hue", + "wings: gray with black-tipped feathers", + "nape: pale gray, blending into dark crown", + "tail: medium length, dark gray with pink tinge", + "throat: light, rosy pink with gray edges" + ], + "great blue heron": [ + "back: slate-gray feathers", + "beak: long, sharp, yellow-orange", + "belly: pale gray and white plumage", + "breast: barred with dark gray and white feathers", + "crown: black with elongated feathers", + "forehead: white patch on brow", + "eyes: large, yellow with black pupil", + "legs: long, dark gray, partially feathered", + "wings: broad, slate-blue feathers with black tips", + "nape: white with streaks of gray-blue", + "tail: short, dark gray-blue feathers", + "throat: white with black streaks" + ], + "great crested flycatcher": [ + "back: olive-green with soft feathers", + "beak: black, strong, and slightly hooked", + "belly: yellow with matte texture", + "breast: gray with subtle streaks", + "crown: grayish-brown with a raised crest", + "forehead: grayish-brown with fine feathers", + "eyes: dark brown with pale eyelids", + "legs: sturdy and slate gray", + "wings: black with white edged feathers", + "nape: olive-gray texture with gentle gradation", + "tail: long and broad with reddish-brown feathers", + "throat: white with faint streaks" + ], + "great egret": [ + "back: long, slender, and white", + "beak: long, sharp, and yellowish-orange", + "belly: white, smooth feathers", + "breast: white, elongated fluffy plumes", + "crown: smooth white feathers, sometimes extending into wispy plumes", + "forehead: white and seamlessly blending into the beak", + "eyes: small, round, and yellow", + "legs: long, thin, and black", + "wings: large, white, and broad with pointed tips", + "nape: elongated white feathers, often with wispy plumes", + "tail: white, short, and fan-shaped", + "throat: white, with slightly puffed out feathers" + ], + "great horned owl": [ + "back: dark brown feathers with lighter markings", + "beak: strong, hooked, yellowish", + "belly: whitish with brown bars", + "breast: pale with dark brown, horizontal streaks", + "crown: tufts of feathers resembling horns", + "forehead: white patch surrounded by brown feathers", + "eyes: large, bright yellow with wide, black pupils", + "legs: feathered, white with brown bars", + "wings: wide, rounded brown with light bars and bands", + "nape: dark brown with lighter feathers", + "tail: long, brown with white bands", + "throat: white patch with brown streaks" + ], + "great tailed grackle": [ + "back: glossy green-black feathers", + "beak: long, slim, and dark", + "belly: pale brownish-grey", + "breast: dark, iridescent purple", + "crown: shiny black with bluish-purple tint", + "forehead: smoothly rounded, no feathers", + "eyes: bright yellow iris, alert gaze", + "legs: strong, long, and dark", + "wings: large, spread wide, shimmering colors", + "nape: shiny black feathers transitioning to deep purple sheen", + "tail: elongated, keel-shaped, vivid black", + "throat: iridescent violet-blue feathers" + ], + "greater roadrunner": [ + "back: brown and white streaked feathers", + "beak: long, straight, and dark-colored", + "belly: white and pale with dark streaks", + "breast: pale buff or white with dark streaks", + "crown: sleek, dark crest", + "forehead: white and dark streaked feathers", + "eyes: large, dark, and alert", + "legs: long, strong, and dark-colored", + "wings: brown and white patterned feathers", + "nape: white and dark streaked feathers", + "tail: long, dark with white tips and edges", + "throat: pale buff with dark streaks" + ], + "greater sage grouse": [ + "back: brownish-gray plumage with white speckles", + "beak: short, sturdy, and pale yellow", + "belly: white with fine black bars and markings", + "breast: chestnut brown with distinct white bib and inflated air sacs during mating display", + "crown: black feathers with a slight crest", + "forehead: light gray with short feathers", + "eyes: bright yellow with a distinctive white eye ring", + "legs: feathered grayish-brown legs with sharp claws", + "wings: grayish-brown with intricate white markings and rounded tips", + "nape: gray feathers with a hint of beige", + "tail: long, stiff, pointed feathers with black and white barring", + "throat: black feathers contrasting the white bib on the breast" + ], + "greater white fronted goose": [ + "back: glossy brown feathers", + "beak: orange, medium-length, slightly hooked", + "belly: white with black speckles", + "breast: gray-brown with white barring", + "crown: dark brown, smooth feathers", + "forehead: white patch above beak", + "eyes: small, dark, surrounded by white feathers", + "legs: orange and sturdy", + "wings: broad, brown with white tips", + "nape: dark brown feathers with white speckles", + "tail: short, brown with white edges", + "throat: gray-brown, rounded feathers" + ], + "greater yellowlegs": [ + "back: light grayish-brown with scattered darker spots", + "beak: long, straight, and pointed black beak", + "belly: white with light streaks", + "breast: white with gray-brown speckles", + "crown: gray-brown with streaks", + "forehead: whitish with gray-brown streaks", + "eyes: small, black, and beady", + "legs: long, slender, and yellowish", + "wings: gray-brown with white edges", + "nape: gray-brown with streaks", + "tail: light grayish-brown with dark barring", + "throat: white with light gray streaks" + ], + "green tailed towhee": [ + "back: olive green feathers", + "beak: short, stout, and dark gray", + "belly: pale white with rufous undertones", + "breast: reddish-brown wash", + "crown: reddish-brown with darker streaks", + "forehead: similar to the crown, with reddish-brown and darker streaks", + "eyes: dark, beady, surrounded by white eyering", + "legs: long, slender, and grayish", + "wings: olive green with rufous and black markings", + "nape: reddish-brown blending into olive green", + "tail: long, dark green with reddish-brown undertail coverts", + "throat: white with black streaks on the sides" + ], + "groove billed ani": [ + "back: blackish-grey, smooth feathers", + "beak: stout, slightly curved, ridged groove pattern", + "belly: dark grey, soft plumage", + "breast: charcoal grey, feathery texture", + "crown: sleek blackish-grey feathers", + "forehead: smooth, grey-black transition to beak", + "eyes: small, black pupils in white-grey eye rings", + "legs: slender, long, grey-black", + "wings: dark grey, raptor-like appearance", + "nape: black, feathers gently curve towards back", + "tail: fan-shaped, elongated black feathers", + "throat: dark grey, fine feathered texture" + ], + "gull billed tern": [ + "back: sleek grey upper body", + "beak: thick, black and powerful", + "belly: clean white underbelly", + "breast: smooth white chest", + "crown: greyish-black cap", + "forehead: white plumage above beak", + "eyes: sharp, dark gaze", + "legs: slender orange-red limbs", + "wings: gracious grey and white flaps", + "nape: greyish-black stripe on neck", + "tail: slightly forked white streamers", + "throat: white, unblemished feathering" + ], + "hairy woodpecker": [ + "back: black and white striped pattern", + "beak: strong, chisel-like, black", + "belly: white and unblemished", + "breast: white and unblemished", + "crown: bold, red patch (male) or black (female", + "forehead: white with black markings", + "eyes: small, dark, and piercing", + "legs: grayish-blue, sturdy", + "wings: black with white spots", + "nape: black in color", + "tail: black with white outer feathers", + "throat: white with black markings" + ], + "hammond flycatcher": [ + "back: olive-green with subtle dark streaks", + "beak: black, thin, and pointed", + "belly: light yellowish tone", + "breast: pale gray to olive hue", + "crown: olive-gray with an indistinct crest", + "forehead: subdued gray-olive", + "eyes: dark brown with faint white eye-rings", + "legs: black and slender", + "wings: dark gray with two distinct white wing bars", + "nape: olive-gray shading to greenish", + "tail: dark gray with white outer feathers", + "throat: pale gray with a hint of yellow" + ], + "harris hawk": [ + "back: dark reddish-brown with white tips", + "beak: strong, hooked, and black", + "belly: creamy white with rust-colored streaks", + "breast: rich reddish-brown with white edges", + "crown: dark brown to black with a slight crest", + "forehead: reddish-brown, slightly lighter than the crown", + "eyes: sharp, yellow, with a dark brown iris", + "legs: long, yellow, with sharp talons", + "wings: broad, dark brown, with white band on upper wing coverts", + "nape: reddish-brown, similar to the back", + "tail: long, dark brown with several white bands", + "throat: creamy white with a dark brown malar stripe" + ], + "harris sparrow": [ + "back: brownish-gray feathers", + "beak: short, cone-shaped, dark gray", + "belly: light brownish-gray feathers", + "breast: reddish-brown with dark streaks", + "crown: dark black or brownish-black feathers", + "forehead: black or brownish-black feathers", + "eyes: small, black, surrounded by a thin white eyering", + "legs: sturdy, dark gray", + "wings: brownish-gray with white-edged feathers", + "nape: grayish-brown feathers", + "tail: brownish-gray feathers with white edges", + "throat: pale gray with fine black streaks" + ], + "heermann gull": [ + "back: pale gray feathers", + "beak: dark red to orange, sturdy and sharp", + "belly: white feathers", + "breast: white feathers with gray shading", + "crown: smooth white with light gray area", + "forehead: white feathers", + "eyes: dark and round, surrounded by white feathers", + "legs: pinkish-red and medium-length", + "wings: pale gray with black tips and a white trailing edge", + "nape: white turning to pale gray", + "tail: white with black terminal band", + "throat: white feathers" + ], + "henslow sparrow": [ + "back: streaked with reddish-brown and black", + "beak: short and conical, pale pinkish-gray", + "belly: pale grayish-white", + "breast: grayish-white with faint streaks", + "crown: reddish-brown with an olive stripe on the sides", + "forehead: dull olive-yellow", + "eyes: dark with a pale eye-ring", + "legs: sturdy, pinkish-gray", + "wings: short and round, with reddish-brown and dark gray feathers", + "nape: reddish-brown", + "tail: short and square, with dark reddish-brown feathers", + "throat: whitish-gray" + ], + "hermit thrush": [ + "back: olive-brown coloration", + "beak: slender, slightly curved", + "belly: off-white with spots", + "breast: pale, spotted with dark brown", + "crown: rust-tinged brown", + "forehead: smooth, olive-brown", + "eyes: beady black, expressive", + "legs: thin, sturdy, pinkish-brown", + "wings: olive-brown, faint bars", + "nape: dull, tawny olive", + "tail: reddish-brown, short", + "throat: white, spotted with brown" + ], + "herring gull": [ + "back: light gray plumage", + "beak: yellow with red spot", + "belly: pale white feathers", + "breast: white plumage", + "crown: white head with speckles", + "forehead: smooth white curve", + "eyes: bright yellow with black ring", + "legs: pinkish-orange in color", + "wings: gray with black tips and white spots", + "nape: white with speckled gray", + "tail: white with black band", + "throat: white and smooth" + ], + "hoary redpoll": [ + "back: lightly streaked with pale feathers", + "beak: small, black, and cone-shaped", + "belly: white with light streaks", + "breast: white with pinkish hue and light streaks", + "crown: red with narrow black border", + "forehead: reddish with pale feather tips", + "eyes: black surrounded by white feathers", + "legs: blackish with strong, sturdy claws", + "wings: black with white wing bars", + "nape: grayish-white with light streaks", + "tail: blackish with white outer feathers", + "throat: light gray with fine streaks" + ], + "hooded oriole": [ + "back: vibrant yellow-orange color", + "beak: long, slender, and curved for nectar feeding", + "belly: pale yellow with light streaks", + "breast: bright yellow-orange hue", + "crown: deep orange with slight crest", + "forehead: bright yellow-orange", + "eyes: small, black, and alert", + "legs: thin and grayish-blue", + "wings: black with white markings", + "nape: intense orange-yellow", + "tail: long, black, with white-edged feathers", + "throat: vivid yellow with a hint of orange" + ], + "hooded warbler": [ + "back: olive-green with faint, darker streaks", + "beak: short, sharp, and black", + "belly: bright yellow, unmarked", + "breast: vibrant yellow, slightly paler than belly", + "crown: striking black hood extending to nape", + "forehead: bright yellow, contrasting with black hood", + "eyes: dark, beady, encircled by thin white eye-ring", + "legs: thin, pale, and strong", + "wings: olive-green with two white wing bands", + "nape: black hood extends from the crown", + "tail: slightly forked, olive-green with white outer tail feathers", + "throat: bright yellow, matching the belly and breast" + ], + "horned grebe": [ + "back: dark with subtle patterns", + "beak: thin, pointed, and dark", + "belly: white or grey", + "breast: light grey with white spots", + "crown: black with reddish tufts", + "forehead: black or dark grey", + "eyes: bright red", + "legs: short, dark, and webbed", + "wings: relatively small, dark with white edging", + "nape: black or dark grey", + "tail: short and pointy", + "throat: white or light grey" + ], + "house wren": [ + "back: brown, mottled feathers with subtle barring", + "beak: thin, slightly curved, brownish-black", + "belly: light buff or creamy-white with sparse spots", + "breast: pale brown with faint barring", + "crown: brownish-gray with subtle streaking", + "forehead: light brown blending into the crown", + "eyes: dark brown, encircled by thin white eyering", + "legs: long, thin, pinkish-brown", + "wings: brown with black bars and pale spots", + "nape: brown, mottled with light speckles", + "tail: short, brown with faint black bars", + "throat: creamy-white, unmarked" + ], + "hutton vireo": [ + "back: olive-green upper body", + "beak: short and slightly hooked", + "belly: pale yellowish-white underside", + "breast: light greenish-yellow chest", + "crown: olive-green head top", + "forehead: slight contrast with lighter green-yellow eyebrow stripe", + "eyes: dark with white eye-ring", + "legs: grayish-blue thin legs", + "wings: greenish-olive with faint white wingbars", + "nape: olive-green neck area", + "tail: olive-green and slightly forked", + "throat: pale yellowish-white front neck" + ], + "iceland gull": [ + "back: pale grey plumage", + "beak: yellowish with red spot", + "belly: white feathering", + "breast: lightly streaked white", + "crown: smooth white feathers", + "forehead: gently sloping, white", + "eyes: dark with thin eye-ring", + "legs: pinkish or reddish-tinged", + "wings: pale grey with black tips", + "nape: white, connects to the back", + "tail: clean white feathers", + "throat: unmarked white" + ], + "inca dove": [ + "back: delicate gray, gentle feather pattern", + "beak: sleek and curved, light gray", + "belly: light buff-gray, soft and smooth", + "breast: elongated feathers, gray-scaled pattern", + "crown: grayish brown, rounded, clearly visible", + "forehead: gray-toned, unmarked stripe", + "eyes: dark, expressive, outlined by white ring", + "legs: slender pinkish-gray, sharply clawed", + "wings: multicolored earth tones, slightly pointed", + "nape: soft gray-brown, scaled feather pattern", + "tail: long and tapered, gray-white tip and edges", + "throat: unmarked pale gray, visually seamless" + ], + "killdeer": [ + "back: brownish-gray with white stripes", + "beak: short, thin, and dark", + "belly: creamy-white", + "breast: rich buff with black collar", + "crown: gray-brown head with white stripes", + "forehead: white with dark band above eyes", + "eyes: dark with white eye-ring", + "legs: long, lean, and reddish-orange", + "wings: brownish-gray with white stripes and copper accents", + "nape: gray-brown with thin white neckband", + "tail: blackish with white outer feathers and copper accents", + "throat: white with dark brown stripes" + ], + "king rail": [ + "back: rich brown with dark streaks", + "beak: long, slender, yellowish-orange", + "belly: heavily barred with black and white", + "breast: cinnamon-colored with dark patch", + "crown: dark brown with lighter streaks", + "forehead: pale brown with sparse markings", + "eyes: small, dark, and alert", + "legs: long, strong, orange-yellow", + "wings: short, brown with lighter streaks", + "nape: reddish-brown with dark streaks", + "tail: short and dark with narrow white bands", + "throat: pale buff with light barring" + ], + "ladder backed woodpecker": [ + "back: striped black-and-white pattern", + "beak: sturdy, chisel-shaped", + "belly: whitish with faint streaks", + "breast: white with black spots", + "crown: red patch on male, plain on female", + "forehead: white with black streaks", + "eyes: black with white eye-ring", + "legs: strong, grayish-blue", + "wings: black with white ladder-like pattern", + "nape: black and white striped", + "tail: black with white barring", + "throat: white, occasionally with black markings" + ], + "lapland longspur": [ + "back: brown with black streaks", + "beak: yellowish base with dark tip", + "belly: white and clean", + "breast: white with slight streaking", + "crown: rufous with black outline", + "forehead: black in males, brown in females", + "eyes: dark and alert", + "legs: slender and pale", + "wings: black with white edges", + "nape: brown with black markings", + "tail: dark with white outer feathers", + "throat: black in males, white in females" + ], + "lark sparrow": [ + "back: brownish-gray with streaks", + "beak: short and cone-shaped", + "belly: white with dark streaks", + "breast: pale brown with dark spots", + "crown: chestnut-brown with gray edges", + "forehead: light gray-brown", + "eyes: dark, almond-shaped", + "legs: long and slender", + "wings: dark brown with chestnut and white patches", + "nape: chestnut-brown with gray streaks", + "tail: dark brown with distinctive white edges", + "throat: white with brown streaks" + ], + "le conte sparrow": [ + "back: streaked with reddish-brown and gray", + "beak: short, cone-shaped, and pinkish-gray", + "belly: white with faint streaks", + "breast: buff-colored with dark streaks", + "crown: reddish-brown with central gray stripe", + "forehead: reddish-brown with a gray stripe above the eyes", + "eyes: black, surrounded by white eyering", + "legs: thin, pinkish-brown", + "wings: brownish-gray with white-edged feathers", + "nape: reddish-brown with gray streaks", + "tail: brownish-gray with white outer tail feathers", + "throat: white with thin dark streaks" + ], + "least bittern": [ + "back: brownish-green feathers with dark streaks", + "beak: long, slender, and sharp with a yellowish-green color", + "belly: creamy-white with brownish streaks", + "breast: buff-colored with dark brown streaks", + "crown: dark brown with a slightly crest shape", + "forehead: white with brown streaks", + "eyes: small, yellow, and round", + "legs: long, yellowish-green with webbed toes", + "wings: brownish-green with lighter edges", + "nape: brown with light white streaks", + "tail: short with brownish-green feathers and darker barring", + "throat: white with brownish streaks" + ], + "least flycatcher": [ + "back: olive-green with subtle streaks", + "beak: small, pointed, and black", + "belly: white or pale yellow", + "breast: light gray with slight olive tinge", + "crown: grayish-green with a slight crest", + "forehead: grayish-green and flat", + "eyes: round, black with thin white eye-ring", + "legs: blackish-gray, thin but sturdy", + "wings: dark brown with white wing bars", + "nape: grayish-green, blending with the crown", + "tail: dark brown, slightly forked", + "throat: white or pale gray" + ], + "least grebe": [ + "back: olive-gray with interspersed dark markings", + "beak: short, black, and slightly hooked", + "belly: white with subtle grayish tones", + "breast: grayish-white fading into belly", + "crown: dark brownish-gray extending to nape", + "forehead: slightly paler brownish-gray", + "eyes: bright red with well-defined white eyering", + "legs: short, with greenish-yellow webbed feet", + "wings: olive-gray with darker flight feathers", + "nape: dark brownish-gray, continuous with crown", + "tail: short, olive-gray with black central feathers", + "throat: pale gray transitioning into breast coloration" + ], + "least sandpiper": [ + "back: brownish-gray with pale streaks", + "beak: thin, slightly curved, black", + "belly: white with grayish-brown markings", + "breast: white with brownish speckles", + "crown: reddish-brown fading into gray", + "forehead: pale gray streaked with brown", + "eyes: small, dark with thin pale eyering", + "legs: yellowish-green, slender", + "wings: brownish-gray with white wingbars", + "nape: reddish-brown with pale streaks", + "tail: short, dark brown with white outer feathers", + "throat: white, unmarked" + ], + "least tern": [ + "back: light grey feathers", + "beak: slender black beak", + "belly: white feathered area", + "breast: pale grey plumage", + "crown: black cap on head", + "forehead: white band above beak", + "eyes: black eyes on either side of head", + "legs: thin orange legs", + "wings: pointed wings with grey and white feathers", + "nape: where the black crown meets the grey back", + "tail: forked with white and grey feathers", + "throat: white and unmarked" + ], + "lesser nighthawk": [ + "back: brownish-grey with subtle white speckles", + "beak: short and slightly hooked", + "belly: pale buff-colored with light streaks", + "breast: brownish-grey with faint white streaks", + "crown: greyish-brown with faint whitish spots", + "forehead: light brown with sparse, pale markings", + "eyes: large and dark", + "legs: short and feathered, with well-camouflaged coloration", + "wings: long and pointed, brownish-grey with light barring", + "nape: brownish-grey with light markings", + "tail: dark brown with white bands and notched tips", + "throat: light buff-colored with faint streaks" + ], + "lesser yellowlegs": [ + "back: light grey with subtle streaking", + "beak: slightly upturned, black and slim", + "belly: clean white with soft marking", + "breast: white with fine grey streaks", + "crown: subdued grey with streak pattern", + "forehead: smooth white and grey blend", + "eyes: dark and beady, set in white eye-ring", + "legs: long and slender, bright yellow", + "wings: grey with neat white edging", + "nape: streaked grey, blends into back", + "tail: pale grey with white outer edges", + "throat: soft white with faint markings" + ], + "lewis woodpecker": [ + "back: dark greenish-black, smooth feathers", + "beak: long, slender, and chisel-like", + "belly: pale red, slightly fluffy appearance", + "breast: pale red, blending with belly color", + "crown: dark red, slightly raised feathers", + "forehead: dark red, continuing from crown", + "eyes: white with black pupils, alert expression", + "legs: grayish-blue, strong and sturdy", + "wings: greenish-black, broad with slightly pointed tips", + "nape: greenish-black, continuation of back color", + "tail: greenish-black, long with slight curve at the end", + "throat: dark, pale red fading to black, subtle transition to breast color" + ], + "lincoln sparrow": [ + "back: streaked brown and black", + "beak: short and conical", + "belly: creamy white", + "breast: buff-colored with fine streaks", + "crown: rusty red with fine, dark gray stripes", + "forehead: chestnut-colored", + "eyes: small, dark, and bright", + "legs: pinkish-brown", + "wings: dark brown with white bars", + "nape: gray with black streaks", + "tail: dark brown and notched", + "throat: white with buff-colored markings" + ], + "long billed curlew": [ + "back: light brown with delicate streak patterns", + "beak: long, slender, and curved downward", + "belly: pale with very fine brown markings", + "breast: buff-colored with brown streaks", + "crown: light brown with dark lines", + "forehead: light brown blending into white", + "eyes: dark and expressive", + "legs: long, bluish-gray with scaly texture", + "wings: mottled brown and beige with intricate patterns", + "nape: light brown with dark streaks descending from the crown", + "tail: brown with white edges and barred tips", + "throat: white and unmarked" + ], + "long billed dowitcher": [ + "back: brownish-grey with dark streaks", + "beak: long, thin, and straight", + "belly: white and lightly streaked", + "breast: reddish-brown with dark spots", + "crown: brownish-grey with dark stripes", + "forehead: reddish-brown, blending into the crown", + "eyes: small and dark, surrounded by a white ring", + "legs: greenish-yellow and long", + "wings: brownish-grey with dark streaks and patterning", + "nape: reddish-brown with dark streaks", + "tail: brownish-grey, barred, and relatively short", + "throat: white, blending into the breast color" + ], + "long billed thrasher": [ + "back: brownish-grey feathers", + "beak: long, slightly curved, grey", + "belly: pale white with grey speckles", + "breast: light grey with faint streaks", + "crown: rusty brown", + "forehead: light reddish-brown", + "eyes: piercing black", + "legs: slender, greyish-pink", + "wings: dark brown with muted white bars", + "nape: brownish-grey transition from crown", + "tail: long, brown with white tips", + "throat: white with faint grey streaks" + ], + "louisiana waterthrush": [ + "back: olive-brown with streaks", + "beak: thin, pointed, and dark", + "belly: white with dark streaks", + "breast: creamy white, streaked with brown", + "crown: olive-brown, striped", + "forehead: yellowish-brown, flat", + "eyes: dark with thin, pale eyering", + "legs: pinkish-brown, long", + "wings: olive-brown, short, with white spots", + "nape: olive-brown, slightly streaked", + "tail: dark brown, slightly forked", + "throat: white, unmarked" + ], + "magnificent frigatebird": [ + "back: dark iridescent feathers", + "beak: long, hooked, and slender", + "belly: black and sleek", + "breast: broad and gently rounded", + "crown: black, glossy feathers", + "forehead: narrow and smooth", + "eyes: dark and piercing", + "legs: short and strong", + "wings: long, slender, and angular", + "nape: gracefully curved", + "tail: deeply forked and elongated", + "throat: red, inflated pouch in males" + ], + "magnolia warbler": [ + "back: yellow with black streaks", + "beak: thin and pointed, blackish-gray", + "belly: bright yellow", + "breast: yellow with bold black streaks", + "crown: black with yellow streaks", + "forehead: black with yellow patches", + "eyes: large, dark, with bold white eyering", + "legs: long, dark gray, slender", + "wings: black with two bold white wingbars", + "nape: black with yellow streaks", + "tail: black with bold white patches", + "throat: bright yellow" + ], + "mallard": [ + "back: greenish-brown feathers", + "beak: yellowish-green bill", + "belly: white to light gray feathers", + "breast: chestnut-brown plumage", + "crown: dark green, iridescent feathers", + "forehead: narrow white stripe", + "eyes: dark brown with white eye ring", + "legs: orange to reddish-orange webbed feet", + "wings: blue speculum bordered by white stripes", + "nape: sleek black feathers", + "tail: black, curled upward central feathers", + "throat: white to light gray feathers" + ], + "marbled godwit": [ + "back: brownish-gray with light streaks", + "beak: long, slightly upturned, pinkish at base, dark at the tip", + "belly: pale with sparse brown streaks", + "breast: pale buff with darker brown streaks", + "crown: brownish-gray with light streaks", + "forehead: pale buff blending into the brownish-gray crown", + "eyes: black, small and surrounded by a white eye-ring", + "legs: long, dull greenish-yellow", + "wings: brownish-gray with white edges, black wingtips", + "nape: brownish-gray with light streaks", + "tail: dark brown with white outer feathers", + "throat: pale buff with faint brown mottling" + ], + "marsh wren": [ + "back: streaked brown and black", + "beak: long and slightly curved", + "belly: pale whitish-gray", + "breast: lightly streaked with brown", + "crown: dark brown with a broad white stripe", + "forehead: reddish-brown", + "eyes: small and black", + "legs: thin and brown", + "wings: short with barred patterns", + "nape: reddish-brown with white stripes", + "tail: short and upright, barred with black and white", + "throat: white and unmarked" + ], + "mew gull": [ + "back: sleek, light gray plumage", + "beak: medium-sized, yellow with a red spot", + "belly: white, smooth feathers", + "breast: white, minimal streaking", + "crown: slightly rounded, light gray", + "forehead: smooth, light gray plumage", + "eyes: dark, bead-like with an intense gaze", + "legs: short, yellow-orange, webbed", + "wings: light gray with black wingtips and white spots", + "nape: light gray, continuous with crown", + "tail: short and pointed, light gray with white edges", + "throat: white, seamlessly blending with breast" + ], + "mexican jay": [ + "back: blue-gray with slightly darker shade", + "beak: black, strong and slightly hooked", + "belly: blue-gray with light gray blending", + "breast: light gray, smooth transition from belly", + "crown: blue-gray, crest-like shape", + "forehead: blue-gray, smoothly connecting to the crown", + "eyes: black beads surrounded by blue-gray feathers", + "legs: black, sturdy with scaly texture", + "wings: blue-gray with black primary feathers", + "nape: blue-gray, in continuity with the back", + "tail: blue and black feathers, long and slightly rounded", + "throat: light gray, blending with breast color" + ], + "mississippi kite": [ + "back: slate gray with a slight shine", + "beak: dark, hooked, slender for catching prey", + "belly: light gray or white, sleek", + "breast: light gray, horizontal streaks", + "crown: dark gray, rounded", + "forehead: light gray, feathered", + "eyes: deep red, small, piercing", + "legs: yellowish, strong, short", + "wings: long, pointed, black, white patches", + "nape: gray, smooth transition from back", + "tail: long, black, squared-off tips", + "throat: light gray, unmarked" + ], + "monk parakeet": [ + "back: green feathers, slightly darker than wings", + "beak: strong, pale orange-yellow", + "belly: whitish gray with pale blue undertone", + "breast: pale gray with a tinge of blue hue", + "crown: bright green crest on top", + "forehead: bright green, sometimes hint of blue", + "eyes: dark iris on a white background", + "legs: gray with darker claws", + "wings: vibrant green feathers with darker edges", + "nape: vibrant green transitioning to pale gray-blue on neck", + "tail: long, blue-green feathers with hints of yellow", + "throat: pale gray-blue with bluish tones" + ], + "mottled duck": [ + "back: brownish-grey feathers with mottling", + "beak: dark grey with a slightly hooked tip", + "belly: buff-colored with dark brown speckles", + "breast: light brown with darker mottling", + "crown: dark brown with lighter streaks", + "forehead: dark brown with light feather edges", + "eyes: dark brown, surrounded by thin white eye-ring", + "legs: sturdy, orange with webbed feet", + "wings: greyish-brown with blue speculum feathers", + "nape: dark brown with lighter streaks", + "tail: greyish-brown with distinct black and white banding", + "throat: light brown with faint mottling" + ], + "mountain bluebird": [ + "back: vibrant blue feathers", + "beak: small, thin black beak", + "belly: pale gray-white plumage", + "breast: soft, grayish-blue feathers", + "crown: bright blue head plumage", + "forehead: striking blue feathers", + "eyes: round, dark eyes", + "legs: slender black legs", + "wings: vivid blue with long feathers", + "nape: rich blue neck feathers", + "tail: long, dark blue feathers", + "throat: lightly grayish-blue plumage" + ], + "mountain chickadee": [ + "back: gray feathers with brownish tinges", + "beak: small, black, and sharp", + "belly: white with subtle gray streaks", + "breast: white with grayish-brown edges", + "crown: black with white edges", + "forehead: white stripe down the center", + "eyes: black stripe through eye, white crescent above", + "legs: dark gray with strong feet", + "wings: gray with white wing bars", + "nape: black stripe at the base of the neck", + "tail: elongated, gray with white tips", + "throat: white with grayish-brown outline" + ], + "mountain plover": [ + "back: light brown with subtle speckles", + "beak: short and pale with a black tip", + "belly: white with faint brown markings", + "breast: white with a brownish upper edge", + "crown: light brown with pale edges", + "forehead: white with a faint brown streak", + "eyes: dark with white crescent below", + "legs: long and pale yellowish-grey", + "wings: pale brown with barred flight feathers", + "nape: light brown with dull streaks", + "tail: pale brown with dark bands", + "throat: white with a faint grey-brown border" + ], + "mourning warbler": [ + "back: olive-green upper body", + "beak: blackish, thin, pointed", + "belly: whitish-yellow underside", + "breast: grayish-blue chest", + "crown: olive-green, unmarked", + "forehead: olive-green transition to face", + "eyes: white eye-rings, black pupils", + "legs: pinkish-brown", + "wings: olive-green with faint wing bars", + "nape: yellowish-olive-green", + "tail: olive-green with darker edges", + "throat: bright yellow, unmarked" + ], + "muscovy duck": [ + "back: sleek, iridescent green and black feathers", + "beak: thick, reddish-orange with black tip", + "belly: soft, white feathers with occasional black spots", + "breast: large, white feathers transitioning to iridescent green and black", + "crown: slightly raised feathers on top of the head", + "forehead: smooth, light black feathers leading to beak", + "eyes: round, dark brown with black outline, and a red patch of skin", + "legs: strong, scaly, reddish-orange with black webbed feet", + "wings: patterned with iridescent green, black, and white feathers", + "nape: area behind the head with smooth black feathers", + "tail: long, black feathers with hints of iridescent green", + "throat: white feathers transitioning to black towards the chest" + ], + "mute swan": [ + "back: sleek, elongated, and white", + "beak: orange with a black knob at the base", + "belly: rounded and white", + "breast: full, curved, and white", + "crown: smooth feathers atop the head", + "forehead: wide and dome-shaped", + "eyes: small, round, and dark", + "legs: sturdy, grayish-black with webbed feet", + "wings: large, powerful, and white", + "nape: gracefully curved with distinct s-shape", + "tail: short, pointed, and white feathers", + "throat: slender, white, and smooth" + ], + "nashville warbler": [ + "back: olive-green feathers", + "beak: thin, sharp, grey-black", + "belly: white with pale yellow tint", + "breast: bright yellow plumage", + "crown: blue-grey with distinct eyeline", + "forehead: grey-blue coloring", + "eyes: small, black, centered", + "legs: long, grey-black", + "wings: olive-green with white wingbars", + "nape: olive-green shading to grey", + "tail: short, olive-green with white edges", + "throat: bright yellow and unmarked" + ], + "nelson sparrow": [ + "back: gray-brown with pale streaks", + "beak: small and cone-shaped, pale brown", + "belly: light grayish-white", + "breast: grayish-white with faint streaks", + "crown: reddish-brown with gray streaks", + "forehead: pale grayish-brown", + "eyes: black with faint white eye-ring", + "legs: pale brown, slender", + "wings: gray-brown with two white wing-bars", + "nape: gray-brown with reddish-brown tinge", + "tail: grayish-brown with forked appearance", + "throat: pale grayish-white" + ], + "neotropic cormorant": [ + "back: dark greenish or brownish-black feathers", + "beak: long, hooked, and yellowish at the base", + "belly: dark greenish or brownish-black feathers", + "breast: dark greenish or brownish-black feathers with slight white markings", + "crown: dark greenish or brownish-black feathers with a slight crest", + "forehead: dark greenish or brownish-black feathers, sloping to the beak", + "eyes: round and dark, surrounded by patches of turquoise or blue skin", + "legs: short and black, with long, webbed toes", + "wings: dark greenish or brownish-black feathers with a purple sheen", + "nape: dark greenish or brownish-black feathers with occasional white streaks", + "tail: long, dark greenish or brownish-black feathers", + "throat: dark greenish or brownish-black feathers with a white patch at the base of the neck" + ], + "northern bobwhite": [ + "back: reddish-brown with white streaks", + "beak: short, curved, and stout", + "belly: white with dark feathered barring", + "breast: chestnut colored with white markings", + "crown: dark reddish-brown", + "forehead: white buff stripe", + "eyes: medium-sized, dark brown", + "legs: short, grayish-brown", + "wings: reddish-brown with spotted white tips", + "nape: dark feathered neck", + "tail: short, rounded, with chestnut and dark brown feathers", + "throat: white throat patch with bold black trim" + ], + "northern hawk owl": [ + "back: slate gray with white speckling", + "beak: sharp and dark gray", + "belly: white with thick dark streaks", + "breast: white with dark barring", + "crown: dark gray with white flecks", + "forehead: dark gray and white striped", + "eyes: striking yellow with dark outlines", + "legs: feathered, grayish-brown", + "wings: dark gray with white highlights and bands", + "nape: grayish-white with dark markings", + "tail: long, dark gray with white bands", + "throat: white with a dark brown streak" + ], + "northern rough winged swallow": [ + "back: brownish-gray feathers", + "beak: small, dark, slender", + "belly: light grayish-brown", + "breast: pale gray-brown", + "crown: brownish-gray, slightly raised", + "forehead: smooth, brownish-gray", + "eyes: round, black, inconspicuous", + "legs: short, dark, thin", + "wings: long, dark brown, pointed tips", + "nape: brownish-gray, continuous with crown", + "tail: forked, brownish-black, with white edges", + "throat: pale gray, contrasting with breast" + ], + "northern saw whet owl": [ + "back: brownish plumage with white spots", + "beak: short, sharp, and hooked", + "belly: white with brown streaks", + "breast: white and streaked with brown", + "crown: brown with white spots", + "forehead: streaked brown and white", + "eyes: large, yellow, and forward-facing", + "legs: feathered and stout", + "wings: brown with white bands on the primary feathers", + "nape: brown with white streaks", + "tail: brown with white bands and squared-off end", + "throat: white and unmarked" + ], + "northern shrike": [ + "back: sleek, grayish hue", + "beak: strong, hooked shape", + "belly: clean, whitish color", + "breast: pale, lightly streaked", + "crown: gray with sharp contour", + "forehead: smooth, gray touch", + "eyes: sharp, bold black", + "legs: sturdy, blackish-brown", + "wings: dark gray with prominent white patches", + "nape: gently gray gradient", + "tail: contrasting black with white outer feathers", + "throat: white, blending with breast" + ], + "northern waterthrush": [ + "back: olive-brown with fine streaks", + "beak: thin and pointed", + "belly: pale with dark streaks", + "breast: creamy-white with bold streaks", + "crown: olive-brown with faint stripes", + "forehead: olive-brown and slightly flat", + "eyes: dark with prominent white eyering", + "legs: pinkish or flesh-colored", + "wings: olive-brown with faint wing bars", + "nape: olive-brown, faintly streaked", + "tail: olive-brown with subtle markings", + "throat: white and unmarked" + ], + "nuttall woodpecker": [ + "back: black with white bars and streaks", + "beak: long, slender, and chisel-like", + "belly: white with sparse black markings", + "breast: white, occasionally with black spots", + "crown: red in males, black in females", + "forehead: white with black streaks", + "eyes: dark, medium-sized, surrounded by white feathering", + "legs: grayish-blue, sturdy and strong", + "wings: black with white bars and spots", + "nape: white with black streaks, red patch in males", + "tail: black with white outer feathers", + "throat: white, sometimes with black markings" + ], + "oak titmouse": [ + "back: small, light gray feathers", + "beak: short, black, conical shape", + "belly: pale gray covering", + "breast: subtle, light gray plumage", + "crown: prominent, bushy crest", + "forehead: light gray, blending to the crown", + "eyes: small, dark, and alert", + "legs: slender, grayish-brown", + "wings: grayish-brown, rounded edges", + "nape: smooth, gray feather transition", + "tail: long, light gray, straight feathers", + "throat: soft, lighter gray patch" + ], + "olive sparrow": [ + "back: olive-brown with grayish streaks", + "beak: short, conical, pale grayish", + "belly: pale buff to white", + "breast: grayish-brown with streaks", + "crown: olive with rufous streaks", + "forehead: rufous-brown", + "eyes: dark black, small, round", + "legs: strong, pinkish-gray", + "wings: olive-brown, rounded", + "nape: olive-brown with streaks", + "tail: long, notched, olive-brown", + "throat: pale grayish-white" + ], + "olive sided flycatcher": [ + "back: dark grayish olive, streaked pattern", + "beak: short, black, and strong", + "belly: light cream, buff-colored", + "breast: streaked, grayish olive, and white", + "crown: dark grayish olive, flattish", + "forehead: grayish olive, blending with crown", + "eyes: black with pale eye-ring", + "legs: short, black, and twig-perching", + "wings: dark grayish olive, long, and pointed", + "nape: grayish olive, blending with the back", + "tail: dark grayish olive, forked, and stiff", + "throat: white, streaked grayish olive" + ], + "orange crowned warbler": [ + "back: olive-green with subtle streaks", + "beak: thin, pointed, and dark", + "belly: pale yellow to grayish-white", + "breast: light yellow with faint streaks", + "crown: hidden orange patch with olive surrounding", + "forehead: olive-green blending into crown", + "eyes: small, black, with pale eyering", + "legs: long, slender, and pale", + "wings: olive-green with two faint wingbars", + "nape: olive-green, continuous with back", + "tail: olive-green, slightly forked, with white outer edges", + "throat: pale yellow, transitioning to breast color" + ], + "orchard oriole": [ + "back: bright greenish-yellow feathers", + "beak: sharply pointed, grayish-black", + "belly: pale yellow or white underside", + "breast: yellow-orange with grayish-black streaks", + "crown: black with greenish-yellow tinges", + "forehead: black extending to eyes", + "eyes: dark with black outline", + "legs: grayish-black, slender", + "wings: dark gray or black with white wing-bars", + "nape: greenish-yellow blending into black", + "tail: dark gray or black, forked", + "throat: vibrant yellow with black border" + ], + "pacific golden plover": [ + "back: golden and speckled with black spots", + "beak: short and slender, blackish-gray", + "belly: creamy white or grayish-white", + "breast: golden with black speckling, transitioning to white near the belly", + "crown: golden and black speckled pattern", + "forehead: golden with black speckling, often more golden towards the crown", + "eyes: dark, medium-sized, with a white eyering", + "legs: relatively long, dark gray", + "wings: brownish-black with golden speckling, white wingbars", + "nape: golden and black speckled pattern, similar to the crown", + "tail: brownish-black with a white tip", + "throat: white, contrasting with the golden breast" + ], + "pacific loon": [ + "back: sleek, dark gray with subtle white speckling", + "beak: sharp, straight, and black", + "belly: smooth, snowy white", + "breast: white, transitioning into the gray of the back", + "crown: black or dark gray, rounded", + "forehead: dark gray, continuous with the crown", + "eyes: piercing red, surrounded by black feathers", + "legs: black, webbed feet for swimming", + "wings: dark gray, long and narrow for powerful flight", + "nape: black or dark gray, blending into the crown and back", + "tail: short, dark gray feathers", + "throat: clean, bright white, contrasting with the darker head" + ], + "pacific wren": [ + "back: rich brown with subtle dark barring", + "beak: slender and pointed, dark upper and lower mandibles", + "belly: pale brownish-grey, with some darker spots or barring", + "breast: buff-colored, finely streaked with dark brown", + "crown: dark brown with fine blackish streaks", + "forehead: slightly lighter brown than the crown, blending into it", + "eyes: dark, surrounded by a faint whitish eyering", + "legs: pale pinkish-brown, thin and delicate", + "wings: rounded, brown with fine dark barring", + "nape: brown, similar in color to the back and crown, streaked with dark bars", + "tail: short and dark brown, with faint black barring", + "throat: pale greyish-brown, unmarked" + ], + "pacific slope flycatcher": [ + "back: olive-green upper body", + "beak: small, pointed, slightly hooked", + "belly: pale yellow underparts", + "breast: olive-washed, yellowish hue", + "crown: olive-green with indistinct eye-ring", + "forehead: slightly brighter green", + "eyes: dark, well-defined, surrounded by pale eye-ring", + "legs: thin, dark and delicate", + "wings: olive-green, long, with two whitish wing bars", + "nape: olive-green, blending with back and crown", + "tail: olive-green, long, often flicked upwards", + "throat: pale yellow, distinctive from chest and belly" + ], + "painted redstart": [ + "back: black with a patch of white", + "beak: short and slender, black", + "belly: white with a hint of red", + "breast: black, extending to flanks", + "crown: black, sleek and glossy", + "forehead: black, part of the continuous black head", + "eyes: black with a conspicuous white eyering", + "legs: long and slender, black", + "wings: black with white secondary feathers", + "nape: black, continuing the crown's coloration", + "tail: black with white outer tips and red center feathers", + "throat: black, connecting to the breast" + ], + "palm warbler": [ + "back: olive-brown back with streaks", + "beak: short and sharp, black-colored", + "belly: creamy white with faint streaks", + "breast: bright yellow with dark streaks", + "crown: orange-yellow with pale edges", + "forehead: yellowish with faint markings", + "eyes: small and dark, framed by eye-ring", + "legs: long and skinny, with blackish coloring", + "wings: olive-brown with white-edged feathers", + "nape: olive-brown, blending into the back", + "tail: short and dark, with white outer feathers", + "throat: bright yellow, blending into the breast" + ], + "pectoral sandpiper": [ + "back: dark brown with light feather edges", + "beak: short, thin, and slightly curved downward", + "belly: white with sparse brown streaks", + "breast: buff-colored with dark brown streaks", + "crown: brown with faint lighter streaks", + "forehead: pale with fine brown markings", + "eyes: small, dark, and situated on the sides of the head", + "legs: yellowish-green and quite slender", + "wings: brown with white edges on the feathers", + "nape: brown with light streaks, blending into the back", + "tail: brown with dark bars and a white outer edge", + "throat: pale with fine brown streaks" + ], + "philadelphia vireo": [ + "back: olive-green with slight yellow tinge", + "beak: short, hooked, and dark grey", + "belly: pale yellow-white", + "breast: soft yellow with olive tones", + "crown: olive-green fading into grayish-white forehead", + "forehead: grayish-white or off-white", + "eyes: dark with white eye-rings", + "legs: thin and pale blue-gray", + "wings: olive-green with darker feather edging", + "nape: faint yellow-green hue", + "tail: olive-green with darker feathers", + "throat: bright yellow with olive tinge" + ], + "pied billed grebe": [ + "back: brown and gray feathers", + "beak: short, thick, and striped", + "belly: white and fluffy", + "breast: grayish-brown plumage", + "crown: dark brown, slightly raised", + "forehead: slightly sloped with dark feathers", + "eyes: bright red, beady", + "legs: short, greenish-gray, set far back", + "wings: small, brownish-gray", + "nape: dark brown, continuous with the crown", + "tail: short and stubby, no apparent feathers", + "throat: light gray, blending with breast" + ], + "pigeon guillemot": [ + "back: blackish-grey with white streaks", + "beak: bright red-orange with a hooked tip", + "belly: white with occasional feathers", + "breast: white merging into grey-black near wings", + "crown: glossy black with a rounded shape", + "forehead: smooth black curve from beak to crown", + "eyes: dark with a thin white eye-ring", + "legs: red-orange, set back on body for swimming", + "wings: black with large white patches near tips", + "nape: black, connecting seamlessly with the crown", + "tail: black, short with a slightly rounded shape", + "throat: white, contrasting with the black beak and neck" + ], + "pileated woodpecker": [ + "back: black feathers with white stripes", + "beak: long, strong, chisel-shaped", + "belly: white with black streaks", + "breast: black and white striped", + "crown: bright red crest", + "forehead: red with a black border", + "eyes: small, black, and alert", + "legs: powerful with gray coloring", + "wings: black with white stripes and large white patches", + "nape: red topped with black feathers", + "tail: black with white accents", + "throat: white with black striping" + ], + "pine grosbeak": [ + "back: light reddish-brown with soft, dense feathers", + "beak: strong, conical, and light pinkish-gray", + "belly: pale, yellowish-gray with a hint of rose", + "breast: rosy-pink in males, yellowish-gray in females", + "crown: round, with a blend of reddish-brown and gray feathers", + "forehead: matching the crown, smooth feathers transitioning into the beak", + "eyes: small, round, and dark, surrounded by faint white eyering", + "legs: strong, short, and grayish-blue with scaled texture", + "wings: darker reddish-brown, long and broad, ending in a curved tip", + "nape: similar to back, reddish-brown feathers smoothly transitioning to the crown", + "tail: relatively short, straight-edged, and darker reddish-brown", + "throat: pale, blending from the breast color, transitioning into the belly" + ], + "pine siskin": [ + "back: striped brown and white feather patterns", + "beak: small, pointed, and yellowish-brown", + "belly: creamy white with fine streaks", + "breast: beige with thin, dark streaks", + "crown: grayish-brown with small streaks", + "forehead: yellow or greenish-yellow patches", + "eyes: small, dark, and alert", + "legs: thin and yellowish-brown", + "wings: brown with bright yellow patches", + "nape: streaked brown and white", + "tail: brown with notched, narrow tips", + "throat: pale with dark streaks" + ], + "pine warbler": [ + "back: olive-green with faint streaks", + "beak: slender, pointed, dark gray", + "belly: pale yellow to white", + "breast: bright yellow with fine streaks", + "crown: greenish-yellow, unmarked", + "forehead: slightly brighter yellow", + "eyes: black with narrow white eye-ring", + "legs: gray-blue, slender", + "wings: grayish-blue with two white wing bars", + "nape: olive-green, unmarked", + "tail: gray-blue with white outer feathers", + "throat: bright yellow, unmarked" + ], + "piping plover": [ + "back: light sandy-brown, camouflaged for beach nesting", + "beak: short, thin, orange with a black tip", + "belly: white, sleek feathers", + "breast: pale gray, subtle markings for blending in", + "crown: sandy-brown, matches back feathers", + "forehead: white stripe extending over the eyes", + "eyes: small, black, positioned on the sides of the head", + "legs: thin, orange, long for wading in shallow water", + "wings: sandy-brown with minor black patches and a white stripe", + "nape: sandy-brown, part of overall camouflaged appearance", + "tail: short, sandy-brown on top with white outer feathers", + "throat: white, connects to the white stripe on the forehead" + ], + "plumbeous vireo": [ + "back: blue-gray coloring with inconspicuous streaks", + "beak: short, thick, and slightly hooked", + "belly: pale white with faint gray wash", + "breast: white with a hint of gray", + "crown: blue-gray with indistinct eyebrows", + "forehead: smooth blue-gray", + "eyes: dark with a white eye-ring", + "legs: short and sturdy, pale blue-gray", + "wings: blue-gray with two white wing bars", + "nape: blue-gray, consistent with the back", + "tail: blue-gray with white outer edges", + "throat: white, contrasting with the blue-gray head" + ], + "prairie falcon": [ + "back: sleek and slender with brownish-grey feathers", + "beak: sharp, curved, and black; adapted for tearing prey", + "belly: creamy-white with thin, dark barring", + "breast: white with brownish-grey streaks", + "crown: brownish-grey feathers covering the top of the head", + "forehead: white with a dark grey eye-line", + "eyes: large, dark, and sharply focused for excellent vision", + "legs: strong, yellow, and powerful with black talons for grasping prey", + "wings: long, pointed, and brownish-grey for swift, agile flight", + "nape: brownish-grey feathers blending into the back", + "tail: long, brownish-grey, and banded with darker bars for stability in flight", + "throat: white with subtle grey streaks" + ], + "prairie warbler": [ + "back: olive-green with faint streaks", + "beak: small and pointed", + "belly: yellowish with light brown streaks", + "breast: bright yellow with faint streaks", + "crown: yellowish-green", + "forehead: yellow with black markings", + "eyes: dark with thin white eye-ring", + "legs: pinkish-brown", + "wings: dark grayish-brown with white streaks", + "nape: greenish-yellow", + "tail: dark grayish-brown with white edges", + "throat: bright yellow" + ], + "prothonotary warbler": [ + "back: bright yellow-green", + "beak: black, thin, pointed", + "belly: vibrant yellow", + "breast: vivid yellow", + "crown: golden-yellow", + "forehead: striking yellow", + "eyes: black bead with white ring", + "legs: bluish-gray", + "wings: blue-gray with white bars", + "nape: yellow-greenish", + "tail: blue-gray with white edges", + "throat: bright yellow" + ], + "purple sandpiper": [ + "back: grayish-brown, subtly streaked", + "beak: slightly curved, short, black", + "belly: pale gray, lightly speckled", + "breast: pale gray, speckled with darker markings", + "crown: dark gray with faint streaks", + "forehead: smooth, pale gray", + "eyes: small, dark", + "legs: vibrant yellow-orange", + "wings: gray-brown with pale wingtips", + "nape: gray-brown with subtle streaks", + "tail: dark brown with white edges", + "throat: pale gray, unmarked" + ], + "pygmy nuthatch": [ + "back: slate-grey feathers", + "beak: small, sharp, and pointed", + "belly: light grey with soft feathering", + "breast: whitish-grey, blending with belly", + "crown: dark grey, slightly raised", + "forehead: lighter grey, smooth feathers", + "eyes: small, black, with white eye-rings", + "legs: short and sturdy, with strong claws", + "wings: slate-grey with white-edged feathers", + "nape: dark grey, connects crown to back", + "tail: short, edged with black and white bars", + "throat: whitish-grey, blending into breast" + ], + "red phalarope": [ + "back: greyish-brown with darker streaks", + "beak: short, straight, blackish", + "belly: white or pale grey", + "breast: greyish-brown with white patches", + "crown: greyish-brown with darker streaks", + "forehead: greyish-white to white", + "eyes: dark, surrounded by white eyering", + "legs: long, greenish-yellow", + "wings: dark grey with white stripes and patches", + "nape: greyish-brown with darker streaks", + "tail: blackish-grey with white outer feathers", + "throat: white or pale grey" + ], + "red bellied woodpecker": [ + "back: black and white striped pattern", + "beak: long, chisel-like, and light grey", + "belly: pale, reddish hue", + "breast: white and slightly speckled", + "crown: bright red patch", + "forehead: white or pale gray", + "eyes: black with white surrounding feathers", + "legs: sturdy and grey", + "wings: black with white spots", + "nape: black and white striped", + "tail: black feathers with white bars", + "throat: white and unmarked" + ], + "red breasted merganser": [ + "back: dark-feathered and streamlined", + "beak: slender, serrated edges", + "belly: white, with dark spots", + "breast: rusty red, speckled", + "crown: greenish-black, sleek", + "forehead: merges seamlessly with crown", + "eyes: alert, dark brown", + "legs: orange, powerful", + "wings: grayish-blue, white patch", + "nape: elongated, black feathers", + "tail: dark, fan-shaped", + "throat: white, well-defined" + ], + "red breasted nuthatch": [ + "back: slate-grey feathers with white streaks", + "beak: short, robust, and angled upward", + "belly: creamy white with faint tinges of red", + "breast: warm cinnamon-red with undertones of grey", + "crown: bold black stripe bordered by white", + "forehead: white with a black eyestripe", + "eyes: intelligent, dark, and bead-like", + "legs: short and sturdy, with sharp claws", + "wings: slate-grey with white and black markings", + "nape: white with faint black stripes", + "tail: short and square, with dark-grey feathers", + "throat: white with a hint of rufous" + ], + "red breasted sapsucker": [ + "back: streaked dark and light bars", + "beak: elongated, slender, and black", + "belly: creamy white", + "breast: striking red patch", + "crown: red with black surrounding", + "forehead: red plumage", + "eyes: round, black, and alert", + "legs: gray and thin", + "wings: patterned with black and white feathers", + "nape: barred black and white", + "tail: black with white barring, slightly fan-shaped", + "throat: deep red extending to breast" + ], + "red cockaded woodpecker": [ + "back: black and white barred pattern", + "beak: sharp, elongated, and black", + "belly: white with faint black barring", + "breast: white with black streaks", + "crown: black with red streaks (only in adult males", + "forehead: black, rectangular-shaped", + "eyes: dark, circular, with a white outline", + "legs: gray, slender, with sharp claws", + "wings: black with white spots and bars", + "nape: black with horizontal white stripes", + "tail: black with white spots and red markings (only in adult males", + "throat: white with faint black streaks" + ], + "red eyed vireo": [ + "back: olive-green feathers", + "beak: short, hooked, grayish", + "belly: white and soft", + "breast: whitish with faint greenish wash", + "crown: gray with narrow white eye stripe", + "forehead: gray with slight dark line", + "eyes: piercing red with white eye-ring", + "legs: bluish-gray and slender", + "wings: olive-green with white wing-bars", + "nape: grayish-olive coloration", + "tail: olive-green with dark tip", + "throat: clean white, sharply contrasted" + ], + "red naped sapsucker": [ + "back: dark black with faint white striping", + "beak: strong chisel-like grayish-tan", + "belly: white with some dark smudges along the sides", + "breast: white speckled with black spots", + "crown: bright red patch on the top of the head", + "forehead: mixing of red and black stripes", + "eyes: dark, beady with a fine white ring around them", + "legs: short, sturdy, dull gray color", + "wings: black with bold white patches and red markings", + "nape: bright red patch at the back of the head", + "tail: black with white brushstrokes on the outer feathers", + "throat: black patch surrounded by a white collar-like pattern" + ], + "red necked phalarope": [ + "back: dark grey with white streaks", + "beak: slim, pointed, black", + "belly: white with subtle grey markings", + "breast: white with grey sides", + "crown: blackish-grey with white border", + "forehead: white stripe running above eyes", + "eyes: dark, surrounded by white markings", + "legs: long, slender, bluish-gray", + "wings: dark grey with white edges", + "nape: red-rust coloration", + "tail: dark grey, wedge-shaped with white edges", + "throat: white with slight grey markings" + ], + "ring billed gull": [ + "back: light grey feathers", + "beak: yellow with a black ring", + "belly: white underneath", + "breast: white chest plumage", + "crown: white with a faint grey band", + "forehead: white with a slightly rounded shape", + "eyes: dark, small, and round", + "legs: yellow-orange and thin", + "wings: grey with black tips and white edges", + "nape: white with a faint grey marking", + "tail: white with a black band", + "throat: white with smooth feathers" + ], + "rock pigeon": [ + "back: sleek, gray-blue feathers", + "beak: short, curved, pale at the base", + "belly: light gray or white feathers", + "breast: iridescent, purple-green coloration", + "crown: smooth, gray head-top", + "forehead: gray-blue, uncrested", + "eyes: bright, orange-red with pale inner-ring", + "legs: reddish-pink, scaly, with strong claws", + "wings: broad, strong, gray-blue with dark bar pattern", + "nape: shades of gray with thin, white collar", + "tail: dark gray with prominent white band", + "throat: iridescent, purple-green with dark streaks" + ], + "rock ptarmigan": [ + "back: brownish and white patterned feathers", + "beak: short, sturdy black beak", + "belly: white feathered underside", + "breast: white feathers with black speckles", + "crown: black and white feathered head", + "forehead: white feathers blending into the crown", + "eyes: small, dark surrounded by white feathers", + "legs: feathered, stout legs with powerful claws", + "wings: white with black edges and patterning", + "nape: mottled brown and white feathers", + "tail: short, white with black bars", + "throat: white feathers with speckled black markings" + ], + "rock sandpiper": [ + "back: speckled brown plumage", + "beak: long, slim, slightly curved", + "belly: whitish with fine dark streaks", + "breast: greyish-brown with dark spots", + "crown: dark brown with lighter streaks", + "forehead: pale brown and streaked", + "eyes: small, dark, and alert", + "legs: yellowish-green, slender", + "wings: long, pointed, with brown and white feathers", + "nape: brown with light streaks", + "tail: fan-shaped, brown with white edges", + "throat: off-white with subtle gray markings" + ], + "rock wren": [ + "back: brownish-grey with subtle spotting", + "beak: slim, slightly curved, blackish-brown", + "belly: pale white with light speckling", + "breast: greyish-white with darker spots", + "crown: brown with fine black streaks", + "forehead: whitish-grey with faint markings", + "eyes: black, round, encircled by white eye-ring", + "legs: slender, long, pale brown", + "wings: brownish-grey with faint barring", + "nape: brownish-grey with finer streaks", + "tail: moderately long, dark brown with white outer feathers", + "throat: white with grey streaks" + ], + "roseate tern": [ + "back: pale grey feathers covering the upper body", + "beak: slender, sharp, and black-tipped", + "belly: soft white plumage with pale grey undertones", + "breast: white feathers with a subtle rosy tint", + "crown: smooth grey feathers on the head", + "forehead: white feathers above the beak", + "eyes: dark beady eyes surrounded by white feathers", + "legs: long and slender, ranging from orange to black", + "wings: narrow, pointed and grey, with clean white edges", + "nape: grey feathers transitioning from the crown to the back", + "tail: long and forked, featuring white and grey feathers", + "throat: white feathers transitioning to the breast area" + ], + "ross goose": [ + "back: light gray feathers with subtle barring", + "beak: short and stubby, pinkish-orange with black tip", + "belly: white, sometimes with pale gray markings", + "breast: light gray with subtle white speckles", + "crown: smooth and rounded, light gray", + "forehead: gently sloping, light gray", + "eyes: small, dark, and alert", + "legs: short, pinkish-orange", + "wings: gray with black tips and edges", + "nape: light gray, blending into back", + "tail: short, white with black markings", + "throat: white, sometimes with pale gray markings" + ], + "royal tern": [ + "back: sleek, light grey feathers", + "beak: long, slender, and bright orange", + "belly: white underside with a smooth texture", + "breast: slightly rounded with white feathers", + "crown: black cap-like feathers on the top of the head", + "forehead: smooth white feathers leading to the beak", + "eyes: round, dark, and alert", + "legs: pale orange with webbed feet", + "wings: long, sharp, light grey feathers with darker tips", + "nape: area where the black crown feathers meet the white feathers on the neck", + "tail: short, forked tail with light grey feathers", + "throat: bright white feathers extending from the beak down the neck" + ], + "ruddy turnstone": [ + "back: black and brown patterning", + "beak: short and conical", + "belly: white and smooth", + "breast: white with black speckles", + "crown: black and white stripes", + "forehead: white patch", + "eyes: small and black", + "legs: bright orange", + "wings: black, white, and brown with distinctive patterns", + "nape: black band across white", + "tail: short with black and brown feathers", + "throat: white and unmarked" + ], + "ruffed grouse": [ + "back: brown and gray mottled feathers", + "beak: short, stout, and curved", + "belly: pale whitish-gray with dark markings", + "breast: reddish-brown with irregular dark bands", + "crown: brownish-gray feathers", + "forehead: brown feathers with a slight crest", + "eyes: dark with a thin white eye-ring", + "legs: feathered and grayish-brown", + "wings: brown and gray mottled, with impressive ruffled feathers when displayed", + "nape: gray with subtle brown streaks", + "tail: fan-shaped, dark brown with mottled light bands", + "throat: cream-colored with dark streaks" + ], + "rufous hummingbird": [ + "back: vibrant bronze-green", + "beak: long, slender, and straight", + "belly: soft white or light gray", + "breast: rich orange or reddish-brown", + "crown: glossy green", + "forehead: iridescent green or sometimes reddish-brown", + "eyes: small, dark, and alert", + "legs: short with tiny feet", + "wings: narrow and pointed, rapidly moving", + "nape: greenish-bronze, transitioning from the crown", + "tail: squared or slightly forked tail feathers, often with orange-brown tips", + "throat: bright orange-red, iridescent gorget" + ], + "rufous crowned sparrow": [ + "back: light brown with grayish streaks", + "beak: short, conical, pale gray", + "belly: light grayish-brown, subtle streaks", + "breast: soft buffy gray, faint streaking", + "crown: rufous with dark central stripe", + "forehead: grayish brown, blending into the crown", + "eyes: dark, beady, black, and medium-sized", + "legs: slender, pale pinkish-brown", + "wings: brown with blackish bars, hints of rufous", + "nape: grayish-brown, finely streaked", + "tail: long, pale brown, dark central feathers", + "throat: pale gray, unmarked" + ], + "rusty blackbird": [ + "back: dark rust-brown feathers", + "beak: thin, black and pointed", + "belly: lighter brown with faint streaks", + "breast: rusty brown with dusky streaks", + "crown: dark brown with a hint of rust", + "forehead: dark rust-brown, blending with the crown", + "eyes: small, black and shiny", + "legs: dark gray, strong and slender", + "wings: dark brown with rusty edges on the feathers", + "nape: brownish-black, connecting the crown and back", + "tail: black with rust-tinged feathers, medium length", + "throat: lighter rusty-brown, blending with the breast" + ], + "sage thrasher": [ + "back: light brown with streaky patterns", + "beak: thin, slightly curved, and dark", + "belly: white with black streaks", + "breast: pale with dark spotting", + "crown: greyish-brown color", + "forehead: light brown, blending into the crown", + "eyes: dark, with thin white eye-ring", + "legs: long and greyish", + "wings: brown with white and black markings, pale edging", + "nape: light brown, blending into the back", + "tail: black with white outer edges, slightly forked", + "throat: white with faint streaking" + ], + "saltmarsh sparrow": [ + "back: brownish-gray with subtle dark streaks", + "beak: short, conical, and dark", + "belly: dull white with faint gray streaks", + "breast: off-white with sparse gray streaks", + "crown: chestnut and gray streaked with a pale median stripe", + "forehead: pale gray or white with thin dark streaks", + "eyes: dark round eyes surrounded by pale eyering", + "legs: thin, relatively long, and dark", + "wings: gray-brown with darker flight feathers and white-edged tertials", + "nape: grayish-brown with dark streaks", + "tail: short, dark, and slightly notched with white edges on outer feathers", + "throat: whitish with fine gray streaks" + ], + "sandwich tern": [ + "back: light grey feathers", + "beak: long and sharp, black with yellow tip", + "belly: soft white feathers", + "breast: white with a slight mottling of grey", + "crown: sleek black cap", + "forehead: white with a black border", + "eyes: dark and expressive", + "legs: slender and orange", + "wings: grey with black tips and white edges", + "nape: white with subtle black markings", + "tail: forked with black and white feathers", + "throat: white and smooth" + ], + "scaled quail": [ + "back: blueish-gray feathers with fine white markings", + "beak: short, curved, and pale gray", + "belly: buff-white with sparse black markings", + "breast: grayish-blue, lightly spotted with white", + "crown: tufted white crest with dark tip", + "forehead: pale gray with a brownish buff tint", + "eyes: dark, medium-sized, and expressive", + "legs: grayish-blue with scaled appearance", + "wings: blueish-gray with fine white speckles", + "nape: grayish-blue with faint white streaks", + "tail: elongated gray-blue feathers with white tips", + "throat: white, bordered by dark-edged white scales" + ], + "scissor tailed flycatcher": [ + "back: light gray, elongated feathers", + "beak: black, thin and pointed", + "belly: pale yellow, soft plumage", + "breast: pale gray, delicate feathers", + "crown: light gray, smooth contour", + "forehead: light gray, unmarked", + "eyes: black, small and round", + "legs: black, slender and strong", + "wings: black, long with white edges", + "nape: light gray, sleek transition", + "tail: black, exceptionally long forked tail feathers", + "throat: white, unblemished coloration" + ], + "scott oriole": [ + "back: dark yellow-orange with black streaks", + "beak: slender and slightly curved, black", + "belly: vibrant yellow-orange", + "breast: bright yellow-orange", + "crown: black with some yellow patches", + "forehead: black extending to the eyes", + "eyes: black, contrasting the surrounding yellow feathers", + "legs: dark gray, thin and strong", + "wings: black with white wing bars", + "nape: bright yellow-orange", + "tail: black with white edges", + "throat: bold yellow-orange" + ], + "seaside sparrow": [ + "back: olive-brown with streaks", + "beak: conical and sharp", + "belly: white with sparse streaks", + "breast: greyish-white with dark streaks", + "crown: olive-brown with dark central stripe", + "forehead: greyish-white", + "eyes: dark, round, and expressive", + "legs: slender and dark", + "wings: olive-brown with faint bars", + "nape: olive-brown with slight streaks", + "tail: short and pointed", + "throat: white and unstreaked" + ], + "sedge wren": [ + "back: brownish-grey with black streaks", + "beak: short, thin, and slightly curved", + "belly: buff-colored with faint streaks", + "breast: off-white with brown speckles", + "crown: brown with broad black stripes", + "forehead: light brown with faint streaks", + "eyes: small and dark with white eyering", + "legs: pale pinkish-grey and slender", + "wings: brown with dark bars and white tips", + "nape: streaked brown and black", + "tail: short, brown with dark bars, and often upturned", + "throat: off-white with sparse brown spots" + ], + "semipalmated plover": [ + "back: brownish-grey feathers with subtle patterning", + "beak: short, straight, and black", + "belly: white with no markings", + "breast: white with a prominent black band", + "crown: brownish-grey with a faint white stripe", + "forehead: white with a bold black stripe", + "eyes: placed on the side with a small black pupil and yellowish-white eye ring", + "legs: slim and orange-toned with semi-webbed feet", + "wings: brownish-grey with white accents on the tips", + "nape: matching brown color to the rest of the head", + "tail: brownish-grey feathers with white outer tail feathers", + "throat: white, bordered by the black chest band" + ], + "semipalmated sandpiper": [ + "back: mottled brown and gray feathers", + "beak: short, straight, and black", + "belly: pale white or buff-colored", + "breast: lightly streaked brownish-gray", + "crown: brownish-gray with dark streaks", + "forehead: light gray-brown", + "eyes: small, dark, and round", + "legs: short and black with partially webbed feet", + "wings: long, slender, and pointed, with brown and white markings", + "nape: mottled brownish-gray feathers", + "tail: short, dark brown with white outer feathers", + "throat: pale gray-white" + ], + "sharp tailed grouse": [ + "back: light brown with pale markings", + "beak: short, strong, and grayish", + "belly: creamy white with dark markings", + "breast: buff-colored with v-shaped spots", + "crown: subtly crest-like, brownish-gray", + "forehead: grayish-brown without feathers", + "eyes: small, black, and bead-like", + "legs: feathered, light gray with dark barring", + "wings: rounded, brown and white with dark markings", + "nape: light brown with a grayish tinge", + "tail: sharp, thin, and pointed with black bands", + "throat: whitish with small spots" + ], + "short eared owl": [ + "back: brown and white dappled feathers", + "beak: short, sharp, grayish-black", + "belly: cream or buff-colored with dark streaks", + "breast: pale with dark brown streaking", + "crown: rounded, brown with white speckles", + "forehead: light brown with white markings", + "eyes: large, bright yellow with black pupils", + "legs: feathered, pale brown with darker streaks", + "wings: long, brown with dark stripes and white patches", + "nape: white, thickly barred with brown", + "tail: short, brown with black bars and white tip", + "throat: creamy white with light brown streaks" + ], + "snail kite": [ + "back: dark grey-blue feathers", + "beak: long, slender, and curved", + "belly: white with faint grey barring", + "breast: pale grey", + "crown: dark blue-grey", + "forehead: pale grey", + "eyes: bright red-orange", + "legs: short and stout, yellow-green", + "wings: long, dark-grey, white stripe", + "nape: blue-grey", + "tail: dark grey, white subterminal band", + "throat: pale grey" + ], + "solitary sandpiper": [ + "back: olive-brown with black speckles", + "beak: long, straight, and black", + "belly: white with dark streaks", + "breast: white with brownish spots", + "crown: dark olive-brown", + "forehead: dark olive-brown", + "eyes: black with white eye-ring", + "legs: long, slender, and greenish-yellow", + "wings: olive-brown with white spotting", + "nape: olive-brown with black speckles", + "tail: barred with black and white", + "throat: white, unmarked" + ], + "song sparrow": [ + "back: brown, streaked with dark, narrow lines", + "beak: short, pointed, dark gray", + "belly: light, creamy white with some streaks", + "breast: buff-white, heavily streaked with dark brown", + "crown: reddish-brown with grayish streaks", + "forehead: grayish-brown with slight streaking", + "eyes: small, dark, beady, surrounded by a pale eye-ring", + "legs: sturdy, pinkish-brown, with three forward-facing toes and one rear-facing toe", + "wings: brown, spotted with lighter, reddish-brown edges", + "nape: light brown with darker streaks", + "tail: brown, relatively short, with faint reddish-brown edges", + "throat: creamy white, unmarked" + ], + "sooty grouse": [ + "back: dark gray with lighter mottling", + "beak: short and curved, blackish-brown color", + "belly: dark gray, lightly speckled", + "breast: bluish-gray with subtle white markings", + "crown: dark gray, slightly raised", + "forehead: smooth, dark gray feathers", + "eyes: round, deep brown color", + "legs: feathered, grayish-blue", + "wings: dark gray with subtle light barring", + "nape: slightly lighter gray transitioning from crown", + "tail: long, fan-shaped, dark gray with indistinct white bands", + "throat: dark gray, occasionally with a purple-red inflatable neck sac (males only" + ], + "spotted towhee": [ + "back: black and dark brown with white spots", + "beak: stout and cone-shaped, dark gray", + "belly: pale white or buffy, with black sides", + "breast: dark black, transitioning into belly", + "crown: black with a slight crest", + "forehead: black, blending into crown", + "eyes: dark, beady, surrounded by orange-red eye-ring", + "legs: sturdy and long, grayish-black", + "wings: black with white spots and bold white edges", + "nape: black, merging with back pattern", + "tail: black and white with white edges and corners", + "throat: pure white, contrasting with black breast" + ], + "spruce grouse": [ + "back: dark, dense plumage with irregular white spots", + "beak: short and robust for seed consumption", + "belly: grayish-brown feathers with white bars", + "breast: reddish-brown with horizontal white bars", + "crown: black feathers on the top of head", + "forehead: black with a red comb above the eye", + "eyes: small, black with white-rimmed eyelids", + "legs: feathered and sturdy, built for walking", + "wings: dark gray feathers, white-barred flight feathers", + "nape: grayish-brown with prominent white spots", + "tail: long, rounded feathers with a dark-banding pattern", + "throat: black feathers, contrasting with the breast color" + ], + "steller jay": [ + "back: vibrant blue feathers", + "beak: strong, dark gray", + "belly: soft, lighter blue", + "breast: bright blue plumage", + "crown: sleek, crested blue", + "forehead: smooth, dark blue", + "eyes: black, piercing gaze", + "legs: dark, sturdy limbs", + "wings: bold blue, black stripes", + "nape: rich blue hue", + "tail: long, blue, striped", + "throat: lighter blue shade" + ], + "stilt sandpiper": [ + "back: streaked, brownish-gray feathers", + "beak: long, slightly curved, and needle-like", + "belly: white with light brown speckles", + "breast: mottled brown and white", + "crown: brown with darker streaks", + "forehead: light brown with faint streaks", + "eyes: black with a white eye-ring", + "legs: long, slender, and greenish-yellow", + "wings: brown with white wingbars and dark flight feathers", + "nape: spotted brown and white pattern", + "tail: narrow and pointed, with dark and light brown bars", + "throat: white with fine brown streaks" + ], + "summer tanager": [ + "back: vibrant greenish-yellow hue", + "beak: thick, pale and cone-shaped", + "belly: bright yellow tone", + "breast: vivid orange-yellow color", + "crown: intense reddish-orange shade", + "forehead: fiery red hue", + "eyes: small, dark, with a piercing gaze", + "legs: slender and grayish-blue", + "wings: deep red with dark secondary feathers", + "nape: flush of red-orange blending into green", + "tail: elongated, tapering, crimson feathers", + "throat: radiant red chestnut shade" + ], + "surfbird": [ + "back: streamlined, pale gray with white streaks", + "beak: short, straight, and slightly upturned", + "belly: lighter gray and white, sometimes with darker spots", + "breast: light gray with white streaks, spotted or barred pattern", + "crown: pale gray and white, sometimes with a faint streak", + "forehead: smooth, pale gray, blending with crown", + "eyes: small, black, surrounded by white feathers", + "legs: moderately long, yellow-green with black claws", + "wings: long, pointed, pale gray with white bars and black tips", + "nape: pale gray, blending with back and crown", + "tail: short, squared, with white outer feathers and dark central feathers", + "throat: white, blending with pale gray breast feathers" + ], + "swainson thrush": [ + "back: olive-brown, smooth feathers", + "beak: slender, dark, slightly curved", + "belly: creamy white, minimal markings", + "breast: light buff, spotted with dark spots", + "crown: olive-brown, uniform color", + "forehead: slightly lighter than the crown, olive-brown hue", + "eyes: dark, small, with white eye-ring", + "legs: pinkish-grey, long and slender", + "wings: olive-brown, with faint wing bars", + "nape: olive-brown, continuous with crown and back", + "tail: olive-brown, slightly forked, with white edges", + "throat: creamy white, unmarked" + ], + "swallow tailed kite": [ + "back: sleek black upper body", + "beak: sharp, pointed, black", + "belly: crisp white underbelly", + "breast: clean white chest", + "crown: smooth black head", + "forehead: black with smooth feathering", + "eyes: dark, intense gaze", + "legs: long, slender, black", + "wings: long, graceful, with pointed tips", + "nape: black-feathered neck", + "tail: deeply forked, distinctive swallowtail", + "throat: white and feathered" + ], + "swamp sparrow": [ + "back: reddish-brown with dark streaks", + "beak: short and conical, dark gray", + "belly: grayish-white with slight streaks", + "breast: white with fine, dark streaks", + "crown: rusty-brown with dark stripes", + "forehead: reddish-brown with dark streaks", + "eyes: dark, round, and small", + "legs: long and pinkish-gray", + "wings: reddish-brown with dark bars and white spots", + "nape: rusty-brown with dark stripes", + "tail: short and reddish-brown with dark central feathers", + "throat: white with fine, dark streaks" + ], + "tennessee warbler": [ + "back: olive-green with light streaks", + "beak: thin and pointed, dark gray", + "belly: white or pale yellow", + "breast: pale grayish-yellow", + "crown: olive-green with a darker cap", + "forehead: light olive-green", + "eyes: dark brown with white eye-ring", + "legs: pinkish-gray, slender", + "wings: olive-green with two white wing bars", + "nape: olive-green, blending into the crown", + "tail: dark with white outer tail feathers", + "throat: pale grayish-yellow, similar to the breast" + ], + "thayer gull": [ + "back: pale grey with white-tipped feathers", + "beak: yellow with a red spot near the tip", + "belly: pure white", + "breast: white with minimal streaking", + "crown: smooth, somewhat rounded, pale grey", + "forehead: sloping white with a smooth transition to the crown", + "eyes: black with white eye ring", + "legs: pinkish-orange", + "wings: pale grey with dark tips and black marks", + "nape: pale grey, blending seamlessly with the crown and back", + "tail: white with a black terminal band", + "throat: white, unmarked" + ], + "townsend solitaire": [ + "back: smooth, slate-gray feathers", + "beak: thin, pointed, black bill", + "belly: soft, pale gray-white plumage", + "breast: slightly darker gray feathers", + "crown: muted gray cap", + "forehead: lightly streaked gray-white", + "eyes: black, sharp gaze", + "legs: slender, blue-gray", + "wings: broad, gray with slim white edges", + "nape: gray, blending into the back", + "tail: long, dark gray with thin white borders", + "throat: pale gray, transitioning into the breast" + ], + "tricolored heron": [ + "back: slate-blue feathers", + "beak: long, dark, and pointed", + "belly: white plumage", + "breast: sky-blue feathers", + "crown: dark plume extending from head", + "forehead: white stripe above eyes", + "eyes: bright yellow with black irises", + "legs: long and slender, yellow-green", + "wings: slate-blue with white and rust-colored highlights", + "nape: white extending to back of neck", + "tail: short, slate-blue feathers", + "throat: white plumage" + ], + "trumpeter swan": [ + "back: sleek, white feathers", + "beak: black, flat, and tapered", + "belly: soft, white plumage", + "breast: rounded, white feathers", + "crown: smooth, white plumes", + "forehead: flat, black skin patch", + "eyes: small, dark, and bright", + "legs: sturdy, black, and webbed", + "wings: large, white, and strong", + "nape: curved, graceful neck", + "tail: short, white feathers", + "throat: white, smoothly transitioning to the breast" + ], + "tufted titmouse": [ + "back: gray with a slight blue hue", + "beak: small, black and pointy", + "belly: pale gray-white", + "breast: soft gray with a touch of buff", + "crown: gray with a pointed crest", + "forehead: black patch between eyes", + "eyes: large, round and dark", + "legs: short, gray-blue with sharp claws", + "wings: soft gray with white edges", + "nape: gray with black spots", + "tail: long, dark gray with white outer feathers", + "throat: white with a faint beige undertone" + ], + "tundra swan": [ + "back: sleek, white feathers", + "beak: long, black with yellow patch", + "belly: white, fluffy feathers", + "breast: rounded, white plumage", + "crown: smooth, white feathers", + "forehead: flat, white area above beak", + "eyes: small, dark, and beady", + "legs: black, relatively long and sturdy", + "wings: broad, white with black edges", + "nape: gracefully curved white feathers", + "tail: short, white, fan-shaped", + "throat: white, slender plumage" + ], + "upland sandpiper": [ + "back: brown, horizontally striped pattern", + "beak: long, slender, slightly curved", + "belly: white, lightly speckled", + "breast: pale brown, spotted with dark marks", + "crown: tan-brown, small crest", + "forehead: bold white, inverted 'v' stripe", + "eyes: dark, encircled by white ring", + "legs: long, yellow-green", + "wings: long, slender, mottled brown", + "nape: brown, horizontally striped pattern", + "tail: short, outer feathers longer, dark barring", + "throat: white, unmarked" + ], + "vermilion flycatcher": [ + "back: vibrant red-orange feathers", + "beak: short, pointy black beak", + "belly: bright vermilion hue", + "breast: fiery red-orange coloring", + "crown: intense red-orange plumage", + "forehead: bright vermilion feathers", + "eyes: sharp black beads", + "legs: thin dark gray limbs", + "wings: black with red-orange highlights", + "nape: striking vermilion feathers", + "tail: long black with red-orange edges", + "throat: vivid red-orange feathers" + ], + "vesper sparrow": [ + "back: streaked with brown and buff tones", + "beak: small, conical, and pale pinkish-gray", + "belly: white with grayish-brown flanks", + "breast: creamy white with fine streaks and spots", + "crown: brown with grayish-white central stripe", + "forehead: light buff color, blending into crown", + "eyes: dark and beady, with pale eyering", + "legs: slender, pale pinkish-gray", + "wings: long and pointed, with brown and buff streaking", + "nape: brownish-gray with fine streaks", + "tail: short with white outer feathers and dark inner feathers", + "throat: clean white, bordered by streaked malar stripes" + ], + "virginia rail": [ + "back: brownish-grey with thin white stripes", + "beak: long, slender, and reddish-orange", + "belly: buff-colored with dusky bars", + "breast: warm, reddish-brown", + "crown: dark greyish-blue", + "forehead: reddish-orange with white markings", + "eyes: deep brown", + "legs: long and reddish-orange", + "wings: brownish-grey with faint white barring", + "nape: dark grey-blue", + "tail: short and brownish-grey", + "throat: buff-colored with dusky sides" + ], + "wandering tattler": [ + "back: mottled gray-brown feathers", + "beak: long, straight, and slender", + "belly: light grayish-white underparts with faint barring", + "breast: grayish-white with dark spots and streaks", + "crown: gray-brown with faint streaks", + "forehead: gray-brown with slight pale eyebrow", + "eyes: black, well-defined with a subtle white eyering", + "legs: long, yellowish-green color", + "wings: long and pointed with a gray-brown pattern", + "nape: gray-brown with fine, darker streaks", + "tail: gray-brown with darker bars and white outer feathers", + "throat: pale grayish-white with minimal streaking" + ], + "warbling vireo": [ + "back: olive-green with subtle streaks", + "beak: short, slightly hooked, and pale", + "belly: white with a hint of yellow", + "breast: pale yellow fading to white", + "crown: grayish-olive with a slight crest", + "forehead: grayish-olive, smooth texture", + "eyes: dark with thin white eye-ring", + "legs: sturdy, blue-gray in color", + "wings: olive-green with two white wing bars", + "nape: grayish-olive, streaked texture", + "tail: olive-green, slightly forked", + "throat: white with a hint of yellow" + ], + "western bluebird": [ + "back: bright blue upper body", + "beak: small, black, pointed", + "belly: pale gray-white underside", + "breast: rusty orange to blue-gray gradient", + "crown: vibrant blue head", + "forehead: bright blue plumage", + "eyes: small, black, alert", + "legs: slender, gray-blue", + "wings: striking blue feathers", + "nape: rich blue plumage", + "tail: blue with white tips", + "throat: rusty orange to gray-blue gradient" + ], + "western grebe": [ + "back: sleek, dark gray feathers", + "beak: long, pointy, slightly curved", + "belly: white, feathered underside", + "breast: white and grey, blended feathers", + "crown: black, smoothly rounded contour", + "forehead: sharp transition to black feathers", + "eyes: striking red, slightly oval-shaped", + "legs: powerful, set far back, webbed feet", + "wings: greyish, long, slightly pointed", + "nape: black, narrow, elongates the neck", + "tail: short, fan-shaped, with dark feathers", + "throat: white, continuous with breast and belly" + ], + "western gull": [ + "back: grayish-white plumage", + "beak: strong, yellow with red spot", + "belly: white feathers", + "breast: white and smooth", + "crown: pale gray feathers", + "forehead: flat, pale gray", + "eyes: dark, perceptive gaze", + "legs: pink, webbed feet", + "wings: gray with white and black tips", + "nape: paler gray transition", + "tail: white with black band", + "throat: white, soft feathers" + ], + "western kingbird": [ + "back: light grayish-green plumage", + "beak: black, thin and straight", + "belly: pale yellow feathers", + "breast: grayish-white plumage", + "crown: pale gray with concealed orange-red patch", + "forehead: light gray blending into the crown", + "eyes: small, black and expressive", + "legs: short and black, with sharp claws", + "wings: grayish-green with blackish tips", + "nape: light gray, connecting to the crown", + "tail: black with white edges, slightly forked", + "throat: pale grayish-white feathers" + ], + "western meadowlark": [ + "back: yellowish-brown with black stripes", + "beak: long, sharp, and light gray", + "belly: bright yellow", + "breast: vibrant yellow with a central black v-shape", + "crown: streaked brown and tan", + "forehead: pale yellowish-brown", + "eyes: dark brown with white eyering", + "legs: thin and pinkish-gray", + "wings: brown with black and white markings", + "nape: brownish-yellow with black stripes", + "tail: brown with white outer feathers", + "throat: bright yellow" + ], + "western sandpiper": [ + "back: grayish-brown with reddish tones", + "beak: long, straight, and slender, dark color", + "belly: white and clean", + "breast: white with brownish speckles", + "crown: mottled gray-brown", + "forehead: pale gray with slight brownish markings", + "eyes: small and dark with white eye-ring", + "legs: blackish with relatively long feet", + "wings: gray to brown with intricate feather patterns", + "nape: mottled grayish-brown", + "tail: white with dark bars and central feathers", + "throat: white and unmarked" + ], + "western screech owl": [ + "back: mottled brown and gray feathers", + "beak: short, hooked, and grayish-brown", + "belly: creamy white with dark-brown barring", + "breast: pale with dark-brown streaks", + "crown: rounded, grayish-brown with streaks", + "forehead: speckled gray and brown", + "eyes: large, yellow, and forward-facing", + "legs: feathered, grayish-brown", + "wings: grayish-brown with white and dark-brown markings", + "nape: mottled gray and brown feathers", + "tail: banded with dark-brown and grayish-white stripes", + "throat: light grayish-brown with streaks" + ], + "western scrub jay": [ + "back: blue-gray upper feathers", + "beak: black, sturdy, slightly curved", + "belly: grayish-white undersides", + "breast: pale blue-gray plumage", + "crown: dark blue-purple crest", + "forehead: light blue-gray feathers", + "eyes: dark, piercing gaze", + "legs: long, blue-gray with black claws", + "wings: blue and bright blue patches", + "nape: blue-gray feathery collar", + "tail: long, blue, graduated tail feathers", + "throat: pale gray-white bib" + ], + "western wood pewee": [ + "back: olive-gray and plain", + "beak: thin and pointed", + "belly: pale yellowish-white", + "breast: pale grayish", + "crown: olive-gray", + "forehead: slightly lighter olive-gray", + "eyes: dark, round, and small", + "legs: grayish-black and slender", + "wings: dusky gray with indistinct wing bars", + "nape: olive-gray", + "tail: grayish with slight fork", + "throat: pale grayish-white" + ], + "white breasted nuthatch": [ + "back: blue-grey feathers", + "beak: sharp, pointed black beak", + "belly: white, unmarked feathers", + "breast: white with a slight rusty tinge", + "crown: dark blue-grey cap", + "forehead: light blue-grey hue", + "eyes: small, black, beady", + "legs: thin, greyish-brown", + "wings: blue-grey with white patches", + "nape: dark blue-grey stripe", + "tail: blue-grey with black bars and white edges", + "throat: white, unmarked feathers" + ], + "white crowned sparrow": [ + "back: streaked brown and gray feathers", + "beak: small, conical, pale pinkish-gray", + "belly: light to medium gray", + "breast: plain gray, unmarked", + "crown: black and white stripes", + "forehead: black stripe", + "eyes: dark, round, framed by white stripe", + "legs: pinkish-gray, thin", + "wings: brown with white wing bars", + "nape: gray with black streaks", + "tail: dark brown, medium length", + "throat: pale gray, unmarked" + ], + "white eyed vireo": [ + "back: olive-green upper body", + "beak: sturdy, slightly hooked", + "belly: whitish lower body", + "breast: yellowish-white, faint streaks", + "crown: grayish-olive, slight crest", + "forehead: olive-gray, continuous with crown", + "eyes: white eyering, striking appearance", + "legs: pale blue-gray, strong", + "wings: olive-green, white wingbars", + "nape: olive-gray, matches crown", + "tail: olive-green, dark edges", + "throat: bright yellow, contrasting" + ], + "white faced ibis": [ + "back: iridescent bronze-green plumage", + "beak: long, curved, dark-tipped bill", + "belly: white blending to greyish feathers", + "breast: reddish-brown body plumage", + "crown: glossy green cap-like feathers", + "forehead: white feather patch above the beak", + "eyes: piercing red with a thin white ring", + "legs: long, slender grey-blue legs", + "wings: metallic green-purple feathers with dark edges", + "nape: bronze-green feathers extending from the head", + "tail: blackish-green, narrow, and elongated feathers", + "throat: white feathers transitioning to a darker neck color" + ], + "white headed woodpecker": [ + "back: black and white spotted feathers", + "beak: strong, pointy, black chisel-like beak", + "belly: white and fluffy feathers", + "breast: white with black and white spotted sides", + "crown: white with possible red patch on males", + "forehead: white feathers with black border", + "eyes: small, round, black in a white background", + "legs: gray and scaly with sharp claws", + "wings: black with white spots or bars", + "nape: black with white spotted feathers", + "tail: black with white outer feathers, used for support", + "throat: white feathers extending to the breast" + ], + "white rumped sandpiper": [ + "back: grayish-brown with fine streaks", + "beak: long, slender, and straight", + "belly: pale white with some spotting", + "breast: light brown with darker streaks", + "crown: brown with fine streaks", + "forehead: pale with a brownish tinge", + "eyes: dark, small, well-defined", + "legs: thin, yellowish-green", + "wings: brown with white-edged feathers", + "nape: grayish-brown with streaks", + "tail: dark with white rump and outer tail feathers", + "throat: white with faint streaks" + ], + "white tailed hawk": [ + "back: light grey feathers with a white undertone", + "beak: strong, hooked, black tip and greyish base", + "belly: white feathers with small brown streaks", + "breast: white with sparse brown spots", + "crown: greyish feathers with darker streaks", + "forehead: lighter grey feathers blending into the crown", + "eyes: fierce, yellow with a dark circular pupil", + "legs: strong, yellow with sharp black talons", + "wings: wide, grey with light barring and white tail feathers", + "nape: grey with subtle brown streaks", + "tail: white with bands of grey and black", + "throat: white feathers, blending into the breast" + ], + "white tailed kite": [ + "back: sleek gray", + "beak: sharp, black", + "belly: white and smooth", + "breast: white and soft", + "crown: light gray and fluffy", + "forehead: small, light gray", + "eyes: large, round, and dark", + "legs: slender, yellow", + "wings: broad, gray-white with black tips", + "nape: light gray and smooth", + "tail: white with gray banding", + "throat: delicate white" + ], + "white tailed ptarmigan": [ + "back: light grey feathers with white speckles", + "beak: small, black and pointed", + "belly: soft white feathered underside", + "breast: light grey plumage blending into white", + "crown: round grey feathers atop the head", + "forehead: light grey with a slight white outline", + "eyes: small, round, and well-defined in brown", + "legs: short, feathered, and pale", + "wings: white and grey patterned with rounded appearance", + "nape: grey feathers tapering toward the neck", + "tail: short with white and grey feather tips", + "throat: delicate white feathers on the upper chest" + ], + "white throated sparrow": [ + "back: brownish-gray feathers", + "beak: short, cone-shaped", + "belly: off-white color", + "breast: grayish-white plumage", + "crown: rufous stripes with a central white stripe", + "forehead: black and white striped", + "eyes: dark, round, framed by light eyestripe", + "legs: slender, pinkish-brown", + "wings: brown with darker brown and white markings", + "nape: gray-brown with rufous streaks", + "tail: rounded, brown with white outer feathers", + "throat: bright white patch" + ], + "white throated swift": [ + "back: sleek dark feathers", + "beak: small black and pointed", + "belly: cream-colored underparts", + "breast: dark upper chest feathers", + "crown: smooth dark head feathers", + "forehead: white streak above eyes", + "eyes: beady black and alert", + "legs: short and sturdy", + "wings: long and narrow, black", + "nape: dark neck feathers", + "tail: long, forked black tail feathers", + "throat: prominent white throat patch" + ], + "white winged dove": [ + "back: smooth, grey feathers", + "beak: curved, black beak", + "belly: fluffy, light gray feathers", + "breast: white-grey feathers, plump", + "crown: flat top, dark grey", + "forehead: short light grey feathers", + "eyes: black, round with a thin blue eyering", + "legs: short, pinkish-red", + "wings: white-edged, grey primaries", + "nape: darker grey feathers with a striped pattern", + "tail: fan-shaped with white edges, black-grey feathers", + "throat: light grey, soft feathers" + ], + "willet": [ + "back: sleek, grayish-brown feathers", + "beak: long, straight, dark-gray bill", + "belly: white with light-gray streaks", + "breast: pale gray with sparse streaks", + "crown: grayish-brown with slight rufous tinge", + "forehead: pale gray with white median stripe", + "eyes: dark, surrounded by pale gray feathers", + "legs: bluish-gray, long, and slender", + "wings: silver-gray underwings with black tips and white patch", + "nape: grayish-brown with rufous tinge", + "tail: dark-gray with white outer tail feathers", + "throat: white with subtle streaks of pale gray" + ], + "williamson sapsucker": [ + "back: dark black with irregular white barring", + "beak: long, straight, and sharp with a slight curve", + "belly: blackish hue with vertical yellow stripes", + "breast: solid black with a distinct red patch", + "crown: black with red feathers on the males, white in females", + "forehead: black with smaller patches of white and red", + "eyes: medium size, dark brown with a white eye ring", + "legs: short and stout, dark grayish-brown", + "wings: black with white barring on the underside", + "nape: black with a patch of red in males, white in females", + "tail: black with white outer feathers and some white bars", + "throat: black with a distinguishing white stripe" + ], + "willow flycatcher": [ + "back: olive-brown hue with slight streaks", + "beak: thin, pointy, and dark grey", + "belly: pale greyish-yellow color", + "breast: pale olive with faint streaks", + "crown: olive-brown with a slight crest", + "forehead: olive-brown fading to pale gray", + "eyes: dark brown with thin white eye-ring", + "legs: dark grey and slender", + "wings: olive-brown with two pale wing-bars", + "nape: olive-brown seamlessly blending with crown", + "tail: olive-brown and slightly forked", + "throat: pale grey with no distinct markings" + ], + "wilson plover": [ + "back: light brown feathers with white edges", + "beak: short, thick, and black with orange base", + "belly: white underparts", + "breast: light brown with occasional white streaks", + "crown: sandy brown with a dark streak", + "forehead: white patch interrupted by the dark eye line", + "eyes: small and dark", + "legs: thin and orange", + "wings: light brown with prominent white wing bars", + "nape: sandy brown with a pale collar", + "tail: short, rounded with brown and white feathers", + "throat: white with a dark patch on the lower side" + ], + "wilson snipe": [ + "back: dark, heavily-patterned with bars and stripes", + "beak: long, straight, and slender", + "belly: white with dark feather markings", + "breast: white and brown horizontal barring", + "crown: dark brown with central light stripe", + "forehead: lighter brown with central stripe", + "eyes: small, black, and alert", + "legs: greenish-gray, thin and long", + "wings: long, pointed, brown with bold white stripes", + "nape: brown with light feather edges", + "tail: short, dark, with white outer feathers", + "throat: white and unmarked" + ], + "wilson warbler": [ + "back: vibrant yellow-green with light stripes", + "beak: sharp and slender, black in color", + "belly: bright yellow, unmarked", + "breast: yellow with thin dark streaks", + "crown: black on males, olive on females", + "forehead: intense yellow, distinct from the crown", + "eyes: small and black, with white eye-ring", + "legs: thin and pale, with sharp black claws", + "wings: olive-green with darker edges, two white wing bars", + "nape: yellow-green, connects with the crown", + "tail: short and square, olive-green with white patches", + "throat: yellow, blends seamlessly with the breast" + ], + "winter wren": [ + "back: small and brown with fine barring", + "beak: tiny, slender, and slightly curved", + "belly: pale and finely barred", + "breast: creamy white with minimal spots", + "crown: dark brown with subtle streaks", + "forehead: reddish-brown and slightly tufted", + "eyes: dark and alert, with a white eye-ring", + "legs: thin, strong, and pale pink", + "wings: short and rounded, gently barred feathers", + "nape: brown with thin, white streaks", + "tail: short and upturned, with dark barring", + "throat: off-white and unmarked" + ], + "wood stork": [ + "back: light grey feathers with blacker edges", + "beak: long, slightly curved, dusky grey-black", + "belly: white feathers with grey accents", + "breast: white and fluffy feathers", + "crown: black, bald head with scaly texture", + "forehead: flat and bare with smooth, black skin", + "eyes: dark and round, set in black skin", + "legs: long and dark grey, partially feathered", + "wings: broad, with black flight feathers and white primary coverts", + "nape: white feathering, blending into bald crown", + "tail: short and white with greyish tinge", + "throat: featherless, black skin, with sack-like pouch" + ], + "worm eating warbler": [ + "back: olive-green feathers with faint streaks", + "beak: sharp, pointed, and slim for catching worms", + "belly: pale yellowish-white underside", + "breast: bright yellow feathers with light streaks", + "crown: olive-green color, with dark streaks", + "forehead: yellowish-olive hue merging into the crown", + "eyes: dark and beady, surrounded by pale eye-ring", + "legs: slender and pinkish-brown", + "wings: olive-green, with darker flight feathers and white wingbars", + "nape: olive-green color blending into the back", + "tail: relatively short, olive-green with dark tips", + "throat: bright yellow, with streaks on either side" + ], + "yellow warbler": [ + "back: bright yellow, sleek feathers", + "beak: slender, pointed, black", + "belly: light yellow, smooth feathers", + "breast: vibrant yellow, unmarked", + "crown: golden-yellow, slightly raised", + "forehead: bright yellow, unmarked", + "eyes: dark, rounded, alert", + "legs: thin and delicate, black", + "wings: yellow with black stripes, agile", + "nape: vibrant yellow, unmarked", + "tail: yellow with black-edged feathers, lovely fan shape", + "throat: rich yellow, sleek feathers" + ], + "yellow bellied flycatcher": [ + "back: olive-green or yellowish-green feathers", + "beak: short, sharp, and black with a slightly hooked tip", + "belly: bright yellow feathers", + "breast: pale yellow or whitish-yellow feathers", + "crown: greyish-green with a slight crest", + "forehead: greyish-green to olive-green feathers", + "eyes: dark beady eyes with thin white eye-rings", + "legs: slender and dark grey or black", + "wings: greyish-green with black feather tips and white wing bars", + "nape: olive-green or greyish-green coloration", + "tail: greyish-green feathers with black tips and white outer tail feathers", + "throat: pale yellow or white feathers" + ], + "yellow bellied sapsucker": [ + "back: striped black and white patterns", + "beak: short, robust, chisel-like", + "belly: bright yellow accent", + "breast: white with black markings", + "crown: red patch", + "forehead: white stripe bordering red crown", + "eyes: black-bordered white eye ring", + "legs: grayish-blue", + "wings: black with white accents", + "nape: black and white stripes", + "tail: black with white outer feathers", + "throat: white, bordered by black lines" + ], + "yellow billed cuckoo": [ + "back: brownish-gray and sleek", + "beak: long, slightly curved, yellow bill", + "belly: white and soft", + "breast: whitish, with faint gray-brown markings", + "crown: smooth, gray-brown plumage", + "forehead: flat and gray-brown", + "eyes: dark, with a yellow eyering", + "legs: slender, blue-gray", + "wings: pointed, with white spots on blackish primary feathers", + "nape: gray-brown, with a transition to the back", + "tail: long and graduated, with white-tipped blackish feathers", + "throat: white, unmarked" + ], + "yellow billed magpie": [ + "back: iridescent black and glossy blue-green", + "beak: bright yellow and slightly curved", + "belly: white or pale grey with some blue and black feathers", + "breast: white or pale grey and plump", + "crown: iridescent blue-black feathers", + "forehead: blue-black feathers with a slight tuft", + "eyes: large, dark, surrounded by bare yellow skin", + "legs: black feathers slightly lighter at the end with black-feathered feet", + "wings: long, black, and blue-green with a white stripe", + "nape: iridescent blue-black feathers", + "tail: extensive, black, and blue-green with a distinctive, white wedge shape", + "throat: white or pale grey feathers" + ], + "yellow eyed junco": [ + "back: dark-gray feathers with a subtle green sheen", + "beak: short, stout, and conical shaped, pale pinkish-gray color", + "belly: light gray coloring with possible pale streaks", + "breast: soft grayish-white feathers, transitioning from the darker back", + "crown: dark gray feathers, rounded and slightly raised", + "forehead: dark gray blending into the crown area", + "eyes: striking pale yellow iris with black pupils", + "legs: sturdy pinkish-gray legs with sharp claws for perching", + "wings: dark gray with white-edged secondary feathers, folded by the sides", + "nape: dark gray feathers contrasting with a slightly lighter throat", + "tail: dark gray, long, with white outer feathers, and a prominent fork", + "throat: lighter gray, distinct from the darker nape and breast" + ], + "yellow throated vireo": [ + "back: olive-green feathers", + "beak: short, stout, and hooked", + "belly: white with slight yellow wash", + "breast: pale gray with yellow tint", + "crown: olive-green with faint gray streaks", + "forehead: grayish with slight olive tint", + "eyes: large and dark, with white eye ring", + "legs: bluish-gray and sturdy", + "wings: olive-green with white wing bars", + "nape: olive-green with gray streaks", + "tail: olive-green with white outer feathers", + "throat: bright yellow patch" + ], + "yellow throated warbler": [ + "back: olive-green with dark streaks", + "beak: slim, pointy, and black", + "belly: white with faint black streaks", + "breast: white, clean appearance", + "crown: olive-yellow with dark streaks", + "forehead: bright yellow", + "eyes: small, black, with white eye-ring", + "legs: thin, dark gray", + "wings: olive-green with dark streaks and white wing bars", + "nape: olive-green", + "tail: dark with white patches on outer feathers", + "throat: vibrant yellow" + ], + "zone tailed hawk": [ + "back: dark brown feathers with light edging", + "beak: sharp, hooked, black", + "belly: grayish-white with darker streaks", + "breast: grayish-white with dark brown streaks", + "crown: dark brown", + "forehead: dark brown, seamless with crown", + "eyes: striking yellow with black pupils", + "legs: yellow-orange with sharp black talons", + "wings: broad, dark brown with light, contrasting bars", + "nape: dark brown, merging with back", + "tail: black and white alternating bands, elongated", + "throat: grayish-white, continuous with breast" + ], + "black capped vireo": [ + "back: olive-green feathers", + "beak: short, slightly hooked", + "belly: white with faint streaks", + "breast: pale-gray blending into white", + "crown: black with white streaks", + "forehead: black that tapers into the crown", + "eyes: black, framed by white eyering", + "legs: gray-blue and slender", + "wings: olive-green with black and white markings", + "nape: black to olive-green transitioning", + "tail: dark with white outer feathers", + "throat: white, extending to the sides" + ], + "artic tern": [ + "back: sleek and streamlined, light grey feathers", + "beak: sharp and slender, reddish-orange", + "belly: snowy white feathers, fluffy", + "breast: smooth, white feathers, curved", + "crown: distinct black cap, covers head", + "forehead: white and connected to the black cap", + "eyes: beady, black, alert gaze", + "legs: slender, red-orange, webbed feet", + "wings: pointed, long, greyish-white", + "nape: transition between black cap and light grey feathers", + "tail: forked, long, white-edged feathers", + "throat: white and smooth, connects to the breast" + ], + "green kingfisher": [ + "back: vibrant green with bluish tinge", + "beak: long, sharp, black", + "belly: white or buff colored", + "breast: greenish-blue with white patches", + "crown: dark green with a slight crest", + "forehead: bright green", + "eyes: round, black, piercing gaze", + "legs: short, sturdy, grayish-green", + "wings: iridescent green-blue with dark spots", + "nape: greenish-blue with white collar", + "tail: blue-green with black bands", + "throat: white with green feathers" + ], + "geococcyx": [ + "back: elongated, earthy brown feathers", + "beak: long, curved, strong black beak", + "belly: sandy white, light feathering", + "breast: pale brown, soft feathers", + "crown: sleek dark blue-black crest", + "forehead: smooth, brown to blue-black transition", + "eyes: bright yellow, sharp gaze", + "legs: long, strong, light brown with zygodactyl feet", + "wings: lengthy, brown, barred with white", + "nape: light brown, narrow feathers", + "tail: long, banded with brown and white", + "throat: sandy white, delicate feathers" + ], + "elegant tern": [ + "back: sleek, grayish-white feathers", + "beak: long, slender, and sharp, bright orange-yellow", + "belly: soft, white plumes", + "breast: slightly curved, white and smooth", + "crown: contrasting black cap, sleek feathers", + "forehead: smooth, white feathers blending into the black crown", + "eyes: round, black, and alert", + "legs: slender, charcoal colored, webbed feet", + "wings: elongated, aerodynamic, grayish-white with black outline", + "nape: creamy, white feathers transitioning into the black crown", + "tail: forked, long, white with black streaks", + "throat: white, smooth feathers with a tapered shape" + ], + "horned puffin": [ + "back: blackish-blue feathers", + "beak: large, bright orange with a darker tip", + "belly: white feathered region", + "breast: white plumage, occasionally with black streaks", + "crown: black feathers extending to the nape", + "forehead: black feathers with horn-like extensions above the eyes", + "eyes: dark, expressive with a white ring around the iris", + "legs: short, orange, webbed feet for swimming", + "wings: dark, pointed, adapted for both flying and swimming", + "nape: black feathers merging with the crown", + "tail: short, black and white feathers", + "throat: white feathers transitioning to the breast area" + ], + "whip poor will": [ + "back: brownish-gray with subtle patterns", + "beak: short, wide, and slightly hooked", + "belly: off-white with sparse gray markings", + "breast: grayish-brown with fine streaks", + "crown: mottled gray-brown with a central crest", + "forehead: pale gray-brown blending into the crown", + "eyes: large, dark, and surrounded by white feathers", + "legs: short and well-camouflaged", + "wings: long, pointed, and gray-brown with fine patterns", + "nape: gray-brown with fine streaks and mottling", + "tail: long, fan-shaped, with white outer feathers", + "throat: off-white with narrow gray-brown streaks" + ], + "shiny cowbird": [ + "back: iridescent dark blue or black", + "beak: short and sharply pointed", + "belly: slightly lighter blue hue", + "breast: deep blue-black with a sheen", + "crown: black with a shining blue tone", + "forehead: glossy blue", + "eyes: dark, surrounded by shimmering feathers", + "legs: dark gray or black", + "wings: dark blue, shiny, and long", + "nape: gleaming black-blue", + "tail: iridescent dark blue or black feathers", + "throat: glossy black-blue color" + ], + "great grey shrike": [ + "back: slate-grey upperparts", + "beak: sturdy, hooked black bill", + "belly: pale-grey underparts", + "breast: cream-colored with slight streaking", + "crown: monochromatic-gray head", + "forehead: blending seamlessly into crown", + "eyes: conspicuous black bandit mask", + "legs: black, slender legs", + "wings: long, black-tipped grey wings", + "nape: uniformly grey continued from crown", + "tail: long, black, white-bordered tail feathers", + "throat: clean, whitish-grey throat area" + ], + "red legged kittiwake": [ + "back: sleek, white-grey feathered", + "beak: sharp, yellow-tipped hook", + "belly: smooth, white plumage", + "breast: white, well-rounded", + "crown: grey, subtly streaked", + "forehead: flat, extended white feathers", + "eyes: dark, intelligent gaze", + "legs: vibrant red, slender", + "wings: long, black-tipped with white-grey feathers", + "nape: white, short plumage", + "tail: white, fan-shaped feathers", + "throat: white, soft feathering" + ], + "ringed kingfisher": [ + "back: vibrant blue feathers", + "beak: long, sharp grey-black bill", + "belly: whitish grey with streaks of brown", + "breast: white or pale gray shading", + "crown: striking blue with a shaggy crest", + "forehead: deep blue merging into crown", + "eyes: small, dark and sharp", + "legs: short, sturdy, and grey", + "wings: bright blue with black bands", + "nape: blue with chance of rufous band", + "tail: broad, blue feathers with black barring", + "throat: white with unique ring pattern" + ], + "savannah sparrow": [ + "back: streaked brown and white, blending in with grassy surroundings", + "beak: short, conical, and pale-colored for cracking seeds", + "belly: white with faint brown streaks, unassuming appearance", + "breast: creamy white with brown streaks, slightly round", + "crown: rusty-colored with dark brown streaks, distinct streaking", + "forehead: pale brown, gradually blending into crown detail", + "eyes: small, dark, and watchful, surrounded by whitish eye-ring", + "legs: pale pink, slender, and perfectly adapted for perching", + "wings: brown, rounded with white and cream-colored wingbars", + "nape: brown with dark streaks, strong color for camouflage", + "tail: notched, brownish-black, with white outer feathers for maneuvering", + "throat: white, clean-looking, contrasting with streaked breast" + ], + "white breasted kingfisher": [ + "back: striking blue feathers", + "beak: long, robust, and black", + "belly: delicate white plumage", + "breast: bright white feathers", + "crown: vibrant blue crest", + "forehead: intense blue plumage", + "eyes: sharp, dark, and watchful", + "legs: sturdy, scarlet-red", + "wings: bold blue with white patches", + "nape: rich blue feathering", + "tail: streamlined blue with white tips", + "throat: crisp white feathers" + ], + "florida jay": [ + "back: blue-gray feathers", + "beak: strong, black, hooked", + "belly: creamy white", + "breast: light gray-blue", + "crown: blue crest", + "forehead: bright blue", + "eyes: dark, round, alert", + "legs: long, black, slender", + "wings: blue with white stripes", + "nape: blue-gray", + "tail: long, rounded, blue-gray", + "throat: whitish-gray" + ], + "baird sparrow": [ + "back: light brown with darker streaks", + "beak: small and conical, dark in color", + "belly: pale gray or buff", + "breast: pale gray with faint streaks", + "crown: reddish-brown with gray streaks", + "forehead: pale gray or buff", + "eyes: small, dark", + "legs: thin and pinkish-brown", + "wings: brown with white bars", + "nape: reddish-brown with gray streaks", + "tail: short and notched, brown with white edges", + "throat: pale gray or buff" + ], + "white pelican": [ + "back: sleek, white feathered upper body", + "beak: long, hooked tip, orange-yellow color", + "belly: rounded, white plumage", + "breast: full, white-feathered chest", + "crown: slightly elevated, white feathers on top of the head", + "forehead: smooth, white, blends into the beak", + "eyes: small, dark, piercing gaze", + "legs: short, thick, with webbed feet, grayish color", + "wings: wide, white feathers with black tips", + "nape: curved, white neck connecting head to body", + "tail: short, fan-shaped, white feathers", + "throat: white, expands to hold fish when feeding" + ], + "long tailed jaeger": [ + "back: sleek feathers in shades of grey or brown", + "beak: sharp, black, and hooked", + "belly: light grey or white feathers", + "breast: light grey or white with subtle streaks", + "crown: dark-colored feathers, sometimes with a slight crest", + "forehead: smooth, grey or brown feathers", + "eyes: sharp, black, and alert", + "legs: long and thin, covered in scales", + "wings: long and pointed, with dark tips", + "nape: dark-colored feathers transitioning from the crown to the back", + "tail: elongated central feathers, forming a forked appearance", + "throat: light-colored feathers with minimal markings" + ], + "sayornis": [ + "back: sleek, brownish-grey feathers", + "beak: thin, sharp, and dark-colored", + "belly: lighter grey plumage", + "breast: soft, greyish-white feathers", + "crown: dark grey or black head feathers", + "forehead: lighter grey feathered area above the eyes", + "eyes: small, round, and dark", + "legs: thin, long, and dark grey or black", + "wings: elongated, tapered, with brownish-grey feathers", + "nape: greyish-black feathered area at the back of the neck", + "tail: thin, elongated with darker grey feathers tipped in white", + "throat: lighter grey or white, slightly fluffy plumage" + ], + "pied kingfisher": [ + "back: black and white striped pattern", + "beak: long, straight, and black", + "belly: white with some black markings", + "breast: predominantly white with black speckles", + "crown: bold black and white stripes", + "forehead: white with small black spots", + "eyes: dark with a white eyebrow-like stripe", + "legs: short and black", + "wings: black with white spots and bands", + "nape: black and white stripes", + "tail: black and white banded feathers", + "throat: white with a marked black necklace" + ], + "parakeet auklet": [ + "back: colorful feathers with a gradient of oranges and reds", + "beak: red and short, curved inwards", + "belly: light grey feathers", + "breast: mixture of grey and white feathers", + "crown: orange-feathered crest on the head", + "forehead: smooth, grey feathers", + "eyes: small, black, and prominent", + "legs: strong, red-orange with webbed feet", + "wings: medium-sized with spotted black and white feathers", + "nape: grey and white plumage", + "tail: short, black-tipped feathers", + "throat: white with a greyish hue" + ], + "rhinoceros auklet": [ + "back: dark, sturdy, streamlined", + "beak: large, horn-like, pale yellow", + "belly: light gray, feathered", + "breast: dark gray, thick plumage", + "crown: smooth, black-tinged feathers", + "forehead: white, contrasting streak", + "eyes: round, dark, piercing gaze", + "legs: short, sturdy, dark gray", + "wings: dark, strong, pointed tips", + "nape: darker shading, connecting crown and back", + "tail: short, fan-like, black feathers", + "throat: grayish-white, smooth transition to breast" + ], + "swainson warbler": [ + "back: olive-brown with subtle streaks", + "beak: relatively long and curved", + "belly: pale buff-white", + "breast: light, subtly-streaked olive-brown", + "crown: rusty reddish-brown", + "forehead: slightly lighter rusty reddish-brown", + "eyes: dark with faint white eye-ring", + "legs: pale and slender", + "wings: olive-brown, edged with rust color", + "nape: olive-brown blending into crown", + "tail: short and rounded with rust-colored edges", + "throat: whitish, sometimes with light brown streaks" + ], + "cardinal": [ + "back: vibrant red feathers", + "beak: short, strong, orange", + "belly: reddish-brown plumage", + "breast: bright red chest feathers", + "crown: striking red crest", + "forehead: vivid red coloration", + "eyes: small, black, watchful", + "legs: slender, grey, clawed", + "wings: red, with black outlines", + "nape: reddish back of the head", + "tail: long, red, fan-shaped", + "throat: rich red plumage" + ], + "nelson sharp tailed sparrow": [ + "back: brownish-gray with streaks", + "beak: short and conical, grayish color", + "belly: whitish with light streaks", + "breast: pale, grayish-brown with streaks", + "crown:rusty brown with grayish streaks", + "forehead: pale gray or buffy", + "eyes: dark brown with a faint pale eye-ring", + "legs: long and thin, pale yellowish-brown", + "wings: dark brown with buffy white edges", + "nape: grayish-brown with fine streaks", + "tail: pointed and long, dark brown with pale edges", + "throat: whitish or pale buff, unmarked" + ], + "least auklet": [ + "back: blackish-brown feathers", + "beak: short and stubby, orange-yellow", + "belly: whitish-gray plumage", + "breast: grayish-white feathers", + "crown: blackish-brown plumage", + "forehead: blackish-brown feathers", + "eyes: small and round, black", + "legs: short and orangish-red", + "wings: blackish-brown with white edges", + "nape: blackish-brown feathers", + "tail: short and blackish-brown", + "throat: grayish-white feathers" + ], + "chuck will widow": [ + "back: brownish-green with white streaks", + "beak: short, straight, and black", + "belly: buffy brown with white spots", + "breast: whitish with brown streaks", + "crown: black with a white stripe", + "forehead: black with a white stripe", + "eyes: dark with pale eyering", + "legs: long, thin, and brown", + "wings: blackish-brown with white markings", + "nape: black with a white stripe", + "tail: long, black, and white-tipped", + "throat: whitish with brown streaks" + ], + "kentucky warbler": [ + "back: olive-green feathers", + "beak: thin, pointed, and black", + "belly: bright yellow coloring", + "breast: vivid yellow with black streaks", + "crown: dark olive-green", + "forehead: black extending to the eyes", + "eyes: dark, round, and encircled with black", + "legs: sturdy and pinkish-gray", + "wings: olive-green with gray edges", + "nape: olive-green blending with the back", + "tail: olive color with a dark center and white outer feathers", + "throat: bright yellow and unmarked" + ], + "laysan albatross": [ + "back: sleek, elongated feathers", + "beak: large, hooked, greyish-yellow", + "belly: white, with soft feathers", + "breast: slightly broader and rounded, white feathers", + "crown: smooth, white feathers", + "forehead: white feathers that blend into the crown", + "eyes: dark, encircled by a thin grey ring", + "legs: thick, pale pink, webbed feet", + "wings: long, slender, black-tipped", + "nape: white, blending with the crown and back", + "tail: wide, white, slightly forked", + "throat: white, with fine feathers" + ], + "green violetear": [ + "back: vibrant green feathers", + "beak: short, black and curved", + "belly: lighter green with soft hue", + "breast: iridescent green plumage", + "crown: shimmering emerald green", + "forehead: shiny green feathers", + "eyes: small, black and round", + "legs: slender, grayish-blue", + "wings: swift green with violet streaks", + "nape: glistening green", + "tail: elongated, green with blue tips", + "throat: glimmering violet-blue patch" + ], + "myrtle warbler": [ + "back: yellow-tinged green, some dark streaks", + "beak: thin, sharp, black", + "belly: bright yellow with faint gray streaking", + "breast: bright yellow, can have thin gray streaks", + "crown: yellowish-green, blue-gray edges", + "forehead: bright yellow mixed with green", + "eyes: dark, small, surrounded by faint eye-ring", + "legs: thin, pale, long toes", + "wings: black with white wing bars and yellow edges", + "nape: greenish-yellow, blue-gray edges", + "tail: dark, forked with white patches on outer tail feathers", + "throat: bright yellow, unmarked" + ], + "nighthawk": [ + "back: dark brown with cryptic patterns", + "beak: short, wide, and hooked", + "belly: dull grey-brown with fine white streaks", + "breast: mottled deep brown with hints of grey", + "crown: dark brown with pale streaks", + "forehead: slightly lighter brown with white markings", + "eyes: large, round, and black", + "legs: short and sturdy", + "wings: long, pointed with cryptic patterns", + "nape: dark brown with pale feather edges", + "tail: long and dark with white markings near the tip", + "throat: light grey-brown with mottled patterns" + ], + "frigatebird": [ + "back: sleek, dark-colored, aerodynamic", + "beak: long, hooked, pointed", + "belly: light, white, feathery", + "breast: puffed, red, large (in male during mating season", + "crown: smooth, dark-colored feathers", + "forehead: narrow, flat, dark-colored", + "eyes: large, round, black", + "legs: short, strong, with sharp claws", + "wings: wide, angular, impressive span", + "nape: slim, dark, connects head to body", + "tail: elongated, forked, dark feathers", + "throat: white, feathered, distinct (in female" + ], + "black footed albatross": [ + "back: dark brown feathers with lighter accents", + "beak: large, grayish-white, hooked tip", + "belly: white feathers with dark brown edges", + "breast: white plumage fading to brown at sides", + "crown: dark brown feathers with smooth contour", + "forehead: dark brown, blending into crown", + "eyes: black, surrounded by dark feathering", + "legs: large, black, webbed feet", + "wings: long, slender, dark brown with white edges", + "nape: dark brown, connecting to crown and back", + "tail: narrow, pointed, dark brown feathers", + "throat: white feathers with dark edges, smooth transition to breast" + ], + "bank swallow": [ + "back: brownish-grey plumage", + "beak: short and pointed", + "belly: white feathering", + "breast: light-colored, slightly streaked", + "crown: dark brown, smoothly rounded", + "forehead: white with brown streaks", + "eyes: small and black", + "legs: short and sturdy", + "wings: elongated, pointed edges", + "nape: greyish-brown, well-defined", + "tail: short, forked, with white edges", + "throat: white with a slight dark band" + ], + "mockingbird": [ + "back: sleek gray feathers", + "beak: thin, sharp, black", + "belly: light, white plumage", + "breast: pale gray chest feathers", + "crown: gray feathered head", + "forehead: smooth gray feathers", + "eyes: dark, alert, piercing", + "legs: long, slender, gray", + "wings: broad, gray, powerful", + "nape: gray feathers, thick plumage", + "tail: long, gray, fan-like", + "throat: white-gray, soft feathers" + ], + "sooty albatross": [ + "back: dark grey, streamlined body", + "beak: long, slender, greyish-black", + "belly: lighter grey, smoothly curved", + "breast: pale grey, narrow contours", + "crown: dark grey, rounded head shape", + "forehead: slightly lighter grey, gentle slope", + "eyes: small, dark, alert expression", + "legs: short, webbed, grey-black", + "wings: long, narrow, grey-black with white edges", + "nape: soft, grey transition from head to body", + "tail: short, fan-shaped, dark grey with white tips", + "throat: smooth, light grey, narrow shape" + ], + "pelagic cormorant": [ + "back: sleek black feathers", + "beak: long, hooked, dark grey", + "belly: dark feathers blending with breast", + "breast: black with greenish sheen", + "crown: smooth black feathers", + "forehead: flat, dark feathered", + "eyes: brilliant turquoise color", + "legs: strong, dark, and webbed", + "wings: long, narrow, black feathers", + "nape: slender neck with dark feathers", + "tail: wedge-shaped, black feathers", + "throat: black, with a small patch of feathers on the chin" + ], + "slaty backed gull": [ + "back: pale bluish-gray feathers", + "beak: strong, yellow with a red dot", + "belly: white and smooth", + "breast: white and slightly puffed", + "crown: pale gray with mottled streaks", + "forehead: flat and pale gray", + "eyes: bright yellow with a black ring", + "legs: sturdy and pinkish-yellow", + "wings: bluish-gray with black wingtips and white spots", + "nape: pale gray and slightly curved", + "tail: white with black banding", + "throat: white and unblemished" + ], + "tree sparrow": [ + "back: brownish-grey with black streaks", + "beak: short, conical, and dark grey", + "belly: pale grey with brownish tinge", + "breast: pale grey with brownish tinge", + "crown: chestnut brown with white cheeks", + "forehead: chestnut brown, central streak", + "eyes: round and shiny-black", + "legs: pinkish-brown, slender and strong", + "wings: brown-black with white wing bars", + "nape: chestnut brown with black streaks", + "tail: dark brown with white outer edges", + "throat: pale grey, clear and unmarked" + ], + "abbott starling": [ + "back: glossy dark green feathers", + "beak: long, slender, and black", + "belly: light peachy brown, streaked", + "breast: rosy pink fading into brown", + "crown: iridescent purple sheen", + "forehead: bright orange stripe", + "eyes: small, black and beady", + "legs: long, thin, dark blue-gray", + "wings: dark green with faint silver speckles", + "nape: metallic green hue, transitioning into purple", + "tail: long, wide, dark green, silver-blue sheen", + "throat: light pinkish-brown, streaked feathers" + ], + "abd al kuri sparrow": [ + "back: brownish-grey with streaks", + "beak: short and conical, dark colored", + "belly: pale grey or buff", + "breast: light grey-brown with faint streaking", + "crown: dark brown streaked with black", + "forehead: pale grey to buff", + "eyes: small and dark", + "legs: pinkish-brown and thin", + "wings: brown with black markings", + "nape: brownish-grey with streaks", + "tail: dark brown with white outer feathers", + "throat: light grey or buff" + ], + "abdim stork": [ + "back: smooth, greyish-white feathers", + "beak: long, curved, and sharp for catching prey", + "belly: soft, white feathers for warmth and protection", + "breast: grey plumage, helping with camouflage", + "crown: sleek, black head feathers", + "forehead: white feathers, blending into the crown", + "eyes: piercing, dark, and alert to spot prey", + "legs: long, slender, and strong for wading in water", + "wings: wide, powerful, and grey for flight and gliding", + "nape: black feathers, extending down from the crown", + "tail: grey, fan-like feathers, aiding with balance and flight", + "throat: white, soft feathers, connecting to the breast" + ], + "aberdare cisticola": [ + "back: brown streaked with black", + "beak: small, pointed, and black", + "belly: off-white with buff-colored flanks", + "breast: pale buff, streaked with dark brown", + "crown: rufous with thin, dark streaks", + "forehead: pale buff, blending into the crown", + "eyes: dark brown, surrounded by pale buff feathers", + "legs: pinkish-brown, slender and long", + "wings: brown with light rufous fringes", + "nape: brown streaked with dark markings", + "tail: short, dark brown, with white outer feathers", + "throat: pale buff, unmarked" + ], + "aberrant bush warbler": [ + "back: olive-brown feathers covering the upper body", + "beak: short, conical, sharp-pointed", + "belly: off-white with pale gray or buff undertones", + "breast: pale gray or olive with faint streaks", + "crown: olive-brown with subtle gray tinges", + "forehead: uniformly olive-brown, blending into crown", + "eyes: dark with a white eye-ring", + "legs: sturdy and pale pinkish-brown", + "wings: moderately pointed with darker flight feathers", + "nape: olive-brown, smoothly transitioning from crown", + "tail: dark olive-brown with paler edging on outer feathers", + "throat: off-white with pale gray or buff shading" + ], + "abert towhee": [ + "back: olive-brown feathers with slight rusty tinge", + "beak: relatively long, slightly curved, blackish-gray", + "belly: pale grayish-white with sparse dark streaks", + "breast: gray with rufous-tinted sides and faint streaks", + "crown: reddish-brown with gray streaks", + "forehead: pale gray blending into reddish-brown crown", + "eyes: dark brown, surrounded by pale gray feathers", + "legs: long, slender, and grayish-pink", + "wings: olive-brown with rufous edging on some feathers", + "nape: reddish-brown, blending into gray on lower neck", + "tail: long, rufous-brown with black and white outer tail feathers", + "throat: pale gray, extending to upper breast" + ], + "abyssinian catbird": [ + "back: dark brownish-black with a hint of olive-green", + "beak: short, strong, and blackish", + "belly: light gray to bluish-gray", + "breast: orange-brown or rusty color", + "crown: dark brownish-black, slightly glossy", + "forehead: same dark brownish-black as the crown", + "eyes: large and amber-yellow", + "legs: dark gray, sturdy and medium length", + "wings: dark brownish-black with a green sheen, rounded shape", + "nape: continuation of crown color, dark brownish-black", + "tail: dark brownish-black, medium length with a slight fork", + "throat: light gray to bluish-gray, contrasting with the breast" + ], + "abyssinian crimsonwing": [ + "back: vibrant green feathers", + "beak: short, black conical shape", + "belly: pale reddish-orange hue", + "breast: rich crimson plumage", + "crown: emerald green with a metallic sheen", + "forehead: striking green feathers", + "eyes: dark, round, and attentive", + "legs: slender, gray-blue", + "wings: bright green with patches of deep red", + "nape: emerald green feathers", + "tail: blend of red and bronze feathers", + "throat: pale reddish-orange hue" + ], + "abyssinian ground thrush": [ + "back: dark olive-brown with blackish spots", + "beak: strong, hooked, and yellowish", + "belly: whitish with brownish-grey spots", + "breast: pale orange with dark spots", + "crown: dark brown with blackish streaks", + "forehead: slightly paler brown with faint streaks", + "eyes: dark brown with greyish eye-ring", + "legs: long, strong, and yellowish-grey", + "wings: olive-brown with blackish bars", + "nape: dark brown with blackish streaks", + "tail: long and olive-brown with faint bars", + "throat: pale orange with dark spots" + ], + "abyssinian longclaw": [ + "back: brownish-grey with distinct black streaks", + "beak: strong, conical, and yellow", + "belly: white with black streaks", + "breast: white with dark streaks and yellow patch", + "crown: greyish-brown with bold black stripes", + "forehead: yellow-tinted with black streaks", + "eyes: dark, piercing, with light eyebrows", + "legs: long, thin, and yellowish-grey", + "wings: brownish-grey with black flight feathers", + "nape: brownish-grey with an olive-yellow collar", + "tail: long, dark brown with white outermost feathers", + "throat: white with a dense black band" + ], + "abyssinian owl": [ + "back: tawny-brown with black streaks", + "beak: powerful, black, and hooked", + "belly: light brown with small, dark streaks", + "breast: rufous-brown with dark vertical streaks", + "crown: tawny-brown with black flecks", + "forehead: lush beige with fine dark streaks", + "eyes: large, vivid yellow with a black outline", + "legs: yellowish brown, feathered, with sharp talons", + "wings: wide, tawny-brown with black bars and white spots", + "nape: reddish-brown with dark streaks and pale markings", + "tail: tawny-brown with black bars, white spots, and round tip", + "throat: light brown, paler than the rest of the body" + ], + "abyssinian roller": [ + "back: vibrant blue-green plumage", + "beak: strong, black, and slightly hooked", + "belly: light blue with grayish tones", + "breast: white with soft blue edges", + "crown: turquoise and glossy feathers", + "forehead: smooth, light blue gradient", + "eyes: small with brownish-black irises", + "legs: short and sturdy, gray", + "wings: vivid blue with black flight feathers", + "nape: rich turquoise-blue shade", + "tail: long and dark blue with squared-off ends", + "throat: sky blue with paler hues" + ], + "abyssinian scimitarbill": [ + "back: dark blue-grey feathers", + "beak: long, scimitar-shaped and black", + "belly: light greyish-white", + "breast: greyish-white with dark streaks", + "crown: dark blue-grey feathers", + "forehead: dark blue-grey feathers", + "eyes: dark, rounded with white eyering", + "legs: long and sturdy, black or dark grey", + "wings: blue-grey with dark primary feathers", + "nape: dark blue-grey feathers", + "tail: slim, elongated and blue-grey", + "throat: greyish-white with faint dark streaks" + ], + "abyssinian slaty flycatcher": [ + "back: dark slate-gray feathers", + "beak: small, black, and sturdy", + "belly: pale grayish-white with minimal streaks", + "breast: grayish-blue with faint streaks", + "crown: slate-gray with a slight crest", + "forehead: smooth slate-gray", + "eyes: prominent, dark with white eye-ring", + "legs: thin, black, and strong", + "wings: slate-gray with darker flight feathers", + "nape: smooth slate-gray transitioning from crown", + "tail: long, dark gray, and forked", + "throat: pale grayish-white, blending with breast" + ], + "abyssinian thrush": [ + "back: dark brown plumage with subtle olive tones", + "beak: blackish-brown, medium-length, and slightly curved", + "belly: grayish-white with dark brown streaks", + "breast: grayish-brown with blackish streaks", + "crown: dark brown with olive tinge", + "forehead: dark brown and slightly paler than the crown", + "eyes: black and shiny, surrounded by a buffy-white eyering", + "legs: long and blackish-brown", + "wings: dark brown with lighter brown wingbars", + "nape: dark brown with olive shading", + "tail: dark brown with slightly paler brown outer feathers", + "throat: pale grayish-white with fine black streaks" + ], + "abyssinian wheatear": [ + "back: dark brown with faint streaks", + "beak: slim and sharp, black", + "belly: bright buff color", + "breast: pale buff with dark streaks", + "crown: dark brown with defined white eye stripe", + "forehead: dark brown with white eye stripe", + "eyes: small and dark, with distinct white eye ring", + "legs: long, black, and slender", + "wings: brown with white patches", + "nape: brown, blending into the back color", + "tail: black, long, with white edges", + "throat: pale buff, transitioning into breast color" + ], + "abyssinian white eye": [ + "back: light olive-green plumage", + "beak: short, pointed black bill", + "belly: pale yellow underparts", + "breast: bright yellow chest patch", + "crown: greenish-yellow feathers, white eye-ring", + "forehead: greenish-yellow plumage", + "eyes: large, white encircled, dark brown eyes", + "legs: pale gray sturdy legs", + "wings: greenish-yellow feathers with black streaks", + "nape: light olive-green nape, blending with crown", + "tail: greenish-yellow feathers, white-tip edges", + "throat: pale yellow feathers" + ], + "abyssinian woodpecker": [ + "back: olive-brown with darker markings", + "beak: strong, straight, dark gray", + "belly: white with dark brown streaks", + "breast: cream with brown streaks", + "crown: red for males, black for females", + "forehead: white with a red patch (males) or black (females", + "eyes: dark brown with white surrounds", + "legs: grayish, strong legs with sharp claws", + "wings: black and white barred pattern", + "nape: white with black or dark brown markings", + "tail: black with white-tipped feathers", + "throat: white or light cream with black or dark brown streaks" + ], + "aceh bulbul": [ + "back: olive-green feathers", + "beak: short, slightly curved, grayish-black", + "belly: pale golden-yellow", + "breast: golden-yellow", + "crown: metallic olive-green with a distinctive dark crest", + "forehead: dark blackish-green with fine feather strands", + "eyes: medium size, black orb with a grayish eye-ring", + "legs: sturdy gray legs with small sharp claws", + "wings: olive-green with dark flight feathers", + "nape: olive-green with darker feather tips", + "tail: long, olive-green, semi-curved feathers with white edges", + "throat: bright golden-yellow" + ], + "acre antshrike": [ + "back: dark gray-black feathers", + "beak: strong, black, and hooked", + "belly: grayish-white feathers", + "breast: gray-streaked white feathers", + "crown: black feathers forming a crest", + "forehead: black and narrow feathers", + "eyes: small and black with a white ring", + "legs: long, strong, and black", + "wings: dark gray-black with white accents", + "nape: gray-black feathers", + "tail: long, black, and fan-shaped", + "throat: white feathers with gray streaks" + ], + "acre tody tyrant": [ + "back: vibrant olive-green", + "beak: small, pointed, black", + "belly: pale yellowish-white", + "breast: bright golden-yellow", + "crown: rufous-orange", + "forehead: yellowish-green", + "eyes: beady, deep black", + "legs: short, grayish-blue", + "wings: greenish-yellow with black patterns", + "nape: olive-green", + "tail: long, forked, greenish-black", + "throat: pale yellow" + ], + "adamawa turtle dove": [ + "back: smooth grey-brown feathers", + "beak: short and black", + "belly: pale grey with light feathering", + "breast: soft pinkish-brown hue", + "crown: blue-grey feathers with a distinct marking", + "forehead: pale blue-grey coloring", + "eyes: round dark eyes with a white eyering", + "legs: short, red-pink scaly limbs", + "wings: greyish-brown with black and white accentuating stripes", + "nape: bluish-grey with a hint of brown", + "tail: long tail feathers with white tips and a black underside", + "throat: light pinkish-grey hue" + ], + "adelaide warbler": [ + "back: olive-green with slight streaks", + "beak: slim and pointed, dark brown or black", + "belly: pale yellow with subtle streaks", + "breast: bright yellow with light streaks", + "crown: warm olive-gray with slight streaking", + "forehead: olive-gray, similar to the crown", + "eyes: dark, surrounded by a faint white eye-ring", + "legs: slim and grayish, fairly sharp talons", + "wings: olive-green with white wing bars", + "nape: olive-gray, matching crown and forehead", + "tail: olive-green with faint dark bands", + "throat: bright yellow, clean and unmarked" + ], + "adelie penguin": [ + "back: sleek, dark bluish-grey feathering", + "beak: strong, black, and slightly curved", + "belly: white, smooth plumage", + "breast: rounded, full white feathers", + "crown: black, triangular head shape", + "forehead: smooth, black feathering", + "eyes: round, black, and expressive", + "legs: short, sturdy, pink-to-black-webbed feet", + "wings: small, black, stiff flippers", + "nape: dark-colored, continuous with the crown", + "tail: short and rounded, black feathers", + "throat: white, merging with the belly plumage" + ], + "afep pigeon": [ + "back: sleek, bluish-grey feathers", + "beak: short, stout, and pale", + "belly: light grey, soft plumage", + "breast: rounded, purplish-pink hue", + "crown: smooth, bluish-grey feathers", + "forehead: flat, light grey plumage", + "eyes: bright orange-red, encircled with pale skin", + "legs: red, scaly, with small claws", + "wings: strong, bluish-grey with black stripes", + "nape: lighter grey, slender neck", + "tail: broad, black-banded feathers with white edging", + "throat: purplish-pink coloration, puffed appearance" + ], + "afghan babbler": [ + "back: light brown with subtle feather markings", + "beak: slightly curved, black with hints of grey", + "belly: pale buff with fine dark streaks", + "breast: buff-colored, dark streaks converging towards the center", + "crown: grey-brown, with streaky patterns", + "forehead: pale grey, blending into the crown", + "eyes: dark brown, encircled by a faint white eye-ring", + "legs: strong pinkish-grey, adapted for ground foraging", + "wings: light brown with dark feather tips forming bars", + "nape: grey-brown, transitioning from crown and back", + "tail: relatively long, brown with darker bars and white outer tail feathers", + "throat: creamy white with faint streaks, contrasting from breast" + ], + "african bare eyed thrush": [ + "back: olive-brown feathers", + "beak: short, sharp, and pointed", + "belly: off-white with faint brownish spots", + "breast: cream-colored with small brown speckles", + "crown: smooth, gray-brown plumage", + "forehead: lighter gray-brown coloration", + "eyes: large, dark, and surrounded by a bare eye-ring", + "legs: long, slender, and grayish-brown", + "wings: olive-brown with faint barring and white wing-bars", + "nape: gray-brown with a subtle collar", + "tail: long and olive-brown with white tips", + "throat: creamy-white with small, brown speckles" + ], + "african barred owlet": [ + "back: mottled brown and white feathers", + "beak: short, hook-shaped, light grey", + "belly: white feathers with brown barring", + "breast: white feathers with brown barring", + "crown: dark greyish-brown with white streaks", + "forehead: greyish-brown with fine white streaks", + "eyes: large, dark, forward-facing", + "legs: feathered, light grey", + "wings: brown with faint white bars", + "nape: dark greyish-brown with white streaks", + "tail: brown feathers with white bars", + "throat: white feathers with brown barring" + ], + "african black duck": [ + "back: dark brown plumage with slight white markings", + "beak: dark grey with a slight greenish-yellow tint", + "belly: dark brown with light white speckles", + "breast: mottled dark brown and white pattern", + "crown: dark brown feathers, slightly raised", + "forehead: flat and dark brown, blending into the crown", + "eyes: deep brown and well-defined", + "legs: strong, greyish-yellow with webbed feet", + "wings: dark brown, with distinct white wing-bar markings", + "nape: dark brown, transitioning smoothly from the crown", + "tail: short, dark brown feathers with a subtle fan shape", + "throat: light brown with small white speckles" + ], + "african black headed oriole": [ + "back: vibrant yellow with black streaks", + "beak: slim, sharp, and black", + "belly: bright yellow and slightly fluffy", + "breast: vivid yellow with black markings", + "crown: glossy black with smooth feathers", + "forehead: black, merging with the crown", + "eyes: dark and beady, surrounded by black feathers", + "legs: slender and black, with sharp claws", + "wings: yellow with black edges and patterns", + "nape: brilliant yellow with a hint of black", + "tail: long and black with yellow tips", + "throat: striking yellow, contrasting with the black head" + ], + "african blue flycatcher": [ + "back: deep blue feathers", + "beak: small, black, and pointed", + "belly: light blue to grayish-white", + "breast: bright blue plumage", + "crown: dark blue with slight iridescence", + "forehead: bright blue, merging with the crown", + "eyes: small, black, with white eye ring", + "legs: thin, black, and delicate", + "wings: blue with black flight feathers", + "nape: brilliant blue, continuous with the crown", + "tail: long, dark blue with black tips", + "throat: vibrant blue, contrasting with the lighter belly" + ], + "african blue tit": [ + "back: vibrant blue color with white streaks", + "beak: small, sharp black beak for picking seeds and insects", + "belly: soft yellow with grayish-white sides", + "breast: bright yellow merging into the belly color", + "crown: bright blue with a black band around the head", + "forehead: vivid blue merging into the crown color", + "eyes: dark, round with a small white eye-ring", + "legs: thin bluish-gray legs with small feet for gripping branches", + "wings: blue with white and black patterning, strong and agile", + "nape: bright blue connecting the crown and back", + "tail: blue with black edges and white outer feathers for maneuverability", + "throat: bright yellow matching the breast color" + ], + "african broadbill": [ + "back: olive-brown with light streaks", + "beak: short, wide, and black", + "belly: pale brown with thin white bands", + "breast: light olive-green with fine streaking", + "crown: dark brown with light feather edges", + "forehead: olive-brown with pale streaks", + "eyes: dark brown with thin white eye-ring", + "legs: strong, grayish-blue", + "wings: olive-brown, rounded, broad with white horizontal banding", + "nape: olive-brown with pale feather edges", + "tail: short, olive-brown, white-tipped with a broad black subterminal band", + "throat: white with fine olive-brown streaks" + ], + "african citril": [ + "back: light greenish-yellow feathers", + "beak: sharp, conical, blackish", + "belly: yellow with greenish streaks", + "breast: bright yellow, slightly streaked", + "crown: greenish-yellow plumage", + "forehead: bright yellow feathers", + "eyes: small, dark brown, alert", + "legs: slender, dark grey", + "wings: dark greenish-grey, edged with yellow", + "nape: greenish-yellow, blending into back", + "tail: dark greenish-grey, forked", + "throat: bright yellow, unmarked" + ], + "african collared dove": [ + "back: light greyish-brown plumage", + "beak: short, black, slightly hooked tip", + "belly: pale grey with faint scalloping", + "breast: delicate pinkish hue", + "crown: smooth grey feathers", + "forehead: light grey, flat profile", + "eyes: dark, surrounded by thin white eye-ring", + "legs: short, red-pink with scaled texture", + "wings: grey with black striping and white edges", + "nape: black collar-like band, white crescent below", + "tail: long, grey with white outer feathers", + "throat: soft grey, smooth transition from breast" + ], + "african crake": [ + "back: dark olive-brown with fine white markings", + "beak: short, sharp, and yellowish", + "belly: light buff with black barring", + "breast: pale buff with brown and black stripes", + "crown: olive-brown with a slight crest", + "forehead: rounded, brown with faint white markings", + "eyes: beady, reddish-brown", + "legs: long, slender, and yellowish-green", + "wings: olive-brown with white streaks and a rufous patch", + "nape: olive-brown with a white-collar", + "tail: brownish-black with white outer feathers", + "throat: white with minimal markings" + ], + "african crested flycatcher": [ + "back: dark olive-grey feathers", + "beak: short, hooked black beak", + "belly: whitish-grey coloration", + "breast: light grey plumage", + "crown: prominent black crest", + "forehead: black feathers", + "eyes: small and black", + "legs: long, greyish-black", + "wings: olive-grey with slightly darker flight feathers", + "nape: olive grey coloration", + "tail: long, narrow, olive grey", + "throat: light grey plumage" + ], + "african cuckoo hawk": [ + "back: brownish-grey feathers", + "beak: black, hooked beak", + "belly: lighter brown feathers", + "breast: beige-brown speckling", + "crown: dark grey and brown", + "forehead: brownish-grey", + "eyes: sharp, yellow eyes", + "legs: strong, yellow legs", + "wings: long, broad, dark grey-brown", + "nape: brownish-grey feathers", + "tail: dark grey-brown with pale bands", + "throat: beige-brown speckling" + ], + "african darter": [ + "back: dark brown with bronze sheen", + "beak: long, sharp, and hook-like", + "belly: pale brown with high contrast markings", + "breast: light brown with black speckling", + "crown: glossy black feathers", + "forehead: smooth, black, and well-defined", + "eyes: bright yellow with piercing gaze", + "legs: dark grey with webbed feet", + "wings: long, slender, and pointed with dark feathers", + "nape: dark brown with elongated feathers", + "tail: long, thin, and adorned with black feathers", + "throat: white and streaked with grey" + ], + "african desert warbler": [ + "back: olive brown with fine mottling", + "beak: slender and curved, sandy brown", + "belly: pale buff with light streaks", + "breast: buff brown with fine, dark streaks", + "crown: mottled olive-brown with a paler median stripe", + "forehead: plain olive brown, blending into the crown", + "eyes: dark with a pale buff eyering", + "legs: pale pinkish-brown and slender", + "wings: olive-brown with dark bars on primaries and secondaries", + "nape: mottled olive-brown, blending into back", + "tail: olive-brown with dark bars and white tips on outer feathers", + "throat: pale buff, lightly streaked with brown" + ], + "african dusky flycatcher": [ + "back: olive-brown feathering", + "beak: short, sharp, black", + "belly: pale greyish-white", + "breast: grey with tinges of brown", + "crown: dark grey-brown", + "forehead: lighter grey-brown", + "eyes: beady, dark, small", + "legs: long, slender, black", + "wings: olive-brown, rounded", + "nape: greyish-brown", + "tail: short, brownish-grey, square-ended", + "throat: pale grey-white" + ], + "african dwarf kingfisher": [ + "back: vibrant blue-green plumage", + "beak: short, sharp, black", + "belly: creamy white underside", + "breast: rich orange-red coloring", + "crown: bright blue feathers", + "forehead: vivid blue-green cap", + "eyes: small, dark, alert", + "legs: short, dark grey", + "wings: vibrant blue-green with black flight feathers", + "nape: bright blue-green patch", + "tail: blue-green feathers with white tips", + "throat: white feathers with slightly rufous-tinted chin" + ], + "african finfoot": [ + "back: brownish-grey feathers", + "beak: long and thin, sharp at the end", + "belly: creamy white with speckled pattern", + "breast: light brown with intricate markings", + "crown: smooth, pale grey feathers", + "forehead: light coloring, blending into crown", + "eyes: small and black, set on either side", + "legs: long, powerful, partially webbed feet", + "wings: brown with white streaks, used for swimming", + "nape: pale grey, leading into back feathers", + "tail: short and horizontal, brownish-grey", + "throat: white, blending into breast coloration" + ], + "african fish eagle": [ + "back: dark brown feathers with a hint of white edges", + "beak: sharp, large, hooked, and yellow", + "belly: white feathers with brown trims", + "breast: white feathers with a brown tint", + "crown: white feathers merging into brown on the back of the head", + "forehead: white and smooth feathers", + "eyes: piercing yellow with a black center", + "legs: strong and thick, with sharp black talons", + "wings: dark brown with pronounced white patches on the underside", + "nape: brown feathers with white blended in", + "tail: brown feathers with white tips", + "throat: white feathers extending into the breast area" + ], + "african forest flycatcher": [ + "back: olive-green upperparts", + "beak: short, strong, and wide black bill", + "belly: off-white underparts", + "breast: pale, grayish-white chest", + "crown: dark, glossy head with a slight crest", + "forehead: blackish-brown coloration", + "eyes: dark brown with white eye-ring", + "legs: slender, grayish-blue legs", + "wings: relatively short, rounded, and olive-green", + "nape: olive-colored feathers connecting head and back", + "tail: short and dark, with subtle olive-green shades", + "throat: white or pale, contrasting with darker head and breast" + ], + "african golden oriole": [ + "back: vibrant yellow feathers with contrasting black streaks", + "beak: sharp, slightly curved, and black", + "belly: bright golden-yellow hue", + "breast: rich yellow feathers blending into the belly", + "crown: yellow with a black, mask-like pattern around the eyes", + "forehead: brightly colored yellow feathers", + "eyes: small, black, and bead-like surrounded by black markings", + "legs: slender and black with clawed feet", + "wings: black with yellow patches and white markings", + "nape: golden-yellow, leading into the back feathers", + "tail: black, forked, with white outer feathers", + "throat: vibrant golden-yellow, in line with the breast color" + ], + "african golden weaver": [ + "back: vibrant yellow feathers", + "beak: strong, conical black", + "belly: bright yellow", + "breast: golden yellow hue", + "crown: brilliant yellow plumage", + "forehead: vivid yellow feathers", + "eyes: black with white eye-ring", + "legs: dark grey and slender", + "wings: yellow with black-tipped feathers", + "nape: yellow with black streaks", + "tail: yellow, short and slightly forked", + "throat: rich golden-yellow color" + ], + "african goshawk": [ + "back: grayish-brown plumage with white spots", + "beak: sharp, black hooked beak for tearing prey", + "belly: white with fine gray barring", + "breast: creamy white with broad gray streaks", + "crown: dark gray with a slightly raised crest", + "forehead: grayish-white with faint streaks", + "eyes: bright yellow, piercing gaze", + "legs: long, yellow with powerful talons", + "wings: broad, short, and rounded for maneuverability", + "nape: gray with white spots, well-defined border", + "tail: long, barred gray and white with a square tip", + "throat: white with gray streaks, distinct from breast" + ], + "african grass owl": [ + "back: tawny-brown with fine black markings", + "beak: sharp, black hooked beak", + "belly: light buff color with sparse black markings", + "breast: pale brown with black speckles", + "crown: tawny-brown with darker streaks", + "forehead: light buff color with a central dark stripe", + "eyes: large, dark, and forward-facing with white eyebrows", + "legs: long and feathered, with sharp talons", + "wings: rounded, tawny-brown with black bars", + "nape: light tawny-brown with fine black streaks", + "tail: barred brown and black, medium length", + "throat: pale buff color, unmarked" + ], + "african gray flycatcher": [ + "back: dark gray plumage with feather markings", + "beak: black, short and hooked", + "belly: light gray with pale feather patterns", + "breast: smoky gray with subtle feather markings", + "crown: dark gray with slightly raised feathers", + "forehead: smooth, transitioning from dark to light gray", + "eyes: beady and black with white eye-ring", + "legs: dark gray, slender, and long", + "wings: dark gray with white wing bars and intricate patterns", + "nape: gray with faint feather markings", + "tail: dark gray with white outer tail feathers and slight fork", + "throat: pale gray with fine feather details" + ], + "african gray hornbill": [ + "back: dark gray feathered body", + "beak: large, curved, cream-colored", + "belly: lighter gray feathers", + "breast: white-based feathers with gray blend", + "crown: smooth, dark gray feathers", + "forehead: dark gray extending to beak base", + "eyes: small, yellow encircled with black", + "legs: sturdy, pale gray toned", + "wings: long, dark gray spanning feathers", + "nape: dark gray connecting to back", + "tail: elongated, dark gray feathers", + "throat: light gray blending into breast" + ], + "african gray woodpecker": [ + "back: gray feathers with darker streaks", + "beak: strong, straight, and black", + "belly: light gray with blackish spots", + "breast: pale gray with darker streaks", + "crown: dark gray with white streaks", + "forehead: lighter gray with fainter streaks", + "eyes: small, dark, and round", + "legs: sturdy, dark grayish-brown", + "wings: gray with black barring and white tips", + "nape: dark gray with white streaks", + "tail: gray with black barring and white outer feathers", + "throat: pale gray with fine streaks" + ], + "african green bee eater": [ + "back: bright green feathers covering the bird's upper body", + "beak: long, slender, black curved beak for catching insects", + "belly: light green or yellowish-green feathers below the breast", + "breast: vibrant green plumage on the bird's chest area", + "crown: bright green feathers on top of the head", + "forehead: vibrant green feathers above the eyes and beak", + "eyes: large, expressive, dark eyes with surrounding white feathers", + "legs: black, slender legs with small, sharp claws for perching", + "wings: long, bright green wings with black tips for agile flight", + "nape: vibrant green feathers at the back of the bird's neck", + "tail: long, slim tail feathers, often with a black or blue central pair that extends beyond the rest", + "throat: light green or yellowish-green feathers on the front of the bird's neck" + ], + "african green pigeon": [ + "back: vibrant green feathers", + "beak: short, hooked, ash-gray", + "belly: pale yellowish-green", + "breast: greenish-yellow with mauve-blue hue", + "crown: bluish-gray tinged green", + "forehead: light bluish-gray", + "eyes: dark brown, encircled by yellow bare skin", + "legs: red or purplish-red", + "wings: bright green with blue outer edges", + "nape: blue-gray to olive-green", + "tail: green with yellow outer feathers", + "throat: pale purplish-blue" + ], + "african harrier hawk": [ + "back: grey-brown feathers with a streaked pattern", + "beak: sharp, curved, black with a grey base", + "belly: white with fine dark barring", + "breast: white with fine dark barring, sometimes buff", + "crown: greyish brown with dark streaks", + "forehead: buff with fine dark streaks", + "eyes: yellow surrounded by a patch of bare, yellow skin", + "legs: long, yellow with feathered thighs", + "wings: broad, grey-brown with dark primaries", + "nape: greyish brown with fine dark streaks", + "tail: long, grey-brown with dark bands", + "throat: buff-tinged with dark streaks" + ], + "african hawk eagle": [ + "back: dark brown feathered upper region", + "beak: sharp, hooked, black and yellow tip", + "belly: white with black feather streaks", + "breast: white plumage with fine brown barring", + "crown: dark brown feathers forming a crest", + "forehead: brown feathered transition to beak", + "eyes: piercing yellow with black outlines", + "legs: thick, yellow with strong talons", + "wings: wide, brown, and black banded feathers", + "nape: brown, short feathers behind the head", + "tail: dark brown with bold black stripes", + "throat: white merging with breast plumage" + ], + "african hill babbler": [ + "back: olive-green and slightly streaked", + "beak: short, slender, and curved", + "belly: pale grayish-white", + "breast: grayish-white with faint streaks", + "crown: olive-green, feathers slightly raised", + "forehead: mix of gray and olive-green hues", + "eyes: dark brown with pale eyering", + "legs: sturdy and pale pinkish-brown", + "wings: greenish-brown with faint barring", + "nape: olive-green, blending with crown", + "tail: long, olive-green and faintly barred", + "throat: pale gray with thin streaks" + ], + "african hobby": [ + "back: dark, sleek feathers", + "beak: sharp, hooked, black", + "belly: light-grey, streaked plumage", + "breast: beige, finely barred pattern", + "crown: rufous-brown with black streaks", + "forehead: pale streaks on dark background", + "eyes: piercing, bright yellow", + "legs: strong, yellow-orange", + "wings: long, pointed, dark grey", + "nape: brown with slight pale streaks", + "tail: square-shaped with black and white bands", + "throat: creamy white with light barring" + ], + "african jacana": [ + "back: brownish-black plumage", + "beak: long, thin, and slightly curved", + "belly: creamy white feathers", + "breast: chestnut-colored with white stripes", + "crown: black with bluish sheen", + "forehead: yellow frontal shield covering", + "eyes: dark brown with white line", + "legs: long and slender with elongated toes", + "wings: bold, white wing-bars and chestnut-colored coverts", + "nape: glossy black plumage", + "tail: short and white-tipped", + "throat: creamy white with some light brown markings" + ], + "african marsh harrier": [ + "back: brownish-grey with dark streaks", + "beak: sharp, hooked, and yellow", + "belly: white with brown spots and streaks", + "breast: pale rufous with brown streaks", + "crown: brown with dark streaks", + "forehead: whitish-grey with dark streaks", + "eyes: bright yellow", + "legs: yellow, strong, and feathered", + "wings: long, broad, and brown with white patches", + "nape: brown with dark streaks", + "tail: long, straight, and brown with grey bands", + "throat: whitish with fine dark streaks" + ], + "african openbill": [ + "back: charcoal gray plumage", + "beak: long, dark, horn-shaped", + "belly: grayish-white feathers", + "breast: light gray, slight curve", + "crown: smooth, dark gray feathers", + "forehead: lightly feathered, dark shade", + "eyes: dark brown, small", + "legs: black, thin, long", + "wings: wide, gray, white-rimmed feathers", + "nape: dark gray, slightly curved", + "tail: medium-length, dark gray feathers", + "throat: pale gray, narrow" + ], + "african oystercatcher": [ + "back: black plumage, sleek and smooth", + "beak: long, orange-red, and sharp", + "belly: black feathers, slightly lighter than back", + "breast: black plumage, blending with belly", + "crown: black and smooth, fading into forehead", + "forehead: black feathers, meeting with beak base", + "eyes: bright orange-red, with black pupil", + "legs: bright pink, strong and sturdy", + "wings: black, wide, and rounded", + "nape: black, transitioning between head and back", + "tail: black, medium length, fan-shaped", + "throat: black, slightly lighter than breast feathers" + ], + "african palm swift": [ + "back: sleek, brownish-grey plumage", + "beak: small, thin, black, and slightly curved", + "belly: light greyish-white with flecks of brown", + "breast: pale grey with faint dark streaks", + "crown: dark brown with a smooth, glossy appearance", + "forehead: smooth, brownish-grey feathers", + "eyes: small, round, dark with a white eyering", + "legs: short, thin, brownish-black with small feet", + "wings: long, slender, and sickle-shaped with dark brown plumage", + "nape: brownish-grey with a slightly paler shade than the crown", + "tail: short, forked, and brownish-grey with white tips", + "throat: pale greyish-white with faint streaking" + ], + "african paradise flycatcher": [ + "back: elongated, colorful feathers", + "beak: small, black, pointed", + "belly: light, cream-colored", + "breast: white with a hint of orange", + "crown: vibrant blue-black crest", + "forehead: sleek, blue-black", + "eyes: piercing, dark, and round", + "legs: long, slender, black", + "wings: large, white-edged blue-black feathers", + "nape: blue-black with a distinctive crested appearance", + "tail: lengthy, streamer-like feathers with a white tip", + "throat: delicate, white, and smooth" + ], + "african penduline tit": [ + "back: golden-brown feathers", + "beak: sharp, pointed, black", + "belly: creamy-white plumage", + "breast: beige and white mix", + "crown: dark grey with white streaks", + "forehead: grey and white feathers", + "eyes: piercing, yellow-rimmed", + "legs: slender, greyish-blue", + "wings: brownish-grey, lined with white", + "nape: soft grey and white bands", + "tail: elongated, light brown", + "throat: white patch surrounded by beige" + ], + "african penguin": [ + "back: sleek black feathers", + "beak: long, black, and pointed", + "belly: white with black spotting", + "breast: white and semi-rounded", + "crown: black and smoothly curved", + "forehead: black with white border", + "eyes: dark and surrounded by a white band", + "legs: short and pinkish in color", + "wings: flippers-like, black and elongated", + "nape: black and connecting to the crown", + "tail: short, black with a stiff structure", + "throat: white, sloping down from the face" + ], + "african piculet": [ + "back: greenish-brown feathers", + "beak: short and pointed", + "belly: whitish-yellow plumage", + "breast: white markings", + "crown: reddish-brown hue", + "forehead: light-colored feathers", + "eyes: black bead-like", + "legs: slender gray legs", + "wings: patterned with brown and green", + "nape: brownish-red feathers", + "tail: short and stiff", + "throat: white with black speckles" + ], + "african pied starling": [ + "back: glossy green-black feathers", + "beak: strong, pointed black beak", + "belly: white and lightly speckled", + "breast: white with speckled edges", + "crown: iridescent green-black", + "forehead: shiny green-black plumage", + "eyes: dark with white eyering", + "legs: long and purplish-red", + "wings: green-black with white markings", + "nape: metallic green-black sheen", + "tail: long, black and white feathers", + "throat: white with speckled feathers" + ], + "african pied wagtail": [ + "back: black and white plumage with a slight sheen", + "beak: thin, black, and pointed", + "belly: white and smooth feathers", + "breast: white with some black spots near the throat", + "crown: solid black color extending to the eye", + "forehead: white with a black stripe running between the eyes", + "eyes: small and black, surrounded by white feathers", + "legs: long, slender, pale pinkish-grey", + "wings: black with white patches and white edging", + "nape: black with a white patch", + "tail: long, black, and white-edged, constantly wagging", + "throat: white with a narrow black border" + ], + "african pipit": [ + "back: light brown with subtle streaks", + "beak: slender and pointed", + "belly: pale white or cream", + "breast: pale brown with dark streaks", + "crown: light brown with faint streaks", + "forehead: pale buff-brown", + "eyes: small and dark", + "legs: long and slender, pale pink", + "wings: brown with white wingbars", + "nape: light brown with faint streaks", + "tail: brown with white outer edges", + "throat: white with brown streaks" + ], + "african pitta": [ + "back: vibrant green and blue feathers", + "beak: short and stout, dark colored", + "belly: golden yellow plumage", + "breast: bright azure blue feathers", + "crown: rich blue-green hue with distinctive orange stripe", + "forehead: blue-green feathers with fine white streaks", + "eyes: dark with white surrounding feathers", + "legs: long and strong, pale pink color", + "wings: brilliant greenish-blue with reddish-brown edges", + "nape: deep blue with a thin orange stripe", + "tail: long and dark with blue and green hues", + "throat: brilliant turquoise color" + ], + "african pygmy kingfisher": [ + "back: bright blue with hints of purple", + "beak: sharp, black upper bill and orange lower bill", + "belly: white with some golden-orange feathers", + "breast: golden-orange with a white patch", + "crown: shimmering blue and purple hues", + "forehead: bright blue with a white border", + "eyes: small, black, and beady with white rings", + "legs: short, orange, and sturdy", + "wings: blue and purple with black, transverse bands", + "nape: royal blue with metallic sheen", + "tail: blue and purple with black bands and white tips", + "throat: white, bordered by an orange chest band" + ], + "african rail": [ + "back: greenish-brown feathers with faint white streaks", + "beak: slightly curved and reddish-brown", + "belly: mixed grayish and white plumage", + "breast: greenish-brown with white speckles", + "crown: dark brown with green tinges and white streaks", + "forehead: white eyebrows merging into the crown", + "eyes: dark brown with white eyelids", + "legs: long and slender with reddish-brown colors", + "wings: green-brown feathers with occasional white markings", + "nape: greenish-brown with white streaks and speckles", + "tail: elongated feathers with dark brown and white bars", + "throat: white plumage with a hint of gray" + ], + "african river martin": [ + "back: glossy blue-black feathers", + "beak: short and strong with slightly downward curve", + "belly: dark blue-black plumage", + "breast: dark glossy-blue feathers", + "crown: iridescent blue-black crest", + "forehead: steep sloping with blue-black feathers", + "eyes: dark brown with narrow white eye-ring", + "legs: strong, dark grey with sharp claws", + "wings: long and pointed, rich blue-black", + "nape: vibrant blue-black feathers", + "tail: slightly forked with blue-black feathers", + "throat: dark blue-black plumage with a slight sheen" + ], + "african sacred ibis": [ + "back: sleek gray-brown feathers", + "beak: long, slender, and curved black bill", + "belly: white-feathered underside", + "breast: white plumage with slight iridescence", + "crown: white-feathered head with black fringe", + "forehead: smooth, white feathers above eyes", + "eyes: dark, piercing gaze with a thin white eyering", + "legs: long, black, and sturdy with partially webbed feet", + "wings: black-tipped primary feathers with white secondary feathers", + "nape: white feathers transitioning to gray-brown", + "tail: elongated, black plumes with white edges", + "throat: white, smooth, and feathered" + ], + "african scops owl": [ + "back: brownish-grey plumage with fine black markings", + "beak: small, sharp, and greyish-white", + "belly: light gray, featuring narrow dark streaks", + "breast: pale grey with darker vertical streaks", + "crown: grey with dark-edged white speckles", + "forehead: light grey with distinct black markings", + "eyes: large, round, and yellow-orange", + "legs: feathered and grayish-white", + "wings: mottled grey with faint white barring", + "nape: light grey, blending with the crown pattern", + "tail: greyish-brown, with thin, horizontal dark bands", + "throat: soft gray with darker lines and markings" + ], + "african shrike flycatcher": [ + "back: olive-green feathers cover its back", + "beak: sharp, hooked black beak for catching insects", + "belly: creamy white or light gray feathers adorn its underside", + "breast: pale gray or white, often with a light wash of yellow", + "crown: brownish black or dark olive-green feathers on the head's top", + "forehead: partial white or pale gray stripe above the eyes", + "eyes: dark brown or black, with a distinct white eye-ring", + "legs: slender legs with adaptation for perching; dark gray or black", + "wings: olive-green or dark brown with white wing-bars and patterns", + "nape: olive-green or brownish black, fading to the back coloration", + "tail: long and notched, with dark brown or black feathers and white edges", + "throat: white or pale gray with a hint of yellow, visually contrasting with the breast color" + ], + "african silverbill": [ + "back: light gray feathers, sleek texture", + "beak: short and conical, silvery-white color", + "belly: soft white feathers, rounded shape", + "breast: grayish-white plumage, slight puffiness", + "crown: light gray feathers, smoothly contoured", + "forehead: light gray with a small white patch", + "eyes: small, round, black with white eye-ring", + "legs: slender, pale pinkish-brown, with scaled appearance", + "wings: gray and white feathers, curved edges for agile flight", + "nape: light gray feathers, blending seamlessly with crown and back", + "tail: gray feathers, short and slightly forked shape", + "throat: white plumage, smooth transitioning to breast area" + ], + "african skimmer": [ + "back: smooth black feathers", + "beak: elongated, bright orange with black tip", + "belly: white plumage", + "breast: white, slightly rounded", + "crown: solid black, slightly raised", + "forehead: black, with a white streak above the eye", + "eyes: round, dark with white surrounding feathers", + "legs: long, red-orange in color", + "wings: long, black with white edges and underside", + "nape: black, connecting to the crown", + "tail: forked, black and white feathers", + "throat: white, extending down to belly" + ], + "african snipe": [ + "back: brown with bold stripes", + "beak: long and slender", + "belly: white with black spots", + "breast: brownish with lighter streaks", + "crown: dark with a pale stripe", + "forehead: brown and slightly rounded", + "eyes: small and dark", + "legs: sturdy with long toes", + "wings: brown speckled with white", + "nape: brown with pale streaks", + "tail: short and pointed", + "throat: white with dark streaks" + ], + "african spoonbill": [ + "back: long, white feathers extending from neck to tail", + "beak: long, flat and spoon-shaped, perfect for scooping prey", + "belly: fluffy white feathers covering the lower part of the body", + "breast: smooth, white feathers on the upper chest area", + "crown: white, with a hint of feathery crest", + "forehead: white and feathered, meeting the base of the spoon-like beak", + "eyes: small and dark, positioned on either side of the head", + "legs: long, thin, pinkish-red legs with partially webbed feet", + "wings: white, elongated feathers that enable strong flight", + "nape: white feathered area where head meets the back", + "tail: short, white feathers that fan out slightly", + "throat: soft white feathers covering the lower part of the neck" + ], + "african spotted creeper": [ + "back: olive-brown with faint spots", + "beak: slender and curved, dark grey", + "belly: white with bold black spots", + "breast: white with black spots", + "crown: olive-green with a slight crest", + "forehead: olive-brown, merging into the crown", + "eyes: dark brown, encircled by pale eye-ring", + "legs: slender and greyish-blue", + "wings: olive-brown with white spots on coverts", + "nape: olive-brown, blending into the back", + "tail: dark brown with white-tipped feathers", + "throat: white, unspotted" + ], + "african stonechat": [ + "back: dark brown feathers with faint white streaks", + "beak: short, sturdy, cone-shaped, and black", + "belly: white to greyish feathers", + "breast: striking chestnut orange patch", + "crown: black cap extending to the eyes", + "forehead: black feathers merging with the crown", + "eyes: small, dark, and round with white eye-ring", + "legs: slim, long, and dark grey", + "wings: blackish-brown with white patches", + "nape: black to dark brown feathers, continuous with crown", + "tail: short, black with white edges", + "throat: white to greyish-white feathers" + ], + "african swamphen": [ + "back: vibrant purplish-blue feathers", + "beak: thick, conical-shaped, and red with yellow tip", + "belly: white and gray feathers", + "breast: rich indigo blue feathers", + "crown: blue-black feathers, striped with white", + "forehead: shield-like red start", + "eyes: small, round, and red-rimmed", + "legs: long, sturdy, pinkish-red hue", + "wings: purplish-blue with green tinge and white stripe", + "nape: bluish-black feathers with white streaks", + "tail: short, made of dark-blue feathers, and white underside", + "throat: pale blue feathers, blending into breast color" + ], + "african swift": [ + "back: sleek dark feathers", + "beak: thin, pointed and black", + "belly: light white to pale grey plumage", + "breast: white to soft grey feathers", + "crown: dark brownish-black feathers", + "forehead: smooth and dark-colored", + "eyes: small and round, dark brown", + "legs: thin and short, dark-toned", + "wings: long and narrow, dark feathers", + "nape: dark to light gradient, blending into neck feathers", + "tail: slightly forked, dark feathers", + "throat: pale grey to white plumage" + ], + "african tailorbird": [ + "back: olive-green plumage", + "beak: slender, curved, black", + "belly: pale, off-white with faint streaks", + "breast: yellowish-grey with fine streaks", + "crown: reddish-brown with a dark crest", + "forehead: greyish-brown", + "eyes: small, black with pale eye-ring", + "legs: long, slender, grey-blue", + "wings: olive-green with black markings", + "nape: reddish-brown", + "tail: long, forked, olive-green", + "throat: pale, off-white with faint streaks" + ], + "african thrush": [ + "back: olive-brown plumage", + "beak: pale yellow, slightly curved", + "belly: whitish-grey with dark spots", + "breast: greyish-white with dark spots", + "crown: olive-brown, smooth feathers", + "forehead: slightly lighter olive-brown", + "eyes: dark brown, surrounded by faint eyering", + "legs: dull orange or pinkish-grey", + "wings: olive-brown with faint wingbars", + "nape: olive-brown, distinct from crown", + "tail: olive-brown, medium length", + "throat: whitish-grey, spotted markings" + ], + "african wood owl": [ + "back: brown, fluffy feathers with white markings", + "beak: black, sharply curved shape", + "belly: grayish-white with dark brown barring", + "breast: pale gray-brown with white streaks", + "crown: medium brown with rounded appearance", + "forehead: light brown merging into the crown", + "eyes: large, dark, and forward-facing with black pupils and yellow-white rims", + "legs: feathered, light gray-brown with sharp, dark talons", + "wings: brownish-black with white spots and stripes", + "nape: lighter brown with pale speckles", + "tail: medium brown with white bands and dark brown bars", + "throat: pale gray-white with faint streaks" + ], + "african woolly necked stork": [ + "back: black, slightly glossy feathers", + "beak: long, pointed, and dark in color", + "belly: white, soft feathers", + "breast: white, fluffy plumage", + "crown: black, small feathers covering the top of the head", + "forehead: partially white, transitioning to black towards the crown", + "eyes: dark, with a faint white ring around each", + "legs: long, slender, and dark in color", + "wings: black plumage with a white underwing", + "nape: black feathers reaching down the back of the neck", + "tail: long, black feathers with a slight shimmer", + "throat: white feathers extending from the chin down to the breast" + ], + "african yellow warbler": [ + "back: olive-green feathers", + "beak: thin, pointed, black", + "belly: pale yellow feathers", + "breast: vibrant yellow plumage", + "crown: olive-green with faint streaks", + "forehead: bright yellow feathers", + "eyes: dark, slightly round", + "legs: thin, grayish-brown", + "wings: olive-green with yellow edging", + "nape: olive-green transitioning to yellow", + "tail: dark, olive-green with yellow edges", + "throat: bright yellow plumage" + ], + "agami heron": [ + "back: bluish-grey plumage with subtle, thin stripes", + "beak: long, slender, and yellowish", + "belly: white and generously feathered", + "breast: chestnut feathers with a hint of iridescence", + "crown: blackish-blue with a metallic sheen", + "forehead: blackish-blue, merging seamlessly with the crown", + "eyes: bright and inquisitive, surrounded by bluish-grey feathers", + "legs: long, thin, and yellowish-green", + "wings: bluish-grey with a mix of chestnut and iridescent feathers", + "nape: bluish-grey with a slight metallic sheen", + "tail: short, with bluish-grey and chestnut feathers", + "throat: white feathers transitioning to chestnut on the breast" + ], + "agile tit tyrant": [ + "back: sleek, pale greenish-grey", + "beak: short, sharp, black", + "belly: white, with little streaks", + "breast: white with faint grey markings", + "crown: grey, with subtle crest", + "forehead: light grey, slightly paler", + "eyes: piercing, dark brown", + "legs: thin, blue-grey, agile", + "wings: barred, pale grey, with white edges", + "nape: smooth, greyish-green", + "tail: long, dark-grey, with white outer edges", + "throat: clean, white, narrow" + ], + "ahanta spurfowl": [ + "back: dark, spotted feathers", + "beak: short, stout, and pale", + "belly: light-colored with black streaks", + "breast: buff with black spots", + "crown: chestnut with a black patch", + "forehead: white with black spots", + "eyes: round and dark", + "legs: strong, grayish-brown, with spurs", + "wings: rounded, dark with white spots", + "nape: chestnut with black markings", + "tail: short, fan-shaped, black and white barred", + "throat: white, bordered by black spots" + ], + "akekee": [ + "back: vibrant green and yellow patterns", + "beak: slender, hooked, black tip", + "belly: light green shading to white", + "breast: bright yellow-orange patch", + "crown: olive-green cap", + "forehead: yellow streaks on green", + "eyes: dark with white eyering", + "legs: slender, grayish-blue", + "wings: green with yellow and white bars", + "nape: olive-green transitioning to yellow", + "tail: dark green with white edges", + "throat: white with pale yellow streaks" + ], + "akiapolaau": [ + "back: light olive-green with dark streaks", + "beak: long, curved, and multi-colored (yellow and black", + "belly: pale yellow with light streaks", + "breast: yellowish with dark streaks", + "crown: yellow-orange with dark streaks", + "forehead: bright yellow-orange", + "eyes: small, black and beady", + "legs: short and gray-ish blue", + "wings: olive-green with dark streaks and white bars", + "nape: yellow-orange with dark streaks", + "tail: dark with white tips and outer feathers", + "throat: yellow with light streaks" + ], + "akikiki": [ + "back: greenish-olive feathers", + "beak: short and slightly curved", + "belly: white with light olive streaks", + "breast: grayish-white", + "crown: olive-green with streaks", + "forehead: olive color with slight streaks", + "eyes: dark brown", + "legs: pinkish-gray with strong claws", + "wings: olive-green with darker markings", + "nape: greenish-olive with subtle streaks", + "tail: olive-green, slightly shorter length", + "throat: light gray with fine streaks" + ], + "akohekohe": [ + "back: black feathers with white streaks", + "beak: long and slightly curved, black", + "belly: white feathers with black streaks", + "breast: white feathers with black streaks", + "crown: black feathers with white-tipped crest", + "forehead: black feathers with white streaks", + "eyes: small and dark", + "legs: short and black", + "wings: black with white streaks and markings", + "nape: black feathers with white streaks", + "tail: long, black feathers with white streaks", + "throat: white feathers with black streaks" + ], + "akun eagle owl": [ + "back: dark brown with black streaks", + "beak: large, black, and powerful", + "belly: buff with brown barring", + "breast: pale chestnut with darker streaks", + "crown: dark brown with black markings", + "forehead: slightly lighter brown with fine streaks", + "eyes: striking orange-yellow", + "legs: feathered with brown barring", + "wings: broad and rounded, dark brown with black markings", + "nape: dark brown with black streaks", + "tail: long and brown with darker bands", + "throat: pale buff with brown streaks" + ], + "ala shan redstart": [ + "back: vibrant grey-blue with rusty hints", + "beak: sleek black and pointed", + "belly: white with reddish-brown flanks", + "breast: bright white merging into grey-blue", + "crown: rich grey-blue with a rusty cap", + "forehead: rusty red-orange above beak", + "eyes: deep black with a white eye ring", + "legs: strong and black", + "wings: grey-blue with white patch and black flight feathers", + "nape: grey-blue with a rusty red-orange collar", + "tail: black with white outer feathers, slightly forked", + "throat: bright white transitioning into grey-blue" + ], + "alagoas antwren": [ + "back: light gray and brown feathers", + "beak: small and black, sharply pointed", + "belly: pale gray to off-white coloration", + "breast: light gray with some faint brown markings", + "crown: grayish-brown with a subtle crest-like shape", + "forehead: smooth, light gray gradually blending with the crown", + "eyes: small, dark, and alert with a discernible eye-ring", + "legs: slim and dark-colored with strong, agile toes", + "wings: brownish-gray with faint white markings, suitable for agile flight", + "nape: light gray, seamlessly continuing from the crown", + "tail: slender, grayish-brown with white tips on the feathers", + "throat: pale gray, subtly contrasting the breast area" + ], + "alagoas foliage gleaner": [ + "back: olive-brown with darker streaks", + "beak: slightly curved, and pale", + "belly: light buff color with faint streaks", + "breast: tawny brown with dark spots", + "crown: brownish-gray with a concealed crest", + "forehead: slightly paler than crown", + "eyes: dark and round, bordered by a pale eye-ring", + "legs: long and slender, grayish-blue", + "wings: olive-brown with distinct barred pattern", + "nape: olive-brown with darker streaks to match the back", + "tail: brownish-gray with faint barring and a slightly rounded shape", + "throat: pale buff color with faint darker streaks" + ], + "alagoas tyrannulet": [ + "back: olive green with light streaks", + "beak: small and black, slightly hooked", + "belly: pale yellow with light streaks", + "breast: yellowish with faint streaks", + "crown: grayish-green with lighter streaks", + "forehead: light olive-gray", + "eyes: dark with pale eye-ring", + "legs: pale pinkish-gray", + "wings: olive-green with white wing bars", + "nape: olive-gray with lighter streaks", + "tail: olive-green, short and slightly forked", + "throat: pale yellow-white" + ], + "albert lyrebird": [ + "back: long, layered feathers with reddish-brown hues", + "beak: short and slim, light gray in color", + "belly: soft, grayish-white plumage", + "breast: intricate reddish-brown plumage", + "crown: crest of reddish-brown feathers extending backwards", + "forehead: lighter, feathery, and grayish-white in color", + "eyes: small, dark, and surrounded by lighter feathers", + "legs: long, gray, and sturdy legs for perching or scratching", + "wings: reddish-brown with elongated outer feathers", + "nape: where the crest meets the back, blending colors", + "tail: impressive fan-shaped, adorned with long, curved plumage", + "throat: grayish-white with soft, feathery texture" + ], + "albertine boubou": [ + "back: dark gray to black with greenish sheen", + "beak: short, sharp, and black", + "belly: bright red to dark maroon", + "breast: reddish-maroon blending with belly", + "crown: glossy black with greenish reflections", + "forehead: black, continuous with crown", + "eyes: dark brown with black outline", + "legs: long, slender, dark gray", + "wings: black with white patches near tips", + "nape: glossy black like the crown", + "tail: black with a white band near the tip, long and forked", + "throat: dark gray blending with breast" + ], + "aldabra drongo": [ + "back: sleek, dark-grey plumage", + "beak: strong, slightly curved black beak", + "belly: smooth, greyish-white feathers", + "breast: dark-grey with a hint of iridescence", + "crown: glossy black with a pronounced crest", + "forehead: smoothly transitions into the crown with glossy black feathers", + "eyes: bright, pale blue or white eye-ring", + "legs: sturdy dark-grey legs with sharp claws", + "wings: long, tapered black wings with slight iridescence", + "nape: dark-grey feathered area connecting the crown to back", + "tail: elongated, forked black tail with iridescent feathers", + "throat: a lighter grey transitioning to the greyish-white belly" + ], + "aldabra fody": [ + "back: rich reddish-brown feathers", + "beak: short, stout, cone-shaped", + "belly: light reddish-brown plumage", + "breast: reddish-brown with faint streaks", + "crown: bright reddish-brown", + "forehead: vibrant red patch", + "eyes: small, dark, round", + "legs: slender and dark gray", + "wings: dark brown with reddish-brown edges", + "nape: reddish-brown with faint streaks", + "tail: long, dark brown with reddish-brown tinges", + "throat: light reddish-brown, unmarked" + ], + "aldabra white eye": [ + "back: olive-brown and smooth", + "beak: short, gray, and pointed", + "belly: white and fluffy", + "breast: pearl gray with light streaks", + "crown: pale gray with a white border", + "forehead: white and slightly curved", + "eyes: large, dark, and encircled in white", + "legs: gray and slender", + "wings: brownish-gray with white tips", + "nape: pale gray, blending with the crown", + "tail: dark gray, long, and narrow", + "throat: white, transitioning to gray on the breast" + ], + "aleutian tern": [ + "back: light grey feathers", + "beak: orange-black tip", + "belly: clean white plumage", + "breast: white with a slight grey tint", + "crown: blackish-grey cap", + "forehead: white stripe just above eyes", + "eyes: dark with a white eye ring", + "legs: short and orange-red", + "wings: grey with white edges and dark primary feathers", + "nape: blackish-grey blending with crown", + "tail: white and deeply forked", + "throat: crisp white feathers" + ], + "alexander swift": [ + "back: sleek, grayish-brown feathers", + "beak: short, sharp, black", + "belly: white with grayish streaks", + "breast: white with subtle brown speckles", + "crown: smooth, grayish-blue with white streaks", + "forehead: white with delicate gray markings", + "eyes: small, dark, with white eyebrow markings", + "legs: slender, gray with dark claws", + "wings: long, pointed, grayish-blue with faint white spots", + "nape: grayish-blue with faint white streaks", + "tail: short, gray with white tips", + "throat: clean, white with gray hints" + ], + "algerian nuthatch": [ + "back: light blue-grey with soft streaks", + "beak: slender, pointed, and black", + "belly: soft white with warm undertones", + "breast: pale grayish-white", + "crown: striking black stripe", + "forehead: white bordered by black bands", + "eyes: round, black, and bright", + "legs: long, sturdy, and brownish", + "wings: slate-grey with a slight bluish tinge", + "nape: subtle black band", + "tail: straight and blue-grey", + "throat: clean white with a black lateral stripe" + ], + "allen gallinule": [ + "back: vibrant greenish-blue plumage", + "beak: vibrant red, conical shape", + "belly: white feathers with black streaks", + "breast: deep blue or purple hue", + "crown: blue plumage with a slight sheen", + "forehead: blue plumage, similar to crown", + "eyes: bright red, medium-sized", + "legs: long and slender, with long toes; bright yellow or orange color", + "wings: strong and broad, blue-green feathers", + "nape: blue plumage blending with the back", + "tail: short and upright, dark feathers with white streaks", + "throat: blue or purple feathers, slightly darker than breast" + ], + "allpahuayo antbird": [ + "back: dark gray with subtle stripes", + "beak: sharp, slender, and black", + "belly: white with faint black markings", + "breast: gray, blending into white on the belly", + "crown: black with gray scaling", + "forehead: black with gray feather tips", + "eyes: dark brown, surrounded by black feathers", + "legs: strong, pale pinkish-gray", + "wings: black with faint white wing bars", + "nape: dark gray with lighter gray scaling", + "tail: long, black with white tips on outer feathers", + "throat: white, contrasting with darker feathers above" + ], + "alor boobook": [ + "back: dark brown with white speckles", + "beak: sharp, black hooked shape", + "belly: white with brownish streaks", + "breast: creamy white with subtle brown markings", + "crown: blackish-brown with small white speckles", + "forehead: dark brown with a few white markings", + "eyes: large, bright yellow and round", + "legs: stout, brown, with strong talons", + "wings: dark brown with white spots and bands", + "nape: dark brown with scattered white speckles", + "tail: long, dark brown with white bands", + "throat: white with a slight hint of brown streaks" + ], + "alor myzomela": [ + "back: vibrant orange-red feathers", + "beak: slender, black, and pointed", + "belly: soft, pale gray plumage", + "breast: bright red-orange feathers", + "crown: fiery red-orange feathers", + "forehead: bold red-orange with slight curvature", + "eyes: small, dark, and expressive", + "legs: slim, gray, and strong", + "wings: moderate in size, orange-red and grayish mixed feathers", + "nape: rich orange-red feathers, slightly elongated", + "tail: medium-length, gray with feathery tips", + "throat: vivid red-orange plumage" + ], + "alpine accentor": [ + "back: rufous-orange with grey streaks", + "beak: short, conical, blackish-grey", + "belly: rufous-white with dark markings", + "breast: grey-white with reddish-brown patches", + "crown: grey with black streaks", + "forehead: white with faint black streaks", + "eyes: black with white eyering", + "legs: sturdy, pinkish-grey", + "wings: brownish-grey with pale white edging", + "nape: grey with black streaks", + "tail: dark brown with white outer feathers", + "throat: white with black streaks" + ], + "alpine pipit": [ + "back: brown with dark streaks", + "beak: thin and pointed", + "belly: pale cream color", + "breast: light brown with darker markings", + "crown: brown with streaks", + "forehead: light brown", + "eyes: small and dark", + "legs: long and slender, pale pink", + "wings: brown with white markings, pointed tips", + "nape: brown with streaks", + "tail: brown, forked shape", + "throat: white with dark speckles" + ], + "alpine swift": [ + "back: dark slate-grey feathers", + "beak: short and sharp, black", + "belly: white to pale grey", + "breast: white to pale grey", + "crown: blackish-brown", + "forehead: blackish-brown", + "eyes: small and dark", + "legs: short and sturdy, black", + "wings: long and narrow, dark grey", + "nape: blackish-brown", + "tail: dark grey, forked", + "throat: white or pale grey" + ], + "alpine thrush": [ + "back: grayish-blue feathers with white speckles", + "beak: slim, sharp, and slightly curved", + "belly: white with black streaks", + "breast: reddish-orange with dark spots", + "crown: grayish-blue with white speckles", + "forehead: white streak above the eye", + "eyes: small, dark, and alert", + "legs: sturdy and pale yellow", + "wings: gray-blue with white and black markings", + "nape: grayish-blue with white speckles", + "tail: long, gray-blue with white tips", + "throat: white with black streaks" + ], + "alstr\u00f6m warbler": [ + "back: olive-green with faint streaks", + "beak: thin, pointed, blackish with a pale base", + "belly: pale yellow, unmarked", + "breast: bright yellow, slight olive wash", + "crown: olive-gray, black streaks", + "forehead: grayish-yellow, indistinct eye stripe", + "eyes: dark brown, small and round", + "legs: pinkish-brown, slender", + "wings: olive-green, blackish streaks, pale wingbars", + "nape: olive-gray, faint streaks", + "tail: dark olive-brown, white outer edges", + "throat: bright yellow, merging into breast" + ], + "alta floresta antpitta": [ + "back: olive-brown, streaked with black", + "beak: short, curved, yellowish-brown", + "belly: pale gray, with darker gray markings", + "breast: grayish-white with faint spotting", + "crown: reddish-brown with white streaks", + "forehead: pale gray, delicately streaked", + "eyes: dark brown, with white eyering", + "legs: strong, yellowish-brown hue", + "wings: olive-brown with white bars, rounded shape", + "nape: reddish-brown, streaked with white", + "tail: olive-brown with white tips, fan-shaped", + "throat: whitish, with subtle gray markings" + ], + "altai accentor": [ + "back: brownish-grey with streaks", + "beak: sharp, black, and pointed", + "belly: light grey with white base", + "breast: warm buff-grey with darker streaks", + "crown: brown with light grey streaks", + "forehead: light grey with fine streaks", + "eyes: black with white eye-ring", + "legs: slender, pinkish-brown", + "wings: dark brown with white wing-bars", + "nape: pale grey with faint streaks", + "tail: brownish-grey, long, and slightly forked", + "throat: pale grey-white with some streaks" + ], + "altai snowcock": [ + "back: brownish-gray with black speckles", + "beak: short, stout, and pale yellow", + "belly: light gray with dark barring", + "breast: grayish-brown with black bars", + "crown: reddish-brown with black stripe", + "forehead: white patch above the beak", + "eyes: dark, small, and alert", + "legs: feathered, sturdy, and pale pink", + "wings: rounded and brown with black bars", + "nape: reddish-brown with black stripe", + "tail: long, fan-shaped, and brown with black bands", + "throat: white with a black patch below the beak" + ], + "amami thrush": [ + "back: dark brown upper feathers", + "beak: slim, medium-length and black", + "belly: off-white with dark spots", + "breast: white with black spots", + "crown: colored dark brown", + "forehead: fading dark-brown", + "eyes: small and black with a white eye-ring", + "legs: thin and grayish-brown", + "wings: dark brown with white wing bar patterns", + "nape: dark brown color", + "tail: long, dark brown with white tip", + "throat: off-white with dark spots" + ], + "amami woodcock": [ + "back: earthy brown with black streaks", + "beak: long and slightly curved, light brown", + "belly: creamy white with light brown markings", + "breast: reddish-brown with white spots", + "crown: dark brown with light streaks", + "forehead: light brown with darker streaks", + "eyes: small, black, and shiny", + "legs: dull pinkish-brown, short", + "wings: brown with light spots, rounded in shape", + "nape: dark brown with light streaks", + "tail: brown with black bands and white edges", + "throat: creamy white with fine streaks" + ], + "amani sunbird": [ + "back: iridescent green upper body", + "beak: thin, curved, black", + "belly: dull blue-gray lower body", + "breast: vibrant metallic blue", + "crown: glossy green head", + "forehead: luminescent green area", + "eyes: small, beady, black", + "legs: thin, black, and agile", + "wings: iridescent green with blue shades", + "nape: shimmering green connection to the back", + "tail: elongated, slender, black", + "throat: vivid, metallic blue patch" + ], + "amazilia hummingbird": [ + "back: iridescent green feathers", + "beak: long, slender, and slightly curved", + "belly: off-white or pale gray plumage", + "breast: shimmering green and bluish tones", + "crown: vibrant green, often with blue or purple tint", + "forehead: bright green or turquoise feathers", + "eyes: small, round, and dark", + "legs: short and delicate with tiny feet", + "wings: rapid movement, semi-transparent, and elongated", + "nape: glittering green feathers transitioning to the crown", + "tail: narrow and tapered with white tips on outer feathers", + "throat: metallic and bright, often in hues of green, blue, or red" + ], + "amazon kingfisher": [ + "back: bright green with a slight blue tint", + "beak: long, dark, and sharp", + "belly: white or pale yellow, elongated", + "breast: turquoise-blue feathers", + "crown: bright green with a slight blue tint", + "forehead: green-blue contrasting stripe", + "eyes: black with a white ring around them", + "legs: short, dark gray", + "wings: bright green with hints of blue, powerful", + "nape: turquoise-blue, blended with crown", + "tail: long, green-blue feathers with white tips", + "throat: white or pale yellow, rounded" + ], + "amazonian antpitta": [ + "back: olive-green feathers", + "beak: short and sharp", + "belly: pale yellow coloration", + "breast: grayish-brown with streaks", + "crown: olive-green with a slight crest", + "forehead: light yellowish-olive", + "eyes: large and black", + "legs: long and pinkish", + "wings: olive-green and rounded", + "nape: greenish-olive color", + "tail: short and olive-green", + "throat: light gray with faint streaks" + ], + "amazonian antshrike": [ + "back: grayish-brown plumage", + "beak: sturdy, straight, black", + "belly: white or buff underpart", + "breast: white or buff coloration", + "crown: black and gray feathers", + "forehead: black and gray plumage", + "eyes: black with white eye-ring", + "legs: long, slender, gray", + "wings: grayish-brown with white bars", + "nape: dark grayish-brown plumage", + "tail: long, grayish-brown with white tips", + "throat: white or buff, often with black stripes" + ], + "amazonian barred woodcreeper": [ + "back: brown with dark bars", + "beak: long, slightly curved, pale ivory", + "belly: buff-white with dark barring", + "breast: brown with dark bars", + "crown: brown-rufous with dark streaks", + "forehead: brown with dark streaks", + "eyes: dark with pale eye-ring", + "legs: sturdy, pale gray", + "wings: brown with dark barring", + "nape: brown-rufous with dark streaks", + "tail: long, brown with black barring", + "throat: buff-white with faint barring" + ], + "amazonian black tyrant": [ + "back: dark olive-green with faint streaks", + "beak: sharp, black, and slightly hooked", + "belly: grayish-olive tone", + "breast: grayish with pale streaks", + "crown: black with a hidden yellow patch", + "forehead: black and flat", + "eyes: dark, surrounded by black feathers", + "legs: long, slender, and black", + "wings: a mix of black and olive-green with bold white markings", + "nape: black, transitioning into olive-green", + "tail: long, black with white outer feathers", + "throat: pale gray with delicate markings" + ], + "amazonian elaenia": [ + "back: light olive green plumage", + "beak: short and pointed, pale in color", + "belly: whitish or pale yellow", + "breast: subtle yellowish or whitish hue", + "crown: dull olive-green with a crest", + "forehead: slightly lighter olive-green color", + "eyes: dark brown with white eyering", + "legs: thin and pale with sharp claws", + "wings: olive-green with rufous wing bars", + "nape: light olive-green coloration", + "tail: long and tapered, olive with darker tips", + "throat: pale and whitish-yellow" + ], + "amazonian grosbeak": [ + "back: vibrant green feathers", + "beak: thick, cone-shaped, black", + "belly: bright yellow plummage", + "breast: yellow feathers with faint streaks", + "crown: green feathers with a slight crest", + "forehead: prominent green feathers", + "eyes: dark, round, with thin eye-ring", + "legs: strong, grayish-black", + "wings: green and blue mixed, medium length", + "nape: green feathers, continuous with crown", + "tail: wide, fan-shaped, green and blue", + "throat: bright yellow with smooth transition" + ], + "amazonian motmot": [ + "back: vibrant green-blue with bold black lines", + "beak: long, slightly curved, black and beige", + "belly: bright turquoise with black stripes", + "breast: turquoise shading to green with black markings", + "crown: deep turquoise-blue with black center stripe", + "forehead: dark green-blue with black lines", + "eyes: round, dark, surrounded by black markings", + "legs: short, sturdy, yellowish-gray", + "wings: large, green-blue with black and turquoise patterns", + "nape: striking touch of blue-violet", + "tail: long, racket-shaped with black and turquoise-blue bands", + "throat: light turquoise with black lines" + ], + "amazonian parrotlet": [ + "back: vibrant green feathers", + "beak: strong, grayish-brown hook", + "belly: light green plumage", + "breast: bright yellowish-green", + "crown: bluish-green head feathers", + "forehead: light blue feathers", + "eyes: dark, round with white eye-ring", + "legs: gray scaly legs and zygodactyl feet", + "wings: green outer feathers, blue flight feathers", + "nape: bluish-green plumage", + "tail: short, green, and blue-tipped", + "throat: light green feathers" + ], + "amazonian pygmy owl": [ + "back: grayish-brown with white spots", + "beak: small and hooked, light yellow", + "belly: white with dark streaks", + "breast: white with brown streaks", + "crown: greyish-brown with white speckles", + "forehead: grayish-white with dark streaks", + "eyes: large, yellow with dark outlines", + "legs: short, light yellow with dark talons", + "wings: short, rounded with grayish-brown and white markings", + "nape: grayish-brown with white streaks", + "tail: long, horizontal with dark and light bands", + "throat: white with light streaks" + ], + "amazonian scrub flycatcher": [ + "back: olive-green with subtle streaks", + "beak: thin, long, and blackish", + "belly: pale yellow with faint streaks", + "breast: light olive-green with indistinct streaks", + "crown: olive-green, smooth contour", + "forehead: pale olive-green, unmarked", + "eyes: dark brown with thin eye-ring", + "legs: blackish-gray, slender", + "wings: olive-green with white-edged secondary feathers", + "nape: olive-green, unmarked", + "tail: dark brownish-black with white outer feathers", + "throat: pale yellowish-white, unmarked" + ], + "amazonian streaked antwren": [ + "back: olive-brown with faint streaks", + "beak: short, pointed, and black", + "belly: whitish with fine dark streaks", + "breast: pale gray with fine streaks", + "crown: rufous or reddish-brown", + "forehead: rufous or reddish-brown", + "eyes: dark with white eye-ring", + "legs: pale pinkish-gray", + "wings: olive-brown with rufous edges", + "nape: olive-brown with faint streaks", + "tail: long and dark, with white tips", + "throat: pale gray with fine dark streaks" + ], + "amazonian trogon": [ + "back: vibrant green feathers", + "beak: short, black, and slightly curved", + "belly: bright yellow or reddish coloring", + "breast: light blue or violet band", + "crown: glossy blue or green crown", + "forehead: deep blue or green sheen", + "eyes: dark, beady, and alert", + "legs: short, gray, and strong", + "wings: green with white barring, slightly fanned", + "nape: blue or green feathers, matching forehead", + "tail: long, white-tipped, black or dark navy tail feathers", + "throat: blue or violet, contrasting with vivid belly color" + ], + "amazonian tyrannulet": [ + "back: olive-green feathers", + "beak: small, thin, and pointed", + "belly: pale yellow with light streaks", + "breast: yellowish-green with subtle markings", + "crown: olive-green plumage", + "forehead: lighter green feathers", + "eyes: small and black in white feathered ring", + "legs: slender and grayish", + "wings: olive-green with faint white bars", + "nape: continuation of olive-green plumage", + "tail: long with olive-green feathers and white tips", + "throat: pale yellow with almost no markings" + ], + "amazonian umbrellabird": [ + "back: glossy black feathers with iridescent sheen", + "beak: large, black, and hooked", + "belly: thick black plumage", + "breast: dense dark feathers with slight iridescence", + "crown: prominent black crest resembling an umbrella", + "forehead: velvety black plumage", + "eyes: deep brown, surrounded by lightweight feathers", + "legs: sturdy, dark grey, with sharp claws", + "wings: wide and strong, with black iridescent feathers", + "nape: sleek black contour feathers", + "tail: elongated, black feathers with a slight curve", + "throat: long, inflatable wattle called a \"wattled umbrellabird" + ], + "amber mountain rock thrush": [ + "back: dark olive-brown with streaks", + "beak: short, sturdy, and blackish", + "belly: white with black spots", + "breast: orange-amber color fading to white", + "crown: dark olive-brown", + "forehead: smooth transition from crown", + "eyes: deep-set and black", + "legs: dark grey and thin", + "wings: dark olive-brown with black and white margins", + "nape: continuation of dark olive-brown of the crown", + "tail: dark with white outer tail feathers", + "throat: white with dark spots" + ], + "ambon white eye": [ + "back: olive-green feathers with a slight yellow tint", + "beak: short, slender, and black", + "belly: pale yellow plumage", + "breast: vibrant yellow feathers", + "crown: bright yellow with a green tinge", + "forehead: striking white eye-ring", + "eyes: large, dark, and round", + "legs: grayish-blue with sharp claws", + "wings: greenish-yellow feathers with black coverts", + "nape: greenish-yellow, blending with the back", + "tail: long, green feathers with yellow edges", + "throat: bright yellow plumage" + ], + "amboyna cuckoo dove": [ + "back: brownish-red with iridescent sheen", + "beak: short, black, and slightly curved", + "belly: soft pinkish buff hue", + "breast: warm salmon pinkish tone", + "crown: reddish-brown with faint metallic luster", + "forehead: soft brownish-red gradient", + "eyes: deep, dark, and penetrating", + "legs: stout and purplish-pink", + "wings: reddish-brown with black-edged feathers", + "nape: iridescent reddish-brown", + "tail: elongated with a rounded tip, reddish-brown", + "throat: pale pinkish hue" + ], + "ameline swiftlet": [ + "back: sleek, streamlined feathers", + "beak: short and thin, built for catching insects", + "belly: light greyish-white, soft underbelly feathers", + "breast: subtly patterned chest with fine feathers", + "crown: smooth, greyish-brown head", + "forehead: slightly paler shade than crown", + "eyes: small, black, and alert", + "legs: short, thin, and well-suited for clinging onto walls", + "wings: long, narrow, and designed for quick flights", + "nape: somewhat darker greyish-brown feathers than head", + "tail: short and square, providing agility", + "throat: pale greyish-white, merging with belly color" + ], + "american pygmy kingfisher": [ + "back: vibrant green feathers", + "beak: short, black, and stout", + "belly: white with some rust-colored spots", + "breast: light brownish-orange", + "crown: bright green with a hint of blue", + "forehead: vibrant blue band", + "eyes: black with white outlines", + "legs: short and gray", + "wings: iridescent green-blue with some white spots", + "nape: bright green feathers", + "tail: short and blue-green", + "throat: whitish with rust-colored spots" + ], + "amethyst brown dove": [ + "back: amethyst-tinted brown feathers", + "beak: short, pale hooked beak", + "belly: soft, brownish-gray plumage", + "breast: muted purple-hued brown feathers", + "crown: smooth amethyst-brown crest", + "forehead: light brown with a hint of purple", + "eyes: round, dark, and alert", + "legs: slender and grayish-purple", + "wings: brown with amethyst shimmer", + "nape: purplish-brown blending to back", + "tail: elongated, amethyst-tipped brown feathers", + "throat: delicate brownish-gray feathers" + ], + "amethyst sunbird": [ + "back: vibrant iridescent purple-green", + "beak: slender, long, curved", + "belly: pale gray-white", + "breast: shimmering amethyst purple-blue", + "crown: glossy metallic green", + "forehead: radiant green", + "eyes: small, dark, round", + "legs: thin, grayish-black", + "wings: iridescent green-blue, pointed", + "nape: striking purple sheen", + "tail: elongated, iridescent purple and green", + "throat: dazzling amethyst hue" + ], + "amethyst throated mountain gem": [ + "back: vibrant green shimmer", + "beak: short, black, pointed", + "belly: soft, whitish-gray plumage", + "breast: lavender hue with iridescent sheen", + "crown: deep amethyst-purple", + "forehead: slightly lighter amethyst-purple", + "eyes: small, round, and black", + "legs: slender, gray", + "wings: emerald green, gracefully arched", + "nape: transitional purple-green tone", + "tail: elongated, iridescent amethyst-purple feathers", + "throat: brilliant amethyst-purple plume" + ], + "amethyst throated sunangel": [ + "back: vibrant emerald-green feathers", + "beak: slender, curved black beak", + "belly: light gray plumage", + "breast: iridescent lavender band", + "crown: shimmering green radiance", + "forehead: bright green plume", + "eyes: small, black, alert orbs", + "legs: delicate, charcoal-gray limbs", + "wings: rapid, iridescent green flutters", + "nape: violet sheen on green feathers", + "tail: elongated, forked, dark feathers", + "throat: radiant amethyst hue" + ], + "ampay tapaculo": [ + "back: dark gray feathers with slight tinges of brown", + "beak: small and sturdy, black in color", + "belly: soft grayish-white feathers", + "breast: grayish-brown feathers with faint barring", + "crown: dark gray feathers with brownish tinges", + "forehead: smooth transition from the dark crown to lighter facial feathers", + "eyes: round, dark brown, surrounded by lighter gray feathers", + "legs: strong and featherless, dark gray", + "wings: short and rounded, dark gray with brown hints", + "nape: continuous with the dark gray crown feathers", + "tail: short, with dark gray feathers featuring brownish edges", + "throat: lighter gray feathers, contrast with the breast and belly" + ], + "amur falcon": [ + "back: dark grayish-black plumage", + "beak: curved, sharp, and dark-colored", + "belly: light peach-white contrasting color", + "breast: light buff with dark streaks", + "crown: dark grayish-black, smooth feathers", + "forehead: grayish-black with a slight gradient", + "eyes: dark, intense gaze with a slight brow ridge", + "legs: yellow-orange, strong and agile", + "wings: long, pointed, dark gray with black-white markings", + "nape: grayish-black, connecting crown to back", + "tail: dark gray with narrow white bands", + "throat: light buff blending into the breast" + ], + "amur paradise flycatcher": [ + "back: bright rufous with white markings", + "beak: small, black, and narrow", + "belly: pale white and elongated", + "breast: soft white with hints of rufous", + "crown: rich rufous with a well-defined crest", + "forehead: reddish-brown, smooth feathers", + "eyes: large, dark, and almond-shaped", + "legs: thin, dark grey, and perched", + "wings: long and rufous with white fringes", + "nape: reddish-brown, curved, and sleek", + "tail: long, white, and ribbon-like streamers", + "throat: clear white with soft plumage" + ], + "amur stonechat": [ + "back: sleek dark-brown feathers", + "beak: short and pointed, black color", + "belly: white underside", + "breast: orange-reddish chest", + "crown: dark-brown or black head", + "forehead: black or dark brown feathers", + "eyes: small and black, alert gaze", + "legs: thin and scaled, pale to dark-pink color", + "wings: dark brown with white patches", + "nape: dark brown or black, connecting head and back", + "tail: dark brown with white borders, medium length", + "throat: white or light-colored, blurring into the breast" + ], + "ancash tapaculo": [ + "back: dark gray with brownish tint", + "beak: short and slightly curved", + "belly: grayish-white", + "breast: gray with lighter hues", + "crown: dark gray, slightly rounded", + "forehead: slightly lighter gray than crown", + "eyes: small, black", + "legs: slender and long, pale pinkish-gray", + "wings: dark gray with brown feather edges", + "nape: dark gray, seamless transition to crown", + "tail: short and rounded, dark gray", + "throat: light grayish-white, slightly mottled" + ], + "anchieta barbet": [ + "back: olive-green with faint yellow streaks", + "beak: thick, dark grey, and slightly curved", + "belly: yellow-green with subtle streaks", + "breast: golden-yellow with darker streaks", + "crown: dark red", + "forehead: red with thin, black border", + "eyes: small, dark brown with narrow white eyering", + "legs: grey and sturdy", + "wings: olive-green and rounded", + "nape: red with black border", + "tail: olive-green, medium length", + "throat: golden-yellow with darker streaks" + ], + "anchieta sunbird": [ + "back: shimmering greenish-blue feathers", + "beak: long, slender, down-curved black bill", + "belly: light grey plumage", + "breast: iridescent purple coloration", + "crown: sparkling emerald green", + "forehead: glistening metallic green", + "eyes: small, dark, and round", + "legs: short and black with sharp claws", + "wings: elongated, blue-green with black tips", + "nape: brilliant green with a blue hue", + "tail: long, slender, and black with slightly forked shape", + "throat: gleaming green with hints of purple" + ], + "ancient antwren": [ + "back: small and delicately feathered", + "beak: short, thin, and pointed", + "belly: pale and softly textured", + "breast: rounded and subtly colored", + "crown: capped with a tiny crest", + "forehead: flat and smooth", + "eyes: large, dark, and curious", + "legs: slender and agile", + "wings: compact with distinctive edge", + "nape: gracefully curved", + "tail: tapered and slightly fanned", + "throat: supple and unassuming" + ], + "ancient murrelet": [ + "back: grayish-black feathers and pattern", + "beak: short and pointed, dark color", + "belly: white, without spots", + "breast: white, clean plumage", + "crown: dark gray plumage extending to nape", + "forehead: dark gray feathers, connecting to crown", + "eyes: small and round, black color", + "legs: short and blue-gray, webbed feet", + "wings: narrow and pointed, gray with white patches", + "nape: dark gray, continuous with crown", + "tail: short and fan-shaped, gray feathers", + "throat: white plumage, well-defined" + ], + "andaman boobook": [ + "back: brownish upperparts with white streaks", + "beak: small, curved, yellowish-gray", + "belly: white with dark brown streaks", + "breast: white-gray with brown streaks", + "crown: dark brown with white speckles", + "forehead: dark brown with small white markings", + "eyes: large, bright yellow", + "legs: short, feathered, yellowish", + "wings: brownish upper feathers with barred underparts", + "nape: brown with white speckles", + "tail: dark brown, barred with white bands", + "throat: light gray with small brown streaks" + ], + "andaman bulbul": [ + "back: olive-green feathers covering the back", + "beak: short, strong, pale yellow beak", + "belly: white to pale yellowish-cream underside", + "breast: white to pale yellowish-cream, blending with the belly", + "crown: black crested head feathers", + "forehead: black with a hint of white streaks", + "eyes: dark with white eye-rings", + "legs: long, dark grey to black legs", + "wings: olive-green with a hint of yellow, flight feathers have darker edges", + "nape: black with a hint of white streaks like the forehead", + "tail: long, olive-green feathers with dark tips", + "throat: white to pale yellowish-cream, blending with the breast" + ], + "andaman coucal": [ + "back: dark, glossy blackish-brown feathers", + "beak: sturdy, slightly curved, black in color", + "belly: chestnut-brown lower body", + "breast: rich, chestnut-brown", + "crown: shiny, blackish-brown covering the head", + "forehead: dark brown, continuation of crown", + "eyes: deep, dark brown with a black pupil", + "legs: strong, black, scaly legs with sharp talons", + "wings: dark brown with a glossy sheen, flight feathers slightly lighter", + "nape: blackish-brown feathers transitioning from the crown", + "tail: long and blackish-brown, darker outer feathers, lighter inner feathers", + "throat: chestnut-brown, blending with the breast color" + ], + "andaman crake": [ + "back: olive-brown plumage", + "beak: short and stout, dark gray", + "belly: creamy-white with dark barring", + "breast: grayish-white with fine dark streaks", + "crown: dark, sooty-brown with faint white spots", + "forehead: pale, whitish with dark streaks", + "eyes: deep brown, surrounded by white eye-ring", + "legs: long and strong, bright orange", + "wings: olive-brown with white spots on coverts", + "nape: sooty-brown with white spots", + "tail: short and square, dark brown with white corners", + "throat: creamy-white with dark flecks" + ], + "andaman cuckoo dove": [ + "back: olive-brown with a subtle green sheen", + "beak: short and black, slightly curved", + "belly: pale creamy grey, fading to white near vent", + "breast: light pinkish-grey, blending into the belly color", + "crown: dark greyish-brown with a slight green sheen", + "forehead: slightly paler grey than the crown", + "eyes: dark brown with a light blue eyering", + "legs: short with greyish-blue scaly skin", + "wings: olive-brown with a green sheen, lighter on the wingtips", + "nape: dark greyish-brown, similar to crown color", + "tail: long and tapered, olive-brown with a green sheen and white tips on the outer feathers", + "throat: pale greyish-white, transitioning into breast color" + ], + "andaman cuckooshrike": [ + "back: sleek, grayish-black feathers", + "beak: sharp, hooked, black tip", + "belly: white with grayish-black markings", + "breast: white with grayish-black streaks", + "crown: smooth, grayish-black", + "forehead: narrow, grayish-black", + "eyes: alert, dark brown", + "legs: strong, black", + "wings: extended, grayish-black feathers", + "nape: grayish-black, supporting the head", + "tail: long, grayish-black, straight feathers", + "throat: white with grayish-black streaks" + ], + "andaman drongo": [ + "back: sleek, glossy black feathers", + "beak: slightly curved, sharp black bill", + "belly: smooth, black, and streamlined", + "breast: shiny black plumage", + "crown: dark, raised crest on the head", + "forehead: black, blending smoothly with the crown", + "eyes: bright, piercing yellow", + "legs: long, dark-gray slender legs", + "wings: elongated and sharply-pointed black wings", + "nape: black and glossy feathers, sloping into back", + "tail: characteristic long, forked black tail", + "throat: glossy black, blending seamlessly with breast" + ], + "andaman flowerpecker": [ + "back: vibrant olive-green hue", + "beak: short, stout, and black", + "belly: pale yellowish-white", + "breast: bright red splash", + "crown: striking crimson color", + "forehead: red plumage at the front", + "eyes: beady black with white rings", + "legs: slender and dark gray", + "wings: olive-green feathers with white spots", + "nape: crimson red meets the olive-green", + "tail: short and olive-green", + "throat: white with a red collar" + ], + "andaman green pigeon": [ + "back: vibrant green upper body", + "beak: short, hooked, pale yellow", + "belly: light greenish-yellow underparts", + "breast: bluish-gray feathers blending to green", + "crown: bright green feathers on top of the head", + "forehead: emerald green plumage above beak", + "eyes: orange-red ring around dark pupil", + "legs: short, strong, reddish-purple", + "wings: multicolored feathers with blues, yellows, and greens", + "nape: bright green plumage at the back of the neck", + "tail: long, greenish-blue, fan-shaped feathers", + "throat: light greenish-yellow feathers below beak" + ], + "andaman masked owl": [ + "back: dark brown, speckled with black barring", + "beak: short, sharp, and hooked, light grey or yellowish", + "belly: whitish with dark brown barring", + "breast: brown with dark barring, slightly pale chin area", + "crown: dark brown with occasional black spots, rounded shape", + "forehead: lighter brown, more finely speckled with black", + "eyes: large, piercing yellow with surrounding black \"mask\" markings", + "legs: feathered, light brown with dark barring, strong yellow talons", + "wings: dark brown, scattered black bars and speckles, medium length", + "nape: brown, speckled with black, connecting to crown and back", + "tail: brown with dark bands, slightly rounded in shape", + "throat: pale, lighter than breast, small black barred markings" + ], + "andaman nightjar": [ + "back: brownish-grey with black streaks", + "beak: short, wide, and brownish-black", + "belly: mottled brown and buff", + "breast: brownish-grey with dark brown bars", + "crown: dark brown with blackish mottles", + "forehead: slightly paler brown with fine mottles", + "eyes: large and dark, adapted for night vision", + "legs: short and brownish-grey", + "wings: long, pointed, and mottled with brown and buff markings", + "nape: brownish-grey with black streaks", + "tail: brown with black bands and white tips", + "throat: pale buff with fine brown streaks" + ], + "andaman scops owl": [ + "back: mottled brown and buff feathers forming a camouflaged pattern", + "beak: sharp, dark gray, and slightly hooked for catching prey", + "belly: light brown with faint black streaks and spots", + "breast: buff-colored with darker brown streaks and spots", + "crown: dark brown with lighter speckling and blending into the facial disc", + "forehead: mottled brown blending seamlessly with the crown", + "eyes: large, piercing yellow with black borders", + "legs: stout with feathered brown and buff patterns, ending in sharp talons", + "wings: mottled brown and buff with bars and a rounded shape for stealthy flight", + "nape: brown and buff mottling, resembling the back pattern", + "tail: medium length with horizontal brown and buff bars", + "throat: buff-colored with darker brown markings for camouflage" + ], + "andaman serpent eagle": [ + "back: dark brown feathers with lighter streaks", + "beak: large, hooked, blackish-gray", + "belly: white with dark brown streaks", + "breast: white with heavy brown streaking", + "crown: dark brown with lighter edges", + "forehead: white with distinct dark streaks", + "eyes: bright yellow with sharp gaze", + "legs: yellow, strong, and feather-free", + "wings: dark brown, broad, with lighter bands on flight feathers", + "nape: dark brown with lighter edges", + "tail: dark brown with light bands, slightly rounded", + "throat: white, blending into the streaked breast" + ], + "andaman shama": [ + "back: vibrant green and black feathers", + "beak: slender, dark grey curve", + "belly: light orange-brown", + "breast: bright orange", + "crown: dark iridescent green", + "forehead: bluish-black", + "eyes: dark, expressive with a white eyering", + "legs: strong, grey-blue", + "wings: dark blue-green with lighter highlights", + "nape: bluish-black, iridescent feathers", + "tail: long and splayed, with white tips and graduated blues", + "throat: deep orange with black streaks" + ], + "andaman teal": [ + "back: soft, pale plumage with soothing brown hues", + "beak: sleek, blackish bill with a hint of orange at the base", + "belly: light grayish-white feathers with faint striping", + "breast: pale gray plumage with subtle brown markings", + "crown: smooth, pale brown feathers with a gentle gradient", + "forehead: slightly paler brown plumage than crown, extending to eyes", + "eyes: dark, round, and expressive, surrounded by pale brown feathers", + "legs: strong, orange-reddish legs with webbed feet", + "wings: patterned with brown and pale gray feathers, subtle blue speculum patch", + "nape: soft brown feathers cascading down the back of the neck", + "tail: medium length, slightly darker brown feathers with white fringe", + "throat: light grayish-white feathers, blending into the breast area" + ], + "andaman treepie": [ + "back: olive-brown with slight greenish hue", + "beak: curved, black, and strong", + "belly: light gray with soft white undertones", + "breast: pale gray with faint white streaks", + "crown: rich chestnut-orange color with slight crest", + "forehead: deep chestnut-orange that fades as it approaches the beak", + "eyes: dark, beady, and surrounded by a thin white eye-ring", + "legs: slender, dark gray, and strong", + "wings: olive-brown with black and white banding", + "nape: chestnut-orange blending into the olive-brown back", + "tail: long and black, with distinctive white tips", + "throat: pale gray with fine, subtle white streaks" + ], + "andaman wood pigeon": [ + "back: dark violet-blue plumage", + "beak: short, pale yellow with hooked tip", + "belly: contrasting light gray feathers", + "breast: deep grayish-blue plumage", + "crown: deep blue with textured feathers", + "forehead: pale bluish-gray color", + "eyes: vibrant red-orange with dark pupil", + "legs: sturdy, light pinkish-red", + "wings: dark blue feathers with striking white patches", + "nape: violet-blue feathers with light fringe", + "tail: long, dark blue with white-tipped feathers", + "throat: transition of blue-gray and light gray feathers" + ], + "andaman woodpecker": [ + "back: black with white spots", + "beak: long, chisel-like, and black", + "belly: white with black streaks", + "breast: white and spotted", + "crown: red feathers on the top of the head", + "forehead: red feathers extending to the beak", + "eyes: rounded, dark brown, and prominent", + "legs: strong, short, and gray", + "wings: black with white patches", + "nape: black feathers with a red streak", + "tail: long, black, and white-barred", + "throat: white with black streaks" + ], + "andean avocet": [ + "back: sleek, bluish-grey plumage", + "beak: long, thin, and upward-curved", + "belly: white, soft feathers", + "breast: light bluish-grey feathers", + "crown: bluish-grey with a slight crest", + "forehead: smooth, blending into the crown", + "eyes: dark, round, and alert", + "legs: long, slim, and blueish-grey", + "wings: elongated and elegant, bluish-grey with black and white markings", + "nape: bluish-grey, seamlessly connecting to the crown", + "tail: short and wide, with bluish-grey and white feathers", + "throat: white, transitioning to bluish-grey at the breast" + ], + "andean cock of the rock": [ + "back: vibrant orange feathers covering the upper body", + "beak: strong, black, and slightly hooked", + "belly: orange-red feathers transitioning into grey", + "breast: bright orange, slightly puffed out", + "crown: fan-shaped crest of brilliant orange feathers", + "forehead: fused with the crown, covered in bright feathers", + "eyes: expressive, dark, and surrounded by fine black feathers", + "legs: black, sturdy legs with gripping claws", + "wings: rounded, orange-red feathers with darker flight feathers", + "nape: orange-tinted feathers extending from crown to back", + "tail: fan-like grey feathers with black bands", + "throat: feathers transition from orange-red to lighter grey" + ], + "andean condor": [ + "back: large, dark and feathered", + "beak: strong, hooked and sharp-edged", + "belly: moderately dense feathers, white in males, greyish-brown in females", + "breast: broad feathers, dark with a white collar", + "crown: bald, red-orange in adult males, dull red in adult females", + "forehead: flat and featherless, reddish in adult males, brownish in adult females", + "eyes: reddish-brown iris with a pale-colored bare patch around them", + "legs: robust and featherless, with powerful, sharp talons", + "wings: massive, broad, and long, with finger-like tips for soaring", + "nape: dark feathers transitioning to white at the base of the neck", + "tail: long, wedge-shaped with dark plumage", + "throat: pinkish-red bare skin in males, brownish in females, with a retractable neck pouch for inflation during display" + ], + "andean duck": [ + "back: sleek, gray feathers", + "beak: short, pointed, black", + "belly: white, fluffy feathers", + "breast: grayish-white, smooth plumage", + "crown: slightly darker gray, rounded", + "forehead: gray, smoothly curved", + "eyes: small, round, dark", + "legs: webbed feet, dark gray", + "wings: long, strong, grayish-blue", + "nape: smooth, flowing gray feathers", + "tail: short, fan-shaped, gray", + "throat: white, soft feathering" + ], + "andean emerald": [ + "back: vibrant green feathers", + "beak: slender, black, and pointed", + "belly: whitish-gray with light green hues", + "breast: pale green with silver-like shine", + "crown: iridescent blue-green plumage", + "forehead: bright green with metallic sheen", + "eyes: small and black, with a white eye-ring", + "legs: small, thin, and dark grey", + "wings: shimmering blue-green with pronounced feathers", + "nape: metallic green transitioning to blue", + "tail: long, forked, and glossy green-blue", + "throat: white or pale grey with hints of green" + ], + "andean flamingo": [ + "back: pale pink feathers with a slight curve", + "beak: black and hooked with white base", + "belly: soft white feathers with pink undertones", + "breast: light pink plumage", + "crown: rounded with pale pink feathers", + "forehead: white feathers transitioning to pink", + "eyes: dark, piercing, and expressive", + "legs: long, thin, and pinkish-grey", + "wings: pale pink with black edges when extended", + "nape: curved with pinkish-white feathers", + "tail: short with light pink feathers and black tips", + "throat: white feathers with a soft pink hue" + ], + "andean flicker": [ + "back: brownish-gray with black bars", + "beak: sharp, pointed grayish-black", + "belly: creamy-yellow with black speckles", + "breast: pale brown with black streaks", + "crown: dark brown with black bars", + "forehead: light brown with a slight golden hue", + "eyes: dark black surrounded by a thin grayish-white ring", + "legs: thin and grayish-black", + "wings: brownish-gray with black bars and white patches", + "nape: brownish-gray with black bars", + "tail: dark brown with white tips and black bars", + "throat: creamy-yellow with black streaks" + ], + "andean guan": [ + "back: greenish-brown feathers", + "beak: short, thick, and hooked", + "belly: grayish-white with dark streaks", + "breast: bluish-gray with black spots", + "crown: dark brownish-black", + "forehead: greenish-brown", + "eyes: dark with a pale eye-ring", + "legs: strong, reddish-orange", + "wings: broad, rounded, greenish-brown feathers", + "nape: greenish-brown with thin white streaks", + "tail: long, fan-shaped, dark grayish-brown", + "throat: white with black streaks" + ], + "andean gull": [ + "back: smooth, gray feathers", + "beak: black, curved tip", + "belly: white, fluffy plumage", + "breast: white with gray markings", + "crown: dark gray with white streak", + "forehead: sleek, white feathers", + "eyes: bright, black orbs", + "legs: reddish-orange, webbed feet", + "wings: gray and white patterned feathers", + "nape: dark gray feathers", + "tail: white with black band", + "throat: pale white feathers" + ], + "andean hillstar": [ + "back: dark green iridescence", + "beak: long, slender, and black", + "belly: grayish-white plumage", + "breast: pale gray with greenish tint", + "crown: dark metallic green", + "forehead: vibrant green iridescence", + "eyes: small, dark, and round", + "legs: short and grayish", + "wings: dark green with rounded shape", + "nape: greenish-gray hue", + "tail: forked with green and black feathers", + "throat: shiny violet-blue color" + ], + "andean ibis": [ + "back: smooth, grayish-brown plumage", + "beak: long, curved, black and yellowish tip", + "belly: light gray, fluffy feathers", + "breast: pale gray, contrasting with the belly", + "crown: blackish cap, merging with the nape", + "forehead: blackish, transitioning to grayish-brown on cheeks", + "eyes: round, dark eyes, with white eye-ring", + "legs: strong, reddish-pink color", + "wings: grayish-brown, elongated primary feathers", + "nape: blackish, connecting the crown and mantle", + "tail: long, tapering, dark gray feathers", + "throat: white, contrasting with grey breast" + ], + "andean motmot": [ + "back: vibrant and colorful plumage with green or blue shades", + "beak: long, serrated, and dark-colored", + "belly: light-colored with soft, feathery texture", + "breast: rich, turquoise-blue hue with dense feathers", + "crown: metallic green with contrasting black borders", + "forehead: striking deep blue color, divided by black band", + "eyes: large, dark, and alert with noticeable eye rings", + "legs: thin, sturdy, and grayish or brownish in color", + "wings: broad, elongated with bright blue-green feather patterns", + "nape: continuation of the colorful crown with black borders", + "tail: iconic racket-shaped tail with elongated, blue feathers", + "throat: bright turquoise-blue, ending in a v-shaped black band" + ], + "andean negrito": [ + "back: dark brown with light streaks", + "beak: short, light-colored, conical", + "belly: buffy-white to light brown", + "breast: lightly barred brown and buff", + "crown: blackish with rufous edges", + "forehead: white to pale buff, contrasting", + "eyes: dark brown, round", + "legs: slender, pale orange-yellow", + "wings: dark brown with rufous edges, whitish spots on primary feathers", + "nape: dark brown with lighter streaks", + "tail: short, blackish-brown with buffy edges", + "throat: whitish-buff with light streaking" + ], + "andean parakeet": [ + "back: vibrant green feathers", + "beak: strong, light-colored, curved", + "belly: pale greenish-yellow plumage", + "breast: bright green feathers", + "crown: vivid green with slight bluish tinge", + "forehead: light green with subtle bluish hue", + "eyes: dark with white eye-ring", + "legs: grayish, slender, and long", + "wings: green with blue outer wing feathers", + "nape: rich green, slightly bluish", + "tail: long, tapering, blue and green feathers", + "throat: light green, blending with breast" + ], + "andean potoo": [ + "back: mossy green with streaks of brown", + "beak: long, slightly curved, pale cream", + "belly: light gray with brown speckles", + "breast: soft gray with subtle streaks", + "crown: dark, mottled brown and gray", + "forehead: pale gray with a hint of green", + "eyes: large, yellow-green with black pupil", + "legs: slender, pale gray with sharp claws", + "wings: broad, green-brown with dark markings", + "nape: blending of brown, gray, and green", + "tail: elongated, green-brown with black bars", + "throat: whitish-gray with light streaks" + ], + "andean pygmy owl": [ + "back: compact and feathered in grey-brown hues", + "beak: sharp, curved, and dark-colored", + "belly: soft, whitish-grey plumage with dark barring", + "breast: lightly spotted with dark brown markings on a greyish-white background", + "crown: round, with dark barring on grey-brown feathers", + "forehead: small, feathered in grey-brown shades", + "eyes: large, piercing yellow orbs", + "legs: short, sturdy, and feathered", + "wings: rounded and relatively short, grey-brown with dark barring", + "nape: grey-brown feathers with bars and spots", + "tail: short and square with dark bands on a grey-brown background", + "throat: pale grey with subtle darker markings" + ], + "andean slaty thrush": [ + "back: slate gray, with a subtle bluish tint", + "beak: slim and pointed, darkish in color", + "belly: pale gray, lightly speckled", + "breast: grayish with fine white streaks", + "crown: slate gray, subtly darker than back", + "forehead: slightly paler gray, blending into the crown", + "eyes: dark and round, encircled by faint eyering", + "legs: slender, blackish-brown", + "wings: slate gray, with dark flight feathers", + "nape: grayish slate color, continuous with the crown", + "tail: long, dark gray with shading towards the center", + "throat: pale gray with a slightly whiter central region" + ], + "andean solitaire": [ + "back: dark-colored iridescent feathers", + "beak: short, stout, slightly curved", + "belly: light gray plumage", + "breast: pale grayish-blue feathers", + "crown: dark feathers with a lighter center stripe", + "forehead: lighter gray plumage", + "eyes: small, dark, round", + "legs: extended gray legs with strong feet", + "wings: broad, rounded, dark-edged flight feathers", + "nape: dark feathers with a lighter central stripe", + "tail: long, dark, graduated tail feathers", + "throat: pale gray with a slight blue tinge" + ], + "andean swallow": [ + "back: sleek blue-black feathers", + "beak: short and pointed", + "belly: white with faint gray streaks", + "breast: white, blending with belly", + "crown: deep blue-black cap", + "forehead: blend of blue-black and white streaks", + "eyes: small and round, with black pupils", + "legs: slender and featherless, grayish-brown", + "wings: elongated blue-black feathers, with a white band", + "nape: striking blue-black, continuous with the crown", + "tail: forked, with blue-black feathers and white outer edges", + "throat: white, contrasting with the overall dark plumage" + ], + "andean swift": [ + "back: slate-gray feathers with minimal markings", + "beak: small, black, slightly curved", + "belly: white to pale gray plumage", + "breast: light gray feathers transitioning from the belly", + "crown: dark gray with a subtle blue sheen", + "forehead: smooth gray plumage blending with the crown", + "eyes: dark brown, slightly obscured by surrounding feathers", + "legs: short and thin, black with scaled appearance", + "wings: elongated and pointed, gray and black feathers", + "nape: gray plumage with blue hues, blending into back and crown", + "tail: short, slightly forked with dark gray feathers", + "throat: lighter gray feathers transitioning from the breast" + ], + "andean teal": [ + "back: blue-green with subtle black and white markings", + "beak: dark grey with black ridge", + "belly: creamy white with light brown speckles", + "breast: buff brown with black and white markings", + "crown: dark brown fading to lighter brown on the forehead", + "forehead: lighter brown with slight blue sheen", + "eyes: dark brown, surrounded by a thin white ring", + "legs: orange-yellow with dark grey webbed feet", + "wings: iridescent blue-green, black and white patterns", + "nape: darker brown transitioning to lighter brown on the back", + "tail: short, fan-shaped with black and blue-green feathers", + "throat: cream-colored, bordered by a white stripe" + ], + "andean tinamou": [ + "back: greenish-brown with black barring", + "beak: short, slightly curved, light-colored", + "belly: grayish-white with dark spots", + "breast: pale gray with black markings", + "crown: olive-brown with black barring", + "forehead: pale gray coloration", + "eyes: small, dark, surrounded by light feathers", + "legs: strong, yellowish-green", + "wings: short, rounded, green-brown with black stripes", + "nape: greenish-brown with black barring", + "tail: short, olive-brown with black stripes", + "throat: pale gray with dark markings" + ], + "andean tit spinetail": [ + "back: brownish-grey with subtle streaks", + "beak: short, pointed, and black", + "belly: off-white with brownish-grey flanks", + "breast: whitish with light grey streaking", + "crown: streaked, reddish-brown", + "forehead: slightly lighter reddish-brown", + "eyes: small, dark, with thin white eye-ring", + "legs: slender, dark grey", + "wings: brownish-grey with faint brown tinge", + "nape: reddish-brown with streaking", + "tail: long, brownish, with white-tipped outer feathers", + "throat: white with thin greyish-brown streaks" + ], + "angola batis": [ + "back: olive-green with dark streaks", + "beak: short and curved", + "belly: light greyish-white", + "breast: greyish-white with subtle barring", + "crown: dark grey with a slightly crested appearance", + "forehead: slate grey with a white supercilium", + "eyes: large and dark", + "legs: slender and dark grey", + "wings: dark grey-brown with noticeable white wing bars", + "nape: olive-grey with dark streaks", + "tail: long and fan-shaped with dark bands", + "throat: white, bordered by a dark malar stripe" + ], + "angola cave chat": [ + "back: gray-brown feathers covering the upper body", + "beak: small, sturdy, black beak", + "belly: white underside with grayish-brown flanks", + "breast: white plumage transitioning from gray-brown upper body", + "crown: gray-brown head with a slight crest", + "forehead: smooth, gray-brown feathers above the beak", + "eyes: black, beady eyes with white eye-ring", + "legs: slender, dark gray legs with well-defined toes", + "wings: gray-brown with white patches on the inner primaries", + "nape: gray-brown feathers blending with the crown and back", + "tail: gray-brown feathers, slightly forked shape", + "throat: white feathers contrasting with the gray-brown head" + ], + "angola helmetshrike": [ + "back: smooth gray feathers", + "beak: sharp and black", + "belly: white with black streaks", + "breast: white with black streaks", + "crown: black with a raised crest", + "forehead: black, blending into the crown", + "eyes: dark red or brown", + "legs: strong, grayish-blue", + "wings: gray with patches of white", + "nape: dark gray with a downward-facing crest", + "tail: long and black with white tips", + "throat: white with black streaks" + ], + "angola lark": [ + "back: brownish-grey with subtle streaks", + "beak: straight and pointed, dark color", + "belly: off-white to pale brown", + "breast: pale brown with speckles", + "crown: brownish-grey with distinct streaks", + "forehead: light brown, blending into crown", + "eyes: small and dark, surrounded by light-colored feathers", + "legs: long and slender, pale brown", + "wings: brownish-grey with darker streaks, rounded shape", + "nape: brownish-grey, blending into the crown", + "tail: brownish-grey, slightly forked, with white edges", + "throat: off-white, transitioning into breast" + ], + "angola slaty flycatcher": [ + "back: dark slate gray feathers", + "beak: short, black, and slightly hooked", + "belly: pale gray, slightly mottled", + "breast: medium gray, smooth", + "crown: dark slate gray, flat", + "forehead: lighter gray, unmarked", + "eyes: black with a thin white-eye ring", + "legs: black, slender", + "wings: dark slate gray with black edges", + "nape: dark slate gray, unmarked", + "tail: long, dark gray, with black edges", + "throat: pale gray, unmarked" + ], + "angola swallow": [ + "back: glossy bluish-black feathers", + "beak: short, pointed, black", + "belly: white, lightly feathered", + "breast: white, well-defined", + "crown: deep steel-blue, slightly iridescent", + "forehead: slightly lighter steel-blue", + "eyes: dark brown, quick and alert", + "legs: thin, dark grayish-brown", + "wings: elongated, bluish-black with white markings", + "nape: steel-blue, blending with crown", + "tail: forked, long outer feathers, black and white", + "throat: pure white, contrasting with blue head" + ], + "angola waxbill": [ + "back: dark blue striped feather pattern", + "beak: short, red, conical", + "belly: light blue-gray with fine, dark streaks", + "breast: vibrant crimson with fine, dark streaking", + "crown: bright red, slightly raised", + "forehead: bright red, blends into the crown", + "eyes: small, black, surrounded by faint white ring", + "legs: strong, pale pinkish-grey", + "wings: brownish-black with blue and red accents", + "nape: crimson with dark streaks, merging to back pattern", + "tail: long, brownish-black with red edging", + "throat: deep crimson with minimal streaking" + ], + "anjouan scops owl": [ + "back: mottled brown feathers", + "beak: dark, short, and hooked", + "belly: creamy white with brown bars", + "breast: pale brown with dark streaks", + "crown: brown with faint dark markings", + "forehead: slightly paler brown with dark speckles", + "eyes: large, yellow-orange, surrounded by dark circles", + "legs: feathered, light brown with dark streaks", + "wings: brown with faint darker markings, rounded", + "nape: brown with light speckles", + "tail: brown with dark bands, short and squared", + "throat: pale cream with faint brown streaks" + ], + "anjouan sunbird": [ + "back: iridescent green", + "beak: sharp, slender, and curved", + "belly: light yellow", + "breast: bright orange", + "crown: shiny metallic blue", + "forehead: iridescent blue-violet", + "eyes: beady and black", + "legs: slim, dark grey", + "wings: vibrant green with blue highlights", + "nape: metallic green", + "tail: long, straight, and green", + "throat: vivid orange" + ], + "anjouan white eye": [ + "back: olive-green covering the upper body", + "beak: short, sharp, black and slightly curved", + "belly: light grayish-yellow underside", + "breast: pale yellowish-white plumage", + "crown: grayish head with subtle white rings around eyes", + "forehead: smooth grayish-white feathers", + "eyes: large and noticeably white", + "legs: strong, slender, and grayish-blue", + "wings: olive-green with primary and secondary feathers", + "nape: grayish-olive feathers at the back of the neck", + "tail: olive-green with slightly notched appearance", + "throat: white-gray feathers transitioning to pale breast color" + ], + "ankober serin": [ + "back: olive-green with black streaks", + "beak: sharp, grayish-yellow", + "belly: dull white with gray tinge", + "breast: olive-green with black streaks", + "crown: olive-green with black streaks", + "forehead: olive-green with black streaks", + "eyes: dark brown with white eye-ring", + "legs: pale pinkish-gray", + "wings: olive-green with black tips", + "nape: olive-green with black streaks", + "tail: long, olive-green with black borders", + "throat: dull white with gray tinge" + ], + "annam limestone babbler": [ + "back: light brown with dark streaks", + "beak: short and robust, pale gray", + "belly: creamy white with light brown streaks", + "breast: pale buff with dark speckles", + "crown: brownish-gray with fine striations", + "forehead: grayish-brown, slightly paler than crown", + "eyes: dark, encircled by thin pale eye-ring", + "legs: grayish-pink, slender and strong", + "wings: brown with faint pale barring", + "nape: light brown with dark striations", + "tail: long and angled, with dark brown feathers and pale edges", + "throat: off-white with brown speckles" + ], + "annam prinia": [ + "back: olive-brown with light streaks", + "beak: sharp, pointed, and black", + "belly: whitish-gray with light streaks", + "breast: pale gray, blending with belly", + "crown: rufous with light streaks", + "forehead: olive-brown, blending with the crown", + "eyes: dark, surrounded by a faint eyering", + "legs: long, slender, and grayish", + "wings: olive-brown with faint wing bars", + "nape: olive-brown, connecting back to crown", + "tail: long, rufous-tipped, often cocked up", + "throat: whitish, contrasting with breast" + ], + "ansorge greenbul": [ + "back: greenish olive feathers", + "beak: short, straight, and brownish", + "belly: pale yellow with faint brown streaks", + "breast: warmer yellow with faint brown streaks", + "crown: greenish olive with faint brown streaks", + "forehead: pale greenish olive", + "eyes: round with black pupil and brown iris", + "legs: slender and pale brown", + "wings: greenish olive with brown flight feathers", + "nape: greenish olive with faint brown streaks", + "tail: long and greenish brown", + "throat: pale yellow with faint brown streaks" + ], + "antarctic petrel": [ + "back: dark grey feathers covering the upper body", + "beak: strong, black, and hooked for catching fish", + "belly: lighter grey feathers adding contrast to the body", + "breast: grey and white mix of feathers, aiding with insulation", + "crown: dark grey feathers on top of the head", + "forehead: smooth transition from the beak to the crown", + "eyes: medium-sized, black, and slightly on the side for better vision", + "legs: black and webbed for swimming and walking", + "wings: barrel-shaped with dark grey feathers, allowing for effortless soaring", + "nape: grey feathers connecting the crown to the back", + "tail: wedged-shaped with grey feathers for better balance and maneuverability", + "throat: blend of grey and white feathers under the beak" + ], + "antarctic prion": [ + "back: bluish-gray feathers", + "beak: short, hooked, pale blue", + "belly: white underside", + "breast: white plumage", + "crown: bluish-gray with white streaks", + "forehead: white patches", + "eyes: small and dark", + "legs: short and blue-gray", + "wings: narrow with pointed tips, blue-gray and white pattern", + "nape: bluish-gray with streaks", + "tail: forked, blue-gray feathers", + "throat: white, leading to breast" + ], + "antarctic shag": [ + "back: dark glossy feathers", + "beak: long, curved, and sharp", + "belly: pale white to gray feathers", + "breast: dark plumage with hints of blue and green", + "crown: smooth and sleek feathers", + "forehead: flat and smooth transition to the beak", + "eyes: small, bright, circular, and expressive", + "legs: strong and webbed with black scales", + "wings: wide, long, and powerful with dark shades", + "nape: sleek with olive-brown features", + "tail: broad, fan-shaped with dark feathers", + "throat: white feathers with distinct pouch" + ], + "antarctic tern": [ + "back: sleek, grayish-white feathers", + "beak: sharp, red-orange with black tip", + "belly: white, soft feathers", + "breast: slightly plump, white chest", + "crown: black, smooth feathers covering head", + "forehead: black feathers meeting the beak", + "eyes: dark, alert, and expressive", + "legs: thin, red-orange, webbed feet", + "wings: elongated, grayish-white primaries", + "nape: where black crown meets white neck feathers", + "tail: forked, white with gray outer feathers", + "throat: white feathers, smooth, meeting the breast" + ], + "antillean crested hummingbird": [ + "back: iridescent emerald green feathers", + "beak: long, slim, and slightly curved", + "belly: grayish-white plumage", + "breast: bright green shimmering feathers", + "crown: striking crest with violet-blue color", + "forehead: vibrant turquoise feathers", + "eyes: small, dark, and round", + "legs: short, thin, with tiny feet", + "wings: long, slender, swift-moving", + "nape: green feathers with a hint of blue", + "tail: wedge-shaped, emerald green with white tips", + "throat: dark, shimmering green patch" + ], + "antillean nighthawk": [ + "back: pale brown with white spots", + "beak: short and hooked, dark gray", + "belly: white with brownish streaks", + "breast: light brown with white streaks", + "crown: dark brown with white streaks", + "forehead: light brown with white streaks", + "eyes: large and round, black with a yellow ring", + "legs: short and slender, grayish-brown", + "wings: long and pointed, with mottled brown and white pattern", + "nape: light brown with white streaks", + "tail: dark brown with white banding", + "throat: pale white with brownish streaks" + ], + "antillean palm swift": [ + "back: sleek grayish-brown feathers", + "beak: short, thin black beak", + "belly: pale grayish-white underparts", + "breast: light gray feathers", + "crown: dark grayish-brown head", + "forehead: smooth grayish-brown feathers", + "eyes: small, dark, and alert", + "legs: short black legs", + "wings: long, curved, grayish-brown", + "nape: grayish-brown feathers", + "tail: forked, grayish-brown, and slightly pointed", + "throat: pale gray feathers" + ], + "antillean piculet": [ + "back: muted olive-green feathers", + "beak: short, sharp, curved black beak", + "belly: pale yellowish-grey", + "breast: soft yellowish-grey", + "crown: males display golden-orange caps", + "forehead: vibrant gold in males, duller in females", + "eyes: small, inquisitive black eyes", + "legs: slender, grey legs with strong toes", + "wings: olive-green with black and white streaks", + "nape: subtle olive-green and brown tones", + "tail: short, sharp, black-tipped feathers", + "throat: light grey with fluffy plumage" + ], + "antillean siskin": [ + "back: olive-green feathers cover the back", + "beak: short, pointed, and conical in shape", + "belly: pale yellow feathers on the lower body", + "breast: golden yellow feathers on the upper body", + "crown: black stripe covering the top of the head", + "forehead: golden yellow feathers above the beak", + "eyes: small, dark eyes surrounded by black markings", + "legs: thin, grayish-brown legs with slender toes", + "wings: dark, elongated feathers with distinct white wing-bars", + "nape: yellowish-green feathers on the back of the neck", + "tail: forked with dark feathers and white tail spots", + "throat: golden yellow feathers extending down from the chin" + ], + "antioquia bristle tyrant": [ + "back: olive-green feathers", + "beak: small and black", + "belly: pale yellow hue", + "breast: light olive-yellow plumage", + "crown: grayish-olive with dark streaks", + "forehead: slightly paler grayish-olive", + "eyes: dark brown with white eye-ring", + "legs: slender and dark gray", + "wings: olive-green with faint wing-bars", + "nape: grayish-olive blending into the back", + "tail: long and dark with pale feather tips", + "throat: pale olive-yellow, matching the breast" + ], + "antioquia brushfinch": [ + "back: olive-green, providing camouflage", + "beak: short, strong, blackish-grey for feeding on seeds", + "belly: yellowish-olive, blending with the environment", + "breast: bright yellow, distinctive coloration", + "crown: sleek black, contrasting with other colors", + "forehead: blackish-grey, continuing from the crown", + "eyes: dark, expressive, well-adapted for vision in various light conditions", + "legs: strong, grey, built for perching and occasional ground walking", + "wings: olive-green with white-edged feathers, enabling agile flight", + "nape: black streaks transitioning from the crown, providing continuity in color", + "tail: relatively short, olive-green with white-tipped feathers, aiding in balance and maneuverability", + "throat: golden-yellow, complementing the breast color" + ], + "antioquia wren": [ + "back: olive-brown plumage with faint streaks", + "beak: thin and long, blackish-brown", + "belly: grayish-white, finely streaked", + "breast: light grayish-brown, slight barring", + "crown: warm brown color, streaked with black", + "forehead: light brown with faint streaks", + "eyes: dark brown with thin white eyering", + "legs: long and slender, tan-colored", + "wings: olive-brown with faint dark bars", + "nape: warm brown with fine dark streaks", + "tail: long, olive-brown with faint barring", + "throat: white, little to no streaks" + ], + "antipodes parakeet": [ + "back: vibrant green feathers", + "beak: strong red-orange beak", + "belly: soft yellowish-green plumage", + "breast: bright green chest feathers", + "crown: green and blue mixed feathers on the head", + "forehead: vivid green and blue forehead feathers", + "eyes: dark and round with white eye-ring", + "legs: sturdy and gray with sharp claws", + "wings: long, green feathers with blue tips", + "nape: green feathers transitioning to blue", + "tail: elongated blue-green feathers", + "throat: pale yellow-green feathers" + ], + "apical flycatcher": [ + "back: olive-green feathers", + "beak: short and hooked", + "belly: whitish with yellow tinge", + "breast: yellow with grayish streaks", + "crown: grayish with a prominent crest", + "forehead: pale grayish-white", + "eyes: dark with white eye-ring", + "legs: slender and dark", + "wings: broad with white bars", + "nape: grayish with slight streaking", + "tail: long and forked", + "throat: whitish with fine streaks" + ], + "aplomado falcon": [ + "back: sleek bluish-gray feathers", + "beak: sharp, dark-grey hooked shape", + "belly: creamy white with fine dark streaks", + "breast: white with thin black horizontal stripes", + "crown: dark bluish-gray with a distinct crest", + "forehead: white behind the beak, leading to crown", + "eyes: piercing yellow with dark outlines", + "legs: long and yellow with sharp talons", + "wings: lengthy, pointed bluish-gray feathers with black tips", + "nape: black stripe across the neck, connecting the crown", + "tail: long, banded with black and white stripes", + "throat: white with black streaks extending from the breast" + ], + "apo myna": [ + "back: glossy black feathers with a greenish sheen", + "beak: short, stout, pale yellow", + "belly: dark grey with a slight metallic sheen", + "breast: dark grey, slightly lighter than belly", + "crown: deep black feathers with a slight purple iridescence", + "forehead: deep black with a hint of blue iridescence", + "eyes: bright yellow with a black pupil", + "legs: long, scaly, pale yellow", + "wings: large, black with greenish metallic sheen and white patches", + "nape: black with a violet sheen, blending into back feathers", + "tail: long, black feathers with greenish-blue iridescence", + "throat: dark grey with a slight bluish sheen" + ], + "apo sunbird": [ + "back: iridescent green upper body", + "beak: long, slender, and curved", + "belly: bright yellow underside", + "breast: vibrant yellow chest feathers", + "crown: shiny metallic green head", + "forehead: iridescent green plumage", + "eyes: small, dark, and round", + "legs: thin, grayish black limbs", + "wings: medium length, greenish black", + "nape: metallic green neck feathers", + "tail: elongated, greenish black feathers", + "throat: brilliant yellow or orange throat patch" + ], + "apolinar wren": [ + "back: brownish-grey plumage", + "beak: slender, slightly curved black bill", + "belly: soft white feathers", + "breast: subtle grey-brown hue", + "crown: dark brown with slight streaks", + "forehead: pale brownish-grey", + "eyes: dark, beady, surrounded by a faint eye-ring", + "legs: long, thin, and pale-colored", + "wings: greyish-brown with white spotted patterns", + "nape: faded brown streaks", + "tail: short, slightly rounded, with bands of brown and white", + "throat: pale white with faint grey markings" + ], + "appert tetraka": [ + "back: olive-brown with pale streaks", + "beak: short and sharp, dark gray", + "belly: pale, whitish with gray streaks", + "breast: grayish-white, contrasted with throat", + "crown: dark gray with pale streaks", + "forehead: pale gray, transitioning to darker crown", + "eyes: small, dark, surrounded by pale eyering", + "legs: relatively short, dark gray", + "wings: olive-brown with pale bars", + "nape: dark gray, bordered by pale streaks", + "tail: long and narrow, olive-brown with faint bars", + "throat: white, sharply delineated from breast" + ], + "apricot breasted sunbird": [ + "back: iridescent green feathers", + "beak: long, slender, and curved", + "belly: striking apricot hue", + "breast: vibrant apricot coloration", + "crown: shimmering green top feathers", + "forehead: bright green plumage", + "eyes: small, dark, and alert", + "legs: thin and delicate", + "wings: elongated with green and blue shades", + "nape: narrow green feathers", + "tail: long, forked, and green-blue", + "throat: fiery orange-red patch" + ], + "apurimac brushfinch": [ + "back: olive-green plumage", + "beak: short and conical", + "belly: whitish-gray feathers", + "breast: yellowish underparts", + "crown: dark gray with reddish streaks", + "forehead: light grayish-white", + "eyes: small and black", + "legs: long and dark gray", + "wings: olive-green with darker flight feathers", + "nape: olive-green with subtle reddish streaks", + "tail: dark gray, long, and forked", + "throat: pale yellowish-white" + ], + "apurimac spinetail": [ + "back: grayish-brown with streaks", + "beak: short, black, and conical", + "belly: pale gray with faint barring", + "breast: grayish-white with streaks", + "crown: rufous-colored with a crest", + "forehead: rufous-orange with black barring", + "eyes: small and black", + "legs: short and grayish-brown", + "wings: grayish-brown with light streaks", + "nape: rufous-orange with black barring", + "tail: long, grayish-brown with streaks", + "throat: white with dark gray streaks" + ], + "aquatic warbler": [ + "back: brownish-yellow with subtle striped pattern", + "beak: thin, dark gray, and pointed", + "belly: pale buff to white with sparse streaks", + "breast: light brown with dark streaks", + "crown: yellow-brown with thin, black stripes", + "forehead: pale beige, slightly darker near beak", + "eyes: small, black, surrounded by beige feathers", + "legs: long, dark gray, with thin toes", + "wings: brownish with faint grayish pattern", + "nape: yellow-brown with dark streaks", + "tail: short, brownish with faint barring", + "throat: pale beige with light streaks" + ], + "arabian babbler": [ + "back: brownish-grey feathered coat", + "beak: thin, slightly curved black beak", + "belly: greyish-white plumage", + "breast: light grey with faint streaks", + "crown: brownish-grey top of the head", + "forehead: slightly paler grey shade", + "eyes: small, dark, round with a white eye-ring", + "legs: long, pinkish-grey slender limbs", + "wings: brownish-grey feathers with faint white edges", + "nape: greyish-brown feathers at the back of the neck", + "tail: long, dark brown feathers with white tips", + "throat: light greyish-white plumage" + ], + "arabian bustard": [ + "back: light brown with small white speckles", + "beak: thick, curved, and yellowish", + "belly: off-white, slightly streaked", + "breast: dull white with sparse black markings", + "crown: gray-brown with a well-defined dark cap", + "forehead: light brown, blends into the crown", + "eyes: smart, caramel-colored, and outlined with white", + "legs: long, sturdy, and grayish-brown", + "wings: broad, light brown, patterned with darker markings", + "nape: pale brown, bordered by a thin band of darker feathers", + "tail: long, black and white, with horizontal barring", + "throat: white, contrasting with the speckled breast" + ], + "arabian eagle owl": [ + "back: brown feathers with black mottling", + "beak: short, curved, and sharp black beak", + "belly: pale buff with faint streaks", + "breast: light brown with dark streaks", + "crown: brown feathers with black markings", + "forehead: pale buff with fine black lines", + "eyes: large, striking orange-yellow eyes", + "legs: feathered and strong pale legs", + "wings: brown with bold black markings and buff-colored bands", + "nape: light brown with black streaks", + "tail: long and brown with black and buff bars", + "throat: buff color with faint streaks" + ], + "arabian golden sparrow": [ + "back: golden-brown feathers with soft streaks", + "beak: short, pointed, and dark", + "belly: pale cream color with a hint of yellow", + "breast: golden yellow, bright and eye-catching", + "crown: golden-yellow and vibrant", + "forehead: bright golden-yellow, complementing the crown", + "eyes: small, black, and alert", + "legs: thin, delicate, and dark", + "wings: golden-brown with black streaks and white barring", + "nape: golden-yellow, transitioning smoothly from crown", + "tail: long, pointed, with black and white bands", + "throat: pale yellow, a slightly lighter hue than the breast" + ], + "arabian green bee eater": [ + "back: vibrant green with slight blue tinges", + "beak: long, slender, and black", + "belly: light green with yellow undertones", + "breast: bright green fading to yellow near the belly", + "crown: iridescent blue-green", + "forehead: blue-green with white outlines around the eyes", + "eyes: round, black, and alert", + "legs: short with black claws", + "wings: vivid green with blue edges", + "nape: striking blue with contrasting black stripe", + "tail: elongated, central, dark blue feathers", + "throat: golden yellow fading into green" + ], + "arabian grosbeak": [ + "back: reddish-brown with black streaks", + "beak: short, strong, conical, and silver-gray", + "belly: pale pinkish-buff", + "breast: rich cinnamon-orange", + "crown: black, white-lined feathers", + "forehead: black and white striped", + "eyes: dark, surrounded by black feathers", + "legs: sturdy, grayish-brown", + "wings: cinnamon-orange with black and white markings", + "nape: reddish-brown with black streaks", + "tail: long, black and cinnamon-orange, white-tipped", + "throat: bright orange-red" + ], + "arabian lark": [ + "back: light sandy brown with dark streaks", + "beak: short and pointed, pale pinkish", + "belly: creamy white with dark brown spots", + "breast: buff-colored with dark brown streaks", + "crown: sandy brown with darker streaks", + "forehead: pale buff, blending into the crown", + "eyes: black or dark brown, surrounded by thin white ring", + "legs: long and thin, pale pink or flesh-colored", + "wings: brownish-gray with dark feather edges", + "nape: sandy brown, continued from the crown", + "tail: dark brown with white outer feathers and white corners", + "throat: white with dark streaks on the sides" + ], + "arabian partridge": [ + "back: earthy brown feathers with subtle patterns", + "beak: curved, light gray to dark brown", + "belly: off-white with brown spots", + "breast: pale, greyish-blue with black crescents", + "crown: warm chestnut-brown with a whitish streak", + "forehead: lighter chestnut-brown with some patterning", + "eyes: dark, shining with a white eye-ring", + "legs: sturdy, reddish with scaly texture", + "wings: medium length, grey-brown with dark barring", + "nape: warm chestnut, transitioning to back's brown", + "tail: short, square-ended with grey-brown and black banding", + "throat: white, with thin black-bordered bib" + ], + "arabian scops owl": [ + "back: brownish-grey with small white markings", + "beak: short, curved, greyish-black", + "belly: light grey with white streaks and dark spots", + "breast: greyish-white with vertical dark brown streaks", + "crown: rounded, brownish-grey with dark streaks", + "forehead: spotted grey with pale feather tufts", + "eyes: large, yellow, forward-facing", + "legs: feathered, greyish-brown with strong talons", + "wings: long, pointed, brown with white bar patterns", + "nape: greyish-brown with dark streaks", + "tail: brown with white horizontal bands and spots", + "throat: streaked greyish-white with small dark markings" + ], + "arabian warbler": [ + "back: light olive-brown with faint streaks", + "beak: sharp, thin, black in color", + "belly: pale creamy-white", + "breast: light buff color with some streaks", + "crown: sandy grey with thin streaks", + "forehead: sandy grey color", + "eyes: dark, surrounded by a white eye-ring", + "legs: slender, pale pink", + "wings: olive-brown with white edges on flight feathers", + "nape: light olive-brown with thin streaks", + "tail: short and squarish, olive-brown with white edges", + "throat: creamy-white with some streaks" + ], + "arabian waxbill": [ + "back: light brown with subtle streaks", + "beak: reddish-orange and conical", + "belly: whitish-gray with brown streaks", + "breast: grayish-brown and streaked", + "crown: red with a black border", + "forehead: red and slightly curved", + "eyes: dark brown with a white eye-ring", + "legs: pinkish-gray and slender", + "wings: brown with black and white markings", + "nape: brown with thin black streaks", + "tail: brown with darker tips and white outer feathers", + "throat: grayish-white with light streaks" + ], + "arabian wheatear": [ + "back: light brown with subtle markings", + "beak: sharp, slender, black", + "belly: cream to pale-colored", + "breast: white with gray-brown patches", + "crown: gray-brown and smooth", + "forehead: grayish-white blending to crown", + "eyes: dark, medium-sized with white eye-ring", + "legs: long, slender, grayish-blue", + "wings: grayish-brown with black wingtips", + "nape: light gray-brown", + "tail: black with white outer tail feathers", + "throat: white with thin gray line separating breast" + ], + "arabian woodpecker": [ + "back: olive-brown with black bars", + "beak: long, chisel-shaped, greyish", + "belly: creamy-white with brown spots", + "breast: light-brown with dark streaks", + "crown: reddish-orange in males, greyish-brown in females", + "forehead: greyish-brown with black streaks", + "eyes: dark with white eyering", + "legs: short and strong, grey in color", + "wings: dark brown with white spots", + "nape: greyish-brown with black streaks", + "tail: blackish-brown with white bars", + "throat: whitish with brown speckles" + ], + "arafura fantail": [ + "back: olive-brown with faint streaks", + "beak: small, thin, and slightly curved", + "belly: whitish-grey with slight markings", + "breast: pale grey with faint streaks", + "crown: olive-brown with occasional light streaks", + "forehead: pale grey blending into the crown", + "eyes: small and dark", + "legs: long and slender with sharp claws", + "wings: pointed and olive-brown with faint streaks", + "nape: olive-brown with lighter streaks", + "tail: long, fan-shaped, and olive-brown", + "throat: pale grey with light streaks" + ], + "arafura shrikethrush": [ + "back: olive-brown plumage", + "beak: strong, hooked, and black", + "belly: cream-colored feathers", + "breast: light brown with streaks", + "crown: greyish-brown plumage", + "forehead: dark grey with fine streaks", + "eyes: black with a white eye-ring", + "legs: sturdy and dark grey", + "wings: olive-brown with faint barring", + "nape: greyish-brown plumage", + "tail: long and olive-brown with faint barring", + "throat: cream-colored with dark streaks" + ], + "araucaria tit spinetail": [ + "back: olive-brown with streaks", + "beak: thin and pointy", + "belly: pale buff with fine streaks", + "breast: light brown with streaking", + "crown: rusty brown with spiky feathers", + "forehead: smooth, rusty brown", + "eyes: dark, well-defined", + "legs: narrow and grayish", + "wings: olive-brown with white-tipped feathers", + "nape: same color as the crown, rusty brown", + "tail: long and spiky, dark brown with white tips", + "throat: plain buff with no streaking" + ], + "archbold bowerbird": [ + "back: dark olive-brown feathers", + "beak: black, slightly hooked", + "belly: light brown with dark streaks", + "breast: dense, dark brown feathers", + "crown: raised, dark brown crest", + "forehead: olive-brown, slightly lighter than crown", + "eyes: black, piercing gaze", + "legs: gray-brown, strong", + "wings: olive-brown with dark brown highlights", + "nape: dark olive-brown, blending into back", + "tail: long, brown feathers with light tips", + "throat: light gray, contrast to darker breast" + ], + "archbold newtonia": [ + "back: olive-brown plumage", + "beak: short, thin, black", + "belly: creamy white", + "breast: light gray with white streaks", + "crown: dark gray with white streaks", + "forehead: smooth, dark gray", + "eyes: small, black, ringed with white", + "legs: pale, slender limbs", + "wings: olive-brown with white bars", + "nape: gray-brown with white streaks", + "tail: long, olive-brown with white tips", + "throat: soft gray with white streaks" + ], + "archbold nightjar": [ + "back: dark brown with paler spots/stripes", + "beak: short and wide, black or dark brown", + "belly: mottled brown and beige", + "breast: buff and dark brown coloration, variable patterns", + "crown: dark brown with a pale stripe down the center", + "forehead: slightly lighter brown compared to crown, speckled pattern", + "eyes: large and dark, ringed with pale feathers", + "legs: short and strong, feathered brown", + "wings: long, rounded, dark brown with lighter mottling/spots", + "nape: brown with pale streaks and bars", + "tail: dark brown and pale bands, wedge-shaped with white tips", + "throat: buff-colored, lightly barred with brown" + ], + "archer robin chat": [ + "back: olive-brown plumage", + "beak: short and strong, blackish-brown", + "belly: white with dark streaks", + "breast: bright orange with black stripes", + "crown: gray with black streaks", + "forehead: pale gray", + "eyes: dark brown, alert and observant", + "legs: thin and long, dark brown", + "wings: olive-brown with black and white markings", + "nape: grayish-olive with black streaks", + "tail: long and dark with white tips", + "throat: white with black mottling" + ], + "arctic loon": [ + "back: sleek black and white pattern", + "beak: sharp, pointed, black", + "belly: pure white feathers", + "breast: checkered black and white", + "crown: dark black cap", + "forehead: continuation of black cap", + "eyes: bright red in color", + "legs: short, webbed, black", + "wings: elongated, slender, black and white patterned", + "nape: black with white striped pattern", + "tail: short and fan-shaped, black and white", + "throat: white and smooth" + ], + "arctic warbler": [ + "back: olive-green with faint streaks", + "beak: small, slim, and pointed", + "belly: off-white with pale yellow tinge", + "breast: light yellow with olive wash", + "crown: olive-green, uniform with back", + "forehead: pale yellow, blending with crown", + "eyes: dark with pale eyering", + "legs: long, slender, and pale pink", + "wings: olive-brown with dark flight feathers", + "nape: olive-green, in line with crown and back", + "tail: dark brown with white outer edges", + "throat: pale yellow, unmarked" + ], + "arfak astrapia": [ + "back: iridescent blue-green feathers", + "beak: straight, black, and slightly curved tip", + "belly: soft black feathers", + "breast: vibrant green-yellow plumage", + "crown: black and glossy head feathers", + "forehead: sleek, black feathers", + "eyes: bright, inquisitive, and beady", + "legs: slender black-gray legs with sharp, curved claws", + "wings: broad, black with blue-green sheen", + "nape: elongated glossy whisker-like plumes", + "tail: long, trailing black feathers ending in blue-green spatules", + "throat: shimmering black feathers" + ], + "arfak catbird": [ + "back: olive-green with blackish tips", + "beak: short and stout, grayish-black", + "belly: mottled gray and white", + "breast: gray with white scalloping", + "crown: black with greenish sheen", + "forehead: black, smoother texture", + "eyes: dark brown surrounded by white eyering", + "legs: slim and gray", + "wings: olive-green with black banding", + "nape: olive-green fading to gray", + "tail: long and olive-green with black banding", + "throat: whitish-gray, slightly streaked" + ], + "arfak honeyeater": [ + "back: olive-brown coloration", + "beak: dark, slightly curved bill", + "belly: yellowish-white plumage", + "breast: creamy-white feathers", + "crown: yellow-orange head crest", + "forehead: bright yellow plumage", + "eyes: dark, expressive gaze", + "legs: grey, slender limbs", + "wings: olive-brown with white wing bars", + "nape: yellow-orange plumage continuation", + "tail: olive-brown with white tips", + "throat: white feathers with yellow hints" + ], + "aripuana antwren": [ + "back: grayish-brown with pale streaks", + "beak: short, slender, and pointed", + "belly: white with faint gray markings", + "breast: grayish-white", + "crown: dark gray with some pale streaks", + "forehead: gray with a slight olive tint", + "eyes: dark, almond-shaped, surrounded by thin white rings", + "legs: slender, pale pinkish-gray", + "wings: grayish-brown with white bars and tips", + "nape: gray with pale streaks", + "tail: long and gray with white tips on feathers", + "throat: white with faint grayish streaks" + ], + "arizona woodpecker": [ + "back: black and white barring pattern", + "beak: black, long, and straight", + "belly: white or pale coloration", + "breast: white or pale coloration", + "crown: red color on male, black on female", + "forehead: red color on male, black on female", + "eyes: black with white eye-ring", + "legs: grayish black", + "wings: black, white patches", + "nape: black and white barring pattern", + "tail: black with white barring", + "throat: white or pale coloration" + ], + "armenian gull": [ + "back: white to pale gray plumage covering the top and sides", + "beak: strong, slightly hooked, yellow with red spot", + "belly: white feathered underside", + "breast: pale gray and white plumage on chest area", + "crown: rounded white to light-gray head feathers", + "forehead: white to light-gray feathers above the beak", + "eyes: dark, surrounded by thin white eye-ring", + "legs: pinkish-red with webbed feet for swimming", + "wings: white with black tips and dark gray primary feathers", + "nape: white feathered area at back of neck", + "tail: white feathers with dark gray bands near the tip", + "throat: white feathers below the beak and chin" + ], + "arnot chat": [ + "back: olive-green with black spots", + "beak: short and black, slightly hooked", + "belly: pale yellow with black streaks", + "breast: yellow-orange with black markings", + "crown: black with white streaks", + "forehead: black with white spots", + "eyes: dark brown, surrounded by white patches", + "legs: sturdy and gray", + "wings: black with white patches and greenish-yellow edges", + "nape: black with white streaks", + "tail: long with white outer feathers and black central feathers", + "throat: bright yellow with a black collar" + ], + "arrow marked babbler": [ + "back: light brown with faint arrow-like marks", + "beak: short, strong, and conical-shaped", + "belly: whitish-grey with subtle markings", + "breast: pale grey with darker streaks", + "crown: dark brown with faint streaks", + "forehead: light grey-brown with narrow markings", + "eyes: dark in color, surrounded by white eye-ring", + "legs: strong and slender, with scaly texture", + "wings: brownish-black, with light brown tips", + "nape: dark brown with arrow-like streaks", + "tail: long and graduated, with dark brown feathers and subtle markings", + "throat: pale grey with darker streaks along sides" + ], + "arrowhead piculet": [ + "back: olive-green feathered", + "beak: short and chisel-shaped", + "belly: pale cream or buff-colored", + "breast: light olive green with subtle spotting", + "crown: olive-green with fine white speckles", + "forehead: distinct white dot pattern", + "eyes: dark beady with pale eye-ring", + "legs: grayish-blue and short", + "wings: olive-green with faint creamy bars", + "nape: olive-green with white speckles", + "tail: short and straight, olive-green blending into cream", + "throat: palest cream with fine spotting" + ], + "arrowhead warbler": [ + "back: olive green feathers", + "beak: slim, pointed and black", + "belly: off-white with pale streaks", + "breast: yellowish with dark streaks", + "crown: greenish-yellow stripes", + "forehead: short and rounded", + "eyes: small and dark with thin light ring", + "legs: slim and pale with sharp claws", + "wings: olive green with white barring", + "nape: light olive green", + "tail: long and dark with white edges", + "throat: bright yellow" + ], + "ascension frigatebird": [ + "back: sleek, dark plumage", + "beak: long, slender, hooked tip", + "belly: white with black spots", + "breast: white, feathered chest", + "crown: dark feathers with lighter texture", + "forehead: smooth, dark plumage", + "eyes: small, black, alert", + "legs: long, thin, charcoal-colored", + "wings: large, elongated \"s\"-shape", + "nape: dark feathers with light shine", + "tail: elongated, split fork", + "throat: white with black spot patterns" + ], + "ash breasted antbird": [ + "back: dark brown with light streaks", + "beak: black and stout", + "belly: white with grayish-yellow accents", + "breast: ash-gray to light brown", + "crown: dark brown with lighter fringes", + "forehead: slightly paler brown compared to crown", + "eyes: black with a faint white eyering", + "legs: pale pinkish-gray", + "wings: brown with light feather edges", + "nape: dark brown with a lighter shade towards the neck", + "tail: dark brown with lighter fringes on feathers", + "throat: ash-gray with a light brown hue" + ], + "ash breasted sierra finch": [ + "back: greyish-brown feathering", + "beak: short and conical, blackish color", + "belly: light ash-gray plumage", + "breast: whitish shade with grayish streaks", + "crown: greyish-brown with streaks", + "forehead: pale gray shading", + "eyes: dark brown, small-sized", + "legs: thin and elongated, blackish-grey color", + "wings: brownish-grey with noticeable barring", + "nape: greyish-brown with fine streaks", + "tail: medium-length, blackish-grey with white edges", + "throat: whitish with light streaking" + ], + "ash breasted tit tyrant": [ + "back: ash gray feathers with subtle white stripes", + "beak: small and sharp, blackish in color", + "belly: pale grayish-white with faint darker streaks", + "breast: soft gray feathers transitioning from the belly", + "crown: uniform dark gray feathers covering the top of the head", + "forehead: smooth gray plumage just above the beak", + "eyes: round, dark with a delicate eye-ring", + "legs: slender and black, ending in sharp little claws", + "wings: gray with contrasting white bars and edges", + "nape: gray feathers extending from the crown to the back", + "tail: long and dark gray, with narrow white tips on the outer feathers", + "throat: white with dark gray streaks, contrasting with the gray breast" + ], + "ash browed spinetail": [ + "back: olive-brown with streaks", + "beak: thin, dark, and pointy", + "belly: pale grayish-white", + "breast: light grayish-brown", + "crown: reddish-brown", + "forehead: ash-colored stripe", + "eyes: dark, surrounded by pale rings", + "legs: orange-brown, thin", + "wings: brownish-gray with white tips", + "nape: reddish-brown", + "tail: long, brownish-gray", + "throat: pale grayish-white" + ], + "ash colored cuckoo": [ + "back: sleek ash-gray feathers", + "beak: slim, dark shaded beak", + "belly: soft, light gray undertones", + "breast: rounded, smoky gray plumage", + "crown: smooth, ashen cap", + "forehead: subtle gray gradient", + "eyes: dark, watchful orbs", + "legs: slender, charcoal-gray limbs", + "wings: outstretched, muted gray plumes", + "nape: dusky gray neckline", + "tail: elongated, smoky feathers", + "throat: pale, foggy-hued region" + ], + "ash colored tapaculo": [ + "back: soft ash-gray feathers", + "beak: dark, short, and curved", + "belly: lighter ash-gray plumage", + "breast: subdued ash-gray feathers", + "crown: slightly darker ash-gray hue", + "forehead: smooth ash-gray feathers", + "eyes: black, round, and small", + "legs: slender with dark gray scales", + "wings: ash-gray feathers with subtle barring", + "nape: ash-gray feathers blending into the back", + "tail: short and ash-gray with subtle barring", + "throat: pale ash-gray plumage" + ], + "ash throated antwren": [ + "back: olive-brown feathers with light streaks", + "beak: slim, black and slightly curved", + "belly: pale yellow with faint streaks", + "breast: grayish-white with light brown spots", + "crown: orange-brown with white streaks", + "forehead: pale orange-brown with white streaks", + "eyes: black with white eye-ring", + "legs: slender and pale gray", + "wings: brownish with orange-brown edging", + "nape: grayish-brown with white spots", + "tail: long and dark brown with white tips", + "throat: grayish-white with thin brown streaks" + ], + "ash throated casiornis": [ + "back: grayish-brown with subtle streaks", + "beak: slightly hooked, black upper and pale lower parts", + "belly: pale yellowish-brown", + "breast: gray with brownish tinges", + "crown: dull grayish-brown", + "forehead: whitish streaks on grayish-brown base", + "eyes: dark brown with white surround", + "legs: long, dark gray", + "wings: gray-brown with white edges on flight feathers", + "nape: grayish-brown, uniform color", + "tail: long, brownish-gray with white tips on outer feathers", + "throat: whitish with gray streaks" + ], + "ash throated crake": [ + "back: olive-brown with black stripes", + "beak: short, pointed, pale yellow", + "belly: pale grayish-white", + "breast: light gray with faint barring", + "crown: streaked, reddish-brown", + "forehead: grayish-brown", + "eyes: dark brown, small", + "legs: long, slender, pale orange", + "wings: short, rounded, brown with black stripes", + "nape: brown with white streaks", + "tail: short, dark brown with pale edging", + "throat: whitish-gray" + ], + "ash throated gnateater": [ + "back: olive-brown with subtle stripes", + "beak: short, hooked, blackish-gray", + "belly: buffy-white with brown streaks", + "breast: rusty-cinnamon, mix of brown and white", + "crown: dark slate-gray", + "forehead: lighter gray, blending with crown", + "eyes: black, outlined with white feathers", + "legs: sturdy, pinkish-gray with sharp claws", + "wings: brown with white-edged flight feathers", + "nape: grayish-brown, blends with back and crown", + "tail: long, dark brown with white-tipped feathers", + "throat: buffy-white, continuous with belly" + ], + "ash winged antwren": [ + "back: bluish-gray feathers with a slight sheen", + "beak: thin, black, and slightly curved", + "belly: soft white with fine gray streaks", + "breast: light gray streaked with white", + "crown: ashy gray with a subtle crest", + "forehead: smooth, blending into the crown", + "eyes: round and black, surrounded by a white eye-ring", + "legs: slender and dark gray", + "wings: bluish-gray with subtle black edging", + "nape: smooth transition from the crown", + "tail: long and bluish-gray with a black tip", + "throat: white and clean, contrasting with the breast" + ], + "ashambu laughingthrush": [ + "back: dark brown with subtle streaks", + "beak: short, slightly curved, and black", + "belly: pale grayish-white with darker speckles", + "breast: grayish-white with dark speckles and streaks", + "crown: reddish-brown with darker streaks", + "forehead: pale buff with fine, dark streaks", + "eyes: bright, expressive, surrounded by pale eye-ring", + "legs: sturdy and pinkish-brown", + "wings: dark brown with reddish-brown and white patches", + "nape: reddish-brown with darker streaks", + "tail: long, dark brown with reddish-brown and white-tipped feathers", + "throat: pale grayish-white with dark speckles" + ], + "ashy antwren": [ + "back: dark gray with subtle streaks", + "beak: slim, pointed, black", + "belly: pale gray with white undertones", + "breast: smoky gray with lighter streaks", + "crown: slate-gray with subtle crest", + "forehead: smooth, dark gray", + "eyes: small, round, dark", + "legs: long, slender, black", + "wings: gray with fine barring, pale wing-bars", + "nape: smoky gray, continuous with back", + "tail: long, dark gray, slightly forked", + "throat: light gray, blending into breast" + ], + "ashy bulbul": [ + "back: pale gray plumage with olive tinges", + "beak: short, black, and slightly curved", + "belly: white-gray with light yellow hues", + "breast: grayish-white with subtle streaks", + "crown: dark gray fading to paler tones", + "forehead: smooth gray feathers", + "eyes: dark with black circle, white eye-ring", + "legs: black and slender", + "wings: plain gray, primary flight feathers edged in white", + "nape: pale gray with a hint of olive green", + "tail: long and black with white outer edges", + "throat: pale gray contrasting the breast feathers" + ], + "ashy cisticola": [ + "back: brownish-gray feathers", + "beak: small and pointed black beak", + "belly: pale and buff-colored underparts", + "breast: light brown with fine streaks", + "crown: reddish-brown with streaks", + "forehead: pale eyebrow stripe", + "eyes: dark, round and small", + "legs: long and pale pink", + "wings: short and rounded with brown and buff feathers", + "nape: reddish-brown with indistinct streaks", + "tail: short and fan-like with brownish-black feathers", + "throat: pale and streaked, forming a collar" + ], + "ashy drongo": [ + "back: grayish-black feathers", + "beak: black, curved, and sharp", + "belly: pale gray to white", + "breast: grayish-white plumage", + "crown: dark gray feathers", + "forehead: slightly lighter gray than the crown", + "eyes: black with a white ring", + "legs: black and slender", + "wings: long, grayish-black feathers", + "nape: gray, blending into the back", + "tail: forked, grayish-black feathers", + "throat: pale gray feathers" + ], + "ashy flowerpecker": [ + "back: shades of gray plumage", + "beak: short, pointed black", + "belly: light grayish-white", + "breast: pale gray", + "crown: dark ashy-gray", + "forehead: light gray", + "eyes: dark, beady", + "legs: thin, gray-black", + "wings: short, gray", + "nape: gray", + "tail: short and square, gray", + "throat: pale gray" + ], + "ashy flycatcher": [ + "back: light grayish-brown feathers", + "beak: short, straight, and black", + "belly: whitish-gray plumage", + "breast: pale grayish-white feathers", + "crown: smooth grayish-brown feathers", + "forehead: slightly paler gray than the crown", + "eyes: small, black, and alert", + "legs: slender, dark gray legs", + "wings: grayish-brown with darker flight feathers", + "nape: grayish-brown, blending with the back", + "tail: long, dark gray with white outer feathers", + "throat: pale grayish-white, contrasting with the breast" + ], + "ashy minivet": [ + "back: smooth gray feathering", + "beak: slender and sharp-pointed", + "belly: pale grayish-white underside", + "breast: light gray with white blending", + "crown: black extending down to eye level", + "forehead: black with grayish-white feathers", + "eyes: dark brown with white eyering", + "legs: strong with black claws", + "wings: black and white edged with greenish-yellow", + "nape: black transitioning to gray", + "tail: black with white outer tail feathers", + "throat: smooth grayish-white" + ], + "ashy myzomela": [ + "back: grayish-black feathers", + "beak: thin and curved, black", + "belly: pale gray plumage", + "breast: light gray with subtle streaks", + "crown: darker gray with a slight crest", + "forehead: slight reddish-brown patch", + "eyes: small and black, beady", + "legs: long, thin, and black", + "wings: grayish-black, short and rounded", + "nape: plain gray feathers", + "tail: short and slightly forked, grayish-black", + "throat: pale gray, unmarked" + ], + "ashy prinia": [ + "back: pale grayish-brown with a faint pattern", + "beak: short, slender, and dark-colored", + "belly: creamy white with grayish-brown undertones", + "breast: light gray with slight streaking", + "crown: dark gray and prominent", + "forehead: light gray blending into the dark crown", + "eyes: small, black, and alert", + "legs: long, slender, and dark gray", + "wings: grayish-brown with a hint of white markings", + "nape: grayish-brown and smoothly transitioning from the crown", + "tail: long, narrow, and grayish-brown with white outer feathers", + "throat: white with light gray streaks" + ], + "ashy robin": [ + "back: smooth, grayish-brown feathers", + "beak: thin, pointed, dark gray", + "belly: light gray with faint streaks", + "breast: pale gray with off-white undertones", + "crown: dark grayish-brown feathers", + "forehead: pale gray with a slight tinge of brown", + "eyes: round, black, and alert", + "legs: thin and dark gray", + "wings: grayish-brown with lighter streaks", + "nape: pale gray blending into darker feathers", + "tail: medium-length, gray with lighter tips", + "throat: off-white with faint gray streaks" + ], + "ashy starling": [ + "back: smooth, soft gray feathers", + "beak: short, black, and pointed", + "belly: pale grey, blending with the breast", + "breast: gentle grey, with a hint of iridescence", + "crown: sleek, slightly darker grey feathers", + "forehead: uncrested, merging seamlessly with the crown", + "eyes: large, white-rimmed, and expressive", + "legs: slender, black, with a strong grip", + "wings: smooth grey, with a hidden flash of white on flight feathers", + "nape: slightly curved, connecting head with back", + "tail: moderately long, narrow, and grey", + "throat: pale grey, similar to the belly and breast" + ], + "ashy tailorbird": [ + "back: olive-grey feathers", + "beak: sharp, curved, black", + "belly: light grey-white", + "breast: dull greyish-white", + "crown: ashy-grey with a reddish cap", + "forehead: ashy-grey", + "eyes: small, dark", + "legs: long slender, brown", + "wings: olive-grey with slight white bars", + "nape: ashy-grey", + "tail: long, narrow, olive-grey", + "throat: pale grey-white" + ], + "ashy tit": [ + "back: pale gray with slight pattern", + "beak: short, strong, and black", + "belly: off-white with grayish hue", + "breast: pale gray, blending into belly", + "crown: dark gray, slightly raised", + "forehead: gray, blending into crown", + "eyes: dark with white eye-ring", + "legs: black, short with strong feet", + "wings: gray with white patches", + "nape: pale gray, matching back", + "tail: long and gray, with white outer feathers", + "throat: light gray, blending into breast" + ], + "ashy wood pigeon": [ + "back: pale grey with a brown tinge", + "beak: short and curved, dark grey", + "belly: light ashy grey, slightly fluffy", + "breast: soft grey with a mauve sheen", + "crown: smooth grey, slightly darker than the back", + "forehead: pale grey blending with the crown", + "eyes: small, dark, and round", + "legs: reddish brown, moderately long", + "wings: soft grey, rounded tips, distinct black markings", + "nape: slightly darker grey than the back", + "tail: long, fan-shaped, grey with black band", + "throat: pale grey, lighter than the breast" + ], + "ashy woodpecker": [ + "back: grayish-brown feathers", + "beak: sturdy, chisel-like, medium-length", + "belly: light gray with faint barring", + "breast: pale gray with white streaks", + "crown: bluish-gray with red patch (male) or plain (female", + "forehead: bluish-gray blending into the crown", + "eyes: black, almond-shaped with white eye-ring", + "legs: sturdy, grayish-blue with sharp claws", + "wings: grayish-brown with white barring", + "nape: bluish-gray to match crown", + "tail: stiff with black and white bars", + "throat: light gray with white streaks" + ], + "ashy woodswallow": [ + "back: bluish-gray plumage", + "beak: short, hooked, black", + "belly: light gray, slightly pale", + "breast: bluish-gray feathers", + "crown: smooth, bluish-gray", + "forehead: bluish-gray, slightly round", + "eyes: small, dark, alert", + "legs: short, black, strong", + "wings: bluish-gray, pointed, wide", + "nape: bluish-gray, curved", + "tail: long, squared-off, bluish-gray", + "throat: light gray, slightly pale" + ], + "ashy bellied white eye": [ + "back: soft gray feathers", + "beak: small, black, and pointed", + "belly: light ash-gray hue", + "breast: delicate grayish-white feathers", + "crown: pale gray coverage", + "forehead: smooth gray feathers", + "eyes: white eye-ring encircling a dark pupil", + "legs: thin and grayish-black", + "wings: gray with visible white markings", + "nape: subtle gray feather transition", + "tail: grayish-white, slightly forked", + "throat: white patch contrasting gray body" + ], + "ashy breasted flycatcher": [ + "back: ashy gray color, mottled with brown hues", + "beak: slender, slightly hooked, dark-colored", + "belly: pale gray or white, with brown streaks", + "breast: ashy gray, with faint brown markings", + "crown: grayish-brown, with a slight crest", + "forehead: light gray, blending into the crown", + "eyes: medium-sized, dark brown, surrounded by faint eye ring", + "legs: slender, pale gray or beige, with strong feet", + "wings: ashy gray, with brown bars and white wingbars", + "nape: grayish-brown, matching the crown", + "tail: medium length, ashy gray, with white edges and dark brown bands", + "throat: light gray, with a faint brownish tinge" + ], + "ashy crowned sparrow lark": [ + "back: grayish-brown with subtle streaks", + "beak: short and conical, pale gray", + "belly: buff-white with faint markings", + "breast: buffy with dark streaks", + "crown: ashy-gray with a defined crest", + "forehead: ashy-gray blending into the crown", + "eyes: dark brown with a pale eyering", + "legs: slender and grayish-pink", + "wings: brown with pale-edged feathers", + "nape: ashy-gray, continuing from the crown", + "tail: dark brown with contrasting outer feathers", + "throat: buff-white, blending with the breast" + ], + "ashy faced owl": [ + "back: light ash-gray feathers with slight brown undertones", + "beak: sharp, curved, blackish-gray", + "belly: white with faint grayish streaks", + "breast: soft white with sparse gray-brown speckles", + "crown: ash-gray tinged with brown and textured feathers", + "forehead: pale gray with white highlights", + "eyes: large, dark brown, and piercing", + "legs: feathered, off-white with dark gray claws", + "wings: mottled brown and gray, with distinct white spots", + "nape: light gray with a hint of brown", + "tail: banded gray and brown with white tips", + "throat: white, smooth, and unblemished" + ], + "ashy fronted bulbul": [ + "back: soft, grayish-brown feathers", + "beak: short, slightly curved, dark-colored", + "belly: light gray with subtle brown undertones", + "breast: pale grayish-white, smoothly blending with belly", + "crown: dark gray with slight brown hues", + "forehead: distinct ashy gray coloration, contrasting with crown", + "eyes: small, black, with a white eyering", + "legs: thin, dark gray, and strong", + "wings: grayish-brown with pale edges on feathers", + "nape: grayish-brown, blending with back", + "tail: long, grayish-brown, with faint white tips", + "throat: pale grayish-white, connecting to breast" + ], + "ashy headed babbler": [ + "back: dark olive-green feathers", + "beak: short, slightly curved, blackish-grey", + "belly: pale greyish-white plumage", + "breast: light grey feathers", + "crown: ashy-grey colored with slight crest", + "forehead: ashy-grey blending into crown", + "eyes: dark brown with thin white eyering", + "legs: long, slender, greyish-blue", + "wings: olive-green with blackish flight feathers", + "nape: ashy-grey, merging with crown and back", + "tail: long, olive-green with darker feathers towards the tip", + "throat: pale grey, slightly lighter than breast" + ], + "ashy headed goose": [ + "back: light gray feathers with dark streaks", + "beak: short, black, and slightly curved", + "belly: creamy white with grayish-brown speckles", + "breast: light gray with dark feather edges", + "crown: charcoal gray with slight crest", + "forehead: ashy gray blending into crown", + "eyes: dark with a subtle, white eye-ring", + "legs: orange-red and strong", + "wings: gray primaries with white-edged secondaries", + "nape: ashy gray, blending into back", + "tail: gray feathers with white tips", + "throat: pale gray, lighter than surrounding areas" + ], + "ashy headed green pigeon": [ + "back: olive-green feathers", + "beak: short, pale grayish-yellow", + "belly: light greenish-yellow plumage", + "breast: pale grayish-green feathers", + "crown: ashy gray feathers", + "forehead: ashy gray merging into the crown", + "eyes: dark brown with pale gray eye-ring", + "legs: reddish-pink with strong claws", + "wings: vibrant green feathers with darker primary feathers", + "nape: ashy gray smoothly transitioning into back", + "tail: long, green feathers with broad black band at the tip", + "throat: pale ashy-gray plumage" + ], + "ashy headed greenlet": [ + "back: olive green feathers", + "beak: thin, pointed and grayish-black", + "belly: pale yellowish-green", + "breast: yellow-green with ashy gray tones", + "crown: ashy gray with a hint of green", + "forehead: ashy gray fading to pale yellow", + "eyes: dark with a thin, pale eyering", + "legs: slender and grayish-black", + "wings: olive green with darker flight feathers", + "nape: olive green with ashy gray edges", + "tail: olive green and slightly forked", + "throat: ashy gray with a pale yellow center" + ], + "ashy headed laughingthrush": [ + "back: dark greyish-brown feathers", + "beak: short, curved, and black", + "belly: pale greyish-white underparts", + "breast: lighter grey with faint brown spots", + "crown: ashy-grey head plumage", + "forehead: smooth ashy-grey feathers", + "eyes: small, black, and alert", + "legs: long and dark grey", + "wings: dark brown with hints of green and blue", + "nape: ashy-grey with slight transition to back", + "tail: long, dark brown with subtle blue-green sheen", + "throat: pale greyish-white with light streaks" + ], + "ashy headed tyrannulet": [ + "back: soft gray feathers", + "beak: thin, pointed black beak", + "belly: white and streaked gray underparts", + "breast: pale gray with subtle streaks", + "crown: ash gray head with a slight crest", + "forehead: smooth ash gray", + "eyes: black, surrounded by light gray feathers", + "legs: long, thin, black legs", + "wings: gray with white wing bars", + "nape: ashy gray, continuous with crown", + "tail: grayish, slightly forked, and edged with white", + "throat: light gray, slightly paler than breast" + ], + "ashy throated chlorospingus": [ + "back: olive-green hue", + "beak: short, dark cone-shaped", + "belly: light gray", + "breast: grayish undertones", + "crown: dark gray", + "forehead: lighter gray", + "eyes: small, dark with white eyering", + "legs: thin, dark gray", + "wings: olive-green with gray edges", + "nape: grayish green", + "tail: relatively long, dark gray", + "throat: ashy-gray" + ], + "ashy throated parrotbill": [ + "back: grayish brown feathers", + "beak: short, thick, and curved", + "belly: soft, pale gray", + "breast: light gray with brownish streaks", + "crown: orange-brown with a black stripe", + "forehead: pale gray and slightly fluffy", + "eyes: small, dark, and round", + "legs: stout and grayish-pink", + "wings: rounded with grayish-brown feathers and white flight feathers", + "nape: pale gray with brownish tinge", + "tail: short and rounded, with grayish-brown feathers", + "throat: ashy gray fading to lighter gray" + ], + "ashy throated warbler": [ + "back: olive-green with faint streaking", + "beak: slender, dark grayish-brown", + "belly: pale lemon-yellow to white", + "breast: grayish-white with light streaks", + "crown: grayish-brown with subtle crest", + "forehead: slaty gray blending into crown", + "eyes: dark with pale buff eyering", + "legs: pinkish-gray", + "wings: dull olive-green with two yellow wing bars", + "nape: olive-brown with faint streaks", + "tail: dark olive with pale tips and white outermost feathers", + "throat: ashy gray with diffuse streaking" + ], + "asian barred owlet": [ + "back: light grayish-brown with distinct white markings", + "beak: small, sharp and light gray", + "belly: white with narrow brown bars", + "breast: white with dark brown horizontal streaks", + "crown: grayish-brown with white spots", + "forehead: whitish, barred with fine grayish-brown lines", + "eyes: large, round, and yellow", + "legs: feathered legs ending in sharp, yellow talons", + "wings: grayish-brown with white and dark brown bars", + "nape: grayish-brown with white speckles", + "tail: long with horizontal brown and white bands", + "throat: whitish with fine dark brown streaks" + ], + "asian brown flycatcher": [ + "back: olive-brown feathers", + "beak: short and pointed, black color", + "belly: off-white with a hint of brown", + "breast: light grayish-brown", + "crown: brownish-gray head", + "forehead: smooth grayish-brown", + "eyes: dark with a pale eye-ring", + "legs: dark grayish", + "wings: brown with blackish flight feathers", + "nape: olive-brown, blending with the back", + "tail: square-shaped, brownish-black", + "throat: pale grayish-white" + ], + "asian desert warbler": [ + "back: light brown with subtle streaks", + "beak: thin and pointy, dark gray", + "belly: pale sandy beige", + "breast: slightly darker beige with fine streaks", + "crown: brown streaked with black", + "forehead: blending from brown to light beige", + "eyes: small, dark, with narrow eyering", + "legs: long, slender, grayish beige", + "wings: sandy brown with black details and white edges", + "nape: brown with fine streaks", + "tail: brownish, forked with white outer feathers", + "throat: pale beige with faint streaks" + ], + "asian dowitcher": [ + "back: long vertical feathers in grayish-brown color", + "beak: long, straight, and slightly curved needle-like bill", + "belly: light grayish-white with minimal markings", + "breast: pale gray with fine dark streaks", + "crown: grayish-brown with a slightly darker central stripe", + "forehead: smooth grayish-brown", + "eyes: small and dark, surrounded by a white eye-ring", + "legs: long, slender, and greenish-yellow", + "wings: grayish-brown, with long primary feathers extending past the tail", + "nape: grayish-brown, transitioning to a paler shade towards the front", + "tail: short and rounded, grayish-brown with white feather tips", + "throat: white, blending with the pale gray breast" + ], + "asian emerald cuckoo": [ + "back: vibrant green with a slight sheen", + "beak: thin, slightly curved, dark-colored", + "belly: dull grayish-white", + "breast: shimmering green", + "crown: glossy deep green", + "forehead: bright green with iridescence", + "eyes: dark, round with a white eye-ring", + "legs: short and sturdy, dark gray", + "wings: iridescent green with dark wingtips", + "nape: rich emerald green", + "tail: long and graduated, with green central feathers and black-edged outer feathers", + "throat: glowing green with a hint of yellow" + ], + "asian emerald dove": [ + "back: iridescent green and bronze feathers", + "beak: short, slightly curved, light grey", + "belly: light mauve-grey with faint white streaks", + "breast: mix of green, copper, and purple shades", + "crown: radiant green extending to nape", + "forehead: shining green fading to grayish-white", + "eyes: medium-sized, dark brown surrounded by grey eye-ring", + "legs: short and sturdy, greyish-pink", + "wings: glossy green feathers with slight blue tones", + "nape: lustrous green transitioning to mauve-grey", + "tail: long and tapered, central dark green feathers with outer white-tipped feathers", + "throat: pale grey with a slight green sheen" + ], + "asian fairy bluebird": [ + "back: vivid blue, elongated feathers", + "beak: short and strong, black", + "belly: deep black, soft feathers", + "breast: bright blue, distinct from belly", + "crown: radiant blue, sleek feathers", + "forehead: vibrant blue, smooth coverage", + "eyes: small, dark with white eye-ring", + "legs: black, sturdy and slender", + "wings: blue, wide and long", + "nape: dazzling blue, continuous with crown", + "tail: lengthy, dark blue central feathers, with white outer edges", + "throat: jet black, leading to breast" + ], + "asian glossy starling": [ + "back: iridescent dark blue-green", + "beak: sharp, bright yellow", + "belly: glossy dark blue-black", + "breast: shiny dark blue-green", + "crown: metallic blue-green, smooth", + "forehead: radiant blue-black fusion", + "eyes: striking, metallic-ringed white", + "legs: long, thin, yellow-orange", + "wings: glistening blue-green feathers", + "nape: rich, metallic blue-green shimmer", + "tail: streamlined, glossy blue-black", + "throat: lustrous dark blue-green" + ], + "asian golden weaver": [ + "back: golden-yellow with streaked black markings", + "beak: sturdy, conical-shaped, and silver-gray", + "belly: bright yellow or golden-yellow", + "breast: vibrant golden-yellow", + "crown: radiant golden-yellow", + "forehead: gleaming golden-yellow", + "eyes: tiny, round, surrounded by dark eye-ring", + "legs: slender and dark gray", + "wings: golden-yellow with fine black streaks", + "nape: lustrous golden-yellow", + "tail: short with black and yellow feathers", + "throat: vibrant golden-yellow" + ], + "asian house martin": [ + "back: sleek, bluish-black plumage", + "beak: petite, black, and pointed", + "belly: clean, white colored", + "breast: white with slightly round shape", + "crown: dark, glossy-blue hue", + "forehead: smooth with bluish-black tint", + "eyes: small, black, and round", + "legs: short, black and thin", + "wings: long, pointed, and bluish-black", + "nape: glossy-blue with smooth feathers", + "tail: forked with distinctive white spots", + "throat: white, frames the black beak" + ], + "asian koel": [ + "back: black feathers with metallic green sheen", + "beak: sharp and blackish-grey", + "belly: light grey with faint black stripes", + "breast: dark grey with faint white streaks", + "crown: black with a glossy green shine", + "forehead: metallic black feathers", + "eyes: bright red or crimson-colored", + "legs: strong, greyish-black", + "wings: shiny black with a green-blue tinge", + "nape: black with a green sheen", + "tail: long, black feathers with a slight blue tinge", + "throat: pale grey with faint black stripes" + ], + "asian palm swift": [ + "back: sleek, glossy dark brown", + "beak: short, sharp, black", + "belly: light, whitish-grey", + "breast: pale greyish-brown", + "crown: dark brown, slightly crested", + "forehead: narrow, dark brown", + "eyes: round, black, beady", + "legs: short, concealed by feathers", + "wings: long, slender, scythe-like", + "nape: dark brown, blending into crown", + "tail: long, deeply forked, dark brown", + "throat: greyish-white, distinct contrast" + ], + "asian rosy finch": [ + "back: light grayish-brown with a rosier hue", + "beak: conical and dark gray", + "belly: pale pinkish-gray", + "breast: soft pinkish hue", + "crown: pale gray with pinkish tones", + "forehead: light pinkish-gray", + "eyes: small and dark", + "legs: dark grayish-brown", + "wings: grayish-brown with black streaks", + "nape: pinkish-gray with a slightly darker shade", + "tail: dark grayish-brown with white outer feathers", + "throat: pale pinkish-grey" + ], + "asian short toed lark": [ + "back: light brown with streaks", + "beak: small and pointed, pale pink", + "belly: off-white, soft underparts", + "breast: buff-colored with light streaks", + "crown: light brown with thin dark streaks", + "forehead: pale buffy-brown", + "eyes: small black orbs", + "legs: pinkish with sharp claws", + "wings: brown, short, with pale wing bars", + "nape: light brown with subtle streaks", + "tail: short and pointed, brown with white outer feathers", + "throat: off-white and unmarked" + ], + "asian stubtail": [ + "back: olive-brown feathers", + "beak: short and thin", + "belly: pale white with brown speckles", + "breast: creamy-white feathers", + "crown: rufous-colored and rounded", + "forehead: light brown plumes", + "eyes: black and beady", + "legs: short and pinkish", + "wings: dark brown with buff fringes", + "nape: olive-gray plumes", + "tail: short and stubby with two white outer feathers", + "throat: off-white with faint streaks" + ], + "asian woolly necked stork": [ + "back: dark greenish-black upper body feathers", + "beak: long, sharp, and yellowish", + "belly: white lower body feathers", + "breast: white plumage covering chest area", + "crown: slightly raised, black feathers on top of head", + "forehead: smooth black feathers on upper face", + "eyes: small and dark, surrounded by black feathering", + "legs: long, sturdy, and light pink", + "wings: large, black and white with a wide wingspan", + "nape: thick black feathers draping the back of the neck", + "tail: elongated black feathers tapering to a point", + "throat: white feathers extending from chin to breast" + ], + "asir magpie": [ + "back: glossy blue-black plumage", + "beak: sturdy, black, and slightly curved", + "belly: white with faint grey stripes", + "breast: clean white and lightly padded", + "crown: iridescent blue black feathers", + "forehead: blue-black, flat, and shiny", + "eyes: small, round, and black", + "legs: strong, slender, and grey", + "wings: iridescent blue-black with white patches", + "nape: shiny blue-black and well-feathered", + "tail: long, blue-black, and graduated", + "throat: white with a tinge of grey" + ], + "assam laughingthrush": [ + "back: olive-brown, slightly streaked plumage", + "beak: black, medium-length, slightly curved", + "belly: light grayish-brown with dark streaks", + "breast: gray-brown with darker streaks", + "crown: rufous-colored, slightly elevated crest", + "forehead: light grayish-brown with dark speckling", + "eyes: dark, small and well-defined", + "legs: pale orange, strong and slender", + "wings: olive-brown, rounded with white tips on secondaries", + "nape: olive-brown with dark streaks", + "tail: olive-brown, long and slightly forked", + "throat: white with fine dark streaks" + ], + "atherton scrubwren": [ + "back: olive-brown with faint streaks", + "beak: thin, slightly curved, dark", + "belly: white to pale buff", + "breast: off-white with grayish-brown streaks", + "crown: reddish-brown", + "forehead: pale, buff-tinged", + "eyes: large, dark with white eye-ring", + "legs: long, sturdy, and dark gray", + "wings: olive-brown with distinct bars", + "nape: reddish-brown with streaks", + "tail: long, slightly rounded, olive-brown", + "throat: white with fine gray streaks" + ], + "atiu swiftlet": [ + "back: sleek, narrow frame", + "beak: thin, sharp, and pointed", + "belly: pale, slim body", + "breast: white, lightly feathered", + "crown: dark, smoothly rounded", + "forehead: petite, slightly convex", + "eyes: small, round, black", + "legs: short, slender, gray", + "wings: long, aerodynamic, and pointed", + "nape: smooth, tapering neck", + "tail: square-ended, split in the center", + "throat: soft, light-colored feathers" + ], + "atlantic petrel": [ + "back: dark grey feathers", + "beak: black, long and hooked", + "belly: white underfeathers", + "breast: white and fluffy", + "crown: dark grey with slight streaking", + "forehead: greyish-white", + "eyes: dark with black edging", + "legs: pinkish-grey with webbed feet", + "wings: long and slender, dark grey with white markings", + "nape: dark grey feathers with white markings", + "tail: long, grey, and triangular", + "throat: white with a hint of grey" + ], + "atlantic puffin": [ + "back: black, sleek feathers", + "beak: large, colorful orange and grey", + "belly: white, rounded", + "breast: white, plump", + "crown: black, rounded head", + "forehead: black, protrudes slightly", + "eyes: dark, expressive orbs", + "legs: short, orange and webbed", + "wings: black, relatively small", + "nape: black, smooth curve to crown", + "tail: short, black feathers", + "throat: white, smooth transition to belly" + ], + "atlas flycatcher": [ + "back: smooth, slate-grey feathers", + "beak: short, pointed and black", + "belly: pure white with slight spotting", + "breast: white and well-rounded", + "crown: dark grey with a slight crest", + "forehead: lighter gray than the crown", + "eyes: medium-sized, black and alert", + "legs: thin, black, and strong", + "wings: elongated, gray with darker streaks", + "nape: gray, transitioning from crown to back", + "tail: long, fan-shaped, and gray", + "throat: white, blending into the breast" + ], + "atlas wheatear": [ + "back: blue-grey feathers with white streaks", + "beak: slender, black, and sharp-pointed", + "belly: buff to white hue with dark markings", + "breast: buff-colored with a gently sloping curve", + "crown: blue-grey coloration transitioning to a lighter shade", + "forehead: pale blue-grey with fine white streaks", + "eyes: dark, round with a distinctive white eye-ring", + "legs: long, slender, and black", + "wings: blue-grey feathers with white and black patterns", + "nape: blue-grey feathers transitioning to a lighter hue", + "tail: long, black with a white pattern at the base and white edges", + "throat: buff-colored with a darker collar separating it from the breast" + ], + "atoll fruit dove": [ + "back: greenish-bronze feathers", + "beak: short, hooked, grayish", + "belly: pale yellowish-green", + "breast: olive-green with hints of yellow", + "crown: glossy green", + "forehead: bright green", + "eyes: dark brown with gray eye-ring", + "legs: short, stout, grayish", + "wings: green with hints of bronze", + "nape: greenish-bronze", + "tail: greenish-bronze tipped with white", + "throat: pale yellow-green" + ], + "atoll starling": [ + "back: sleek, iridescent blue feathers", + "beak: slender, slightly curved black beak", + "belly: light blue-gray plumage", + "breast: shiny, deep blue feathers", + "crown: rich, blue-black cap on head", + "forehead: glossy, dark blue plumage", + "eyes: dark, alert eyes surrounded by thin black outline", + "legs: sturdy, dark gray legs with sharp claws", + "wings: elongated, iridescent blue feathers with dark tips", + "nape: smooth transition from the crown to blue-gray back plumage", + "tail: long, blue-black feathers with a graceful, narrow shape", + "throat: vibrant, cobalt blue plumage" + ], + "auckland islands shag": [ + "back: dark bluish-black feathers", + "beak: sturdy, pale blue-grey with hooked tip", + "belly: white with bluish-black undertail coverts", + "breast: white with a bluish-black cape", + "crown: black with glossy bluish sheen", + "forehead: black feathers, smooth and rounded", + "eyes: dark brown with bluish eye-ring", + "legs: pinkish-grey with webbed feet", + "wings: bluish-black with white underwing coverts", + "nape: glossy black with bluish sheen", + "tail: short and square, bluish-black feathers", + "throat: white with a black strap connecting to breast" + ], + "auckland islands teal": [ + "back: dark brown with subtle green sheen", + "beak: short, dark grayish-blue", + "belly: brownish-black with light barring", + "breast: dusky brown with faint barring", + "crown: dark brown, matching back color", + "forehead: slightly paler brown compared to crown", + "eyes: dark surrounded by pale brown feathers", + "legs: sturdy, dark grayish-blue", + "wings: brownish-black with teal-blue patch (speculum", + "nape: dark brown, blending with crown", + "tail: short, dark brown with black edges", + "throat: pale brown with small dark spots" + ], + "audouin gull": [ + "back: light grey-feathered upper body", + "beak: bright red-orange, slightly hooked", + "belly: clean white underside", + "breast: white with light grey speckles", + "crown: smooth pale grey head", + "forehead: pale grey, blending with crown", + "eyes: dark, surrounded by white feathers", + "legs: pinkish-red, medium length", + "wings: light grey topside with black tips", + "nape: white transitioning into grey", + "tail: white with a black outer edge", + "throat: soft white feathers, unmarked" + ], + "audubon shearwater": [ + "back: dark grayish-brown with white streaks", + "beak: slender, hooked and dark-colored", + "belly: white and smooth", + "breast: white with a blend of gray-brown feathers", + "crown: dark grayish-brown with a slightly rounded shape", + "forehead: grayish-brown with a smooth appearance", + "eyes: dark with a narrow white eye-ring", + "legs: webbed with dark coloration", + "wings: elongated, dark grayish-brown and slightly pointed at the tips", + "nape: grayish-brown with white speckled streaks", + "tail: long and tapered, dark grayish-brown with a slight fork", + "throat: white and smooth with some gray-brown markings" + ], + "augur buzzard": [ + "back: reddish-brown feathers with dark markings", + "beak: strong, hooked, and black", + "belly: creamy white with dark markings", + "breast: pale rufous with dark streaks", + "crown: dark brown feathers with paler edges", + "forehead: whitish feathers with dark streaks", + "eyes: piercing yellow color", + "legs: long and yellow with sharp talons", + "wings: broad and rounded, white underwing with black trailing edge", + "nape: dark brown feathers with paler edges", + "tail: long with broad dark bands and white base", + "throat: creamy white with dark streaks" + ], + "austral blackbird": [ + "back: dark iridescent feathers", + "beak: strong, sharp and black", + "belly: slightly lighter black feathers", + "breast: dark iridescent plumage", + "crown: smooth black feathers", + "forehead: continuous black feathers from crown to beak", + "eyes: bright, piercing with black pupils", + "legs: sturdy, dark grayish-black color", + "wings: sleek black feathers with powerful flight", + "nape: well-defined black feathers on the back of the neck", + "tail: elongated black feathers with slight outward curve", + "throat: black feathers transitioning to the breast area" + ], + "austral negrito": [ + "back: dark olive-brown with faint streaks", + "beak: small and sharp, blackish grey", + "belly: greyish-olive with paler undertones", + "breast: slightly lighter olive-brown", + "crown: black, slightly ruffled", + "forehead: black, narrow band", + "eyes: alert, dark beady", + "legs: thin and flexible, dark grey", + "wings: olive-brown with distinct black barring", + "nape: black, with slight olive-brown tint", + "tail: long and slim, dark olive-brown", + "throat: paler olive-grey, bordered by dark markings" + ], + "austral parakeet": [ + "back: vibrant green feathers", + "beak: short and pinkish-white", + "belly: pale bluish-green", + "breast: bright green plumage", + "crown: red forehead patch", + "forehead: green with red patch", + "eyes: dark brown surrounded by white featherless rings", + "legs: grey-blue scaly legs", + "wings: green with hints of blue", + "nape: deep green coloration", + "tail: long, greenish-blue feathers", + "throat: light green feathers" + ], + "austral pygmy owl": [ + "back: light brown with white speckles", + "beak: sharp, curved, and grayish-black", + "belly: creamy white with brown markings", + "breast: white and barred with beige-brown", + "crown: light brown with white dots", + "forehead: light brown with small white spots", + "eyes: large, round, and yellow", + "legs: yellowish-brown with sharp talons", + "wings: light brown with darker brown bars", + "nape: light brown with white spots", + "tail: brown with cream-tan bars", + "throat: white with a light brown patch" + ], + "austral rail": [ + "back: dark olive-brown feathers", + "beak: short, straight, yellow-brown", + "belly: grayish-white with black bars", + "breast: off-white with dark brown streaks", + "crown: dark brown, slightly raised", + "forehead: olive-brown, similar to back", + "eyes: small and black, surrounded by light-gray plumage", + "legs: sturdy, yellow-brown with long toes", + "wings: brown with grayish-white, banded feathers", + "nape: olive-brown, blending with the back", + "tail: short, squared, olive-brown with black bars", + "throat: off-white with brown speckles" + ], + "austral thrush": [ + "back: brownish-grey feathers with a sleek appearance", + "beak: short, straight, and yellowish with a slight curve", + "belly: light creamy-white with a touch of pale brown", + "breast: dark brown spotted pattern on a lighter brown background", + "crown: smooth brown feathers transitioning from the forehead", + "forehead: dark brown with slightly raised feathers", + "eyes: round, black, and shiny with a hint of white eye-ring", + "legs: long, slender, and yellowish-brown with strong claws", + "wings: brownish-grey, medium-sized and strong with darker flight feathers", + "nape: brown with a seamless merge from the crown", + "tail: medium length, brownish-grey with a slight fork and darker edges", + "throat: light pale brown with minimal pattern extending to the breast" + ], + "australasian bittern": [ + "back: greenish-brown camouflage pattern", + "beak: long, straight, yellowish-green", + "belly: light brown, streaked plumage", + "breast: pale brown with dark streaks", + "crown: dark brown with white speckles", + "forehead: pale cream with flecks of brown", + "eyes: small, black, and beady", + "legs: long, greenish-yellow, sturdy", + "wings: brown, streaked, and rounded", + "nape: dark brown and defined", + "tail: brown, short, and stubby", + "throat: whitish and lightly spotted" + ], + "australasian darter": [ + "back: long, slender, olive-brown", + "beak: long, thin, hooked at the tip", + "belly: white to pale cream", + "breast: chestnut, white-streaked", + "crown: dark brown, feathered", + "forehead: sloping, brown feathers", + "eyes: red, almond-shaped", + "legs: short, set far back, dark grey", + "wings: long, pointed, brown with white spots", + "nape: brown, long feathers", + "tail: long, fan-shaped, brown", + "throat: white, slight ruff of feathers" + ], + "australasian gannet": [ + "back: sleek and white with black-tipped wings", + "beak: long, sharp, and pale blue", + "belly: smooth and white", + "breast: white and rounded", + "crown: white with golden tinge", + "forehead: white and slightly raised", + "eyes: piercing blue, surrounded by subtle blue eyering", + "legs: blue-gray and webbed", + "wings: narrow and white with black tips", + "nape: golden-yellow and elongated", + "tail: tapered, white with black edging", + "throat: smooth and white with hints of yellow" + ], + "australasian grass owl": [ + "back: light brown with white speckles", + "beak: short, sharp, and grayish-black", + "belly: white with light brown spots", + "breast: white with darker brown spots", + "crown: light brown with dark markings", + "forehead: light brown with dark streaks", + "eyes: large, dark, and distinctively ringed", + "legs: long, feathered, and light brown", + "wings: wide with blackish tips, patterned with white, light brown and gray tones", + "nape: light brown with dark markings", + "tail: long, rounded with distinct barring patterns", + "throat: white with light brown speckles" + ], + "australasian grebe": [ + "back: olive to dark brown plumage", + "beak: short, pointed, whitish-yellow", + "belly: white, contrasting with dark sides", + "breast: reddish-brown with grayish streaks", + "crown: black, extending to below eyes", + "forehead: black, continuous with the crown", + "eyes: small, bright red", + "legs: short, positioned far back, greenish-yellow", + "wings: short, brownish-gray", + "nape: dark brown, contrasts with lighter throat", + "tail: small, stubby, brownish-black in color", + "throat: white or pale gray, extending to sides of face" + ], + "australasian shoveler": [ + "back: dark brown with light feather edging", + "beak: long, wide, and spoon-shaped", + "belly: white with a slight grayish tint", + "breast: mottled chestnut and white", + "crown: dark brown, fading to lighter brown on forehead", + "forehead: lighter brown transitioning from the crown", + "eyes: dark and slightly oval-shaped", + "legs: orange or yellowish, webbed feet", + "wings: blue-gray speculum bordered by white", + "nape: dark brown, slightly lighter than the crown", + "tail: short and pointed, dark brown with light feather tips", + "throat: pale buff with light mottling" + ], + "australasian swamphen": [ + "back: blue-black feathers with green sheen", + "beak: red and robust, slightly curved", + "belly: pale blue-grey plumage", + "breast: dark blue-violet feathers", + "crown: black with slight purplish gloss", + "forehead: red frontal shield, extending to bill", + "eyes: bright red with alert expression", + "legs: long, orange-red in color", + "wings: blue-black, short and rounded", + "nape: rich purple-blue feathers", + "tail: short and black, flicked upwards", + "throat: dark blue-violet plumage" + ], + "australian brushturkey": [ + "back: dark-brown, elongated feathers", + "beak: short, strong, curved beak", + "belly: dull black, tufted underfeathers", + "breast: dark brown, semi-fluffed plumage", + "crown: grey to black, slight crest", + "forehead: dark feathers extending above eyes", + "eyes: bright yellow to orange-yellow", + "legs: strong, dark colored with strong scales", + "wings: dark brown, broad-feathered, rounded tips", + "nape: brownish-black, long feathers, slightly arched", + "tail: fan-shaped, black-brown, short and broad", + "throat: bright yellow to red wattle, pendulous" + ], + "australian bustard": [ + "back: light brown with thin, darker stripes", + "beak: relatively large, grayish-brown", + "belly: whitish, with sparse spots or streaks", + "breast: light brown and mottled", + "crown: grayish, feathery crest", + "forehead: subtly distinguished from the crown", + "eyes: dark, with a thin gray area around them", + "legs: long, strong, and grayish-brown", + "wings: brown and gray with speckled patterns", + "nape: lighter shade of brown than the back", + "tail: brownish-gray, with a wide, dark band at the tip", + "throat: pale gray, extending down to the breast" + ], + "australian crake": [ + "back: dark brown with streaks", + "beak: slim, straight, and black", + "belly: off-white with black markings", + "breast: grey-brown with faint stripes", + "crown: dark brown with white streaks", + "forehead: pale brown, blends with crown", + "eyes: small, beady, black", + "legs: long, slender, yellowish-green", + "wings: brown with white streaks", + "nape: grey-brown, connects to crown", + "tail: short, dark brown with pale tips", + "throat: pale, off-white color" + ], + "australian fairy tern": [ + "back: light grey feathers, sleek and smooth", + "beak: long, slender, and slightly curved, with a dark tip", + "belly: white, with soft plumage", + "breast: white and fluffy, gently curved", + "crown: pale grey, smoothly round-shaped", + "forehead: white, creating a distinct contrast against the feathers on the crown", + "eyes: black, round and bright, with a thin, black stripe extending from the eye to the nape", + "legs: slender, orange-red with webbed feet", + "wings: light grey, long, and pointed, with white-tipped secondary feathers", + "nape: light grey, blending smoothly into the crown and back feathers", + "tail: forked, with white feathers and pale grey outer edges", + "throat: white, with soft, delicate feathers" + ], + "australian hobby": [ + "back: grayish-brown upper body feathers", + "beak: small, curved, hook-like tip", + "belly: off-white with rufous streaks", + "breast: light cream with fine horizontal banding", + "crown: dark, well-defined, thin crest", + "forehead: slightly lighter gray-brown than back", + "eyes: intense, yellow-ringed, dark pupils", + "legs: long, slender, yellow-orange", + "wings: elongated, pointed, powerful", + "nape: grayish-brown, similar to back", + "tail: narrow, square-ended, barred", + "throat: creamy-white, blending into breast" + ], + "australian ibis": [ + "back: sleek, dark feathers", + "beak: long, slender, and curved", + "belly: white and cream feathers", + "breast: white and fluffy", + "crown: black and featherless", + "forehead: smooth black, lacking feathers", + "eyes: small and dark", + "legs: long, thin, and black", + "wings: black feathers with white tips", + "nape: white, elongated feathers", + "tail: small, dark, and fan-shaped", + "throat: thin, black feathers" + ], + "australian king parrot": [ + "back: vibrant green feathers", + "beak: strong, reddish-orange curve", + "belly: deep green plumage", + "breast: bright red coloring", + "crown: red feathers with a faint blue tint", + "forehead: red feathers transitioning to green", + "eyes: small, dark with a white eye-ring", + "legs: greyish-brown, sturdy", + "wings: long, green feathers with blue markings", + "nape: green feathers meeting red on the head", + "tail: long, green feathers with blue tips", + "throat: bright red plumage" + ], + "australian logrunner": [ + "back: brownish-grey with streaks", + "beak: short, straight, and sharp", + "belly: pale and heavily streaked", + "breast: warm brown with small dark spots", + "crown: dull reddish-brown with black feathers", + "forehead: reddish-brown meeting the beak", + "eyes: small and black, surrounded by pale white", + "legs: sturdy, yellow-brown with strong claws", + "wings: brownish-grey, streaked with dark markings", + "nape: reddish-brown, slightly darker than the crown", + "tail: long and dark, with brown and white bars", + "throat: pale grey with faint streaks" + ], + "australian magpie": [ + "back: black and white plumage", + "beak: strong, pointed, black", + "belly: white feathering", + "breast: black and white plumage", + "crown: black feathered head", + "forehead: white patch above beak", + "eyes: small, dark, and round", + "legs: strong, dark grey", + "wings: black with white patches", + "nape: black with white stripe", + "tail: black, fan-shaped", + "throat: black feathers" + ], + "australian masked owl": [ + "back: strong and muscular, light brown with dark markings", + "beak: sharp, hooked, and grayish-black", + "belly: creamy-white with brown spots and dark streaks", + "breast: buff-white with dark brown streaks and spots", + "crown: dark brown with light feathers creating a \"mask", + "forehead: light brown blending into the facial mask", + "eyes: large, dark, and piercing, surrounded by white feathers", + "legs: long, powerful, and feathered with buff-white color", + "wings: broad and rounded, light brown with dark mottling", + "nape: light brown with dark streaks blending into the back", + "tail: short, square-shaped, and barred with dark brown and buff", + "throat: soft white transitioning to buff-white color on the breast" + ], + "australian owlet nightjar": [ + "back: grayish-brown, finely mottled with white speckles", + "beak: short, wide, and beige colored", + "belly: cream-colored with pale brown markings", + "breast: light brown with white speckles and spots", + "crown: mottled gray-brown with faint white markings", + "forehead: pale grayish-brown merging into the crown", + "eyes: large, dark, and deeply set", + "legs: short, feathered, and beige colored", + "wings: gray-brown, mottled with white speckles", + "nape: pale-mottled brown blending into back and crown", + "tail: tapered, gray-brown with faint white markings", + "throat: creamy white with light brown speckles" + ], + "australian painted snipe": [ + "back: brown and black patterned feathers", + "beak: long, slender, brownish", + "belly: creamy white with small brown spots", + "breast: beige with brown barring", + "crown: dark brown with a cream stripe", + "forehead: creamy white with some speckling", + "eyes: dark, outlined in white", + "legs: long and greenish-yellow", + "wings: brown and black with patches of white", + "nape: dark brown with light streaks", + "tail: short, brown with white tips", + "throat: creamy white and unblemished" + ], + "australian pelican": [ + "back: light grey plumage, slightly darker on upperparts", + "beak: long, large, pale pink bill with a hook at the tip", + "belly: white feathers, slightly creamy in tone", + "breast: white plumage with a hint of pale grey", + "crown: white feathers blending to light grey on the back of the head", + "forehead: smooth white feathers leading to the beak", + "eyes: dark brown with a subtle yellow ring around the iris", + "legs: short, thick, and greyish-pink with webbed feet", + "wings: light grey, tipped with black primary and secondary feathers", + "nape: gently sloping, continuous curve from head to back, with white to light grey feathers", + "tail: short, squared-off shape with light grey feathers", + "throat: expandable pouch, pale pink and grey, attached to the lower bill" + ], + "australian pipit": [ + "back: light brown with subtle streaks", + "beak: slender, straight, and dark", + "belly: off-white, faintly streaked", + "breast: buff or pale brown with streaks", + "crown: light brown with darker streaks", + "forehead: pale brown, merging with crown", + "eyes: dark, sharp gaze", + "legs: long, slender, and pinkish-brown", + "wings: light brown with dark streaks and bars", + "nape: pale brown, blending with crown", + "tail: long, dark brown with white outer feathers", + "throat: pale, off-white, and unmarked" + ], + "australian pratincole": [ + "back: brownish-grey feathers", + "beak: short, straight, and black", + "belly: pale whitish-grey", + "breast: light brown with streaks", + "crown: dark brown with a slight crest", + "forehead: whitish-grey blending towards crown", + "eyes: dark, surrounded by a thin white eyering", + "legs: long, thin and pale grey", + "wings: elongated, brownish-grey with white wingbar", + "nape: dark brown, distinctly separate from lighter back", + "tail: long, tapering with white outer feathers", + "throat: white with clearly-defined boundaries" + ], + "australian raven": [ + "back: dark glossy black feathers", + "beak: large, sharply curved, black", + "belly: slightly lighter black plumage", + "breast: smooth, dark black feathers", + "crown: slightly raised, glossy black feathers", + "forehead: smooth black feather transition to beak", + "eyes: small, round, intense white irises", + "legs: strong, long, black, scaled", + "wings: broad, elongated, black feathers", + "nape: continuous glossy black plumage", + "tail: fan-shaped, long black feathers", + "throat: slightly puffed, dark black feathers" + ], + "australian reed warbler": [ + "back: olive-brown with fine streaks", + "beak: long, slender, and slightly curved", + "belly: pale buff and white", + "breast: buff-colored with faint streaks", + "crown: olive-brown with a pale central stripe", + "forehead: slightly paler olive-brown", + "eyes: small and dark", + "legs: dull pinkish-brown", + "wings: olive-brown, slightly rounded", + "nape: olive-brown with fine streaks", + "tail: olive-brown, medium length, slightly forked", + "throat: pale buff-white" + ], + "australian ringneck": [ + "back: bright green feathers with blue edging", + "beak: strong and curved black beak", + "belly: pale green or yellow-green hues", + "breast: green-yellow plumage with light blue-gray band", + "crown: vibrant green with a hint of blue", + "forehead: green shades blending into crown", + "eyes: dark brown, surrounded by green-blue feathers", + "legs: gray with strong, sharp claws", + "wings: bright green with blue and yellow accents", + "nape: green feathers transitioning to yellow", + "tail: long green-blue feathers with yellow tips", + "throat: yellow-green plumage with a hint of blue" + ], + "australian shelduck": [ + "back: rich chestnut brown with fine barring", + "beak: dark grayish-black and thick", + "belly: tawny beige and unmarked", + "breast: bold black on neck and upper chest", + "crown: dark brown with slight green iridescence", + "forehead: paler brown with a slight crest", + "eyes: dark brown with white surrounding", + "legs: grayish-black with webbed feet", + "wings: brownish-grey with striking white flight feathers", + "nape: dark brown, blending with the crown", + "tail: short and fan-shaped, with dark tips", + "throat: creamy white patch at the base of the neck" + ], + "australian swiftlet": [ + "back: sleek and streamlined, shades of gray-brown", + "beak: small, slightly curved, black", + "belly: pale gray, soft feathers", + "breast: light gray with a hint of white", + "crown: darker gray-brown, compact feathers", + "forehead: smooth, gray-brown merging with crown", + "eyes: small, black, alert", + "legs: short, black, strong for perching", + "wings: long, slender, powerful for swift flight", + "nape: gray-brown, smooth transitioning to back", + "tail: square-shaped, gray, with white tips", + "throat: lighter gray, merging with breast" + ], + "australian yellow white eye": [ + "back: olive-green and smooth", + "beak: slender, dark, and slightly curved", + "belly: pale yellow and fluffy", + "breast: bright yellow and rounded", + "crown: olive-green with a hint of yellow", + "forehead: yellow with white ring around the eyes", + "eyes: black and beady with white rings", + "legs: slim, grayish-blue, and sturdy", + "wings: olive-green with white edges", + "nape: olive-green and slightly curved", + "tail: olive-green, slightly forked, and long", + "throat: vibrant yellow and smooth" + ], + "ayacucho antpitta": [ + "back: olive-brown feathers with streaks", + "beak: short, hooked, and black", + "belly: creamy-yellow with light streaks", + "breast: pale gray with fine white bars", + "crown: rufous-tinged with black streaks", + "forehead: pale gray with fine white markings", + "eyes: dark brown with white eye-ring", + "legs: long and pinkish-brown", + "wings: olive-brown with faint wing bars", + "nape: same as the crown", + "tail: olive-brown with dark bands", + "throat: pale gray with thin white marks" + ], + "ayacucho thistletail": [ + "back: brownish-gray and streaked", + "beak: long, thin, and curved", + "belly: pale gray and fluffy", + "breast: light gray with faint streaks", + "crown: brownish-gray with subtle patterns", + "forehead: brownish-gray and smooth", + "eyes: small and dark, surrounded by pale eye-ring", + "legs: slender and brownish", + "wings: brownish-gray with light barring", + "nape: pale gray with faint streaks", + "tail: long, narrow, and pointed with brownish-gray feathers", + "throat: whitish-gray and smooth" + ], + "ayeyarwady bulbul": [ + "back: olive-green with a slight sheen", + "beak: short, sharp, and black", + "belly: pale yellowish-white", + "breast: light yellow with faint streaks", + "crown: black with a small crest", + "forehead: black with a narrow white band", + "eyes: dark brown with a thin white eyering", + "legs: grayish-black and slender", + "wings: olive-green with yellowish edging", + "nape: olive-green with thin white streaks", + "tail: long and olive-brown with yellow-tipped feathers", + "throat: white with faint black streaks" + ], + "ayres hawk eagle": [ + "back: dark brown feathers with narrow white edges", + "beak: sharp, powerful black hook, yellow cere", + "belly: white with black longitudinal streaks", + "breast: white with dark brown vertical barring", + "crown: dark brown, slightly crested feathers", + "forehead: dark brown feathers merging with the crown", + "eyes: piercing yellow orbs encircled by dark feathers", + "legs: strong yellow legs with sharp black talons", + "wings: broad, dark brown feathers with distinctive white bands", + "nape: dark brown feathers blending with back and crown", + "tail: long, dark brown feathers with white banding", + "throat: white feathers transitioning to breast markings" + ], + "azores bullfinch": [ + "back: olive-green with shades of gray", + "beak: short, stout, and pale", + "belly: light gray with a hint of yellow", + "breast: grayish with a touch of orange-yellow", + "crown: slate-gray, slightly darker than the wings", + "forehead: dark gray fading into lighter shades", + "eyes: small, dark, encircled with faint eyering", + "legs: pale pinkish-gray with short, sturdy toes", + "wings: dark slate-gray with white streaks", + "nape: olive-gray, slightly lighter than the back", + "tail: long and dark gray with white edges", + "throat: light gray, contrasting with the darker head" + ], + "aztec rail": [ + "back: vibrant green feathers", + "beak: sharp, pointed, yellowish", + "belly: light brown plumes", + "breast: reddish-brown plumage", + "crown: adorned with emerald feathers", + "forehead: marked with iridescent green", + "eyes: bright, probing, dark-colored", + "legs: strong, slender, yellowish", + "wings: adorned with teal and olive patterns", + "nape: smooth transition from crown to back", + "tail: fanned, chestnut-brown feathers", + "throat: lighter brown with scattered markings" + ], + "aztec thrush": [ + "back: dark brown with faint streaks", + "beak: light yellowish, slightly curved", + "belly: pale brown with spots", + "breast: light brown with dark speckles", + "crown: dark brown with light streaks", + "forehead: brownish with slight spots", + "eyes: black with white eyering", + "legs: slender greyish-brown", + "wings: dark brown with white markings", + "nape: brown with light streaks", + "tail: long, brown with white edges", + "throat: light brown with small spots" + ], + "azure gallinule": [ + "back: vibrant bluish-purple plumage", + "beak: bright red with yellow tip", + "belly: white with light blue markings", + "breast: pale blue-gray feathers", + "crown: deep blue with slight green sheen", + "forehead: bright blue with white streaks", + "eyes: dark brown, encircled by a blue eyering", + "legs: striking red-orange with elongated toes", + "wings: blue-green with contrasting white edge", + "nape: rich, glossy purplish-blue feathers", + "tail: iridescent blue with white undertail coverts", + "throat: soft white to pale gray feathers" + ], + "azure kingfisher": [ + "back: bright blue feathers with hints of turquoise", + "beak: long, thin, black and slightly curved", + "belly: orange-rust color with white flanks", + "breast: vivid orange fading to white as it nears the belly", + "crown: azure blue extending from forehead to nape", + "forehead: vibrant azure blue, continuing to crown", + "eyes: round, black, and alert framed by blue feathers", + "legs: short, sturdy with translucent grey color", + "wings: iridescent azure blue with black feather tips", + "nape: striking azure blue merging with the crown", + "tail: long and blue, with broad black feather bars", + "throat: white contrasting with the vibrant orange breast" + ], + "azure roller": [ + "back: vibrant blue feathers", + "beak: strong, black, slightly curved", + "belly: soft, light blue plumage", + "breast: bright azure feathers", + "crown: radiant blue, sleek head", + "forehead: shimmering blue plumage", + "eyes: sharp, black, beady", + "legs: slender, dark, and sturdy", + "wings: vibrant blue with dark flight feathers", + "nape: silky azure feathers", + "tail: long, slightly forked, blue feathers", + "throat: delicate, light blue plumage" + ], + "azure crested flycatcher": [ + "back: bluish-gray feathers", + "beak: black, slightly hooked", + "belly: pale yellowish-white", + "breast: light gray-blue", + "crown: bright azure crest", + "forehead: grayish-blue with a slight tint of blue", + "eyes: dark, beady with black eye-ring", + "legs: dark gray, thin and strong", + "wings: grayish-blue with white accents", + "nape: bluish-gray, merging into crest", + "tail: gray-blue with white edges", + "throat: pale gray with hint of blue" + ], + "azure crowned hummingbird": [ + "back: iridescent green and blue with a metallic sheen", + "beak: long, slender, and straight black", + "belly: pale gray with a slight green tint", + "breast: shimmering green-blue transitioning to gray", + "crown: vibrant azure blue with iridescent feathers", + "forehead: bright green and blue hues blending into the crown", + "eyes: small, dark, and alert", + "legs: short, thin, and black", + "wings: iridescent green and blue, fast-flying", + "nape: green-blue feathers transitioning to gray on the neck", + "tail: forked with shimmery green-blue outer feathers and gray inner feathers", + "throat: dazzling green-blue, glossy plumage" + ], + "azure hooded jay": [ + "back: vibrant blue feathers", + "beak: strong, black, slightly curved", + "belly: soft white with gray-blue streaks", + "breast: bright white and blue mixed feathers", + "crown: deep azure-blue with a hood-like appearance", + "forehead: striking azure-blue", + "eyes: black, piercing gaze", + "legs: sturdy, dark gray", + "wings: gradient of blues with dark blue as primary color", + "nape: deep blue hood-like feathers", + "tail: long, streamer-like feathers in a vibrant blue", + "throat: white with subtle blue streaks" + ], + "azure naped jay": [ + "back: vibrant blue feathers", + "beak: sharp, black, hook-shaped", + "belly: soft gray-white plumage", + "breast: sleek bluish-gray feathers", + "crown: bright azure-blue crest", + "forehead: vivid blue plumage", + "eyes: dark, piercing gaze", + "legs: sturdy black legs with sharp claws", + "wings: brilliant blue with black flight feathers", + "nape: striking azure-blue hue", + "tail: long, blue, and black-tipped", + "throat: smooth blue-gray feathers" + ], + "azure rumped parrot": [ + "back: vibrant green feathers", + "beak: strong, hooked, and pale", + "belly: soft turquoise hue", + "breast: bright turquoise feathers", + "crown: deep blue and green", + "forehead: lighter shade of green", + "eyes: round, dark, and expressive", + "legs: sturdy, scaly, and grayish", + "wings: long, green and blue feathers", + "nape: subtle deep blue hue", + "tail: wide green and blue feathers", + "throat: pale green feathers" + ], + "azure rumped tanager": [ + "back: vibrant azure blue", + "beak: short and slender black", + "belly: pale blue-gray", + "breast: light blue fading to gray", + "crown: dazzling blue crown", + "forehead: bright azure blue", + "eyes: small black bead-like", + "legs: strong dark grey", + "wings: deep blue with black edges", + "nape: brilliant blue", + "tail: long, tapered, blue-black", + "throat: soft gray-blue" + ], + "azure shouldered tanager": [ + "back: vibrant blue with greenish-yellow highlights", + "beak: sleek black and slightly curved", + "belly: bright yellow with contrasting blue flanks", + "breast: rich yellow fading into blue on the sides", + "crown: deep azure blue with a glossy finish", + "forehead: bright blue smoothly transitioning into the crown", + "eyes: dark and beady, surrounded by blue feathers", + "legs: slim black with strong grip", + "wings: eye-catching mix of blue, green, and yellow feathers", + "nape: smooth azure feathers blending into the back", + "tail: elongated blue feathers with yellow accents", + "throat: bright yellow, complementing the breast area" + ], + "azure winged magpie": [ + "back: vibrant blue feathers", + "beak: short, black, and sharp", + "belly: soft grey plumage", + "breast: pale grey feathers", + "crown: sleek blue crest", + "forehead: blue plumes blending into black eye-stripe", + "eyes: small and alert, with black pupils", + "legs: slim, grey, and perching-ready", + "wings: striking blue with black edges", + "nape: blue-grey plumage", + "tail: long, blue and black-striped", + "throat: light grey with smooth feathers" + ], + "babbling starling": [ + "back: shimmering, iridescent green hues", + "beak: small, pointed, and yellow", + "belly: light buff color with fine streaks", + "breast: pale brown with faint speckles", + "crown: dark, glossy feathers with a metallic sheen", + "forehead: slightly lighter than the crown, with fine streaking", + "eyes: round, black, and expressive", + "legs: slender, pale pinkish-orange", + "wings: long, pointed, with iridescent green and purple feathers", + "nape: glossy black with a metallic green-purple sheen", + "tail: short, square-tipped, with iridescent purplish-black feathers", + "throat: white with fine, dark streaks" + ], + "bachman sparrow": [ + "back: light brown with dark streaks", + "beak: short and conical, pale grayish-brown", + "belly: pale grayish-white", + "breast: light gray with subtle darker streaks", + "crown: rusty brown with a pale central stripe", + "forehead: pale grayish-white", + "eyes: small and black, surrounded by light brown feathers", + "legs: pale pinkish-brown with sharp claws", + "wings: light brown with darker brown streaks and white wingbars", + "nape: pale grayish-brown with darker streaks", + "tail: short and notched, with brown outer feathers and grayish-white central feathers", + "throat: pale grayish-white, uninterrupted by streaks" + ], + "baer pochard": [ + "back: olive-brown upper region", + "beak: greyish-blue with a black tip", + "belly: pale whitish-grey", + "breast: reddish-brown feathers", + "crown: dark brown head", + "forehead: rounded with dark feathers", + "eyes: dark brown with a pale eye ring", + "legs: greyish-blue with webbed feet", + "wings: olive-brown with white markings", + "nape: dark brown blending into back", + "tail: short and olive-brown", + "throat: reddish-brown transitioning to belly" + ], + "baglafecht weaver": [ + "back: olive-green with streaks", + "beak: black, conical shape", + "belly: yellowish-white, fluffy", + "breast: yellowish, slightly streaked", + "crown: yellow or red, depending on subspecies", + "forehead: bright yellow or red", + "eyes: dark, surrounded by pale ring", + "legs: grayish, slender", + "wings: black with yellow or greenish edges", + "nape: olive-green, fine streaks", + "tail: dark, with lighter outer feathers", + "throat: yellowish, sometimes streaked" + ], + "bagobo robin": [ + "back: dark brown upper feathers", + "beak: strong, slightly curved, yellow color", + "belly: white/grayish underparts", + "breast: pale chestnut or orange-red feathers", + "crown: smooth brown top of the head", + "forehead: slightly lighter brown feathers above the eyes", + "eyes: dark, alert eyes with white eye-ring", + "legs: sturdy, greyish-blue legs and feet", + "wings: rich brown with lighter streaks on coverts", + "nape: deep brown back of the head and neck", + "tail: dark brown, slightly forked tail feathers", + "throat: creamy white with faint orange tinge" + ], + "bahama mockingbird": [ + "back: brownish-gray feathers", + "beak: long and dark", + "belly: pale white with streaks", + "breast: subtly spotted", + "crown: grayish-brown with streaks", + "forehead: grayish-brown with streaks", + "eyes: dark with white eye-ring", + "legs: dark and slender", + "wings: brownish-gray with faint wing bars", + "nape: grayish-brown with streaks", + "tail: long and dark with white patches", + "throat: pale white with streaks" + ], + "bahama nuthatch": [ + "back: olive-brown feathers", + "beak: thin, grayish-black", + "belly: off-white shade", + "breast: pale yellow underparts", + "crown: blue-gray with fine streaks", + "forehead: smooth blue-gray", + "eyes: dark, almond-shaped", + "legs: slender, grayish-black", + "wings: blue-gray with white-edged feathers", + "nape: blue-gray with fine streaks", + "tail: long, blue-gray with white outer feathers", + "throat: off-white with a hint of pale yellow" + ], + "bahama oriole": [ + "back: black feathers with a slight sheen", + "beak: long, thin, and black", + "belly: bright yellow plumage", + "breast: striking golden-yellow feathers", + "crown: glossy black with a smooth appearance", + "forehead: shiny black feathers", + "eyes: dark with a white eye-ring", + "legs: thin and black", + "wings: black with a hint of a blue sheen", + "nape: black with a seamless transition from the crown", + "tail: black, long, and slightly forked", + "throat: vibrant yellow plumage" + ], + "bahama swallow": [ + "back: iridescent blue-black feathers", + "beak: short, slightly curved black beak", + "belly: white underbelly with light blue tinge", + "breast: light blue chest with fine streaks", + "crown: rich cobalt blue head feathers", + "forehead: deep blue-black bordering the beak", + "eyes: dark brown with white eye-ring", + "legs: slim, grayish-black legs with sharp claws", + "wings: long, pointed wings with blue and black feathers", + "nape: glossy blue-black nape connecting to the back", + "tail: forked streamer-like tail feathers with a blue-black hue", + "throat: pale blue feathers extending to the upper breast" + ], + "bahama warbler": [ + "back: yellowish-olive with subtle streaks", + "beak: thin, sharp, and black", + "belly: pale yellow with light streaks", + "breast: bright yellow with narrow dark streaks", + "crown: grayish-olive with faint stripes", + "forehead: bright yellow blending into the crown", + "eyes: dark, surrounded by a faint yellow eye-ring", + "legs: long, slender, and blackish-gray", + "wings: dark brown with two white wing bars", + "nape: yellowish-olive, blending with the back", + "tail: dark brown with white tips on outer feathers", + "throat: vibrant yellow with no markings" + ], + "bahama woodstar": [ + "back: vibrant metallic bronze-green", + "beak: long, straight, black and slender", + "belly: pale gray with a white undertone", + "breast: pinkish-purple iridescent feathers", + "crown: vibrant iridescent green", + "forehead: bright magenta-pink band", + "eyes: small, dark, and alert", + "legs: short, light gray with curved claws", + "wings: iridescent green with rapid fluttering motion", + "nape: metallic bronze-green with iridescent hues", + "tail: spread fan-like, with dark feathers and white tips", + "throat: bright, shimmering magenta-pink patch" + ], + "bahama yellowthroat": [ + "back: olive-green with faint black streaks", + "beak: thin, pointy, black", + "belly: pale yellow with light streaks", + "breast: bright yellow with faint black markings", + "crown: bold black stripe with yellow patches", + "forehead: vibrant yellow, contrasting crown", + "eyes: black with white eye-ring", + "legs: strong, light pinkish-grey", + "wings: olive-green with thin white bars", + "nape: olive-green, blending into back", + "tail: olive-brown with broad white corners", + "throat: vibrant yellow, extending to breast" + ], + "bahia antwren": [ + "back: olive-brown with subtle streaks", + "beak: relatively short and stout, blackish color", + "belly: light grayish with a hint of yellow", + "breast: grayish-white blending into the belly", + "crown: dark gray with lighter edges", + "forehead: slightly lighter gray than the crown", + "eyes: dark with a faint white eye ring", + "legs: pale brownish gray, slender", + "wings: olive-brown with black and white bars", + "nape: olive-brown, smoothly transitioning from the crown", + "tail: long and dark with white tips on outer tail feathers", + "throat: pale gray, connecting to the breast" + ], + "bahia spinetail": [ + "back: olive-brown color with streaks", + "beak: slender, slightly downcurved", + "belly: pale yellowish-white", + "breast: buff-tinged color", + "crown: rufous with pale streaks", + "forehead: brownish-red with streaks", + "eyes: dark brown with pale eye-ring", + "legs: long and slender, grayish-black", + "wings: olive-brown with faint bars", + "nape: rufous-brown with streaks", + "tail: long and graduated, rufous with black barring", + "throat: pale buffy-white" + ], + "bahia tapaculo": [ + "back: dark gray with a brownish tinge", + "beak: short, sturdy, and black", + "belly: lighter gray with white flecks", + "breast: gray with subtle brown spots", + "crown: dark gray, slightly darker than the back", + "forehead: gray with a slight brownish hue", + "eyes: black and small, with a thin white eyering", + "legs: long, slender, and pale pinkish-gray", + "wings: dark gray with brownish edges", + "nape: gray, slightly lighter than the crown", + "tail: long and dark gray, with a slight brownish hue", + "throat: pale gray with white flecks" + ], + "bahia tyrannulet": [ + "back: olive-green with subtle streaks", + "beak: thin, grayish-black", + "belly: pale yellow with faint streaks", + "breast: light yellowish-green", + "crown: olive-green with faint streaks", + "forehead: pale yellow-green", + "eyes: dark brown with white eye-ring", + "legs: grayish-brown", + "wings: olive-green with two yellowish wing-bars", + "nape: olive-green, slightly streaked", + "tail: long, greenish-brown with white feather tips", + "throat: pale yellow" + ], + "bahia wagtail tyrant": [ + "back: olive-brown feathers", + "beak: small black hook-shaped", + "belly: creamy white plumage", + "breast: pale yellow feathers", + "crown: grayish-black cap", + "forehead: whitish-gray coloring", + "eyes: dark brown with pale eye-ring", + "legs: slender grayish-blue", + "wings: olive-brown with white edges", + "nape: olive-brown plumage", + "tail: long black with white outer feathers", + "throat: creamy white feathers" + ], + "bahian nighthawk": [ + "back: sleek, dark feathers", + "beak: short, black, hooked", + "belly: light, spotted pattern", + "breast: pale-grayish with streaks", + "crown: dark with white spots", + "forehead: dark and narrow", + "eyes: large, dark, and round", + "legs: long, thin, and gray", + "wings: pointed, patterned with bars", + "nape: dark with faint streaks", + "tail: long with black and white bands", + "throat: light gray with dark streaks" + ], + "baikal bush warbler": [ + "back: olive-brown with faint streaks", + "beak: slim, sharp, and dark-colored", + "belly: creamy white with light brown flanks", + "breast: pale grayish-white with faint streaks", + "crown: olive-brown and slightly rounded", + "forehead: pale olive-brown, blending into the crown", + "eyes: small, dark, and alert", + "legs: slender and pale pinkish-brown", + "wings: olive-brown with faint white wing bars", + "nape: olive-brown, continuing from the crown", + "tail: olive-brown, medium-length with slight notching", + "throat: white, contrasting with the breast" + ], + "baillon crake": [ + "back: olive-brown with black barring", + "beak: short, slightly curved, pale pinkish", + "belly: buff-white with faint barring", + "breast: warm buff color with sparse spotting", + "crown: dark olive-brown with faint streaks", + "forehead: olive-brown, merging into crown", + "eyes: bright red to orange, small and round", + "legs: fairly long, greenish-yellow", + "wings: short, rounded, dark olive-brown with black bars", + "nape: olive-brown, continuous with crown", + "tail: short, olive-brown with faint black barring", + "throat: buff-white, unmarked" + ], + "baird flycatcher": [ + "back: olive-green feathers covering the upper body", + "beak: short and wide, adapted for catching insects", + "belly: light yellow underbelly with some streaks", + "breast: pale yellow with streaks, blending into the belly", + "crown: bright yellow or red patch on top of the head", + "forehead: olive-green feathers, continuous with crown color", + "eyes: black, surrounded by a white eye-ring", + "legs: slender, grayish-blue legs for perching on branches", + "wings: olive-green with two distinctive white wing-bar markings", + "nape: olive-green feathers continuous with back color", + "tail: olive-green with blackish-blue tips and outer feathers", + "throat: pale yellow, continuous with the breast color" + ], + "baird junco": [ + "back: slate-grey feathers", + "beak: short, pointy, pinkish-grey", + "belly: white and fluffy", + "breast: greyish-white feathers", + "crown: dark greyish-black", + "forehead: association with crown, dark grey", + "eyes: round, beady, black", + "legs: thin, dark, reddish-brown", + "wings: white edges with grey feather inside", + "nape: connection to back, light grey", + "tail: dark grey, long, outward-fanning", + "throat: light greyish-white" + ], + "baird trogon": [ + "back: vibrant green feathers with smooth texture", + "beak: stout, straight, and yellowish-orange in color", + "belly: reddish-orange feathers, slightly lighter than the breast", + "breast: vivid red feathers, transitioning to lighter orange on the sides", + "crown: metallic green, matching the color of the back", + "forehead: brilliant metallic green, making a striking contrast with the beak", + "eyes: dark brown with a thin white eyering", + "legs: short and grayish, ending in small sharp claws", + "wings: glossy green, with white-tipped secondary feathers", + "nape: metallic green, connecting the crown to the back", + "tail: long and straight, with black and white banding", + "throat: relatively bare, showing off the breast's vibrant colors" + ], + "baka indigobird": [ + "back: dark bluish-black plumage", + "beak: short, conical, whitish-silver", + "belly: slightly iridescent navy-blue", + "breast: shimmering indigo-blue feathers", + "crown: glossy black with blue highlights", + "forehead: dark blue with tinges of black", + "eyes: small, round, piercing black", + "legs: slender, pale grey with strong feet", + "wings: dark blue, slightly iridescent", + "nape: midnight blue, nearly black", + "tail: long, blue-black with distinct sheen", + "throat: gleaming blackish-blue" + ], + "baker imperial pigeon": [ + "back: pale gray plumage", + "beak: short, robust, pale white", + "belly: light gray feathers", + "breast: lavender-gray tinges", + "crown: slightly raised, light gray", + "forehead: smooth, pale gray feathers", + "eyes: small, dark, with light gray eye-ring", + "legs: strong, scarlet-red", + "wings: broad, rounded, gray plumage", + "nape: light gray, slightly ruffled feathers", + "tail: medium-length, square-ended, gray", + "throat: paler gray feathering" + ], + "bald parrot": [ + "back: smooth, featherless surface", + "beak: curved, sharp-edged beak", + "belly: rounded, bare abdomen", + "breast: exposed, protruding chest area", + "crown: bald, shiny head top", + "forehead: wide, feather-free front skull", + "eyes: large, round, and striking", + "legs: scaly, thin, elongated limbs", + "wings: partially feathered, functional appendages", + "nape: bare, curved rear skull", + "tail: short, sparse-feathered extremity", + "throat: exposed, elongated neck area" + ], + "balearic shearwater": [ + "back: dark brown feathers", + "beak: long, slender, slightly hooked", + "belly: pale white", + "breast: white with some brown mottling", + "crown: dark brown streaks", + "forehead: slightly rounded, brown feathers", + "eyes: small, dark, and focused", + "legs: pinkish-grey, webbed feet", + "wings: long, narrow, dark brown with white edges", + "nape: dark brown with lighter streaks", + "tail: short, fan-shaped, dark brown", + "throat: white with some brown spots" + ], + "balearic warbler": [ + "back: olive-brown with faint streaks", + "beak: slender and pointed, dark gray", + "belly: pale grayish-white", + "breast: light grayish-brown", + "crown: reddish-brown fading to olive", + "forehead: reddish-brown", + "eyes: black with white eye-ring", + "legs: dark grayish-brown", + "wings: olive-brown with faint bars", + "nape: reddish-brown fading to olive", + "tail: dark brown with outer feathers edged in white", + "throat: whitish-gray" + ], + "bali myna": [ + "back: white with blue tinge", + "beak: yellow with blue tip", + "belly: white, fluffy feathers", + "breast: white, sleek plumage", + "crown: white, elongated feathers", + "forehead: blue streak above beak", + "eyes: deep black, surrounded by blue facial markings", + "legs: blue-grey, strong", + "wings: white with black-tipped primaries", + "nape: elegant, white plumage", + "tail: white, long, and slightly forked", + "throat: white, smooth feathers" + ], + "balicassiao": [ + "back: sleek dark feathers", + "beak: long and slender", + "belly: slightly lighter plumage", + "breast: smooth dark feathers", + "crown: glossy black sheen", + "forehead: same dark hue as crown", + "eyes: bright, piercing gaze", + "legs: thin and agile", + "wings: strong and slightly curved", + "nape: smooth transition from crown", + "tail: long and slightly forked", + "throat: sleek feathers lighter than breast" + ], + "baliem whistler": [ + "back: vibrant olive-green with black streaks", + "beak: short, sharp, and slightly curved", + "belly: light olive-green with faint streaks", + "breast: warm yellow with faint, dark streaks", + "crown: bright yellow with black markings", + "forehead: olive-green transitioning to the yellow crown", + "eyes: beady, black and alert", + "legs: thin and gray with sturdy feet", + "wings: olive-green, long, and pointed with barred pattern", + "nape: olive-green with black streaks", + "tail: long with olive-green and black bars", + "throat: pale yellow with subtle black markings" + ], + "ballman malimbe": [ + "back: vibrant black feathers with hints of iridescence", + "beak: sturdy, sharp, orange-yellow beak", + "belly: bright red feathers with contrasting black patterns", + "breast: bold red plumage with black markings", + "crown: black feathers with a metallic sheen", + "forehead: small, sleek black feathered area", + "eyes: round, dark, and alert eyes", + "legs: thin, strong, and dark gray", + "wings: glossy black feathers with slight iridescent shine", + "nape: smooth black feathers transitioning from the head", + "tail: elongated black feathers with a slight curve", + "throat: red feathers with some black markings near the beak" + ], + "balsas screech owl": [ + "back: brownish-gray with dark markings", + "beak: sharp, hooked, and grayish", + "belly: pale grayish-white with dark streaks", + "breast: light brownish-gray with vertical streaks", + "crown: mottled brownish-gray", + "forehead: pale grayish-white with dark streaks", + "eyes: large, rounded, and yellow", + "legs: feathered with cream-colored toe tufts", + "wings: brownish-gray with faint buff barring", + "nape: mottled brownish-gray", + "tail: dark brown with buff-colored bands", + "throat: pale grayish-white with faint streaks" + ], + "bamboo antshrike": [ + "back: greenish-brown feathers", + "beak: short, curved, grayish-black", + "belly: pale yellow with white streaks", + "breast: reddish-brown with white bars", + "crown: dark gray with white streaks", + "forehead: dark gray, slightly rounded", + "eyes: black, surrounded by pale eye-ring", + "legs: strong, grayish-brown", + "wings: brownish with white markings", + "nape: greenish-gray with subtle streaks", + "tail: long, brownish with white tips", + "throat: cream-colored with white streaks" + ], + "bamboo warbler": [ + "back: olive-green feathers", + "beak: thin and pointy", + "belly: pale yellow", + "breast: yellowish-green", + "crown: bright green", + "forehead: greenish-yellow", + "eyes: dark with white eyering", + "legs: pale brown", + "wings: olive-green with white edging", + "nape: greenish-olive", + "tail: dark brown with greenish tinge", + "throat: olive-yellow" + ], + "bamboo woodpecker": [ + "back: greenish-brown with light streaks", + "beak: long, curved and sharp", + "belly: white with brownish spots", + "breast: white with horizontal greenish-brown stripes", + "crown: light green with a slight crest", + "forehead: greenish-yellow", + "eyes: small, black and focused", + "legs: gray and slender with strong toes", + "wings: greenish-brown with light barring", + "nape: greenish-yellow", + "tail: stiff and straight with greenish-brown coloration", + "throat: white with a slight green hue" + ], + "bamenda apalis": [ + "back: olive-green feathers", + "beak: short and sturdy, blackish", + "belly: yellow to pale olive-green", + "breast: yellowish with white undertones", + "crown: chestnut-brown with rufous streaks", + "forehead: slightly paler chestnut-brown", + "eyes: dark with thin white eye-ring", + "legs: long and greyish-blue", + "wings: olive-green with faint darker bars", + "nape: chestnut-brown with rufous streaks", + "tail: square-ended and olive-green", + "throat: white with faint buff wash" + ], + "bananal antbird": [ + "back: dark grey feathers", + "beak: short and strong", + "belly: light grey feathers", + "breast: greyish-white feathers", + "crown: blackish-grey feathers", + "forehead: blackish-grey feathers", + "eyes: dark beady eyes", + "legs: sturdy grey legs", + "wings: dark grey with white edges", + "nape: blackish-grey feathers", + "tail: long dark grey tail feathers", + "throat: whitish-grey feathers" + ], + "banasura laughingthrush": [ + "back: olive-brown feathers with a slight greenish sheen", + "beak: short, curved, and dark gray in color", + "belly: pale gray with white and chestnut streaks", + "breast: chestnut-bordered white feathers, prominently streaked", + "crown: dark gray with a hint of olive-green", + "forehead: slightly paler gray than the crown", + "eyes: dark brown with a thin white eye-ring", + "legs: strong, grayish-pink legs", + "wings: olive-brown with lighter brown wing-bars", + "nape: olive-brown feathers continuing from the crown", + "tail: long, olive-brown with a slight greenish hue and white-tipped feathers", + "throat: white with chestnut streaks and spots" + ], + "band backed wren": [ + "back: brownish-grey with distinct dark bands", + "beak: thin, curved, and black", + "belly: white with faint dark streaks", + "breast: pale grey with fine dark speckles", + "crown: brownish-grey with darker streaks", + "forehead: slightly paler than the crown", + "eyes: dark with thin white eye-ring", + "legs: slender and pinkish-brown", + "wings: brownish-grey with dark bands and bars", + "nape: brownish-grey with dark streaks", + "tail: long, brownish-grey with dark barring", + "throat: white and unmarked" + ], + "band bellied crake": [ + "back: olive-brown with black streaks", + "beak: short, straight, and greenish-yellow", + "belly: white with blackish band", + "breast: greyish-brown with white streaks", + "crown: dark brown with faint streaks", + "forehead: pale brown fading to grey", + "eyes: dark brown surrounded by pale feathers", + "legs: long, slender, and greenish-yellow", + "wings: olive-brown with white-tipped feathers", + "nape: dark brown with a hint of grey", + "tail: olive-brown with a white patch at the base", + "throat: whitish fading to greyish-brown" + ], + "band bellied owl": [ + "back: pale brown with fine black streaks", + "beak: sharp, black, and slightly curved", + "belly: off-white with distinct brown bands", + "breast: creamy white with broad brown banding", + "crown: buffy-brown with darker streaks", + "forehead: pale brown with dark feather edges", + "eyes: large, dark, and forward-facing", + "legs: feathered, stout, pale grey-brown", + "wings: broad, long, with dark brown and white bars", + "nape: buffy-brown with darker streaks", + "tail: medium length, brown with white bars", + "throat: white with sparse brown markings" + ], + "band rumped storm petrel": [ + "back: dark brown and sleek", + "beak: black, thin, and sharp", + "belly: whitish-grey", + "breast: pale grey with brown highlights", + "crown: dark brown, smoothly rounded", + "forehead: greyish-brown and smooth", + "eyes: small, black, and bright", + "legs: thin, dark, partially webbed feet", + "wings: long, slender, dark brown with white bands", + "nape: brown, blending into the crown", + "tail: forked, dark brown with white edges", + "throat: pale grey, delicate" + ], + "band rumped swift": [ + "back: sleek and streamlined", + "beak: short and pointed", + "belly: light, often white or gray", + "breast: compact and slightly rounded", + "crown: smooth and uncrested", + "forehead: flat and inconspicuous", + "eyes: small and alert", + "legs: short, nearly hidden by feathers", + "wings: long and curved for swift flight", + "nape: narrow, often with light or dark band", + "tail: short and squared or slightly forked", + "throat: lighter color than breast, often blending into belly" + ], + "band tailed antbird": [ + "back: olive-green feathers covering the back", + "beak: short, curved, black bill", + "belly: light buff-colored underside", + "breast: greyish-brown with fine streaks", + "crown: slightly raised, dark grey feathers", + "forehead: smooth greyish-brown plumage", + "eyes: small, round, and black", + "legs: long, greyish-brown, with strong claws", + "wings: rounded and olive-green with lighter edges of feathers", + "nape: dark grey, marked with thin streaks", + "tail: long and blackish-brown with a distinctive pale band", + "throat: light greyish-white with fine streaking" + ], + "band tailed antshrike": [ + "back: grayish-brown with faint streaks", + "beak: short, stout, and hooked", + "belly: pale buff or cream", + "breast: grayish-white with dark speckles", + "crown: black with a dull crest", + "forehead: black, merging into the crown", + "eyes: black with a thin white eyering", + "legs: strong and orangish-brown", + "wings: black with white wing bars", + "nape: grayish-brown, blending with the back", + "tail: long and banded, black and white", + "throat: white with dark speckles" + ], + "band tailed antwren": [ + "back: olive-brown with black streaks", + "beak: short, thin, and black", + "belly: white with black streaks", + "breast: gray with black streaks", + "crown: black and gray", + "forehead: gray with subtle black streaks", + "eyes: dark with thin white eye-ring", + "legs: slender and dark gray", + "wings: light brown with fine dark barring", + "nape: gray with black streaks", + "tail: long and banded black and white", + "throat: white with black streaks" + ], + "band tailed barbthroat": [ + "back: olive-green feathers with faint barring", + "beak: elongated, curved, and narrow", + "belly: pale yellow with faint streaks", + "breast: greenish-yellow, blending into the belly", + "crown: bright green with metallic shine", + "forehead: bright green feathers, similar to the crown", + "eyes: black with white eye-ring", + "legs: slender and pale gray", + "wings: greenish-brown with lighter feather tips", + "nape: green, transitioning from the crown", + "tail: square-shaped, dark green with light banding", + "throat: iridescent violet-blue shimmer" + ], + "band tailed cacique": [ + "back: black with slight greenish sheen", + "beak: large, thick, and slightly curved; pale ivory", + "belly: deep yellow or golden hue", + "breast: bold black with dark greenish undertones", + "crown: black with slight greenish iridescence", + "forehead: bright yellow patch above the beak", + "eyes: small, dark, and black-rimmed", + "legs: sturdy and grayish-black", + "wings: long, black, and slightly rounded with a greenish sheen", + "nape: black with greenish iridescence", + "tail: elongated and band-shaped with a white tip", + "throat: deep yellow or golden hue" + ], + "band tailed earthcreeper": [ + "back: brownish gray feathers", + "beak: short, curved, and sharp", + "belly: light brown with dark streaks", + "breast: off-white to light brown with dark streaks", + "crown: grayish brown with streaks", + "forehead: pale gray with a slight crest", + "eyes: small and dark, surrounded by faint white rings", + "legs: sturdy, grayish-brown with sharp claws", + "wings: brownish-gray with dark bars and pale edges", + "nape: grayish-brown with faint streaks", + "tail: long and brown with prominent white bands", + "throat: off-white to light gray with dark streaks" + ], + "band tailed fruiteater": [ + "back: greenish-gray with fine black streaks", + "beak: medium length, grayish-black and slightly hooked", + "belly: whitish-gray with faint greenish tint", + "breast: dusky green with black scalloping", + "crown: greenish-black with a subtle crest", + "forehead: slightly paler green than the crown", + "eyes: dark brown with a narrow, pale eye-ring", + "legs: grayish-blue, strong and medium length", + "wings: greenish-black with blue-black banding", + "nape: greenish-gray with fine black streaks", + "tail: greenish-black with a wide white band on the tip", + "throat: whitish-gray with a faint greenish tint" + ], + "band tailed manakin": [ + "back: vibrant green feathers", + "beak: small, pointed black", + "belly: white with a hint of yellow", + "breast: bright red-orange patch", + "crown: vivid green with slight crest", + "forehead: green, seamlessly merging with the crown", + "eyes: dark, beady, encircled by light feathers", + "legs: slim, grayish, clinging on branches", + "wings: short, green, with faint banding", + "nape: smooth green, connecting crown and back", + "tail: lengthy, black with white band at tip", + "throat: pale white, leading to breast patch" + ], + "band tailed nighthawk": [ + "back: dark grayish-brown feathering", + "beak: short, wide, and hooked", + "belly: light grayish-white plumage", + "breast: pale gray feathers with brown speckles", + "crown: dark brownish-gray with streaked pattern", + "forehead: light gray with a slight tuft", + "eyes: large and yellowish-white", + "legs: short with grayish-brown plumage", + "wings: long and pointed with grayish-brown coloration", + "nape: dark gray with lighter streaks", + "tail: long and broad with pale banding", + "throat: light grayish-white with faint streaking" + ], + "band tailed seedeater": [ + "back: olive-gray feathered", + "beak: short and conical", + "belly: white to pale buff", + "breast: grayish-brown with thin streaks", + "crown: olive-gray with faint streaks", + "forehead: plain olive-gray", + "eyes: dark-brown with pale eyering", + "legs: pinkish-gray and slender", + "wings: olive-gray with buff edges", + "nape: olive-gray and smooth", + "tail: broad with white band tip", + "throat: paler gray with light streaks" + ], + "band tailed sierra finch": [ + "back: olive-brown with subtle streaks", + "beak: short, conical, and pale pinkish-gray", + "belly: whitish with gray-brown streaks", + "breast: gray-brown with streaks", + "crown: olive-brown with faint streaks", + "forehead: slightly paler olive-brown", + "eyes: black with white eye-ring", + "legs: pinkish-gray, thin, and medium-length", + "wings: olive-brown with white-edged feathers", + "nape: olive-brown with faint streaks", + "tail: forked with olive-brown feathers and white edges", + "throat: whitish with gray-brown streaks" + ], + "band winged nightjar": [ + "back: dark brown with streaks of gray", + "beak: short, hooked, black", + "belly: light brown with black spots", + "breast: grayish-brown with white speckles", + "crown: dark brown with speckles of gray", + "forehead: whitish-gray with brown streaks", + "eyes: large, dark, and round", + "legs: short, feathered, grayish", + "wings: brown with a prominent white band across the primary feathers", + "nape: mottled brown with gray streaks", + "tail: blackish-brown with a white band on outer feathers", + "throat: white with gray-brown mottling" + ], + "banda myzomela": [ + "back: vibrant red with black streaks", + "beak: slender and curved, black", + "belly: pale yellow with faint grey markings", + "breast: fiery red with black edges", + "crown: bright red with black border", + "forehead: bright red merging with the crown", + "eyes: small, black, and round", + "legs: short and grey with sharp claws", + "wings: black with red streaks and white edges", + "nape: black, blending into the red crown", + "tail: black with white edges and red streaks", + "throat: vivid red, brightening the face" + ], + "banda sea pitta": [ + "back: vibrant blue feathers with light streaks", + "beak: strong, curved, black", + "belly: bright tangerine hue", + "breast: deep red shade with black markings", + "crown: turquoise and emerald plumage", + "forehead: dark blue with a sharp contrast to the crown", + "eyes: round and black, expressive", + "legs: sturdy, pale pinkish-grey, long", + "wings: rich blue with bold black stripes", + "nape: blue-green, smooth transition from crown", + "tail: elongated blue feathers with black bands", + "throat: dark, glossy black with a subtle sheen" + ], + "banded bay cuckoo": [ + "back: olive-brown with a faint greenish sheen", + "beak: slender and curved, black or dark gray", + "belly: white with black wavy crossbars", + "breast: pale rufous or buff with black streaks", + "crown: olive-brown with a slightly darker tone", + "forehead: pale rufous or buff with black streaks or spots", + "eyes: dark brown with a pale eye-ring", + "legs: sturdy, pale gray or blue-gray", + "wings: olive-brown with rufous edges on feathers", + "nape: olive-brown, merging with the crown", + "tail: long and graduated, olive-brown with black bars and white tips", + "throat: pale rufous or buff with black streaks or spots" + ], + "banded cotinga": [ + "back: vibrant blue feathers", + "beak: short and stout, pale gray", + "belly: deep blue plumage", + "breast: bright turquoise feathers", + "crown: glossy blue-violet", + "forehead: shimmering purplish-blue", + "eyes: black with pale blue eyering", + "legs: stout and grayish-blue", + "wings: brilliant blue with black edges", + "nape: purplish-blue gradient", + "tail: long and blue, black-tipped feathers", + "throat: iridescent turquoise-blue" + ], + "banded ground cuckoo": [ + "back: dark green plumage with iridescent sheen", + "beak: long, slightly curved, and black in color", + "belly: creamy off-white or pale lemon-yellow", + "breast: beautifully patterned with gray-blue and black streaks", + "crown: dark green with iridescent sheen, like the back", + "forehead: stripe of white-bordered black feathers", + "eyes: large, dark, and round with white surrounding feathers", + "legs: strong, gray-to-pale blue featherless legs", + "wings: dark green with iridescent sheen and distinct white band", + "nape: dark green plumage with iridescent sheen, continues onto the crown", + "tail: long, with white outer feathers and a black or dark green center", + "throat: off-white or pale lemon-yellow, like the belly" + ], + "banded kestrel": [ + "back: light brown with dark streaks", + "beak: sharp, hooked, blackish-gray", + "belly: creamy white with brown spots", + "breast: pale buff with brown streaks", + "crown: rusty-red with fine black streaks", + "forehead: rusty-red with black spots", + "eyes: dark brown with prominent yellow eye-ring", + "legs: yellow with sharp black claws", + "wings: brown with black barring and white edges", + "nape: light rusty-red with dark streaks", + "tail: dark brown with black bars and white tips", + "throat: creamy white with light brown streaks" + ], + "banded lapwing": [ + "back: light brown with streaks", + "beak: short, yellow with dark tip", + "belly: white with brown edges", + "breast: white with black band", + "crown: black with distinct white patch", + "forehead: white with brown shading", + "eyes: dark with white outlines", + "legs: relatively long, bright yellow", + "wings: brown-gray with white tips", + "nape: white, extending to shoulders", + "tail: white with black border", + "throat: white with a black band" + ], + "banded martin": [ + "back: sleek, brownish-gray feathers", + "beak: short, sturdy, black", + "belly: white with dark streaks", + "breast: white with brownish-gray streaks", + "crown: dark, brownish-gray cap", + "forehead: brownish-gray, blending with crown", + "eyes: small, dark, beady", + "legs: slender, dark legs with sharp claws", + "wings: long, pointed, brownish-gray with faint bands", + "nape: brownish-gray, blending with crown and back", + "tail: forked, brownish-gray with white outer feathers", + "throat: white, leading to breast" + ], + "banded parisoma": [ + "back: soft, grayish-blue feathers", + "beak: short, pointed, and black", + "belly: pale, minty green with subtle stripes", + "breast: light grayish-blue, fading to pale green", + "crown: dark blue with a black band", + "forehead: bluish-gray fading into the crown", + "eyes: small, round, and black", + "legs: slim and dark gray", + "wings: grayish-blue with black and white bands", + "nape: bluish-gray with a dark band", + "tail: grayish-blue with black tips", + "throat: pale grayish-green with subtle striping" + ], + "banded prinia": [ + "back: light brown feathers with dark streaks", + "beak: thin, pointed, and dark-colored", + "belly: whitish with faint brown streaks", + "breast: buff-colored with darker streaks", + "crown: reddish-brown with a distinct crest", + "forehead: pale brown, blending into the crown", + "eyes: small, round, and dark", + "legs: slender, grayish-brown with long toes", + "wings: brown with darker bars and white-tipped edges", + "nape: pale brown, connecting to the crown", + "tail: long, dark brown with white outer feathers", + "throat: whitish, contrasting with the breast" + ], + "banded quail": [ + "back: brownish-gray feathers with bold streaks", + "beak: short, curved, light-colored", + "belly: cream-colored with fine black markings", + "breast: buff or rufous with dark feather tips", + "crown: dark stripes and white or buff patches", + "forehead: light-colored with dark streaks", + "eyes: dark, alert, surrounded by buff markings", + "legs: short, strong, feathered with brownish-gray color", + "wings: brownish-gray with distinct white wing-bars", + "nape: pale collar with dark streaks", + "tail: short, rounded, with black and white feathers", + "throat: buff-colored or white with dark lines" + ], + "banded snake eagle": [ + "back: brownish-grey feathers", + "beak: sharp and hooked, pale grey", + "belly: white and feathered", + "breast: dappled white and brown", + "crown: dark brown feathers", + "forehead: white and feathered", + "eyes: piercing yellow with black pupils", + "legs: strong and scaly, light yellow", + "wings: broad with greyish-brown plumage", + "nape: brown feathers", + "tail: black banding, white tips", + "throat: white and feathered" + ], + "banded wattle eye": [ + "back: vibrant plumage with patterns", + "beak: small, strong hooked beak", + "belly: white to light gray feathers", + "breast: intricate feather designs and blend of colors", + "crown: striking, darker feathers with a ridge", + "forehead: distinctive feather patterns", + "eyes: expressive, round with a light-colored ring", + "legs: thin, strong, and gripping", + "wings: patterned, with alternating colors", + "nape: colorful feathers with intricate detailing", + "tail: long, narrow feathers with eye-catching bands", + "throat: beautiful blend of light and dark feathers" + ], + "banded white eye": [ + "back: sleek, light gray feathers", + "beak: small, sharp, and black", + "belly: soft, white plumage", + "breast: white feathers with a subtle gray outline", + "crown: dark, grayish-blue band", + "forehead: white feathers with a touch of gray", + "eyes: prominent and black, surrounded by a white ring", + "legs: thin, pale gray, and agile", + "wings: light gray feathers with darker tips", + "nape: white with hints of gray", + "tail: short and light gray with darker edges", + "throat: white feathers with light gray detailing" + ], + "banded whiteface": [ + "back: light brown with white streaks", + "beak: short, grayish-black", + "belly: soft white with pale brown streaks", + "breast: warm beige with faint white banding", + "crown: prominent white with slight brown streaks", + "forehead: striking white hue", + "eyes: small black orbs with white rings", + "legs: slender grayish-blue", + "wings: pale brown with white banding and grayish-blue edges", + "nape: light brown, blends with crown and back", + "tail: medium length with grayish-blue and white bands", + "throat: clean white with subtle streaks" + ], + "banded woodpecker": [ + "back: strikingly patterned with black and white bars", + "beak: sturdy, straight, and chisel-shaped", + "belly: soft beige or cream color", + "breast: light beige, spotted with black markings", + "crown: bold, red cap with black bands", + "forehead: white with black horizontal stripes", + "eyes: dark and round, encircled by a white or light-colored ring", + "legs: short, grayish, and strong", + "wings: black, adorned with white spots and bars", + "nape: black and white bars, like the back", + "tail: dark, stiff feathers with white tips, for support while pecking", + "throat: pale beige, blending into the breast color" + ], + "banggai crow": [ + "back: black feathered, glossy shine", + "beak: strong, stout, ends in a point", + "belly: dark grey plumage", + "breast: shiny grey-black feathers", + "crown: smooth black feathers, rounded crest", + "forehead: black, sleek plumage", + "eyes: deep brown, piercing gaze", + "legs: sturdy, dark grey", + "wings: broad, black, strong for flight", + "nape: smooth, black feathers connecting head to back", + "tail: elongated, black feathers, fan-shaped", + "throat: greyish-black feathers, slightly ruffled" + ], + "banggai fruit dove": [ + "back: olive-green feathers", + "beak: short and black", + "belly: dull grayish-white", + "breast: pale gray with a light pink tint", + "crown: dark blue-green plumage", + "forehead: vibrant blue feathers", + "eyes: black with light gray eye-ring", + "legs: short and pinkish-gray", + "wings: olive-green with a bright blue patch", + "nape: deep bluish-green feathers", + "tail: long and maroon with white tips", + "throat: pale blue-gray" + ], + "banggai jungle flycatcher": [ + "back: olive-brown plumage", + "beak: thin, short, black", + "belly: pale yellowish-buff", + "breast: olive-brown fading to pale yellowish-buff", + "crown: olive-brown with slightly raised feathers", + "forehead: olive-brown, smooth plumage", + "eyes: small, round, black with white eye-ring", + "legs: pale gray, slender", + "wings: olive-brown with faint wing bars", + "nape: olive-brown, blending into the back", + "tail: olive-brown, slightly forked", + "throat: pale yellowish-buff, unmarked" + ], + "banggai scops owl": [ + "back: brownish-grey feathers with black streaks", + "beak: sharp, hooked, dark grey", + "belly: light grey with dark, thin streaks", + "breast: light greyish-brown with black streaks", + "crown: grey-brown with darker markings", + "forehead: light grey with small dark streaks", + "eyes: striking yellow with black outline", + "legs: feathered, pinkish-grey with sharp talons", + "wings: brown with dark and light barring", + "nape: grey-brown feathers with darker markings", + "tail: long, grey-brown with faint barring", + "throat: light grey with thin black streaks" + ], + "bangwa warbler": [ + "back: olive-green feathers", + "beak: thin, pointy, and black", + "belly: white with brown streaks", + "breast: pale yellow with brown streaks", + "crown: black and white stripes", + "forehead: light olive-green", + "eyes: black, round, with white eye-ring", + "legs: light pink and slender", + "wings: olive-green with white bars", + "nape: light olive with black streaks", + "tail: olive-green with white edges", + "throat: white with brown streaks" + ], + "bank cormorant": [ + "back: dark, sleek feathers", + "beak: long, slender, and hooked", + "belly: white and feathery", + "breast: black with white streaks", + "crown: black, slightly raised", + "forehead: black, blending with the crown", + "eyes: small, bright, and watchful", + "legs: short, strong, webbed", + "wings: large, black, powerful", + "nape: black and smooth", + "tail: short, black paddle-like feathers", + "throat: white with a defined border" + ], + "bank myna": [ + "back: sleek grey plumage", + "beak: slightly curved, pale yellow", + "belly: whitish-grey feathers", + "breast: light grey with subtle streaks", + "crown: smooth, dark grey feathers", + "forehead: dark grey, merging with crown", + "eyes: bright, white-ringed, and piercing", + "legs: strong and yellowish", + "wings: wide-spread, grey with faint pattern", + "nape: continuation of grey crown and neck", + "tail: medium length, fan-like, grey feathers", + "throat: pale, off-white feathers" + ], + "bannerman shearwater": [ + "back: light grey with white streaks", + "beak: blackish-grey and slightly hooked", + "belly: white feathered underside", + "breast: white with light grey edges", + "crown: dark grey, almost black, top of the head", + "forehead: light grey, merging into the crown", + "eyes: small, black, and round", + "legs: pinkish in hue with webbed feet", + "wings: long and tapered with black tips", + "nape: light grey, blending into back", + "tail: wedge-shaped with a black band", + "throat: white and smooth" + ], + "bannerman sunbird": [ + "back: vibrant emerald green", + "beak: slender, curved, and black", + "belly: pale yellow or cream", + "breast: iridescent metallic blue", + "crown: metallic green, shimmering", + "forehead: brilliant iridescent blue", + "eyes: small and round, dark brown", + "legs: slim, grayish-brown", + "wings: glossy dark green, elongated feathers", + "nape: shiny metallic green", + "tail: long and slender, dark green feathers", + "throat: rich cobalt blue iridescence" + ], + "bannerman turaco": [ + "back: emerald green feathers with hints of blue", + "beak: short and stout, reddish-orange", + "belly: light green fading into white", + "breast: vibrant green with feathery texture", + "crown: royal blue with an elongated crest", + "forehead: bright blue, blending with the crown", + "eyes: dark brown, surrounded by pale blue eyering", + "legs: medium-length, dark grey", + "wings: green with deep blue accents, rounded feathers", + "nape: lush green transitioning to blue crown", + "tail: long, vivid green feathers with white tips", + "throat: brilliant green fading into the belly color" + ], + "bannerman weaver": [ + "back: vibrant yellow-green feathers", + "beak: strong, conical, black", + "belly: bright yellow feathers", + "breast: golden-yellow, soft appearance", + "crown: solid black, smooth texture", + "forehead: black, seamless in color", + "eyes: dark, round, alert", + "legs: slender, grayish-brown", + "wings: yellow-green with hints of black, well-defined", + "nape: bright yellow, contrasting with black crown", + "tail: elongated, sharp-pointed, black feathers", + "throat: pale yellow, smooth finish" + ], + "bar backed partridge": [ + "back: olive-brown with narrow black bars", + "beak: short, gray, and slightly curved", + "belly: pale buff with black and white streaks", + "breast: chestnut-brown with white bars", + "crown: gray with dark streaks", + "forehead: pale gray with a dark eye stripe", + "eyes: dark brown with pale eyelids", + "legs: feathered, grayish-blue with strong claws", + "wings: short, rounded, olive-brown with black and white markings", + "nape: gray with dark streaks and a chestnut collar", + "tail: olive-brown with black bars and white tips", + "throat: pale buff with black and white streaks" + ], + "bar bellied cuckooshrike": [ + "back: striking blue-grey feathers", + "beak: stout and hooked, black", + "belly: vibrant, contrasting bars of black and white", + "breast: pale grey with dark barring patterns", + "crown: smooth blue-grey plumage", + "forehead: sleek blue-gray feathers", + "eyes: beady with black eyeliner", + "legs: sturdy, rufous brown", + "wings: elegant, blue-grey with black wingtips", + "nape: blue-grey with slight feather tufts", + "tail: long with banded black and white feathers", + "throat: smooth grey plumage, blending into the breast" + ], + "bar bellied pitta": [ + "back: vibrant green feathers", + "beak: strong, black, curved", + "belly: bold blue and purple", + "breast: eye-catching red-orange", + "crown: brilliant blue feathers", + "forehead: lush green plumage", + "eyes: round, dark, observant", + "legs: sturdy, grayish-brown", + "wings: striking blue and green", + "nape: green transitioning to blue", + "tail: elongated, blue and green feathers", + "throat: fiery red-orange" + ], + "bar bellied woodcreeper": [ + "back: brownish with subtle streaks", + "beak: long, thin, curved downward", + "belly: barred with black and white", + "breast: pale with dark streaks", + "crown: rufous-brown", + "forehead: rufous-brown blending into crown", + "eyes: dark with white eye-ring", + "legs: grayish-blue, strong", + "wings: brownish with lighter rufous spots", + "nape: rufous-brown, similar to the crown", + "tail: long, brown with slightly lighter rufous bars", + "throat: white with fine barring" + ], + "bar bellied woodpecker": [ + "back: greenish hue with black spots", + "beak: strong, black, and chisel-shaped", + "belly: barred black and white pattern", + "breast: white with black streaks", + "crown: bright red on males, black on females", + "forehead: black on both sexes", + "eyes: pale yellow with black pupils", + "legs: short, gray, and sturdy", + "wings: black with white spots and patches", + "nape: black with white streaks or spots", + "tail: black with white barring", + "throat: white, sometimes with black streaks" + ], + "bar breasted firefinch": [ + "back: reddish-brown with a touch of purple on the upper side", + "beak: short, stout, and pale-colored with a hint of red", + "belly: white with faint black barring", + "breast: prominent crimson bar stretching across the upper chest", + "crown: dusky grayish-blue coloring", + "forehead: bright red patch extending towards the beak", + "eyes: surrounded by a narrow blue-gray eye-ring", + "legs: pinkish-brown slender limbs", + "wings: reddish-brown with hints of olive and black barring", + "nape: grayish-blue transitioning into reddish-brown", + "tail: squared-off, reddish-brown with dark barring and white outer feathers", + "throat: bright red patch contrasting with a white belly" + ], + "bar breasted honeyeater": [ + "back: olive-brown feathers", + "beak: long, slim, curved", + "belly: pale yellow hue", + "breast: reddish-orange bars", + "crown: deep olive-green", + "forehead: olive-green feathers", + "eyes: dark, beady, and alert", + "legs: strong, greyish-blue", + "wings: olive-brown with white edging", + "nape: olive-green, connecting crown to back", + "tail: long, brown, with white tips", + "throat: bright yellow with fine streaks" + ], + "bar breasted piculet": [ + "back: pale olive with light streaks", + "beak: slender, straight, and greyish-black", + "belly: white with thick black bars", + "breast: white with bold black bars", + "crown: olive-green with white spots on the male, plain olive-green in the female", + "forehead: olive-green, blending into the crown", + "eyes: dark brown with a fine white crescent-shaped eye-ring", + "legs: greyish with dark brown claws", + "wings: olive-green with small white spots and black primaries", + "nape: olive-green, continuing down from the crown", + "tail: short and slightly graduated, olive-green with black barring", + "throat: white with black lateral streaks" + ], + "bar crested antshrike": [ + "back: olive-brown with dark stripes", + "beak: stout, hooked, black", + "belly: white with black bars", + "breast: white with black bars", + "crown: chestnut-red with crest", + "forehead: chestnut-red, blending into crest", + "eyes: medium size, dark", + "legs: long, strong, gray", + "wings: olive-brown with white tips", + "nape: olive-brown with dark stripes", + "tail: long, graduated, black with white outer feathers", + "throat: white" + ], + "bar headed goose": [ + "back: gray with black and white barring", + "beak: slightly curved, orange-yellow", + "belly: whitish-gray with darker stripes", + "breast: pale gray white with darker stripes", + "crown: buff-white with grayish-black sidebars", + "forehead: bright white stripe above beak", + "eyes: dark brown, encircled with white", + "legs: orange or pinkish-orange with webbed feet", + "wings: long, gray, white-tipped flight feathers", + "nape: dark grayish-black stripe extending from crown", + "tail: mixed gray and black with white feather tips", + "throat: white to light gray, blending with breast" + ], + "bar shouldered dove": [ + "back: pale grayish-brown with subtle dark barring", + "beak: small and black, slightly curved", + "belly: pale gray-white, blending into breast", + "breast: pinkish-brown with dark, scaly bars", + "crown: blue-gray, flattening towards nape", + "forehead: blue-gray, merging into crown", + "eyes: dark brown, surrounded by thin blue eye-ring", + "legs: pinkish-red, with three forward-facing toes and one backward-facing toe", + "wings: grayish-brown, with bold black and white shoulder bars", + "nape: pale blue-gray, transitioning to back", + "tail: long and gray-brown, with broad white tips", + "throat: whitish, with sharp black edges extending onto neck" + ], + "bar tailed lark": [ + "back: light brown with black streaks", + "beak: straight, pointed, grayish-brown", + "belly: off-white or pale", + "breast: light brown with dark streaks", + "crown: brown with dark streaks", + "forehead: light brown with streaks", + "eyes: small, black and alert", + "legs: long, thin and pinkish-brown", + "wings: mottled brown with dark markings", + "nape: light brown, streaked with black", + "tail: bar-patterned, dark brown with white outer feathers", + "throat: cream-colored with light brown streaks" + ], + "bar tailed treecreeper": [ + "back: rusty brown with contrasting white streaks", + "beak: long, slender, and decurved", + "belly: white and unmarked", + "breast: white with subtle buffy tones", + "crown: dark brown with white streaks", + "forehead: dark brown with paler streaks", + "eyes: dark brown with pale eyering", + "legs: pale pinkish-brown", + "wings: strong, short, with distinct white wingbar", + "nape: rusty brown with white streaks", + "tail: long and pointed with alternating dark brown and white bars", + "throat: white, clean, and unmarked" + ], + "bar tailed trogon": [ + "back: olive green feathers", + "beak: short, curved, dark grey", + "belly: pale grey with a creamy undertone", + "breast: bright yellow hue", + "crown: deep sapphire blue", + "forehead: royal blue feathers", + "eyes: dark, piercing gaze with a black pupil", + "legs: sturdy, pale grey", + "wings: elongated, vibrant green with blue undertones", + "nape: deep blue fading into olive green", + "tail: long, horizontal bars alternating in blue and white", + "throat: deep sapphire blue with hints of green" + ], + "bar throated apalis": [ + "back: greenish-yellow feathers", + "beak: short and pointed", + "belly: creamy white colored", + "breast: greenish hue with light streaks", + "crown: greenish-yellow with lighter streaks", + "forehead: pale yellow feathers", + "eyes: deep black surrounded by white eyerings", + "legs: slim, grayish-brown", + "wings: greenish-yellow with darker primary feathers", + "nape: greenish-yellow with faint streaks", + "tail: greenish-yellow feathers with darker edges", + "throat: distinctive black-and-white barring" + ], + "bar winged flycatcher shrike": [ + "back: olive-brown with slight streaks", + "beak: short, slightly hooked, blackish-gray", + "belly: whitish-gray with pale streaks", + "breast: light gray with faint barring", + "crown: olive-brown with rufous tint", + "forehead: whitish-gray, fading into crown", + "eyes: dark brown with pale eye-ring", + "legs: sturdy, grayish-black", + "wings: barred black and white with rufous edging", + "nape: olive-brown, blending with crown", + "tail: long and black with white outer feathers", + "throat: whitish-gray with light barring" + ], + "bar winged oriole": [ + "back: vibrant yellow and black feathers", + "beak: sharp, slightly curved, and silver", + "belly: bright yellow feathers", + "breast: vivid yellow plumage", + "crown: black feathers with a yellow stripe", + "forehead: black feathers merging to yellow", + "eyes: round and black, surrounded by yellow", + "legs: slender and gray with sharp talons", + "wings: black feathers with white horizontal bars", + "nape: black and yellow striped feathers", + "tail: long, black feathers with white tips", + "throat: yellow feathers transitioning to black" + ], + "bar winged prinia": [ + "back: olive-brown with slight streaking", + "beak: slim, dark grey, and pointed", + "belly: whitish with light buff underparts", + "breast: pale grayish-brown", + "crown: olive-gray with possible streaks", + "forehead: slightly paler olive-gray", + "eyes: beady and black, surrounded by light eye-ring", + "legs: long, slender, and light brown", + "wings: barred brownish-black with white edges", + "nape: olive-gray, similar to crown", + "tail: long, thin, and dark with white tips", + "throat: pale gray, blending into breast" + ], + "bar winged weaver": [ + "back: olive-yellow with black streaks", + "beak: conical and black", + "belly: creamy-white or pale yellowish", + "breast: golden-yellow with some black streaks", + "crown: black with buff-white streak", + "forehead: black covering the eyes down to the cheek", + "eyes: black and beady", + "legs: pale brown or gray", + "wings: black with white bars", + "nape: olive-yellowish with black streaks", + "tail: black with white outer feathers", + "throat: black patch with golden-yellow surround" + ], + "bar winged wood wren": [ + "back: olive-green with faint streaks", + "beak: short and pointed, blackish-brown", + "belly: pale grayish-white with some tawny hues", + "breast: pale grayish-white and slightly streaked", + "crown: dark gray with brownish tinge", + "forehead: dark gray blending into the crown", + "eyes: large, dark brown with faint white eye-ring", + "legs: pinkish-brown, long and slender", + "wings: dark brown with two bold white bars", + "nape: olive-green blending into the back", + "tail: brownish with a slight greenish tinge, slightly forked", + "throat: pale grayish-white, slightly streaked" + ], + "bar winged wren babbler": [ + "back: olive-brown feathers with a slight sheen", + "beak: short, slender, and pointed", + "belly: off-white with faint brown streaks", + "breast: soft gray with tinges of cinnamon", + "crown: cinnamon brown with subtle streaking", + "forehead: pale gray-brown, slightly rounded", + "eyes: dark, beady, and inquisitive", + "legs: sturdy, pinkish-gray with sharp claws", + "wings: barred brown and black, folded close", + "nape: grayish-brown with hints of olive", + "tail: dark brown, short, and slightly graduated", + "throat: pale, off-white with a slight gray tint" + ], + "barau petrel": [ + "back: dark grey feathers with a sleek appearance", + "beak: sharp, slender, black with a hooked tip", + "belly: white and fluffy, contrasting with dark upper body", + "breast: white feathers blending seamlessly with the belly", + "crown: grey feathers smoothly transitioning from the forehead", + "forehead: dark grey, slightly raised, and merging with the crown", + "eyes: round, black, and alert, framed by a grey feathered face", + "legs: strong and slender, with dark webbed feet for swimming", + "wings: long and pointed, with dark grey feathering for swift flight", + "nape: grey feathers extending from the crown to the back", + "tail: short and pointed, with dark grey feathers for maneuverability", + "throat: white plumage contrasting with the surrounding grey feathers" + ], + "barbados bullfinch": [ + "back: olive-brown feathers", + "beak: thick and deep black", + "belly: light cream hue", + "breast: warm reddish-brown", + "crown: grayish-brown crown", + "forehead: subtle grayish-brown", + "eyes: small and black", + "legs: sturdy and dark gray", + "wings: brownish-black with white edges", + "nape: grayish-brown feathers", + "tail: dark brown with white edges", + "throat: pale cream with reddish-brown streaks" + ], + "barbary partridge": [ + "back: brownish-grey with fine black markings", + "beak: short, strong, and curved", + "belly: reddish-brown with dark-grey bars", + "breast: plump and grey with a reddish hue", + "crown: reddish-brown with some white speckles", + "forehead: white with a distinctive black band", + "eyes: black and beady, with a red eye-ring", + "legs: sturdy and pinkish-grey with spurred feet", + "wings: brownish-grey with a subtle white bar", + "nape: reddish-brown with white speckles", + "tail: slightly rounded, with dark-grey and reddish-brown feathers", + "throat: white with a black-bordered crescent shape" + ], + "barbuda warbler": [ + "back: olive-brown feathers and distinctive patterns", + "beak: slender, slightly curved, and sharp", + "belly: pale yellow-white hue, soft feathers", + "breast: subtly streaked with brown and gray", + "crown: grayish-brown with slight crest", + "forehead: light gray, blending into the crown", + "eyes: small, dark with a white eye-ring", + "legs: long, slender, and grayish-blue", + "wings: olive-brown with white and gray wingbars", + "nape: pale gray, transitioning from the crown", + "tail: dark brown, medium-length, and slightly forked", + "throat: white with light gray streaks" + ], + "bare cheeked babbler": [ + "back: earthy brown plumage", + "beak: slightly curved, dark gray", + "belly: cream-colored feathers", + "breast: light brown with streaked pattern", + "crown: rich brown with streaks", + "forehead: brownish with faint streaks", + "eyes: deep black with white eyering", + "legs: sturdy and grayish-brown", + "wings: brown with white feather edgings", + "nape: warm brown with streaking", + "tail: brownish with darker feather tips", + "throat: mottled light brown" + ], + "bare cheeked trogon": [ + "back: brilliant green with metallic sheen", + "beak: short and stout, light yellowish color", + "belly: pale plum-colored feathers", + "breast: rich golden yellow plumage", + "crown: bright, metallic green feathers", + "forehead: iridescent green plumage", + "eyes: dark and round, surrounded by a thin black circle", + "legs: short and sturdy, light grey color", + "wings: metallic green with black wingtips and white patches", + "nape: vibrant green feathers transitioning into yellow", + "tail: long, emerald green with black stripes and white tipping", + "throat: golden yellow, extends to upper breast" + ], + "bare crowned antbird": [ + "back: olive-brown feathers", + "beak: short and stout, blackish-gray", + "belly: dull white with pale buff streaks", + "breast: white with irregular black barring", + "crown: blackish-gray with thin, bare skin patch", + "forehead: blackish-gray feathers", + "eyes: dark brown with pale gray eye-ring", + "legs: long and slender, grayish-blue", + "wings: olive-brown with faint dark barring", + "nape: olive-brown feathers", + "tail: long and rounded, olive-brown, with faint barring", + "throat: white with irregular black barring" + ], + "bare eyed antbird": [ + "back: olive-brown plumage", + "beak: short and hooked, blackish color", + "belly: pale buff with dark feathers", + "breast: gray plumage with white streaks", + "crown: black cap with a white patch", + "forehead: thin white stripe above the beak", + "eyes: piercing black, encircled by a white ring", + "legs: strong, grayish-blue color", + "wings: olive-green with dark feather tips", + "nape: white streaks on gray background", + "tail: long and straight, dark olive-green", + "throat: light gray with white streaks" + ], + "bare eyed ground dove": [ + "back: light brown with soft feathers", + "beak: short and sturdy, light-colored", + "belly: pale greyish-white, smooth feathers", + "breast: greyish-brown with light speckles", + "crown: pale grey with slight crest", + "forehead: whitish-grey, unmarked", + "eyes: encircled by orange-yellow bare skin", + "legs: short and strong, pinkish-grey", + "wings: brownish-grey with some black spots", + "nape: light grey, unmarked", + "tail: short and square, brown with black bands", + "throat: pale greyish-white, smooth feathers" + ], + "bare eyed myna": [ + "back: glossy black with greenish-blue sheen", + "beak: medium-sized, blackish gray", + "belly: white to light-gray", + "breast: grayish-white", + "crown: black with bluish-green iridescence", + "forehead: black with a featherless patch surrounding the eye", + "eyes: bare, blue eye-ring, pale iris", + "legs: dark gray, strong, and scaly", + "wings: black with a bluish-green sheen, whitish streaks on wing-coverts", + "nape: black with glossy sheen", + "tail: long, black, and slightly forked", + "throat: white to light gray" + ], + "bare eyed pigeon": [ + "back: light gray feathers with subtle sheen", + "beak: short, pale yellow hooked beak", + "belly: lighter gray plumage", + "breast: light gray breast feathers", + "crown: smooth, pale gray crest", + "forehead: bare white skin above beak", + "eyes: large eyes with prominent white ring", + "legs: short, strong legs with reddish-pink feet", + "wings: light grey with darker grey flight feathers", + "nape: pale gray with slightly darker feather tips", + "tail: grey feathers with darker gray edges", + "throat: light gray plumage, blending into breast" + ], + "bare eyed rail": [ + "back: brownish, with light stripe patterns", + "beak: short and slightly curved, pale color", + "belly: lighter, grayish-brown with thin streaks", + "breast: grayish-brown with vertical stripe patterns", + "crown: brown with some light streaks", + "forehead: slightly paler, blending into crown color", + "eyes: small and black, surrounded by a thin white ring (bare-eyed", + "legs: long and slender, pale gray color", + "wings: brownish with light and dark feather patterns", + "nape: brownish, similar to crown with light stripe patterns", + "tail: long and brown with faint stripes on feathers", + "throat: lighter, grayish-brown with thin streak patterns" + ], + "bare eyed white eye": [ + "back: sleek white feathers", + "beak: small, sharp, black", + "belly: smooth white plumage", + "breast: slightly puffed white feathers", + "crown: white, rounded crest", + "forehead: bright, white feathers", + "eyes: large, bare, black circles", + "legs: thin, gray delicate limbs", + "wings: white, strong, wide-winged", + "nape: white, slender neck area", + "tail: long, white, fan-shaped feathers", + "throat: soft, white feathered area" + ], + "bare faced bulbul": [ + "back: greenish-yellow feathers", + "beak: short, black, slightly curved", + "belly: pale yellow feathers", + "breast: yellowish-green plumage", + "crown: grayish-brown feathers", + "forehead: pale gray coloring", + "eyes: small, dark brown, with white eye-ring", + "legs: grayish-blue, slender", + "wings: greenish-yellow with black wingtips", + "nape: grayish-brown fading to yellow", + "tail: long, black, with yellow edges", + "throat: pale yellow with slight gray tinge" + ], + "bare faced curassow": [ + "back: black plumage with white speckles", + "beak: strong, grayish hooked bill", + "belly: black plumage with white speckles", + "breast: black plumage with white streaks", + "crown: curly, black crest feathers", + "forehead: smooth, black with a slight curve", + "eyes: reddish-brown with a thin, white eye-ring", + "legs: gray, sturdy, and scaled", + "wings: broad, black with white streaks", + "nape: black plumage with white patches", + "tail: long, black with white bands", + "throat: black with a patch of white/gray around the base" + ], + "bare faced go away bird": [ + "back: grayish-brown feathers", + "beak: black, slightly curved", + "belly: pale white-gray plumage", + "breast: light gray feathers", + "crown: dark gray, crest-like", + "forehead: black featherless skin", + "eyes: white, round with black pupils", + "legs: black, slender", + "wings: grayish-brown, long and pointed", + "nape: dark gray feathers", + "tail: black, thin with white tips", + "throat: light gray feathers" + ], + "bare faced ground dove": [ + "back: dull brown-gray feathers", + "beak: short, grayish-black", + "belly: light pale gray", + "breast: soft brown-gray", + "crown: brownish-gray with subtle stripe", + "forehead: little pale light brown", + "eyes: dark brown with pale eye-ring", + "legs: slim, grayish in color", + "wings: mottled brown-gray with subtle spots", + "nape: light brown-gray feathers", + "tail: medium-length, gray with white outer feathers", + "throat: soft pale gray" + ], + "bare faced ibis": [ + "back: sleek, grayish-brown feathers", + "beak: long, curved, grayish-black bill", + "belly: light gray to white feathering", + "breast: grayish-brown feathers with white accents", + "crown: blackish-gray, featherless skin", + "forehead: dark gray, bare skin", + "eyes: dark, piercing gaze set in gray skin", + "legs: long, sturdy, grayish-black legs", + "wings: large, grayish-brown feathers with a white stripe", + "nape: grayish-brown feathers with white accents", + "tail: long, narrow feathers in gray shades", + "throat: featherless, bare-faced, grayish-black skin" + ], + "bare headed laughingthrush": [ + "back: rusty-brown feathers", + "beak: short, thick, black", + "belly: off-white, streaked", + "breast: pale whitish-brown", + "crown: grayish-brown", + "forehead: slightly darker brown", + "eyes: round, dark", + "legs: pale flesh-colored", + "wings: rust-brown with blackish tips", + "nape: grayish-brown", + "tail: long, brownish-black", + "throat: off-white, streaked" + ], + "bare legged owl": [ + "back: feathered upper body with brown and white speckles", + "beak: sharp, hooked beak for tearing prey", + "belly: soft, white-feathered underbelly", + "breast: lightly streaked brown and white feathers", + "crown: rounded head with uniquely patterned plumage", + "forehead: smooth, feathered area above the eyes", + "eyes: large, round, black eyes for excellent night vision", + "legs: long, featherless legs with strong talons", + "wings: wide, brown and white patterned wings for silent flight", + "nape: back of the neck with white and brown feathers", + "tail: short, fan-shaped tail with brown and white bands", + "throat: lightly feathered area below the beak" + ], + "bare necked fruitcrow": [ + "back: smooth, dark feathers", + "beak: sharp, medium-length, black", + "belly: soft, black underbelly", + "breast: rounded, dark plumage", + "crown: sleek, black head feathers", + "forehead: flat, black feathers", + "eyes: bright, alert, black", + "legs: sturdy, long, black", + "wings: broad, strong, dark-feathered", + "nape: black, short hair-like feathers", + "tail: long, black, narrow, fan-like", + "throat: bare neck, skin-like texture" + ], + "bare necked umbrellabird": [ + "back: black, elongated feathers", + "beak: large, hooked, pale yellow", + "belly: black, dense plumage", + "breast: black, fluffy feathers", + "crown: umbrella-like crest, extending over head", + "forehead: covered by crest, black feathers", + "eyes: small, dark, encircled by thin, white feathers", + "legs: relatively short, grayish-black", + "wings: large, black, flight-ready", + "nape: black, slender feathers", + "tail: distinctive, long, black, wiry feathers", + "throat: bare, red, inflatable wattle" + ], + "bare shanked screech owl": [ + "back: brownish-gray with dense white spots", + "beak: short, hooked, and grayish-yellow", + "belly: whitish with dark grayish-brown streaks", + "breast: white with grayish-brown bars and streaks", + "crown: rounded, streaked with brownish-gray", + "forehead: flattened with grayish-brown feathers", + "eyes: large, yellow, and piercing", + "legs: long, featherless, and grayish-yellow", + "wings: broad, rounded, brownish-gray with white markings", + "nape: grayish-brown with white streaks", + "tail: medium length, brownish-gray with light bars", + "throat: white with streaks of dark grayish-brown" + ], + "bare throated bellbird": [ + "back: light green plumage", + "beak: short, stout, black", + "belly: white feathered", + "breast: bright white plumage", + "crown: greenish with slight crest", + "forehead: light green feathers", + "eyes: small, dark, surrounded by featherless blue skin", + "legs: grey or black, strong", + "wings: green and white feathers, medium length", + "nape: light green, blending into crown", + "tail: white, moderately long", + "throat: featherless blue, with prominent hanging wattle" + ], + "bare throated tiger heron": [ + "back: grey-brown feathers with a darker pattern", + "beak: long, thin, and yellowish-green", + "belly: creamy white and streaked with brown", + "breast: white with brown stripes", + "crown: dark in color, almost black", + "forehead: white stripe above eyes", + "eyes: dark with a yellowish ring", + "legs: long and yellow-green", + "wings: grey-brown with black stripes", + "nape: lighter grey-brown and streaked", + "tail: grey-brown with black bars", + "throat: mostly bare with yellow-orange skin" + ], + "bare throated whistler": [ + "back: olive-brown hue with subtle feather markings", + "beak: straight, slender, and sharp-pointed", + "belly: light cream with faint streaks", + "breast: grayish-white with noticeable brown spots", + "crown: olive-green with a slight shine", + "forehead: soft green with faint feather patterns", + "eyes: dark brown with a thin eye-ring", + "legs: sturdy, pale gray with sharp claws", + "wings: olive-green with hints of yellow and visible feather layers", + "nape: olive-brown with smooth feather transitions", + "tail: long and narrow, with olive-green feathers and white tips", + "throat: distinctive bare, blue-black patch surrounding the base of the beak" + ], + "barking owl": [ + "back: brown and white mottled feathers", + "beak: strong, sharp, and hooked, grayish-black color", + "belly: creamy white with brown markings", + "breast: white with brown streaks and spots", + "crown: dark brown with white speckles", + "forehead: pale brown with white streaks", + "eyes: large and forward-facing, yellow-orange color", + "legs: short and powerful, feathered, grayish-yellow", + "wings: brown and white spotted feathers, rounded shape", + "nape: brown with white spots", + "tail: medium-length, brown with white bands", + "throat: white with brown streaks" + ], + "barnacle goose": [ + "back: black-and-white patterned feathers", + "beak: short and dark-colored", + "belly: white-feathered underside", + "breast: white plumage with a hint of grey", + "crown: flat, slightly darker feathers on the top of the head", + "forehead: white, blending with crown feathers", + "eyes: small and dark, surrounded by white feathers", + "legs: black and web-footed", + "wings: black and white, with distinct stripes when extended", + "nape: white plumage extending from throat to the back of the head", + "tail: short and square-shaped, black and white", + "throat: white feathers meeting at the nape and extending to the breast" + ], + "barolo shearwater": [ + "back: sleek bluish-gray with a distinct light stripe", + "beak: long, robust, and slightly curved", + "belly: soft, off-white shading", + "breast: creamy white patch complementing belly", + "crown: grayish head smoothly blending into the back", + "forehead: subtly rounded with light gray hue", + "eyes: dark, alert, and slightly hidden in feathers", + "legs: sturdy pinkish-gray, equipped for long flights", + "wings: elongated and slender, designed for gliding", + "nape: seamless gray hue fading from the crown", + "tail: sharply pointed and well-feathered for precision", + "throat: white and delicately leading to breast area" + ], + "barratt warbler": [ + "back: olive-green feathers covering the upper back", + "beak: short, thin, and black beak for insect-catching", + "belly: pale yellow hue with subtle grey streaks", + "breast: light grey color with faint streaks", + "crown: vivid blue streaks running from forehead to nape", + "forehead: bright blue patch above the eyes", + "eyes: piercing black with a fine white eye-ring", + "legs: sturdy grey legs and small feet for perching", + "wings: dark grey with blue-toned edging and white bars", + "nape: blue and olive-green pattern, connecting crown to back", + "tail: long, square-ended tail with blue and black feathers", + "throat: striking white color, contrasting with the surrounding plumage" + ], + "barred antshrike": [ + "back: black-and-white barred pattern", + "beak: short and powerful, hooked tip", + "belly: pale yellow or white with barring", + "breast: black-and-white barred pattern", + "crown: black or dark-grey feathers", + "forehead: smooth, black or dark-grey", + "eyes: dark, beady, surrounded by pale feathers", + "legs: sturdy, yellow-orange or light-gray", + "wings: black-and-white bars with distinct patches", + "nape: black or grey with barring or spots", + "tail: black with white barring, long and rounded", + "throat: pale yellow or white, often with faint bars" + ], + "barred antthrush": [ + "back: dark brown with narrow black bars", + "beak: short and stout, pale yellow", + "belly: buff-colored with black bars", + "breast: brown with black bars", + "crown: dark brown with black bars", + "forehead: slightly lighter brown to match crown", + "eyes: small, black, and glossy", + "legs: strong and grayish", + "wings: brown with black bars, rounded shape", + "nape: dark brown with black bars", + "tail: long and brown with black bars, spread fan-shaped", + "throat: buff-colored with minimal barring" + ], + "barred becard": [ + "back: dark gray with blackish bars", + "beak: short, black, and stout", + "belly: pale yellow with blackish bars", + "breast: light gray with blackish bars", + "crown: dark gray with blackish streaks", + "forehead: light gray with fine blackish streaks", + "eyes: dark brown with thin pale eyering", + "legs: sturdy, slate gray", + "wings: dark gray with white wing bars", + "nape: dark gray with blackish streaks", + "tail: long, gray with white tips and blackish bars", + "throat: light gray with blackish streaks" + ], + "barred buttonquail": [ + "back: pale brown with black bars", + "beak: short and stout, pale gray", + "belly: buff-colored with dark brown barring", + "breast: tawny-brown with darker bars", + "crown: reddish-brown with black streaks", + "forehead: pale buff with dark streaks", + "eyes: small, dark brown", + "legs: strong, feathered, yellow-brown", + "wings: rounded, dark brown with faint bars", + "nape: reddish-brown with dark barring", + "tail: short, dark brown with black bars", + "throat: pale buff, unmarked" + ], + "barred cuckoo dove": [ + "back: olive-brown with subtle barring", + "beak: slim, curved, dark gray", + "belly: creamy white with grayish barring", + "breast: soft pinkish-brown with black bars", + "crown: grayish-brown with faint barring", + "forehead: slightly paler brown with fine bars", + "eyes: dark, small, encircled by thin eye-ring", + "legs: short, grayish-pink with scaly appearance", + "wings: olive-brown with black bars and white edges", + "nape: grayish-brown with faint dark bars", + "tail: long, olive-brown with black bars and white tips", + "throat: creamy white with delicate barring" + ], + "barred cuckooshrike": [ + "back: blue-gray feathers with dark and light barring", + "beak: strong, hooked, grayish-black", + "belly: pale gray with dark horizontal bars", + "breast: light gray with faint barring", + "crown: blue-gray feathers with some black and white streaks", + "forehead: smooth blue-gray plumage", + "eyes: dark brown, surrounded by fine white eyering", + "legs: sturdy, gray with sharp black claws", + "wings: elongated, blue-gray with dark and light bars and white wingtips", + "nape: blue-gray with faint darker streaks", + "tail: long, blue-gray with dark and light bars and white edges", + "throat: light gray with subtle dark barring" + ], + "barred dove": [ + "back: pale gray with dark barring", + "beak: short, black, and pointed", + "belly: light grayish-white, slightly speckled", + "breast: soft gray with faint barring", + "crown: pale gray with dark streaks", + "forehead: narrow and pale gray", + "eyes: dark, round, and expressive", + "legs: short with slate-gray feathers", + "wings: gray with prominent dark barring", + "nape: pale gray with dark streaks and barring", + "tail: long, gray, with distinct dark bars", + "throat: whitish-gray, unmarked" + ], + "barred eagle owl": [ + "back: patterned with dark markings on a lighter base", + "beak: strong, hooked, and dark in color", + "belly: light-colored with dark horizontal bands", + "breast: creamy-white with distinct dark vertical stripes", + "crown: rounded, mottled with dark brown, and pale spots", + "forehead: whitish with dark flecks", + "eyes: large, dark brown with a distinct white outline", + "legs: feathered, with powerful talons for gripping prey", + "wings: broad and rounded with dark bars on the upperwing, and pale barring on the underwing", + "nape: brown with prominent pale markings", + "tail: dark brown with regular white barring", + "throat: whitish, striped with vertical dark brown lines" + ], + "barred forest falcon": [ + "back: dark gray with white barring", + "beak: strong, hooked, black", + "belly: clean white with gray streaks", + "breast: whitish-gray with gray bars", + "crown: dark gray with white barring", + "forehead: light gray with white markings", + "eyes: large, dark brown", + "legs: robust, yellow-orange", + "wings: broad, long, dark gray with white bars", + "nape: gray with white barring", + "tail: long, gray with white bands", + "throat: white with fine gray streaks" + ], + "barred fruiteater": [ + "back: greenish with black barring", + "beak: short, hook-like, bright orange", + "belly: pale green with black barring", + "breast: greenish with dark barring", + "crown: greenish with black streaks", + "forehead: bright green", + "eyes: dark brown with pale eyerings", + "legs: strong and greenish", + "wings: broad and green with black bars", + "nape: greenish with black barring", + "tail: long and green with black bars", + "throat: bright green" + ], + "barred hawk": [ + "back: sleek dark feathers with horizontal lighter stripes", + "beak: sharp, hooked black beak", + "belly: white feathers with dark horizontal bars", + "breast: lightly barred white and dark feathers", + "crown: dark feathers with narrow light streaks", + "forehead: smooth dark feathers with lighter streaks", + "eyes: piercing yellow or orange eyes", + "legs: strong yellow legs with sharp talons", + "wings: black and white banded feathers with broad, powerful shape", + "nape: dark feathers with thin light streaks", + "tail: long dark feathers with pronounced white bars", + "throat: white feathers with patchy dark bars" + ], + "barred honeyeater": [ + "back: light brown with dark bars", + "beak: slender and slightly downward-curved", + "belly: pale with brown barring", + "breast: creamy with dark brown bars", + "crown: dusty brown", + "forehead: brown with faint barring", + "eyes: black and beady", + "legs: sturdy and grey", + "wings: brown with dark bars and light wingtips", + "nape: softly barred brown", + "tail: long and brown with dark bars", + "throat: creamy with dark brown bars" + ], + "barred laughingthrush": [ + "back: olive-brown plumage with dark grey barring", + "beak: black, slightly curved", + "belly: light grey with dark grey bars", + "breast: greyish-white with darker bars", + "crown: olive-brown with dark grey barring", + "forehead: olive-brown with dark grey streaks", + "eyes: dark brown with black eyeline", + "legs: yellowish-brown", + "wings: olive-brown with dark grey bars", + "nape: olive-brown with dark grey barring", + "tail: olive-brown with dark grey bars, long and rounded feathers", + "throat: greyish-white with darker bars" + ], + "barred long tailed cuckoo": [ + "back: alternating black and white horizontal bands", + "beak: long, sharp, and slightly curved black beak", + "belly: white feathers with fine black barring", + "breast: white feathers with black horizontal bars", + "crown: black feathers with white edges, creating a striped pattern", + "forehead: black feathers fading to white near the beak", + "eyes: medium-sized, black, and alert", + "legs: long, slender, and grey with powerful feet", + "wings: rounded with black and white barring and chestnut accents", + "nape: black feathers with white edges, creating a continued striped pattern from the crown", + "tail: exceptionally long, barred black and white, and slightly graduated", + "throat: white with fine horizontal black lines, extending to the breast" + ], + "barred owlet nightjar": [ + "back: grayish-brown with dark bars", + "beak: short, wide, hooked", + "belly: creamy-buff with brown barring", + "breast: pale grayish-brown with dark bars", + "crown: mottled with brown and black", + "forehead: grayish-brown with fine streaks", + "eyes: large, dark brown", + "legs: short, feathered, grayish-brown", + "wings: mottled gray and brown with distinct bars", + "nape: grayish-brown with dark streaks", + "tail: long, fan-shaped, dark brown with white markings", + "throat: pale gray with fine brown streaks" + ], + "barred parakeet": [ + "back: bold green feathers", + "beak: short and curved, yellowish", + "belly: green-yellow plumage", + "breast: greenish with black barring", + "crown: bright green feathers", + "forehead: yellow-green with faint barring", + "eyes: dark with white eye-ring", + "legs: gray slender limbs", + "wings: green with black bars", + "nape: green with black streaks", + "tail: long, green with black barring", + "throat: yellowish-green with black streaks" + ], + "barred rail": [ + "back: striped black and white patterns", + "beak: short, stout, and pale yellow", + "belly: white with dark barring", + "breast: white with black bars", + "crown: blue-gray with white stripe", + "forehead: blue-gray and slightly rounded", + "eyes: dark with a thin white eye-ring", + "legs: long, sturdy, and yellowish-green", + "wings: black and white bars with a blue-gray shoulder patch", + "nape: blue-gray with a white stripe", + "tail: relatively short, with black and white barring", + "throat: white with a hint of black barring" + ], + "barred tinamou": [ + "back: brownish with dark barring", + "beak: short and curved downward", + "belly: pale with blackish barring", + "breast: cinnamon-buff with dark markings", + "crown: dark brown with faint barring", + "forehead: lighter brown than the crown", + "eyes: small and dark with a white eyering", + "legs: stout and greyish", + "wings: brownish with dark barring", + "nape: brownish with dark barring", + "tail: short with dark barring", + "throat: buff-white with minimal markings" + ], + "barred wren warbler": [ + "back: olive-brown with dark barring", + "beak: short, curved, and pointed", + "belly: creamy white with dark bars", + "breast: pale brown with fine barring", + "crown: brownish-grey with dark barring", + "forehead: pale, slightly barred", + "eyes: dark brown with prominent white eyering", + "legs: slender, long, pale pinkish-grey", + "wings: olive-brown with dark bars and white wing patches", + "nape: brownish-grey with faint barring", + "tail: long, graduated, with dark bars and white tips", + "throat: pale grey, unbarred" + ], + "bartlett tinamou": [ + "back: olive-brown with slight sheen", + "beak: curved, dark color", + "belly: pale grey with fine dark markings", + "breast: cinnamon-rufous with black spots", + "crown: dark olive-brown", + "forehead: pale grayish-brown", + "eyes: small, dark with thin eye-ring", + "legs: dull yellow with strong claws", + "wings: rounded, olive-brown with blackish bars", + "nape: grayish-brown with faint darker streaks", + "tail: short, olive-brown with blackish bars", + "throat: pale gray-brown" + ], + "barusan cuckoo dove": [ + "back: light brown with a slight green sheen", + "beak: short, slightly curved, and dark grey", + "belly: pale grey with a hint of pink", + "breast: rosy-pink, blends into belly color", + "crown: light greyish-brown with a slight sheen", + "forehead: pale grey, smooth texture", + "eyes: dark and round, surrounded by thin eye-ring", + "legs: short and reddish-brown, with scaly texture", + "wings: light brown with green sheen, with a pattern of broken dark lines", + "nape: pale greyish-brown, leading into back color", + "tail: long, pale brown with black band at the tip", + "throat: very pale grey, almost white, fading to pinkish breast color" + ], + "basra reed warbler": [ + "back: light brown with streaks", + "beak: long and slender, dark colored", + "belly: pale and white", + "breast: buff-white with brown streaks", + "crown: dull brown with slight streaks", + "forehead: light brown blending with the crown", + "eyes: dark, small, with pale eyering", + "legs: long and pale pinkish-grey", + "wings: brownish with faint streaks, rounded tips", + "nape: subtle brown with light streaks", + "tail: brown, narrow and graduated", + "throat: white, blending into the breast" + ], + "bassian thrush": [ + "back: earthy brown with faint black streaks", + "beak: slightly curved, dark-colored", + "belly: pale buff with dark spots", + "breast: warm buff with blackish spots", + "crown: brownish-gray with fine streaks", + "forehead: lighter gray-brown with faint streaks", + "eyes: dark, surrounded by grayish-white eye-ring", + "legs: long, pinkish-brown", + "wings: brown with dark barring and white tips", + "nape: brownish-gray with fine streaks", + "tail: brown with dark bars and white corners", + "throat: creamy-white with dark spots and streaks" + ], + "bat falcon": [ + "back: dark gray, sleek feathers", + "beak: sharp, curved, black", + "belly: white with black barring", + "breast: pale, streaked with dark lines", + "crown: dark, smooth feathers", + "forehead: light gray, minimal feathers", + "eyes: dark, piercing, yellow-ringed", + "legs: yellow, strong, scaly", + "wings: long, slender, fast-flying", + "nape: dark and grayish-blue", + "tail: banded, black and white, forked", + "throat: white, unmarked, smooth" + ], + "bat hawk": [ + "back: dark brown with fine pale streaks", + "beak: short and hooked, black with yellow cere", + "belly: white with heavy dark brown barring", + "breast: white with brown streaks", + "crown: dark brown with small white spots", + "forehead: white with fine brown streaks", + "eyes: fierce, bright yellow", + "legs: featherless, yellow with sharp talons", + "wings: broad and powerful, dark brown with white spots", + "nape: dark brown with fine pale streaks", + "tail: dark brown with narrow white bands", + "throat: white and unmarked" + ], + "bat like spinetail": [ + "back: dark brown, streaked feathers", + "beak: short, pointed, blackish-gray", + "belly: white with gray-brown streaks", + "breast: pale similar to the belly, streaked brown", + "crown: rufous-brown, unmarked", + "forehead: rufous-brown, slightly paler than the crown", + "eyes: dark brown, rounded", + "legs: long, slender, grayish-brown", + "wings: dark brown, short, rounded", + "nape: dark brown with lighter streaks", + "tail: elongated, stiff feathers, dark brown", + "throat: pale grayish-white, slightly streaked" + ], + "bateleur": [ + "back: vibrant black feathers with white borders", + "beak: powerful, hooked, orange-red beak", + "belly: white plumage with black spots", + "breast: dark black feathers with a hint of red", + "crown: black plumage with a reddish-brown tinge", + "forehead: smooth, black feathers transitioning to red", + "eyes: piercing, dark brown eyes with red skin around them", + "legs: strong, orange-red legs with sharp talons", + "wings: long, broad wings with red and black feathers", + "nape: black and reddish-brown feathers blending together", + "tail: short, black tail with distinct white borders", + "throat: rich, reddish-brown plumage merging with black feathers" + ], + "bates nightjar": [ + "back: brownish-gray feathers with black bars", + "beak: small, black, slightly hooked tip", + "belly: pale gray with black speckles", + "breast: grayish-brown with faint black bars", + "crown: blackish-gray with rounded light spots", + "forehead: slightly paler gray with black speckles", + "eyes: large, dark, surrounded by blackish feathers", + "legs: short, grayish-black feather-covered", + "wings: long and pointed, brown with black bars", + "nape: grayish-brown with faint black bars", + "tail: fan-shaped, grayish-brown with black bars and white tips", + "throat: grayish-white with black speckles" + ], + "bates paradise flycatcher": [ + "back: vibrant, rufous-brown plumage", + "beak: black, short, and sturdy", + "belly: whitish underparts, pale rufous wash", + "breast: white to rufous, blending with belly", + "crown: sleek and blue-black, contrastingly glossy", + "forehead: narrow, blue-black, partially concealed", + "eyes: dark, piercing, with a black patch", + "legs: gray, slender, and well-adapted for perching", + "wings: long, rufous-brown, with white fringes", + "nape: rich, rufous-brown, transitions into crown", + "tail: long streamer-like, elegant, and white-tipped", + "throat: immaculate white, sharply defined" + ], + "bates sunbird": [ + "back: bright yellow feathers", + "beak: long, slender, and curved", + "belly: vibrant yellow plumage", + "breast: iridescent orange-red hue", + "crown: glossy green with purple sheen", + "forehead: shining green patch", + "eyes: small, dark, and alert", + "legs: thin, black, and twig-like", + "wings: mix of green, purple, and bronze feathers", + "nape: green transitioning to yellow", + "tail: elongated, green-to-bronze feathers", + "throat: metallic green sheen" + ], + "bates swift": [ + "back: streamlined, grayish-brown feathers", + "beak: short, black, and slightly hooked", + "belly: off-white with faint grayish stripes", + "breast: pale gray with subtle markings", + "crown: dark grayish-brown with smooth feathers", + "forehead: lighter gray merging into the crown", + "eyes: small, dark, and alert", + "legs: short, pale, and sturdy with sharp claws", + "wings: long, pointed, and dark grayish-brown with white accents", + "nape: grayish-brown with a smooth, sleek appearance", + "tail: short, slightly forked, and grayish-brown with white edges", + "throat: light gray, unmarked, and smoothly transitioning to breast" + ], + "baudin black cockatoo": [ + "back: dark greyish-black feathers", + "beak: large white hooked upper beak", + "belly: smoky grey plumage", + "breast: full black feathers with hints of grey", + "crown: velvety black feathers on the head", + "forehead: downy black plumage above the eyes", + "eyes: round and dark, surrounded by featherless greyish skin", + "legs: dark grey scaly legs", + "wings: wide black feathers with red panels on the underside", + "nape: black feathers on the back of the neck", + "tail: elongated black feathers with bold white or pale tips", + "throat: smooth black feathers extending to the breast area" + ], + "baudo guan": [ + "back: greenish-black with subtle blue sheen", + "beak: short, stout, dark grey", + "belly: whitish-grey with faint barring", + "breast: bluish-grey with black barring", + "crown: black with thin, upright crest", + "forehead: white with distinctive markings", + "eyes: dark brown, medium-sized", + "legs: short, greyish-blue", + "wings: bluish-black with light grey bands", + "nape: black with white streaks", + "tail: elongated, blue-black with white tips", + "throat: white with parallel blackish lines" + ], + "baudo oropendola": [ + "back: black, glossy feathers", + "beak: long, pointed, light-colored", + "belly: deep yellow hue", + "breast: black, shiny feathers", + "crown: blue-black crest with a sleek appearance", + "forehead: bright yellow waxy ornament", + "eyes: dark, beady orbs", + "legs: strong, grayish limbs", + "wings: black with golden-yellow under-wing coverts", + "nape: black, glistening feathers", + "tail: yellow, distinctive fork shape", + "throat: black, feathery plumage" + ], + "baumann greenbul": [ + "back: olive-green and smooth feathers", + "beak: short, curved, and pale-yellow", + "belly: light underbelly with pale-yellow tones", + "breast: pale-yellow with faint streaks", + "crown: dark olive-green with subtle streaks", + "forehead: smooth olive-green feathers", + "eyes: small, dark-brown, and alert", + "legs: slender and greyish-brown", + "wings: olive-green with a hint of yellow", + "nape: olive-green with a slight transition from the crown", + "tail: long, narrow, and olive-green with yellowish edges", + "throat: pale-yellow, blending into the breast" + ], + "bay antpitta": [ + "back: olive-brown with subtle streaks", + "beak: stout, slightly curved, yellowish-brown", + "belly: pale gray with scaled pattern", + "breast: gray with dense scale-like pattern", + "crown: olive-brown with faint streaks", + "forehead: slightly paler olive-brown", + "eyes: dark with pale eyering", + "legs: long, pinkish-gray", + "wings: olive-brown with pale bars", + "nape: olive-brown, streaked", + "tail: short and rounded, olive-brown", + "throat: pale gray with thin streaks" + ], + "bay coucal": [ + "back: dark brown plumage", + "beak: long, black, and slightly curved", + "belly: creamy off-white feathers", + "breast: reddish-brown, streaked with black", + "crown: dark reddish-brown", + "forehead: slightly lighter reddish-brown", + "eyes: deep black with white eye-ring", + "legs: black, with long toes and claws", + "wings: grand, reddish-brown with white spots", + "nape: dark reddish-brown", + "tail: long, with black and white barring", + "throat: creamy off-white, slightly streaked" + ], + "bay woodpecker": [ + "back: olive-green with black bars", + "beak: short, strong, and chisel-like", + "belly: whitish with black streaks", + "breast: creamy-white with black spots", + "crown: red with black stripes", + "forehead: red with black markings", + "eyes: black with pale yellow surrounds", + "legs: grayish-blue with sharp claws", + "wings: olive-green with white bars and black spots", + "nape: black with red or yellow patches", + "tail: black with white outer feathers and red or yellow tips", + "throat: white with black streaks" + ], + "bay wren": [ + "back: small, brown with subtle black markings", + "beak: short, thin, and pointed", + "belly: light-colored with faint brown streaks", + "breast: whitish with slight brown spots", + "crown: rusty-red with dark brown markings", + "forehead: light brown", + "eyes: dark, beady, surrounded by white eye-ring", + "legs: slim, dark-greyish", + "wings: brown with blackish streaks and white-tipped feathers", + "nape: reddish-brown with darker markings", + "tail: long, dark brown with white-tipped outer feathers", + "throat: whitish with brownish streaks" + ], + "bay backed shrike": [ + "back: grayish-olive upperparts", + "beak: short, strong hooked beak", + "belly: pale underparts", + "breast: light grey chest area", + "crown: black and white striped head", + "forehead: white forehead patch", + "eyes: small, dark, and alert", + "legs: scaly, dull grey", + "wings: black, white, and olive-green feathers", + "nape: grayish-olive nape", + "tail: black and white, distinct forked shape", + "throat: light grey extending to breast" + ], + "bay breasted cuckoo": [ + "back: olive-green feathers covering the upper body", + "beak: long, slightly curved black bill", + "belly: pale olive-gray plumage", + "breast: warm buff color with bay tinge", + "crown: olive-green stripe running along the top of the head", + "forehead: light greenish-yellow patch above the eye", + "eyes: large, round with a dark brown iris", + "legs: grayish-blue, slender, and long for arboreal hopping", + "wings: olive-green with lighter green secondary feathers and white tips", + "nape: olive-green collar encircling the neck", + "tail: long, dark green with white outer feathers", + "throat: grayish-white with slightly darker streaks" + ], + "bay capped wren spinetail": [ + "back: olive-brown streaks", + "beak: short, pale, and curved", + "belly: light buff color", + "breast: buff with faint streaks", + "crown: rufous-orange cap", + "forehead: rufous-orange patch", + "eyes: dark with white ring", + "legs: long and slender with brownish-gray color", + "wings: olive-brown with black bars", + "nape: rufous-orange with streaks", + "tail: long, thin, and reddish-brown with barring", + "throat: buff and unstreaked" + ], + "bay chested warbling finch": [ + "back: olive green with faint streaks", + "beak: short, conical, grayish-black", + "belly: creamy white with light streaks", + "breast: bright yellow-orange with black streaks", + "crown: olive-green with faint streaks", + "forehead: olive-green meeting yellow-orange breast", + "eyes: dark with pale eye-ring", + "legs: light pinkish-gray and slender", + "wings: olive-green with dark flight feathers", + "nape: olive green with faint streaks", + "tail: olive-green with dark central feathers", + "throat: yellow-orange blending to breast" + ], + "bay crowned brushfinch": [ + "back: olive-green feathers with subtle streaking", + "beak: short, conical shaped, and black", + "belly: pale yellow and gray feathers", + "breast: grayish white with faint streaking", + "crown: vibrant yellow with a slight crest", + "forehead: bright yellow feathers leading into the crown", + "eyes: small, black with a ring of white feathers", + "legs: slender, gray with strong claws for perching", + "wings: olive-green and black feathers with streaking", + "nape: olive-green transitioning from the crown", + "tail: long, black feathers with white outer tips", + "throat: grayish-white and smooth texture" + ], + "bay headed tanager": [ + "back: bright green with bluish tints", + "beak: short and cone-shaped, dark gray", + "belly: light blueish gray", + "breast: rich turquoise-blue", + "crown: bright emerald green", + "forehead: greenish blue", + "eyes: small, black, with a white eyering", + "legs: pale pinkish-gray", + "wings: green with faint bluish edges", + "nape: golden green", + "tail: long and green with blue outer feathers", + "throat: deep turquoise-blue" + ], + "bay ringed tyrannulet": [ + "back: pale olive-green feathers", + "beak: small, slender black bill", + "belly: light yellowish-white", + "breast: faint pale olive wash", + "crown: pale greyish-olive", + "forehead: narrow pale yellowish-white stripe", + "eyes: dark, encircled by pale eye-ring", + "legs: slender, grayish-blue", + "wings: pale olive-green with two narrow white wing-bars", + "nape: greyish-olive blending to the back", + "tail: fairly long, pale olive-green with dark outer feathers", + "throat: pale yellowish-white" + ], + "bay vented cotinga": [ + "back: pale grayish-blue plumage", + "beak: short and hooked, black", + "belly: yellowish-white with pale gray markings", + "breast: pale gray-blue fading to white", + "crown: pale gray-blue", + "forehead: pale gray-blue, unmarked", + "eyes: dark brown, relatively small", + "legs: black with gray-blue feathering", + "wings: pale gray-blue with slight yellowish-brown tinge", + "nape: pale gray-blue, continuous with crown", + "tail: long, broad, pale gray-blue with yellowish-brown tips", + "throat: white, unmarked" + ], + "baya weaver": [ + "back: olive-yellow feathers with brown streaks", + "beak: long, pointed, and silver-gray", + "belly: light, creamy-white color", + "breast: pale, golden-yellow with brown streaks", + "crown: golden-yellow with a distinct black patch", + "forehead: bright yellow feathers", + "eyes: small, dark, and beady", + "legs: slender and light gray", + "wings: brown with white and yellow markings", + "nape: olive-yellow with brown streaks", + "tail: short and pointed, with brown and white feathers", + "throat: golden-yellow with a dark, brownish band" + ], + "beach kingfisher": [ + "back: iridescent blue-green feathers", + "beak: large, strong, black", + "belly: white with light blue streaks", + "breast: white with blue tinge", + "crown: deep blue, slightly crested", + "forehead: bright blue with black markings", + "eyes: dark, alert, with black rings", + "legs: short, strong, red-orange", + "wings: blue-green, elongated, with black tips", + "nape: blue-green, with black speckles", + "tail: long, blue-tipped, white central feathers", + "throat: white with light blue streaks" + ], + "beach thick knee": [ + "back: brownish-black feathers with white specks", + "beak: long, slightly curved, black and stout", + "belly: white feathers with light gray streaks", + "breast: pale brown feathered with white markings", + "crown: tan feathers with dark brown streaks", + "forehead: light tan feathers mixing with the crown", + "eyes: large, black, encircled by a white ring", + "legs: long, grayish-yellow slender legs", + "wings: brown feathers with white spots and streaks", + "nape: buff-colored with dark brown streaks", + "tail: brown and white barred feathers with white tip", + "throat: white feathers with light gray streaks" + ], + "bearded guan": [ + "back: dark green with subtle streaks", + "beak: stout, curved, pale ivory", + "belly: whitish-gray with bold black markings", + "breast: pale gray with black speckles", + "crown: glossy blue-black with a reddish tuft", + "forehead: red with a black tuft", + "eyes: dark and beady, surrounded by light blue skin", + "legs: robust, light pinkish-gray", + "wings: dark green with black and white secondary feathers", + "nape: glossy blue-black", + "tail: long, dark green with broad white tips", + "throat: white with black streaks leading to a beard-like tuft of feathers" + ], + "bearded mountaineer": [ + "back: greenish-gray with light feather streaks", + "beak: long, curved, black, nectar-feeding", + "belly: pale gray with thin streaks", + "breast: vibrant green, feather fringe", + "crown: green, smooth feathers", + "forehead: green, narrow feather line", + "eyes: black, alert with white eyering", + "legs: sturdy, gray with long claws", + "wings: green to gray, long and strong for flight", + "nape: green, connected to crown and back", + "tail: greenish-gray, long and slightly forked", + "throat: iridescent green, adorned with a beard-like tuft" + ], + "bearded screech owl": [ + "back: mottled dark and light brown feathers", + "beak: short, hook-shaped, grayish-black", + "belly: horizontally striped, grayish-white", + "breast: barred with dark brown and white plumage", + "crown: streaked with brown and white feathers", + "forehead: intermixed light and dark plumage", + "eyes: large, yellow, surrounded by dark patches", + "legs: feathered, light brown with gray bands", + "wings: rounded edges, striped brown and white", + "nape: streaked brown and white feathers", + "tail: striped with grayish-brown and white bands", + "throat: white, with distinct \"beard\" of black-tipped bristles" + ], + "bearded scrub robin": [ + "back: brownish-grey feathers with streaks", + "beak: short, slender, and slightly curved", + "belly: white with subtle grey-brown stripes", + "breast: light grey-brown with streaks", + "crown: rusty-orange color", + "forehead: grey-brown with no distinct markings", + "eyes: small, black, and alert", + "legs: long, thin, and greyish-brown", + "wings: brownish-grey with faint white streaks", + "nape: rusty-orange color, connected to crown", + "tail: elongated, brownish-grey with white outer feathers", + "throat: white with a distinctive grey \"beard\" marking" + ], + "bearded tachuri": [ + "back: olive-green feathers with tinges of yellow", + "beak: thin, slightly curved, black in color", + "belly: pale yellowish underparts", + "breast: predominantly bright yellow feathers", + "crown: grayish brown with a distinctive crest", + "forehead: grayish brown, part of the crest", + "eyes: dark brown, medium-sized", + "legs: slim, light pink or gray legs and feet", + "wings: olive-green with black wing bars and white edges", + "nape: grayish brown, blending into the crown", + "tail: dark brown with white tips and outer edges", + "throat: slightly paler yellow than breast, features a black \"beard\" of feathers" + ], + "bearded vulture": [ + "back: dark gray feathers with white streaks", + "beak: strong, hooked, blackish in color", + "belly: reddish-brown and black plumage", + "breast: buff-colored feathers with dark streaks", + "crown: feathers tinged with dark gray and rufous", + "forehead: white forehead feathers", + "eyes: dark, surrounded by orange or rusty-red skin", + "legs: feathered, pale blue-gray with large talons", + "wings: broad, long, with dark gray and white patterns", + "nape: rufous neck and nape feathers", + "tail: elongated, wedge-shaped with dark gray and buff stripes", + "throat: speckled and mottled with dark feathers" + ], + "bearded wood partridge": [ + "back: olive-green with black streaks", + "beak: short and stout, grayish-black", + "belly: reddish-brown with dark barring", + "breast: grayish-blue with subtle black barring", + "crown: deep chestnut color", + "forehead: chestnut with grayish-blue edges", + "eyes: dark brown with pale eye-ring", + "legs: strong and yellowish-orange", + "wings: olive-green with black barring", + "nape: chestnut blending to olive-green", + "tail: short and chestnut with black barring", + "throat: whitish-gray with fine black streaks" + ], + "bearded woodpecker": [ + "back: dark, horizontal stripes on grayish-brown", + "beak: black, long, and chisel-like", + "belly: buff, streaked with black", + "breast: white with black spots", + "crown: red or grey color, depending on gender", + "forehead: white to greyish-white", + "eyes: small, black, and alert", + "legs: sturdy, grey with sharp claws", + "wings: grayish-brown with white spots and bands", + "nape: red on males, grey on females", + "tail: rigid, black with white bands, used for support when pecking", + "throat: white or pale grey with spiky \"beard\" of bristles" + ], + "beaudouin snake eagle": [ + "back: dark brown feathers covering upper body", + "beak: sharply hooked, grayish-black color", + "belly: white to pale gray feathers", + "breast: white feathers, sometimes with brown speckles", + "crown: dark brown feathers atop the head", + "forehead: dark brown smoothly transitioning into lighter face", + "eyes: striking yellow with black pupils", + "legs: strong yellow legs with sharp talons", + "wings: large, dark brown feathers with white or pale gray underwings", + "nape: dark brown feathers connecting head and back", + "tail: broad, fanning feathers with alternating bands of dark brown and white", + "throat: light gray to white feathers below the beak" + ], + "beautiful firetail": [ + "back: striking red and black pattern", + "beak: short, strong, and conical", + "belly: brilliant red with white spots", + "breast: vibrant scarlet hue with white highlights", + "crown: deep red with black speckles", + "forehead: rich red with small black markings", + "eyes: black and bright, surrounded by striking patterns", + "legs: sturdy and dark", + "wings: black and olive-green with bold red edges", + "nape: vivid red with intricate black patterns", + "tail: olive-green with red and black edging", + "throat: velvety red with delicate white speckles" + ], + "beautiful fruit dove": [ + "back: vibrant green feathers", + "beak: short, stout, and yellow-tipped", + "belly: soft mixture of purple and yellow", + "breast: rich orange plumage", + "crown: deep green hue", + "forehead: bright green feathers converging", + "eyes: dark, round, and expressive", + "legs: short and pinkish-grey", + "wings: green with a touch of blue on the sides", + "nape: green transitioning to orange hues", + "tail: long, with yellow and purple feathers", + "throat: brilliant green-blue sheen" + ], + "beautiful hummingbird": [ + "back: vibrant iridescent green feathers", + "beak: long, slender, and gently curved", + "belly: soft and pale cream-colored", + "breast: shimmering green-to-purple gradient", + "crown: radiant, glossy violet-hued head", + "forehead: small, yet distinct and brightly colored", + "eyes: round, small and shiny black beads", + "legs: dainty, delicate, and short", + "wings: rapidly fluttering, translucent and elegant", + "nape: smooth transition from radiant head to iridescent back", + "tail: slim, pointed, and adorned with shimmering feathers", + "throat: striking ruby-red gorget glistening in the sunlight" + ], + "beautiful jay": [ + "back: vibrant blue feathers with hints of white", + "beak: sharp, black, and sturdy", + "belly: soft white and gray plumage", + "breast: delicate shades of blue and gray", + "crown: striking blue crest adorned with black patterns", + "forehead: blue and black striped markings", + "eyes: dark, expressive, and alert", + "legs: slender and dark gray", + "wings: bold blue with contrasting black and white stripes", + "nape: smooth transition from blue crown to gray body", + "tail: long, luxurious blue feathers with white tips", + "throat: subtle gray and white gradient" + ], + "beautiful nuthatch": [ + "back: vibrant blue feathers with striking patterns", + "beak: sharp, black, and pointed for precision", + "belly: creamy white with soft undertones", + "breast: rich chestnut gracefully transitioning from belly", + "crown: sleek black, creating a stunning contrast", + "forehead: a bold transition from black to blue", + "eyes: dark, alert, showcasing endless curiosity", + "legs: sturdy, grayish-brown carefully gripping the perch", + "wings: magnificent blue, lined with delicate black patterns", + "nape: smoothly composed colors flowing towards the back", + "tail: elongated with an eye-catching fan of blue and black", + "throat: gentle white, adding a touch of elegance" + ], + "beautiful sibia": [ + "back: vibrant, multicolored feathers", + "beak: slender, slightly curved black beak", + "belly: soft grey plumage", + "breast: deep purple-blue coloring", + "crown: striking orange crest", + "forehead: vivid orange-yellow hue", + "eyes: piercing, black bead-like eyes", + "legs: sturdy, grey featherless legs", + "wings: magnificent yellow-blue gradient", + "nape: gracefully arched yellow-to-purple transition", + "tail: elongated, dark blue with white tips", + "throat: bright yellow-contoured feathers" + ], + "beautiful sunbird": [ + "back: vibrant iridescent green", + "beak: slender, curved, and black", + "belly: bright yellow with blue patches", + "breast: metallic turquoise-blue", + "crown: iridescent purple-blue", + "forehead: shimmering emerald green", + "eyes: beady and black, surrounded by a thin white circle", + "legs: delicate and black", + "wings: glossy green with flashes of blue and purple", + "nape: dazzling emerald green", + "tail: long and deeply forked, exhibiting shiny blues and greens", + "throat: intense red-orange with a purple sheen" + ], + "beautiful treerunner": [ + "back: vibrant green feathers", + "beak: sharp, slender, and curved", + "belly: soft, pale hue", + "breast: striking orange plumage", + "crown: radiant, iridescent blue", + "forehead: bold, cobalt streak", + "eyes: deep, dark, and curious", + "legs: thin, sturdy, and swift", + "wings: long, tapered, and aerodynamic", + "nape: colorful, textured feathers", + "tail: elongated, iridescent feathers", + "throat: delicate white with markings" + ], + "beautiful woodpecker": [ + "back: vibrant patterns adorned with feathers", + "beak: sturdy, chisel-like structure", + "belly: soft and warm under-feathers", + "breast: richly colored with distinct markings", + "crown: attractive crest sitting atop the head", + "forehead: dashes of color transitioning into the crown", + "eyes: piercing gaze with a touch of curiosity", + "legs: sturdy limbs with sharp, clinging claws", + "wings: vibrant hues stretched across strong flaps", + "nape: striking plumage cascading down the neck", + "tail: impressive array of feathers aiding in balance", + "throat: delicate feathers accentuating the vivid head" + ], + "beck petrel": [ + "back: sleek black feathers", + "beak: small, sharp, and dark", + "belly: light gray with black spotting", + "breast: pale gray with speckled markings", + "crown: deep black, slightly raised", + "forehead: dark and smoothly contoured", + "eyes: small, round, and black", + "legs: short, yellowish, and webbed", + "wings: long, pointed, glossy black", + "nape: black, with a slight curve", + "tail: forked, black with grayish tips", + "throat: pale gray, with light black streaks" + ], + "beijing babbler": [ + "back: olive-brown feathers", + "beak: short and conical", + "belly: off-white with pale streaks", + "breast: buff-colored with streaks", + "crown: rufous-brown with pale streaks", + "forehead: pale buff with fine streaks", + "eyes: dark, rounded with white eye-ring", + "legs: pinkish-gray and sturdy", + "wings: brown with reddish-brown highlights", + "nape: olive-brown with fine streaks", + "tail: long, dark brown with white tips", + "throat: white with pale buff streaks" + ], + "belcher gull": [ + "back: sleek gray feathers", + "beak: strong and sharp for fishing", + "belly: soft white plumage", + "breast: white and puffed-out", + "crown: smooth gray feathers", + "forehead: pale gray and gently sloping", + "eyes: black and alert", + "legs: sturdy and yellow", + "wings: expansive gray with black tips", + "nape: graceful curve transitioning to the body", + "tail: short and straight with black band", + "throat: white feathers under beak" + ], + "belding yellowthroat": [ + "back: olive-green with subtle black streaks", + "beak: relatively short, straight, and black", + "belly: pale yellow with faint streaks on sides", + "breast: bright yellow fading to pale at edges", + "crown: olive-green top with yellow around sides", + "forehead: black mask extending to eye line", + "eyes: small, black, framed by yellow feathers", + "legs: slender, light gray with strong feet", + "wings: olive-green with faint black patterns", + "nape: olive-green transitioning to yellow", + "tail: long, dark with some white tipping", + "throat: vibrant yellow with black loral stripes" + ], + "belford melidectes": [ + "back: olive-green feathers", + "beak: long, thin, and black", + "belly: bright yellow plumage", + "breast: olive-green with black markings", + "crown: black feathers with a yellow stripe down the middle", + "forehead: olive-green feathering", + "eyes: black eyes with small white eye-ring", + "legs: grey, slender legs and feet", + "wings: iridescent blue/green feathers with white edging", + "nape: olive-green colored with yellow stripe down the middle", + "tail: long feathers, olive-green with black and white tips", + "throat: screaming yellow with black streaks" + ], + "bell miner": [ + "back: olive-green feathers", + "beak: short, sharp, and black", + "belly: pale yellow with green tinge", + "breast: vibrant yellow-green plumage", + "crown: bright olive-green feathers", + "forehead: yellow-green with slight crest", + "eyes: round, dark brown", + "legs: strong, dark grey", + "wings: medium-length, green with black primaries", + "nape: olive-green with yellow edges", + "tail: dark green and fan-shaped", + "throat: vibrant yellow with orange tint" + ], + "bell sparrow": [ + "back: light brown with soft streaks", + "beak: small, conical, and dark grey", + "belly: pale greyish-white color", + "breast: pale greyish-white with soft streaks", + "crown: dark brown with fine streaks", + "forehead: light brown with fine streaks", + "eyes: small and dark with a faint eyering", + "legs: thin and greyish-brown", + "wings: brown with light streaks and white wingbars", + "nape: light brown with soft streaks", + "tail: brown with light edges and slight forks", + "throat: pale greyish-white color" + ], + "belted flycatcher": [ + "back: blueish-gray with dark streaks", + "beak: short, sharp, black", + "belly: light yellowish-white", + "breast: pale gray with slight blue tint", + "crown: bright blue with a hint of green", + "forehead: white with blue accents", + "eyes: dark brown, surrounded by pale white ring", + "legs: sturdy, dark gray", + "wings: blueish-gray with thick white bands on tips", + "nape: blueish green with light streaks", + "tail: blue-gray with white tips on outer feathers", + "throat: white with a soft bluish tinge" + ], + "bendire thrasher": [ + "back: brownish-gray with faint streaks", + "beak: long, slender, and slightly curved", + "belly: pale grayish-white", + "breast: light gray with sparse brown streaks", + "crown: grayish-brown", + "forehead: grayish-brown, like crown", + "eyes: dark with pale whitish eyering", + "legs: long, dull gray", + "wings: grayish-brown, slightly darker than back", + "nape: grayish-brown, similar to crown", + "tail: long and dark, white corners on tips", + "throat: whitish-gray, lightly streaked" + ], + "bengal bushlark": [ + "back: light brown with streaks of darker shades", + "beak: short, sharp, and cone-shaped", + "belly: pale whitish-yellow hue", + "breast: light brown with subtle streaks", + "crown: reddish-brown with slight streaks", + "forehead: faint supercilium stripe", + "eyes: dark and round, outlined with white", + "legs: long and slender, pale pinkish-grey", + "wings: warm brown with pale wingbars", + "nape: light reddish-brown with streaks", + "tail: brown with white edges, forked", + "throat: pale whitish-yellow hue" + ], + "bengal florican": [ + "back: dark brownish-black plumage with white streaks", + "beak: short, sharp, and black", + "belly: white with black stripes", + "breast: dark brown-black with white patches", + "crown: black feathers with a slight crest", + "forehead: black with a white spot above the eye", + "eyes: bright, dark brown", + "legs: long, slender, and yellowish", + "wings: large, dark brownish-black with white markings", + "nape: dark brownish-black with white streaks", + "tail: short and rounded, brown-black with white streaks", + "throat: black with fine white markings" + ], + "benguet bush warbler": [ + "back: olive-brown feathers with subtle streaks", + "beak: slender, curved, sharp-tipped dark bill", + "belly: yellowish-olive and pale grey color", + "breast: olive-grey plumage with faint streaks", + "crown: olive-green with warm brown tones", + "forehead: yellowish-olive to olive-grey tint", + "eyes: dark brown with pale eye-ring", + "legs: pinkish-brown with strong, slender structure", + "wings: olive-brown with three primary feathers", + "nape: olive-green, blending with the crown", + "tail: medium-length, olive-brown with faint bars", + "throat: pale grey with subtle plumage patterns" + ], + "bennett woodpecker": [ + "back: black and white striped pattern", + "beak: strong, chisel-shaped, dark-colored", + "belly: pale, off-white with dark speckles", + "breast: light cream or whitish with dark speckling", + "crown: red or reddish-brown crest in males, darker in females", + "forehead: black in males, speckled pattern in females", + "eyes: small and dark with white eye-ring", + "legs: grayish or blue-gray with strong and sharp claws", + "wings: black with white patches and checkered pattern", + "nape: strong zebra-like black and white stripes", + "tail: stiff with black and white barred pattern", + "throat: pale grayish-white with dark speckles" + ], + "berlepsch canastero": [ + "back: rich brown with subtle darker streaks", + "beak: short, sharp, and slightly curved", + "belly: pale buff with fine tawny streaks", + "breast: warm buff color with faint, darker markings", + "crown: rusty brown with fine streaks", + "forehead: reddish-brown with darker streaks", + "eyes: small and dark, encircled by light feathers", + "legs: strong and slender, pale pinkish-brown", + "wings: long and rounded, patterned with brown and tawny", + "nape: reddish-brown with darker, fine streaks", + "tail: long and graduated, brown with narrow, pale edges", + "throat: white with a slightly buff-grey tint" + ], + "berlepsch tinamou": [ + "back: dark olive-brown with slight iridescence", + "beak: short and curved, grayish-blue", + "belly: creamy white to pale buff", + "breast: reddish-brown, fading to white near belly", + "crown: dark brown with a bluish sheen", + "forehead: blackish-brown to grayish-blue", + "eyes: dark brown with white eye-ring", + "legs: strong and robust, pale blue-gray", + "wings: short and rounded, olive-brown with blackish spots", + "nape: dark olive-brown with slight blue iridescence", + "tail: short and rounded, dark brown with faint bars", + "throat: grayish-white with a tinge of pale buff" + ], + "bermuda petrel": [ + "back: dark grey with white streaks", + "beak: hooked and black", + "belly: white with black flecks", + "breast: white and fluffy", + "crown: dark grey with white speckles", + "forehead: white with grey streaks", + "eyes: black with white eyelids", + "legs: pinkish-grey and featherless", + "wings: long and narrow with black tips", + "nape: dark grey with white speckles", + "tail: black with a white band", + "throat: white and slim" + ], + "bernier teal": [ + "back: bluish-gray hues with fine feathers", + "beak: black, compact, and slightly hooked", + "belly: grayish-white with subtle spots", + "breast: pale gray with delicate streaks", + "crown: dark gray with smooth feathers", + "forehead: lighter gray transition from the crown", + "eyes: round and black, encircled by a faint white ring", + "legs: orange-yellow with webbed feet", + "wings: bluish-gray with a prominent green patch", + "nape: grayish-blue with a seamless connection to the back", + "tail: short and dark, with prominent exterior feathers", + "throat: white with fine gray streaks" + ], + "bernier vanga": [ + "back: dark gray with feathers", + "beak: strong, hooked, light-colored", + "belly: pale gray or white", + "breast: gray-white and feathered", + "crown: grayish-black feathers", + "forehead: smooth gray feathers", + "eyes: alert, black orbs", + "legs: sturdy, light gray", + "wings: dark gray with white markings", + "nape: grayish-black plumage", + "tail: long, black with white tips", + "throat: pale gray feathers" + ], + "berthelot pipit": [ + "back: light brown with faint streaks", + "beak: sharp, pointed, and dark-colored", + "belly: pale cream and slightly streaked", + "breast: pale buff with light brown streaks", + "crown: light brown with fine dark streaks", + "forehead: light brown, blending with the crown", + "eyes: small, dark, and round", + "legs: thin, pale pinkish-gray", + "wings: brownish, with black and white markings", + "nape: light brown, marked with fine dark streaks", + "tail: brownish-black with white outer feathers", + "throat: white, bordered by dark streaks" + ], + "bertoni antbird": [ + "back: brownish-grey feathers", + "beak: short, pointed, black", + "belly: pale greyish-white", + "breast: light grey with faint streaks", + "crown: dark grey with slight crest", + "forehead: smooth, dark grey", + "eyes: small, black, encircled with faint eye-ring", + "legs: slender, greyish-brown", + "wings: brown feathers with faint barring", + "nape: dark grey, blending into back color", + "tail: long, brown with faint bars, rounded tips", + "throat: white, slightly contrasting with breast" + ], + "bertram weaver": [ + "back: vibrant green feathers", + "beak: strong, conical shape", + "belly: pale yellow plumage", + "breast: bright yellow feathers", + "crown: emerald green with a crest", + "forehead: golden-green hues", + "eyes: small, black, and round", + "legs: slender and grayish-pink", + "wings: greenish-black with yellow tips", + "nape: rich green coloration", + "tail: long, green, and pointed", + "throat: bright yellow feathering" + ], + "beryl spangled tanager": [ + "back: vibrant green with spangled pattern", + "beak: black, short, and slightly curved", + "belly: bright turquoise blue", + "breast: iridescent blue-green with spangled spots", + "crown: shiny black with spangled green spots", + "forehead: shimmering blue-green", + "eyes: black with narrow white eyering", + "legs: gray and thin", + "wings: green with blue edges and spangled pattern", + "nape: deep, glossy green", + "tail: long, green, and blue with spangled tips", + "throat: radiant blue with hints of green" + ], + "berylline hummingbird": [ + "back: vibrant green with a metallic sheen", + "beak: long, slender, and straight", + "belly: pale grayish-white with faint green iridescence", + "breast: light gray with hints of green and blue", + "crown: bright green with a blue sheen", + "forehead: shimmering blue-green", + "eyes: small, dark, and round", + "legs: short, slender, and black", + "wings: elongated, iridescent green, and fast-moving", + "nape: green with a blue sheen, fading to gray", + "tail: forked, iridescent green and blue feathers", + "throat: bright turquoise-blue with a metallic sheen" + ], + "besra": [ + "back: dark brown with streaks of white", + "beak: strong, hooked, black tip with a blue base", + "belly: off-white with brownish streaks", + "breast: white with dark brown bars", + "crown: dark brown with a black stripe", + "forehead: transition from brown to white", + "eyes: big, round, and black", + "legs: yellow with sharp claws", + "wings: large, wide, brown with white bars", + "nape: pale brown with black stripe", + "tail: brown with horizontal white bands", + "throat: white with brown streaks" + ], + "bhutan laughingthrush": [ + "back: olive-brown feathers with a slight sheen", + "beak: stout, medium-length, and slightly curved", + "belly: pale grey to beige feathers", + "breast: greyish-brown feathers with hints of olive", + "crown: dull yellowish-brown with a dark stripe through the eye", + "forehead: light brownish-yellow feathers", + "eyes: dark brown with a narrow white eye-ring", + "legs: sturdy and light pinkish-brown", + "wings: olive-brown with dark, narrow, pale-edged feather bands", + "nape: olive-green feathers, slightly darker than the crown", + "tail: long and brownish, with broad, pale tips on outer feathers", + "throat: pale grey with faint dark streaks" + ], + "biak coucal": [ + "back: olive-brown feathers with a glossy sheen", + "beak: strong, slightly curved black beak", + "belly: creamy white with black streaks", + "breast: blackish-brown with white streaks", + "crown: dark brown plumage", + "forehead: rufous-brown feathers", + "eyes: large, dark brown eyes with a subtle eye-ring", + "legs: long, sturdy grey legs", + "wings: large, brownish-black wings with white and rufous spots", + "nape: dark brown plumage seamlessly connecting with the crown", + "tail: long, broad black tail with white-tipped feathers", + "throat: white streaked with black, creating a subtle contrast with the breast" + ], + "biak flycatcher": [ + "back: greenish-brown feathers covering the backside", + "beak: short, dark, and slightly hooked for catching insects", + "belly: pale yellowish-white, for smoothness, and contrasting color", + "breast: light olive-green, feathery, and fluffy", + "crown: slightly raised, deep green feathers", + "forehead: narrow band of dark green/blue feathers above the eyes", + "eyes: black and round, with a thin white eye-ring", + "legs: grayish-brown and slender, with strong claws for perching", + "wings: greenish-brown with faint wing-bars, for quick and agile flight", + "nape: back of neck with deep green feathers", + "tail: elongated, greenish-brown feathers, with white tips for added contrast", + "throat: pale yellowish-white, blending into the belly coloration" + ], + "biak gerygone": [ + "back: olive-brown with faint streaks", + "beak: short and pointed, pale yellow", + "belly: pale yellow to white", + "breast: white with light olive streaks", + "crown: grayish-brown with indistinct streaks", + "forehead: light olive-gray", + "eyes: small and dark, encircled by white eye-ring", + "legs: pale yellow, slender", + "wings: olive-brown with white crescent-shaped markings", + "nape: light olive, blending with crown", + "tail: olive-brown, slightly forked", + "throat: white, merging into breast color" + ], + "biak leaf warbler": [ + "back: greenish-yellow feathers", + "beak: slender, curved upper mandible", + "belly: pale-yellow underside", + "breast: greenish-yellow plumage", + "crown: bright-yellow stripe", + "forehead: light olive-green hue", + "eyes: beady, black orbs", + "legs: pale flesh-toned limbs", + "wings: feathered, greenish-yellow", + "nape: smooth yellow-olive gradient", + "tail: elongated, yellow-green", + "throat: pale-yellow, delicate feathers" + ], + "biak megapode": [ + "back: brownish-black feathers covering upper body", + "beak: short, slightly curved, strong and grayish", + "belly: pale gray plumage with occasional streaks", + "breast : grayish-brown feathers merging into pale gray", + "crown: dark brown feathers covering the head", + "forehead : slightly lighter shade of brown, meeting beak", + "eyes: fairly small, dark brown surrounded by small feathers", + "legs: sturdy, grayish-brown with sharp claws for digging", + "wings: brown, rounded, medium-sized for short flights", + "nape: slightly lighter brown feathers, connecting head and back", + "tail: short, fan-shaped with brown and grayish feathering", + "throat: features pale gray feathers leading to breast" + ], + "biak monarch": [ + "back: vibrant blue and orange feathers", + "beak: sharp, slender, and black", + "belly: light blueish-white plumage", + "breast: bright blue and orange hues", + "crown: deep blue crest with orange edges", + "forehead: vivid blue and orange markings", + "eyes: black, round with a thin white ring", + "legs: dark gray, thin, and strong", + "wings: bold blue with orange and white patterns", + "nape: lighter blue and orange feathers", + "tail: long, blue feathers with white and orange tips", + "throat: blue and white patchy plumage" + ], + "biak paradise kingfisher": [ + "back: vibrant blue feathers with greenish sheen", + "beak: long, straight, and reddish-orange", + "belly: pale blue plumage with white undertones", + "breast: rich turquoise-blue with iridescent shine", + "crown: bold red feathers with blue markings", + "forehead: bright red with bluish-green streaks", + "eyes: dark, alert, and surrounded by blue feathers", + "legs: orange-red with strong, curved talons", + "wings: vibrant blue with greenish tinge, slightly rounded", + "nape: mixture of blue and green, transitioning to red crown", + "tail: long, ribbon-like feathers in striking shades of blue", + "throat: turquoise-blue feathers meeting the red forehead" + ], + "biak scops owl": [ + "back: dark brown with white spots", + "beak: short, black, and hooked", + "belly: light brown with dark streaks", + "breast: pale brown with darker markings", + "crown: dark brown with white spots", + "forehead: rounded, dark feathers", + "eyes: large, yellow with black pupils", + "legs: short, feathered with sharp talons", + "wings: dark brown with white bands and spots", + "nape: dark brown with faint white streaks", + "tail: barred with dark brown and white stripes", + "throat: whitish with dark markings" + ], + "biak whistler": [ + "back: vibrant green feathers", + "beak: curved, slender, yellowish", + "belly: pale yellow with faint streaks", + "breast: bright yellow, thin streaks", + "crown: emerald green, slightly raised", + "forehead: greenish-yellow transition", + "eyes: bright, round, black pupil", + "legs: slender, light gray", + "wings: green, long, feathered", + "nape: greenish-yellow, blending with crown", + "tail: elongated, green, slightly forked", + "throat: lime-green, smooth feathering" + ], + "biak white eye": [ + "back: vibrant green feathers", + "beak: short, pointed and black", + "belly: light grey plumage", + "breast: soft, pale grey feathers", + "crown: bright green with white eye-ring", + "forehead: green feathers, white eye-ring", + "eyes: dark, surrounded by distinctive white-ring", + "legs: slender, greyish-blue", + "wings: green with dark, curved tips", + "nape: green, connecting crown to back", + "tail: long, green feathers with darker ends", + "throat: pale grey, transitioning to belly color" + ], + "bianchi warbler": [ + "back: olive green with faint streaks", + "beak: thin, pointed, and black", + "belly: white with buff-colored flanks", + "breast: grayish-white with faint streaks", + "crown: slate gray with a yellow stripe", + "forehead: yellow with a grayish-blue tinge", + "eyes: dark, round, and prominent, with a white eye-ring", + "legs: thin and pale in color", + "wings: olive green with faint streaks, yellow shoulder patches", + "nape: olive green with faint streaks", + "tail: olive green with outer white edging", + "throat: white with a grayish-blue tinge" + ], + "bicknell thrush": [ + "back: olive-brown with subtle grayish tones", + "beak: slim, dark-colored with pale lower mandible", + "belly: off-white with brownish streaks", + "breast: creamy with brownish spots or smudges", + "crown: grayish-brown with faint streaks", + "forehead: slight yellowish-olive hue", + "eyes: dark with pale white eye-rings", + "legs: thin and dark grayish-pink", + "wings: olive-brown, slightly darker than back", + "nape: grayish-brown with faint streaks", + "tail: olive-brown with subtle barring", + "throat: creamy-white with minimal spotting" + ], + "bicol ground warbler": [ + "back: olive-brown with faint streaks", + "beak: black, short, and slender", + "belly: whitish with buff tinges", + "breast: buff-colored with darker streaks", + "crown: olive-brown with grayish streaks", + "forehead: pale olive-gray", + "eyes: dark brown with faint eye-ring", + "legs: pale pinkish-brown", + "wings: olive-brown with blackish bars", + "nape: olive-brown, slightly streaked", + "tail: olive-brown with faint blackish bars", + "throat: pale buff with dark streaks" + ], + "bicolored antbird": [ + "back: sleek black upper body", + "beak: strong and curved, black color", + "belly: contrasting white lower body", + "breast: white plumage", + "crown: black feathers with merging grey", + "forehead: black colored feather area", + "eyes: dark piercing gaze", + "legs: sturdy black limbs", + "wings: black feathers with white edges", + "nape: black feathers meeting grey", + "tail: elongated black feathers", + "throat: striking white patch" + ], + "bicolored antpitta": [ + "back: dark gray with subtle shading", + "beak: short, stout and black", + "belly: pale off-white to cream", + "breast: lighter gray, blending into belly", + "crown: deep slate-gray, extending down the nape", + "forehead: blending of gray from the crown", + "eyes: beady and black, surrounded by gray", + "legs: strong, pinkish-flesh tone", + "wings: dark gray with lighter feather edges", + "nape: continuation of the deep gray from the crown", + "tail: short, dark gray with rounded edges", + "throat: lighter gray, bordering on white at the chin" + ], + "bicolored antvireo": [ + "back: olive-green feathers", + "beak: short, hooked, black", + "belly: white and light gray", + "breast: white with gray streaks", + "crown: grayish-brown", + "forehead: white with black streaks", + "eyes: dark brown with white eye-ring", + "legs: long, slender, gray", + "wings: black and white barring", + "nape: grayish-white", + "tail: long, black with white edges", + "throat: white with black streaks" + ], + "bicolored conebill": [ + "back: greenish-blue with slight shadows", + "beak: thin, curved, black", + "belly: lighter greenish-yellow hue", + "breast: vibrant greenish-blue color", + "crown: deep blue with glossy appearance", + "forehead: bright blue merging with the crown", + "eyes: small, black, and almond-shaped", + "legs: slender, grayish-brown", + "wings: greenish-blue with darker tips and fine markings", + "nape: greenish-blue, seamlessly blending with the back", + "tail: long, dark greenish-blue with black markings", + "throat: bright greenish-yellow, contrasting with the breast" + ], + "bicolored flowerpecker": [ + "back: vibrant green with a slight sheen", + "beak: short and stout, black", + "belly: pale creamy-white", + "breast: soft pastel pink", + "crown: emerald green, iridescent", + "forehead: bright blue-green", + "eyes: small, round, dark brown", + "legs: slender, dark gray", + "wings: mixture of blues and greens, short and rounded", + "nape: lime green, glossy", + "tail: short and slightly forked, turquoise", + "throat: satin white with a bluish tinge" + ], + "bicolored hawk": [ + "back: dark brown feathers", + "beak: sharp, hooked, black", + "belly: creamy white plumage", + "breast: white with brown streaks", + "crown: dark brown feathers", + "forehead: slightly lighter brown", + "eyes: piercing yellow stare", + "legs: powerful, yellow talons", + "wings: broad, dark brown", + "nape: brownish feathers", + "tail: long, bicolored brown and white", + "throat: white with streaks of brown" + ], + "bicolored mouse warbler": [ + "back: olive-brown feathers", + "beak: short, pointed, pale", + "belly: whitish-grey", + "breast: light greyish-brown", + "crown: dark brown", + "forehead: pale brown", + "eyes: small, black, surrounded by pale ring", + "legs: slender, pinkish-grey", + "wings: olive-brown with faint darker patterns", + "nape: brownish-grey", + "tail: relatively short, brownish-grey", + "throat: light grey" + ], + "bicolored wren": [ + "back: brownish-grey feathers covering the upper body", + "beak: straight, slender, and pointed", + "belly: white with black streaks along the sides", + "breast: white with fine black streaks", + "crown: dark grey with black streaks", + "forehead: lighter grey than the crown", + "eyes: black with a white eye-ring", + "legs: dark grey, strong, and slender", + "wings: dark grey with a mix of black and white barring", + "nape: black streaks on a light grey background", + "tail: long and black with white tips and barring", + "throat: white with some black streaks" + ], + "biet laughingthrush": [ + "back: olive-brown feathers", + "beak: strong, slightly curved", + "belly: pale, grayish-white", + "breast: orange-brown with dark streaks", + "crown: rufous-colored feathers", + "forehead: olive-brown plumage", + "eyes: dark, surrounded by white rings", + "legs: strong, greyish-blue", + "wings: olive-brown with rufous edges", + "nape: rufous-colored stripe", + "tail: long, graduated, with rufous tips", + "throat: whitish, streaked with dark bands" + ], + "bimaculated lark": [ + "back: light brown with subtle streaks", + "beak: short and conical, pale yellow with a dark tip", + "belly: creamy white with light markings", + "breast: pale buff with dark streaks", + "crown: light brown with fine streaks, crest on top", + "forehead: pale brown with slight streaks", + "eyes: small, dark with a pale eyebrow stripe", + "legs: slender, pale yellow", + "wings: brown with black and white markings, contrasting white patch", + "nape: light brown with fine streaks", + "tail: brown with white outer feathers, slightly forked", + "throat: pale buff with minimal streaking" + ], + "bioko batis": [ + "back: olive-brown feathers", + "beak: short, dark, hooked tip", + "belly: yellow-orange plumage", + "breast: dark gray feathers", + "crown: black stripe on head", + "forehead: pale white-gray stripe", + "eyes: small, round, black", + "legs: slender, grayish", + "wings: olive-brown, long flight feathers", + "nape: olive-brown, connects to crown", + "tail: short, square, olive-brown", + "throat: whitish-gray patch" + ], + "bioko speirops": [ + "back: dark gray plumage with minimal markings", + "beak: short, sturdy, and black in color", + "belly: light gray with an olive-green hue", + "breast: grayish-green plumage blending with belly", + "crown: dark gray, contrasting with the forehead", + "forehead: white or light gray", + "eyes: black surrounded by white feather rings", + "legs: dark grayish-black with strong, scaled skin", + "wings: dark gray with rounded wingtips", + "nape: grayish-green, fading to darker gray towards the back", + "tail: short, fan-shaped, and dark gray in color", + "throat: lighter gray than the belly, merging with the cheek region" + ], + "biscutate swift": [ + "back: sleek greyish-brown feathers", + "beak: small, black, sharp, and hooked", + "belly: lighter grey feathers with white patches", + "breast: smooth greyish-white feathers", + "crown: dark grey plumage on top of the head", + "forehead: slightly lighter grey plumage above the beak", + "eyes: small, black, and well-suited for detecting insects in flight", + "legs: short and robust with strong, sharp claws", + "wings: long, curved, and powerful for agile flight", + "nape: dark grey feathers connecting the crown to the back", + "tail: short and square with a slight fork, aiding in swift movements", + "throat: light greyish-white feathers blending into the breast" + ], + "bismarck black myzomela": [ + "back: deep black plumage", + "beak: slender, curved, black", + "belly: dark black feathers", + "breast: glossy black chest", + "crown: iridescent black feathers", + "forehead: shiny black plumage", + "eyes: dark with a black eye-ring", + "legs: thin and black", + "wings: black with round-edged feathers", + "nape: velvety black feathers", + "tail: short and black, slightly forked", + "throat: gleaming black plumage" + ], + "bismarck boobook": [ + "back: rich chestnut-brown with striking white spots", + "beak: dark, sharp, and hooked for catching prey", + "belly: light tan to cream-colored with faint brown markings", + "breast: pale reddish-brown with distinct white spots", + "crown: rusty brown with white speckling", + "forehead: chestnut-brown with small white spots", + "eyes: large, intense yellow with black pupils", + "legs: feathered, light brown with strong, dark claws", + "wings: chestnut-brown with darker flight feathers and white spots", + "nape: rusty brown with faint white speckling", + "tail: chestnut-brown with white banding and darker brown tips", + "throat: light beige with sparse, faint brown markings" + ], + "bismarck crow": [ + "back: sleek black feathers covering upper body", + "beak: strong, sharp, and slightly curved", + "belly: slightly lighter black feathers with a hint of dark brown", + "breast: smooth, dark feathers meeting at a central point", + "crown: glossy black cap of feathers on top of the head", + "forehead: a smooth transition from the beak toward the crown, with darker black feathers", + "eyes: piercing, beady eyes with a sharp gaze", + "legs: sturdy, black talons for perching and foraging", + "wings: broad, elongated black feathers, designed for agile flight", + "nape: smooth black feathers transitioning from the crown towards the back", + "tail: long, black tail feathers with a slight outward curve", + "throat: a patch of dark, dense feathers below the beak and above the breast" + ], + "bismarck imperial pigeon": [ + "back: smooth, grayish feathers", + "beak: short and powerful, light-colored", + "belly: soft, white plumage", + "breast: thick, white feathers", + "crown: sleek, grayish feathers", + "forehead: smooth, pale gray coloring", + "eyes: dark, round, encircled by blue skin", + "legs: strong, red, short-to-medium length", + "wings: broad, powerful, grayish feathers", + "nape: pale gray feathers, slightly darker than crown", + "tail: long, tapering, grayish feathers", + "throat: white feathers, blending seamlessly with breast" + ], + "bismarck kingfisher": [ + "back: vibrant blue feathers and sleek structure", + "beak: large, broad, and orange-red", + "belly: white with subtle pale blue markings", + "breast: bold white plumage", + "crown: deep royal blue with streaks of turquoise", + "forehead: bright blue bordering the beak", + "eyes: dark, alert, and well-defined", + "legs: sturdy, orange, with webbed feet", + "wings: striking electric blue with hints of turquoise", + "nape: where blue and white feathers meet, creating a sharp contrast", + "tail: elongated, blue feathers with a hint of white", + "throat: pure white, leading into the breast area" + ], + "bismarck munia": [ + "back: brownish-black with white dots", + "beak: solid silver-black", + "belly: white with black scaling", + "breast: white with black scaling", + "crown: dark black-brown", + "forehead: black-brown hue", + "eyes: black with thin white eye-ring", + "legs: pale pink-gray", + "wings: dark brown with white streaks", + "nape: black-brown with white speckles", + "tail: blackish-brown, slightly forked", + "throat: white with black scaling" + ], + "bismarck whistler": [ + "back: dark grey with subtle greenish sheen", + "beak: curved, thin, dark grey", + "belly: creamy-white with fine, dark striations", + "breast: creamy-white, darker at edges", + "crown: dark grey with a greenish sheen", + "forehead: dark grey, slightly paler than crown", + "eyes: black, with thin white eye-ring", + "legs: slender, dark grey", + "wings: dark grey with dark green sheen, distinct white patches", + "nape: dark grey, blending into greenish hue on crown", + "tail: long, with white outer feathers and dark grey central feathers", + "throat: creamy-white with fine, dark striations" + ], + "bismarck woodswallow": [ + "back: dark blue-grey plumage", + "beak: short and stout blackish bill", + "belly: light grey or white feathers", + "breast: pale grey-blue plumage", + "crown: dark blue-grey feathers", + "forehead: blue-grey plumage blending into dark eye mask", + "eyes: small, dark, and round with a black eye mask", + "legs: short, black legs with sharp claws", + "wings: bold, rounded with steel blue-grey feathers and white streaks", + "nape: dark blue-grey plumage on the back of the head", + "tail: relatively short, dark blue-grey feathers with white tips", + "throat: pale grey-blue feathers on the upper throat" + ], + "black antbird": [ + "back: dark plumage with olive undertones", + "beak: short, strong, and conical", + "belly: deep black feathers", + "breast: black with subtle bluish sheen", + "crown: black with a smooth crest", + "forehead: flat and black with some dark blue iridescence", + "eyes: small and dark brown", + "legs: strong, grayish-black with sharp claws", + "wings: black, rounded, and well-adapted for short flights", + "nape: lightly streaked with olive-brown", + "tail: long, black, and slightly rounded", + "throat: uniformly black feathers" + ], + "black antshrike": [ + "back: dark grey feathers with black marking", + "beak: short, slender black beak", + "belly: pale greyish-white hue", + "breast: dark grey plumage fading to lighter grey", + "crown: dark grey/black feathers on top of head", + "forehead: blackish-grey contour feathers", + "eyes: black tiny eyes surrounded by dark grey plumage", + "legs: long, slender black legs", + "wings: black with white markings and rufous edges", + "nape: dark grey with a hint of black", + "tail: long, rounded black feathers", + "throat: lighter grey transitioning from dark breast plumage" + ], + "black bee eater": [ + "back: shimmery green upper part", + "beak: long, black, and curved", + "belly: bright yellow underside", + "breast: vibrant yellow-orange chest", + "crown: deep green top of the head", + "forehead: shiny green area above eyes", + "eyes: dark with white eyelids", + "legs: short, black, and slender", + "wings: glossy green with white-tipped feathers", + "nape: rich green back of the neck", + "tail: elongated, green, and forked", + "throat: bright yellow frontal area" + ], + "black berrypecker": [ + "back: dark, glossy plumage", + "beak: short, sharp, black", + "belly: rich black feathers", + "breast: deep black with a slight sheen", + "crown: jet black, crest-like", + "forehead: smooth black contour", + "eyes: beady, dark-colored", + "legs: thin, black with sharp claws", + "wings: black, wide-spread, rounded", + "nape: dark, seamless transition to the head", + "tail: black, long, and fan-shaped", + "throat: slightly iridescent black" + ], + "black bishop": [ + "back: glossy black feathers", + "beak: short and dark", + "belly: deep black plumage", + "breast: iridescent black feathers", + "crown: sleek black with a slight crest", + "forehead: smooth black curve", + "eyes: small and piercing", + "legs: thin and dark grey", + "wings: wide and shimmering black", + "nape: gracefully arched black feathers", + "tail: long, black, and slightly forked", + "throat: shadowy black with subtle shine" + ], + "black bittern": [ + "back: dark blackish-brown feathers", + "beak: long, sharp, and yellowish-green", + "belly: light brown with darker streaks", + "breast: brownish-black with subtle streaks", + "crown: black with greenish sheen", + "forehead: black with slight green iridescence", + "eyes: bright yellow with a dark black pupil", + "legs: long, slender and yellowish-green", + "wings: blackish-brown with pale spotting", + "nape: dark brownish-black", + "tail: long, black with faint barring", + "throat: pale buff with darker streaks" + ], + "black bulbul": [ + "back: dark grey or black plumage", + "beak: slender, curved, black", + "belly: light grey, slightly paler than back", + "breast: dark grey or black, blending with belly", + "crown: black, crest-like feathers", + "forehead: black, continuous with crown", + "eyes: round, reddish-brown", + "legs: strong, blackish-grey", + "wings: rounded, black with white edges", + "nape: black, continuous with crown and back", + "tail: long, black with white tips", + "throat: dark grey, blending with breast" + ], + "black bushbird": [ + "back: dark olive-brown feathers", + "beak: slightly hooked, black color", + "belly: lighter brown with black streaks", + "breast: dark brown with fine black streaks", + "crown: dusky black with slight crest", + "forehead: blackish-brown, blending with crown", + "eyes: deep black, slightly piercing", + "legs: slender, dark gray", + "wings: dark olive-brown with black edges", + "nape: cooler brown, blends with crown", + "tail: long, black with rounded tips", + "throat: blackish-brown, streaked appearance" + ], + "black bustard": [ + "back: brownish-black with subtle barring", + "beak: strong, greyish-black and slightly curved", + "belly: dark brown with black speckles", + "breast: blackish-brown with dense grey barring", + "crown: dark greyish-black, slightly crested", + "forehead: smooth, blackish-grey", + "eyes: dark brown, encircled with faint grey", + "legs: long, sturdy and greyish-black", + "wings: broad, brown with black and grey markings", + "nape: dark grey with thin black barring", + "tail: black, elongated with white band and greyish-brown tips", + "throat: black with finely-spaced grey barring" + ], + "black butcherbird": [ + "back: sleek black feathers", + "beak: strong, silver-colored hooked bill", + "belly: smooth black underbody", + "breast: shiny dark chest feathers", + "crown: black-feathered crown atop the head", + "forehead: smooth black feathers above the eyes", + "eyes: sharp, black beady orbs", + "legs: long, dark gray limbs", + "wings: large, powerful black wings", + "nape: black feathers on the back of the neck", + "tail: long, elegant black feathers", + "throat: dark throat feathers with slight shine" + ], + "black caracara": [ + "back: dark plumage with narrow, white streaks", + "beak: sharp, hooked, grayish-black beak", + "belly: black feathers with a slightly paler shade", + "breast: dark feathers with some white streaks", + "crown: blackish with a slight crest and white streaks", + "forehead: black feathers with fine white streaks", + "eyes: piercing yellowish eyes with black pupils", + "legs: long, dark-gray legs with sharp talons", + "wings: black feathered wings, white patches on underside", + "nape: darkly feathered with narrow white streaks", + "tail: black tail feathers with white bands near the end", + "throat: black throat with fine white streaking" + ], + "black catbird": [ + "back: dark gray with slight greenish sheen", + "beak: thin and black, curved at the tip", + "belly: lighter gray with faint white streaks", + "breast: medium gray with subtle barring", + "crown: smooth dark gray, slightly raised", + "forehead: dark gray, blending into the crown", + "eyes: black with faint white eye-ring", + "legs: long and black, ending in sharp claws", + "wings: dark gray with faint greenish sheen, forming a rounded shape", + "nape: dark gray, blending into the back and crown", + "tail: long and dark gray, fan-shaped with a slight curve", + "throat: lighter gray, bordered by the breast area" + ], + "black cicadabird": [ + "back: dark grey with hints of black feathers", + "beak: long, slender, and black", + "belly: pale grey with white streaks", + "breast: grey with white streaks", + "crown: black with slate grey feathers", + "forehead: sleek black feathers", + "eyes: piercing black with white highlights", + "legs: long, thin, and black", + "wings: long, powerful, with black and grey feathers", + "nape: black feathers with grey undertones", + "tail: broad, black, with white tips", + "throat: pale grey with white streaks" + ], + "black crake": [ + "back: deep black, slender body", + "beak: sharp, short, and yellowish-green", + "belly: dark black with a slight shiny tint", + "breast: pitch-black plumage", + "crown: smooth black with a subtle curve", + "forehead: sleek black, seamlessly blending with the crown", + "eyes: small and red, contrasting with the black feathers", + "legs: long, thin, and vibrant green", + "wings: dark black, shorter in length", + "nape: black and slightly curved inward", + "tail: short, black, and with a slight upward flip", + "throat: deep black, smoothly transitioning to the breast" + ], + "black crowned crane": [ + "back: dark grey feathers covering the main body", + "beak: long, slender, sharp, and pale grey", + "belly: white feathers overlapping with the breast", + "breast: black-grey plumage blending with the belly", + "crown: stiff, golden-yellow feathers forming a crest", + "forehead: large, red-skinned patch above the eyes", + "eyes: small, black, and expressive", + "legs: tall, thin, and grey, ending in webbed feet", + "wings: dark grey feathers with white secondary flight feathers", + "nape: white feathers transitioning from the back of the head to the back", + "tail: short, dark grey feathers extending from the rear", + "throat: white feathers continuing from the nape to the belly" + ], + "black cuckooshrike": [ + "back: sleek black feathers", + "beak: sharp, dark-colored", + "belly: smooth black plumage", + "breast: shiny black coat", + "crown: black, gently curving crest", + "forehead: unblemished black feathers", + "eyes: piercing, dark brown", + "legs: strong, black", + "wings: large, black with white tips", + "nape: smooth black feathers", + "tail: long, black with white bands", + "throat: glossy black plumage" + ], + "black curassow": [ + "back: glossy black plumage", + "beak: sturdy, yellowish-white", + "belly: black feathers with white edges", + "breast: dense, black and shiny", + "crown: distinctive curly crest, glossy black", + "forehead: smooth, black feathers", + "eyes: dark brown with light blue eye-ring", + "legs: dark gray, strong and sturdy", + "wings: black and iridescent green-blue", + "nape: smooth, black plumage", + "tail: long, white-tipped black feathers", + "throat: silky black feathers" + ], + "black currawong": [ + "back: dark black plumage covering the upper body", + "beak: strong, black, slightly hooked", + "belly: black feathers with a slight grayish tinge", + "breast: deep black feathers, full and rounded", + "crown: dark black feathers on top of the head", + "forehead: smooth black plumage meeting the beak", + "eyes: piercing, yellow with a small black pupil", + "legs: sturdy, black with sharp claws", + "wings: wide, black with distinct white-tipped feathers", + "nape: slightly raised black plumage on the back of the neck", + "tail: long, black feathers with white tips", + "throat: smooth black feathers beneath the beak" + ], + "black drongo": [ + "back: sleek black feathers", + "beak: slightly curved, black", + "belly: black, slightly fluffy", + "breast: smooth black feathers", + "crown: smooth, black, slightly raised", + "forehead: black, seamless transition into crown", + "eyes: dark brown, almost black", + "legs: long, dark grey, strong", + "wings: wide, black with pronounced primary feathers", + "nape: black, smooth transition into back", + "tail: long, forked, black, distinctive", + "throat: black, smooth feathers" + ], + "black dwarf hornbill": [ + "back: dark-colored feathers", + "beak: large, curved, and hued in grey and black", + "belly: charcoal black with dense plumage", + "breast: smooth, velvety black feathers", + "crown: raised crest of dark plumage", + "forehead: slightly flatter with black feathers", + "eyes: small, round, and surrounded by a black patch", + "legs: sturdy with charcoal-colored scales", + "wings: broad, black feathers with pointed ends", + "nape: dark curved feathers around the neck", + "tail: elongated, dark feathers with a slight curve", + "throat: sleek black plumage covering the neck area" + ], + "black eagle": [ + "back: dark brown feathers", + "beak: strong, hooked, black", + "belly: dark brown plumage", + "breast: dark brown feathers", + "crown: sleek black feathers", + "forehead: slightly lighter brown feathers", + "eyes: sharp, piercing yellow", + "legs: powerful, yellow talons", + "wings: broad, dark brown feathers", + "nape: smooth black feathers", + "tail: dark brown, sleek feathers", + "throat: dark brown, slightly paler plumage" + ], + "black falcon": [ + "back: sleek, dark plumage", + "beak: sharp, black hooked", + "belly: smooth, dark feathers", + "breast: black, feathery chest", + "crown: black feathered head", + "forehead: smooth, dark feathering", + "eyes: piercing, yellow stare", + "legs: long, strong black limbs", + "wings: powerful, dark flight feathers", + "nape: black-plumed neck", + "tail: long, dark feathers, narrow bars", + "throat: black and smooth-feathered" + ], + "black fantail": [ + "back: sleek black feathers", + "beak: small, sharp, black", + "belly: soft black plumage", + "breast: rounded, black feathers", + "crown: smooth black crest", + "forehead: black, feathered", + "eyes: round, dark, alert", + "legs: thin, dark, and strong", + "wings: black, broad, fan-like", + "nape: black, narrow feathers", + "tail: long, black, fanned-out", + "throat: black, slender feathers" + ], + "black flowerpiercer": [ + "back: dark black feathers with a slight sheen", + "beak: short, curved, and silver-gray", + "belly: deep black with slight fluff", + "breast: soft black feathers with smooth texture", + "crown: sleek black feathers, streamlined", + "forehead: black merging seamlessly into the beak", + "eyes: piercing dark with a thin white eye-ring", + "legs: sturdy dark gray, with sharp claws", + "wings: long black feathers with a blueish iridescence", + "nape: smooth connection from head to back", + "tail: relatively short with dark black feathers", + "throat: deep black with a gradient transition to the breast" + ], + "black goshawk": [ + "back: sleek charcoal feathers", + "beak: sharp black hooked beak", + "belly: light grayish underbelly", + "breast: black and white streaked plumage", + "crown: dark-feathered round head", + "forehead: smooth black plumage", + "eyes: sharp golden-yellow gaze", + "legs: powerful yellow talons", + "wings: black and white banded flight feathers", + "nape: thick black neck feathers", + "tail: long barred black and white feathers", + "throat: black and white streaked area" + ], + "black grasswren": [ + "back: dark brown with black streaks", + "beak: small, slender, pointy black", + "belly: rich blackish-brown", + "breast: dark chestnut with black spots", + "crown: dark brown with a black stripe", + "forehead: black to dark brown", + "eyes: small, round, black, and alert", + "legs: long, strong, and light gray", + "wings: short, dark chestnut with black bars", + "nape: dark brown with faint black streaks", + "tail: long, black, and fan-shaped", + "throat: dark chestnut with black spots" + ], + "black grouse": [ + "back: dark iridescent plumage", + "beak: short, strong, and hooked", + "belly: black and fluffy feathers", + "breast: glossy dark feathers with a purple sheen", + "crown: sleek black with a hint of iridescence", + "forehead: black and shiny plumage", + "eyes: small, round, and dark", + "legs: sturdy and feathered, with sharp claws", + "wings: rounded with white markings underneath", + "nape: black feathers with a slight iridescence", + "tail: fan-shaped, black, with white outer edges", + "throat: dark and glossy with a red wattled neck patch" + ], + "black guan": [ + "back: glossy blue-black plumage", + "beak: short, hooked, ivory-colored", + "belly: dark, blue-black feathers", + "breast: shiny blue-black plumage", + "crown: rounded, deep black feathers", + "forehead: smooth, black feathers", + "eyes: round, dark with a red eyering", + "legs: sturdy, grayish-blue with sharp claws", + "wings: broad, blue-black with white-tipped secondaries", + "nape: rich black, sleek feathers", + "tail: long, fan-shaped, black with white tips", + "throat: dark, glossy black feathers" + ], + "black guineafowl": [ + "back: dark grey with tiny white spots", + "beak: short and sturdy, light grey", + "belly: blackish-grey with fine white speckles", + "breast: dark grey with small white dots", + "crown: bald with bony blue and red casque", + "forehead: bright red wattles hanging down", + "eyes: dark, rounded, and alert", + "legs: strong and slate grey", + "wings: black with subtle white speckles", + "nape: covered in dark grey feathers with a small white pattern", + "tail: short and rounded, blackish-grey with white spots", + "throat: blue-grey skin with a slight red wattle" + ], + "black harrier": [ + "back: dark grey with blackish brown streaks", + "beak: sharp, black hooked upper and lower beaks", + "belly: white or pale grey with dark spots", + "breast: pale grey with bold black streaks", + "crown: black or dark brown, rounded top of head", + "forehead: black with short feathers", + "eyes: piercing yellow irises surrounded by golden-yellow skin", + "legs: long, thin yellow legs with black talons", + "wings: long, black with white across the primary feathers", + "nape: black or dark brown, where the head and back connect", + "tail: long, black and white striped feathers", + "throat: pale grey or white with dark vertical streaks" + ], + "black hawk eagle": [ + "back: dark gray-black plumage", + "beak: strong, hooked black beak", + "belly: light gray or white feathers", + "breast: gray-white chest feathers", + "crown: dark gray-black feathers", + "forehead: sleek, black feathers", + "eyes: piercing brown or yellow eyes", + "legs: powerful yellow legs", + "wings: long, wide, black wings", + "nape: gray-black feathers", + "tail: black feathers with white banding", + "throat: light gray or white feathers" + ], + "black heron": [ + "back: sleek black feathers", + "beak: long and sharp, dark in color", + "belly: slightly lighter black plumage than back", + "breast: deep black feathered chest", + "crown: black plumage on top of head", + "forehead: smooth black feathers", + "eyes: small and piercing, with a dark surrounding", + "legs: long and thin, charcoal-colored", + "wings: wide and black with a slight sheen", + "nape: black feathers at the back of the neck", + "tail: short and black, fanned during flight", + "throat: black feathers leading to breast" + ], + "black honey buzzard": [ + "back: dark brown feathers with a slight gloss", + "beak: curved blackish hooked tip for tearing", + "belly: lighter brown with fine horizontal streaks", + "breast: dark brown with thin white streaking", + "crown: slightly raised dark brown feathers", + "forehead: dark brown blending into the crown", + "eyes: piercing yellow with a black iris", + "legs: strong, yellowish-gray for gripping branches", + "wings: long, dark brown feathers for soaring flight", + "nape: brown, transitioning from crown to back", + "tail: long, dark brown feathers with narrow gray bands", + "throat: whitish-brown with fine streaks, leading to breast" + ], + "black honeyeater": [ + "back: dark grey, streamlined feathers", + "beak: slender, curved, blackish-brown", + "belly: white with grey streaks", + "breast: white with grey streaks", + "crown: black feathers with a slight crest", + "forehead: black feathers transitioning to grey", + "eyes: small, dark with thin white eyering", + "legs: greyish-brown, thin and agile", + "wings: black with greyish-brown edges", + "nape: dark grey feathered area behind the head", + "tail: black, elongated and slightly forked", + "throat: white with grey streaks" + ], + "black hornbill": [ + "back: dark, iridescent plumage", + "beak: large, curved, black with ridges", + "belly: greyish-black feathers", + "breast: dark, sleek plumage", + "crown: black feathers, slight crest", + "forehead: smooth, black plumage", + "eyes: bright, piercing, encircled by blue skin", + "legs: strong, dark, scaly", + "wings: glossy black with white tips", + "nape: curved, black feathers", + "tail: long, black, rectangular shape with white tips", + "throat: blackish-grey, elongated feathers" + ], + "black inca": [ + "back: iridescent dark green", + "beak: slightly curved black", + "belly: shimmering green-black", + "breast: gleaming emerald green", + "crown: vibrant metallic purple", + "forehead: lustrous violet-blue", + "eyes: small and dark", + "legs: thin dark gray", + "wings: iridescent black-green", + "nape: glistening dark teal", + "tail: long, curved black feathers", + "throat: gleaming blue-green" + ], + "black jacobin": [ + "back: dark iridescent plumage", + "beak: slender, medium length, and black", + "belly: deep velvety black", + "breast: silky black feathers", + "crown: glossy blue-black feathers", + "forehead: sleek, shimmering black", + "eyes: dark, small, and round", + "legs: black and skinny", + "wings: long, pointed, and black", + "nape: intricately patterned black", + "tail: elongated, forked, and black", + "throat: glossy black with slight iridescence" + ], + "black kite": [ + "back: dark brown feathers", + "beak: sharp, hooked, black", + "belly: light brown with dark spots", + "breast: brown with streaks", + "crown: dark brown", + "forehead: light brown", + "eyes: piercing yellow", + "legs: yellow with sharp talons", + "wings: long, angular, with brown and black feathers", + "nape: dark brown feathers", + "tail: forked, reddish-brown with black bars", + "throat: pale brown with streaks" + ], + "black lark": [ + "back: dark brown with white streaks", + "beak: short and pointed, black", + "belly: pale brown with black spots", + "breast: black with white speckling", + "crown: black with faint streaks", + "forehead: black with slight feather crest", + "eyes: small and dark", + "legs: long and black", + "wings: black with white edges", + "nape: dark brown with white streaks", + "tail: black, long and thin", + "throat: black with white speckling" + ], + "black laughingthrush": [ + "back: glossy black feathers", + "beak: strong, slightly curved, black", + "belly: black, soft, feathery appearance", + "breast: full, black feathers", + "crown: shining black, top crest", + "forehead: smooth, black, rounded", + "eyes: bright, dark, attentive gaze", + "legs: sturdy, featherless, black", + "wings: glossy black, medium length", + "nape: black, thick feather junction", + "tail: long, black, fan-shaped", + "throat: sleek, black, slender feathers" + ], + "black lory": [ + "back: deep black plumage", + "beak: vibrant orange-red", + "belly: dark black feathers", + "breast: sleek black plumage", + "crown: black head feathers", + "forehead: glossy black feathers", + "eyes: piercing white eye-rings", + "legs: sturdy grayish-black", + "wings: broad black wing feathers", + "nape: smooth black feathers", + "tail: long, black, and pointed", + "throat: velvety black plumage" + ], + "black magpie": [ + "back: sleek black feathers", + "beak: strong black beak", + "belly: white feathery underside", + "breast: iridescent black feathers", + "crown: smooth black rounded top", + "forehead: shiny black plumage", + "eyes: sharp, piercing gaze", + "legs: black scaly limbs", + "wings: majestic black and white feathers", + "nape: smooth black plumage", + "tail: elongated black and white feathers", + "throat: vibrant white patch" + ], + "black manakin": [ + "back: dark iridescent green feathers", + "beak: short and stout, blackish-grey", + "belly: white with black speckles", + "breast: deep black plumage", + "crown: velvety black with a hint of blue", + "forehead: glossy black feathers", + "eyes: dark brown, encircled by a thin white ring", + "legs: slender and greyish", + "wings: shiny jet-black feathers", + "nape: smooth black transition to green back feathers", + "tail: elongated, black with a slight sheen", + "throat: midnight black, with slight blue iridescence" + ], + "black metaltail": [ + "back: dark iridescent green", + "beak: long, straight, black", + "belly: shimmering green", + "breast: bright emerald green", + "crown: deep metallic green", + "forehead: dark shining green", + "eyes: small, dark, rounded", + "legs: slender, black", + "wings: iridescent green-black, elongated", + "nape: shining green feathers", + "tail: forked, black, elongated", + "throat: vibrant green with a metallic sheen" + ], + "black munia": [ + "back: sleek black feathers", + "beak: short and conical, silver-gray", + "belly: black, slightly fluffy", + "breast: smooth black feathers", + "crown: even black coloring", + "forehead: unblemished black", + "eyes: small, round, and dark", + "legs: thin and dark gray", + "wings: black with neat plumage", + "nape: black, lightly feathered", + "tail: long, fanned black feathers", + "throat: smooth black feathers" + ], + "black noddy": [ + "back: sleek black plumage", + "beak: sharp, pointed black bill", + "belly: slightly paler black feathers", + "breast: smooth black feathering", + "crown: dark black with feathers lying flat", + "forehead: glossy black, part of the overall plumage", + "eyes: dark with a piercing gaze", + "legs: thin, black, and agile", + "wings: long, slender black feathers", + "nape: continuation of the black plumage", + "tail: black, fan-like feathers, often forked", + "throat: black with subtle markings" + ], + "black nunbird": [ + "back: sleek black feathers", + "beak: prominent, black, and slightly curved", + "belly: smooth black plumage", + "breast: black and slightly puffed out", + "crown: black feathers forming a slight crest", + "forehead: smooth black with no markings", + "eyes: bright, round, and dark in color", + "legs: black and sturdy legs", + "wings: elongated, black, and well-adapted for maneuverability", + "nape: continuous black feathering from crown to back", + "tail: long and black, with a straight cut at the tip", + "throat: black and narrow, leading down to breast" + ], + "black oriole": [ + "back: deep black feathers with a slight glossy touch", + "beak: slim and sharp, black with a hint of dark grey", + "belly: black feathers with a faint iridescent sheen", + "breast: dark black feathers shining in sunlight", + "crown: sleek black top with a smooth layer of feathers", + "forehead: black and seamless, maintaining the head's sleek contour", + "eyes: beady and dark, with an intense gaze", + "legs: slender black limbs ending in sharp claws", + "wings: long, black feathers enabling agile flights", + "nape: black and smooth, transitioning seamlessly from head to back", + "tail: glossy black feathers with a slight fan-like spread", + "throat: dark black with a clean, smooth appearance" + ], + "black oropendola": [ + "back: sleek black feathers", + "beak: elongated, curved yellow beak", + "belly: smooth black plumage", + "breast: glistening black feathers", + "crown: striking crest of black feathers", + "forehead: smooth black plumage", + "eyes: bright, inquisitive yellow eyes", + "legs: long, slender black legs", + "wings: wide, shiny black wingspan", + "nape: seamless black feathers", + "tail: elongated, tapered black tail feathers", + "throat: vibrant yellow featherless throat patch" + ], + "black partridge": [ + "back: dark plumage with greenish sheen", + "beak: short and sturdy, grayish-black color", + "belly: brownish-gray with fine black markings", + "breast: chestnut brown with ornate black markings", + "crown: glossy black with slight crest", + "forehead: black, blending into crown", + "eyes: dark brown, surrounded by ring of featherless skin", + "legs: strong, grayish-black color", + "wings: short and rounded, dark feathers with green shimmer", + "nape: black with slight green iridescence", + "tail: long and broad, dark feathers with a green sheen", + "throat: black, contrasting with lighter breast color" + ], + "black pitohui": [ + "back: dark black feathered back", + "beak: medium-sized, curved, and black", + "belly: black with slight orange hue", + "breast: shiny black feathers", + "crown: deep black plumage", + "forehead: smooth black surface", + "eyes: small, piercing black orbs", + "legs: slender, black with strong talons", + "wings: sleek dark black with a broad wingspan", + "nape: midnight black soft nape", + "tail: fan-like, black, and pointed feathers", + "throat: dark black feathered throat with a sharp contrast" + ], + "black rail": [ + "back: dark brown with white speckles", + "beak: short, conical-shaped, and black", + "belly: grayish-black with lighter streaks", + "breast: grayish-brown with white streaks", + "crown: black with white spots", + "forehead: dark brown with white streaks", + "eyes: black, round and small", + "legs: greenish-yellow with black banding", + "wings: short, rounded, dark brown with white spots", + "nape: black with white speckles", + "tail: short and dark with white edges", + "throat: grayish with white streaks" + ], + "black redstart": [ + "back: dark slate gray feathers", + "beak: pointed, black beak", + "belly: off-white with reddish-orange speckles", + "breast: slate gray with reddish-orange patches", + "crown: dark slate gray", + "forehead: slightly lighter gray than the crown", + "eyes: small, dark, and alert", + "legs: thin, black, and long", + "wings: slate gray with reddish-orange edges", + "nape: dark slate gray", + "tail: reddish-orange with blackish edges", + "throat: off-white with reddish-orange speckles" + ], + "black sawwing": [ + "back: sleek black feathers", + "beak: sharp, narrow, black", + "belly: dark, slightly iridescent", + "breast: smooth black plumage", + "crown: black, rounded top", + "forehead: uniformly black", + "eyes: dark, attentive gaze", + "legs: sturdy, dark gray", + "wings: long, black, swift", + "nape: black, blending into the crown", + "tail: forked, black feathers", + "throat: uninterrupted black feathers" + ], + "black scimitarbill": [ + "back: sleek, black feathers", + "beak: long, slender, curved beak", + "belly: black feathers, slightly lighter than back", + "breast: black feathers, blending into belly", + "crown: dark black plume", + "forehead: smooth black feathers", + "eyes: small, beady, black", + "legs: grayish-black, thin legs", + "wings: long, broad, black feathers", + "nape: black feathers, joining to crown", + "tail: long, black, and slightly narrow", + "throat: black feathers, contrasting with beak" + ], + "black scrub robin": [ + "back: slate-colored feathers", + "beak: short and sharp", + "belly: lighter gray shade", + "breast: dark gray plumage", + "crown: blackish-gray with streaks", + "forehead: smooth gray feathers", + "eyes: small and black", + "legs: long and thin", + "wings: dark gray with white edges", + "nape: gray with darker streaks", + "tail: long and blackish-gray", + "throat: light gray with slight feather fringes" + ], + "black shama": [ + "back: deep black, glossy feathers", + "beak: strong, sharp, black curve", + "belly: smooth black plumage", + "breast: full, black feathers", + "crown: rich black crest", + "forehead: sleek black curve", + "eyes: bright, intelligent, white-ringed", + "legs: long, slender, dark gray", + "wings: broad, black, structured", + "nape: glossy black transition", + "tail: long, elegant, black feathers", + "throat: smooth, black curve" + ], + "black sicklebill": [ + "back: iridescent greenish-black plumage", + "beak: long, curved, and black", + "belly: dark green with a hint of blue", + "breast: shimmering blue-green feathers", + "crown: glossy black with a green sheen", + "forehead: black and slightly iridescent", + "eyes: dark brown, small, and round", + "legs: long, black, and scaly", + "wings: elongated, iridescent blue-black feathers", + "nape: black feathers with greenish sheen", + "tail: elongated, curved central feathers, black with a green-blue shine", + "throat: vibrant blue feathers with black edges" + ], + "black siskin": [ + "back: dark black with greenish sheen", + "beak: short and pointed, grayish color", + "belly: deep black and sleek", + "breast: black with a greenish hue", + "crown: glossy black, slightly raised", + "forehead: black with greenish sheen", + "eyes: small, dark brown surrounded by black feathers", + "legs: slender, grayish-black with sharp claws", + "wings: black with greenish gloss, white wing bar", + "nape: black with a touch of green sheen", + "tail: black, long, and forked with white outer feathers", + "throat: deep black, glossy" + ], + "black sittella": [ + "back: sleek black feathers", + "beak: slim, black, and pointy", + "belly: black with hints of white streaks", + "breast: black with white edges on the feathers", + "crown: shiny black feathers with a slight crest", + "forehead: midnight black and smooth", + "eyes: dark beady eyes surrounded by black feathers", + "legs: sturdy, dark grayish legs with sharp claws", + "wings: black with a thin white wing bar", + "nape: black feathers transitioning from crown", + "tail: long black forked tail with contrasting white tips", + "throat: black with subtle white speckles" + ], + "black solitaire": [ + "back: dark, feathered upper body", + "beak: sturdy, slightly curved beak", + "belly: sleek, black underbelly", + "breast: deep, glossy black feathers", + "crown: smooth, black rounded head", + "forehead: flat, black feathered area above beak", + "eyes: small, dark peering eyes", + "legs: long, black thin limbs", + "wings: dark, wide flight feathers", + "nape: black, feathered back of the neck", + "tail: long, straight black tail feathers", + "throat: glossy black feathered area under beak" + ], + "black spinetail": [ + "back: dark feathered upper body", + "beak: slender pointed bill", + "belly: lighter colored underside", + "breast: blackish-grey plumage", + "crown: dark-feathered top of the head", + "forehead: blackish-grey facial feathers", + "eyes: small, dark beady eyes", + "legs: slender and dark in color", + "wings: long, dark feathers with white markings", + "nape: dark feathers at the back of the neck", + "tail: elongated, black spinelike feathers", + "throat: blackish-grey plumage on the neck" + ], + "black stilt": [ + "back: sleek black feathers", + "beak: long and slender, black", + "belly: smooth black plumage", + "breast: rounded black chest feathers", + "crown: flat black head feathers", + "forehead: shiny black feathers", + "eyes: dark brown, intense gaze", + "legs: long, thin, with black coloration", + "wings: black with narrow white fringes", + "nape: black feathers meeting the back", + "tail: short, black, fan-shaped", + "throat: black with minimal feathering" + ], + "black stork": [ + "back: glossy black with green-blue sheen", + "beak: long, straight and pointed, red-black in color", + "belly: white or light grey feathers", + "breast: glossy black with green and purple iridescence", + "crown: black feathers, smooth and sleek", + "forehead: glossy black, meeting the beak seamlessly", + "eyes: dark brown, surrounded by a small patch of bare, blackish skin", + "legs: long, red or pinkish, ending in sharp, black claws", + "wings: wide, uniformly black, slightly speckled with white near tips", + "nape: glossy black with a slight purplish iridescence", + "tail: long, black feathers with white undertail coverts", + "throat: white with a slight hint of grey, surrounded by black plumage" + ], + "black storm petrel": [ + "back: dark grey-black feathers", + "beak: thin, slightly curved, black", + "belly: greyish-black feathers", + "breast: dark grey-black plumage", + "crown: smooth grey-black feathered top", + "forehead: slightly lighter grey-black", + "eyes: small, dark, round", + "legs: long, dark, and thin", + "wings: pointed, elongated, dark grey-black", + "nape: transition between crown and back", + "tail: forked, narrow feathers, grey-black", + "throat: dark grey-black with lighter patch" + ], + "black sunbird": [ + "back: iridescent dark green feathers", + "beak: long, slender, and curved downward", + "belly: velvety black plumage", + "breast: shimmering greenish-black feathers", + "crown: glossy dark green with a slight crest", + "forehead: shiny emerald green feathers", + "eyes: small, round, and black", + "legs: slender, dark gray with sharp claws", + "wings: dark greenish-black with slight metallic sheen", + "nape: iridescent green-black plumage", + "tail: long, thin, and black with a slight fork", + "throat: gleaming dark green feathers" + ], + "black swift": [ + "back: dark black with glossy sheen", + "beak: slim and pointed, blackish-grey", + "belly: dull dark black", + "breast: slightly less dark than back, blackish-grey", + "crown: glossy dark black", + "forehead: smoothly sloping, blackish-grey", + "eyes: small and dark, nearly hidden in feathers", + "legs: relatively short, black with scaled texture", + "wings: long and slender, black with a slight curve", + "nape: black with an inconspicuous curve transition", + "tail: short and squared-off, black with slight fork", + "throat: blackish-grey, blending with breast area" + ], + "black thicket fantail": [ + "back: dark, brownish-black feathers", + "beak: small, black, and pointed", + "belly: light grayish-white", + "breast: whitish with faint gray streaks", + "crown: blackish-brown with slight crest", + "forehead: dark brown to black", + "eyes: black with a thin white ring", + "legs: black and slender", + "wings: dark brown to black, rounded and fanned", + "nape: blackish-brown with gray streaks", + "tail: long and black, fan-shaped with white tips", + "throat: light grayish-white, paler than breast" + ], + "black tinamou": [ + "back: dark matte feathers", + "beak: short, curved, greyish", + "belly: slightly paler, greyish-black", + "breast: dark, smooth feathers", + "crown: black sleek feathers", + "forehead: black, smooth feathers", + "eyes: small, dark, alert", + "legs: grey, sturdy, strong", + "wings: rounded, black, short", + "nape: black, glossy feathers", + "tail: short, rounded, black", + "throat: black, smooth feathers" + ], + "black wheatear": [ + "back: dark black feathers", + "beak: strong, white, and slightly curved", + "belly: solid black plumage", + "breast: black and well-feathered", + "crown: sleek black crest", + "forehead: smooth black feathers", + "eyes: dark, alert, and piercing", + "legs: long, slender, and greyish", + "wings: large, black, with striking white patches", + "nape: black feathers, connecting crown and back", + "tail: long, black, with prominent white edges", + "throat: black, distinct, and unmarked" + ], + "black woodpecker": [ + "back: dark black feathers", + "beak: long, chisel-like, ivory-white", + "belly: black feathers with a slight sheen", + "breast: black and glossy feathers", + "crown: red-colored patch on the male's head", + "forehead: black feathers transitioning to red crown", + "eyes: intense white around dark pupils", + "legs: strong, grayish-black scaly legs", + "wings: large, black feathers tipped with white", + "nape: black feathers leading to red crown", + "tail: sturdy, long black feathers, white tips on outer feathers", + "throat: slightly lighter black feathers, some males may show a red streak" + ], + "black and buff woodpecker": [ + "back: black feathers with white markings", + "beak: strong and chisel-like", + "belly: buff-colored with black speckles", + "breast: black with white streaks", + "crown: black with red patch on male", + "forehead: black feathers with buff edges", + "eyes: small and dark, surrounded by white", + "legs: dark gray with sharp claws", + "wings: black with white spots", + "nape: black with buff edges", + "tail: black feathers with white bands", + "throat: buff-colored, bordered by black lines" + ], + "black and chestnut eagle": [ + "back: dark brown feathers covering the upper body", + "beak: strong, curved black beak for tearing prey", + "belly: lighter brown feathers contrasting with upper body", + "breast: chestnut-toned feathers creating a distinct pattern", + "crown: dark brown feathers forming a slightly raised crest", + "forehead: smooth, dark brown feathers transitioning into lighter brown on the face", + "eyes: piercing yellow orbs surrounded by dark brown feathers", + "legs: powerful yellow legs with sharp, black talons for gripping prey", + "wings: large, dark brown wings with lighter accents for soaring and hunting", + "nape: dark brown feathers transitioning from the crown to the back", + "tail: long, dark brown tail feathers with white accents for balance and maneuverability in flight", + "throat: lighter brown, chestnut-tinted feathers extending from the beak down to the breast" + ], + "black and chestnut warbling finch": [ + "back: sleek black feathers", + "beak: sharp and pointed, black color", + "belly: light chestnut-brown feathers", + "breast: rich chestnut coloration", + "crown: dark black with a slight sheen", + "forehead: black feathers blending into the crown", + "eyes: small and beady, dark color", + "legs: long, thin, and black", + "wings: black with chestnut edging", + "nape: black feathers meeting the crown", + "tail: black with chestnut streaks", + "throat: chestnut transitioning to black" + ], + "black and cinnamon fantail": [ + "back: dark, sleek feathers", + "beak: sharp, black tip", + "belly: cinnamon brown, smooth", + "breast: rich, warm cinnamon hue", + "crown: black, smooth curve", + "forehead: dark feathers, accentuating eyes", + "eyes: bright, inquisitive gaze", + "legs: black, slender and sturdy", + "wings: black with specks of cinnamon", + "nape: blending of black and cinnamon", + "tail: long, black and cinnamon fan-like feathers", + "throat: cinnamon shading to black" + ], + "black and crimson oriole": [ + "back: deep black feathers with a slight glossy sheen", + "beak: sharp, pointed, and black with a subtle curve", + "belly: vibrant crimson feathers extending to the undertail", + "breast: rich, bright crimson feathers merging smoothly from the belly", + "crown: shining black feathers creating a smooth cap over the head", + "forehead: deep black feathers transitioning from the beak to crown", + "eyes: round and bead-like, surrounded by a thin circle of black feather", + "legs: strong, slender, and black, with sharp talons for perching", + "wings: a mix of black and crimson feathers, with black dominating the upper side and crimson on the underside", + "nape: smooth black feathers blending to the crimson of the bird's back", + "tail: long, black, slightly forked feathers with crimson edging", + "throat: a patch of dark black feathers that blend seamlessly with the crimson breast" + ], + "black and gold cotinga": [ + "back: shimmering bluish-black", + "beak: short, stout, and black", + "belly: vibrant golden-yellow", + "breast: iridescent bluish-black", + "crown: deep glossy black", + "forehead: glistening black with bluish sheen", + "eyes: dark with a subtle black eye-ring", + "legs: sturdy black with powerful claws", + "wings: black with gold edging on feathers", + "nape: dark, lustrous black with hint of blue", + "tail: long and jet-black with golden-yellow undertail coverts", + "throat: brilliant golden-yellow" + ], + "black and gold tanager": [ + "back: iridescent green-blue", + "beak: slender, slightly curved, dark gray", + "belly: bright golden-yellow", + "breast: vibrant gold", + "crown: bold black", + "forehead: black with hint of blue", + "eyes: dark, piercing gaze", + "legs: slender, gray", + "wings: shimmering blue-black", + "nape: striking black", + "tail: long, forked, black-blue", + "throat: deep black" + ], + "black and orange flycatcher": [ + "back: black feathers with orange highlights", + "beak: thin, slightly curved, black", + "belly: bright orange plumage", + "breast: vibrant orange feathers", + "crown: black with orange streaks", + "forehead: black feathers with slight orange streaks", + "eyes: small, round, black pupils with white eye-ring", + "legs: thin, black, strong", + "wings: black with orange accents, moderate length", + "nape: black feathers with orange markings", + "tail: black with orange edges, medium-length", + "throat: bright orange feathered area" + ], + "black and red broadbill": [ + "back: black with subtle greenish-blue sheen", + "beak: bright blue with a yellow tip", + "belly: white with black streaks", + "breast: white and slightly fluffy", + "crown: black with a dashed blue line", + "forehead: black with thin blue stripes", + "eyes: small and black with a surrounding blue ring", + "legs: light orange and slender", + "wings: black with blue edging and red markings", + "nape: black with blue highlights", + "tail: broad and black with a blue border and red flashes", + "throat: white with some black streaks" + ], + "black and rufous swallow": [ + "back: sleek, black feathers", + "beak: slender, dark-colored", + "belly: rufous-orange plumage", + "breast: striking rufous hue", + "crown: glossy black feathers", + "forehead: smooth black contour", + "eyes: small, round, and black", + "legs: thin, dark, and sturdy", + "wings: elongated, black feathers", + "nape: shiny black plumage", + "tail: expressive, forked shape", + "throat: rufous-orange contrast" + ], + "black and rufous warbling finch": [ + "back: streaked dark brown and rufous", + "beak: short and conical, blackish-gray", + "belly: creamy-white with rufous streaks", + "breast: warm rufous with dark streaks", + "crown: deep rufous with darker stripes", + "forehead: streaked black and rufous", + "eyes: dark with thin eye-ring", + "legs: slender, pale pinkish-gray", + "wings: dark brown with rufous and white edging", + "nape: rufous with dark brown streaks", + "tail: dark brown, rufous-edged with white tips", + "throat: whitish-cream with dark streaks" + ], + "black and tawny seedeater": [ + "back: sleek black feathers", + "beak: short and conical", + "belly: tawny brown with streaks", + "breast: contrasting black and tawny hues", + "crown: black with a slight crest", + "forehead: smooth black feathers", + "eyes: small and dark", + "legs: slender, pale gray", + "wings: black with tawny edges", + "nape: black with a hint of tawny", + "tail: black with tawny outer feathers", + "throat: stark black patch" + ], + "black and white antbird": [ + "back: dark black feathers", + "beak: small, sharp, and black", + "belly: white, with black streaks", + "breast: white and fluffy", + "crown: black with white streaks", + "forehead: black and sleek", + "eyes: small and black", + "legs: short and dark", + "wings: black with white spots", + "nape: black with white striping", + "tail: long, black, and fan-shaped", + "throat: white with black stippling" + ], + "black and white becard": [ + "back: sleek black feathers", + "beak: sharp, contrasting white", + "belly: white and soft", + "breast: white, round plumage", + "crown: black, smooth crest", + "forehead: black, curved outline", + "eyes: dark, attentive gaze", + "legs: sturdy, charcoal grey", + "wings: bold black with white edges", + "nape: black, meets crown seamlessly", + "tail: long, black with white touches", + "throat: bright white, complements breast" + ], + "black and white bulbul": [ + "back: black feathers with slight green iridescence", + "beak: short and sharp, dark grey", + "belly: white plumage with neat black edges", + "breast: white feathers, leading into black sides", + "crown: glossy black with a slight crest", + "forehead: black teardrop-shaped mark above eyes", + "eyes: black with white eyelids, bright gaze", + "legs: dark grey, slender with strong claws", + "wings: black and white pattern, rounded shape", + "nape: black, smoothly blending with crown and back", + "tail: mostly black with white outer feathers, medium-length", + "throat: bright white, contrasted against black head" + ], + "black and white hawk eagle": [ + "back: sleek black feathers, streamlined body", + "beak: powerful black hooked beak, yellow base", + "belly: white feathers, contrasting black streaks", + "breast: predominantly white, black flecks", + "crown: black feathers, prominent crest", + "forehead: white feathers, black markings", + "eyes: piercing yellow, black outlines", + "legs: strong yellow legs, sharp talons", + "wings: massive black wings, white undersides", + "nape: smooth black feathers, white highlights", + "tail: long black feathers, white bands", + "throat: white feathers, subtle black streaks" + ], + "black and white mannikin": [ + "back: black feathers with a glossy sheen", + "beak: short, thick, and white", + "belly: white with a slight flare", + "breast: black and rounded", + "crown: black and smoothly curved", + "forehead: black with a slight indent", + "eyes: small, dark, and beady", + "legs: slender and white", + "wings: dual-toned with white edges on black feathers", + "nape: black with a curved silhouette", + "tail: white-tipped black feathers, slightly fanned", + "throat: white and narrow" + ], + "black and white monarch": [ + "back: black with white streaks", + "beak: sharp, black, pointed", + "belly: white with subtle black markings", + "breast: white with black patches", + "crown: black, bold stripe", + "forehead: white, small band", + "eyes: black, slightly hidden by feathers", + "legs: thin, black, sturdy", + "wings: black with white striping", + "nape: black, slight downward curve", + "tail: black and white, fan-like feathers", + "throat: white with light black marks" + ], + "black and white monjita": [ + "back: black-feathered upper body", + "beak: short, black, pointed", + "belly: white, soft underbelly", + "breast: white, rounded chest", + "crown: black, slightly raised head feathers", + "forehead: black, appearing smooth", + "eyes: round, dark, on either side of the head", + "legs: slender, black, with sharp claws", + "wings: black, white-edged flight feathers", + "nape: black, connecting seamlessly with the crown", + "tail: black, elongated, with white sides", + "throat: white, leading to breast area" + ], + "black and white owl": [ + "back: dark feathers with white speckles", + "beak: sharp, curved black beak", + "belly: predominantly white with black bands", + "breast: white with streaks of black", + "crown: rounded ebony plumage", + "forehead: white feathers with dispersed black markings", + "eyes: large, piercing yellow orbs", + "legs: sturdy and feathered in dark hues", + "wings: expansive, black with white bars", + "nape: white feathers transitioning to dark", + "tail: lengthy, black with white bands", + "throat: white feathers with sparse markings" + ], + "black and white seedeater": [ + "back: smooth black feathers", + "beak: sharp, white, conical", + "belly: white with black speckles", + "breast: white bordered by black", + "crown: distinct black stripe", + "forehead: white, slightly fluffy", + "eyes: small, dark, alert", + "legs: slender, pale gray", + "wings: black feathers with white edges", + "nape: black and white striped", + "tail: black, long, and forked", + "throat: white contrasting with black breast" + ], + "black and white shrike flycatcher": [ + "back: striking black feathers", + "beak: sharp, black, and slightly hooked", + "belly: clean white underparts", + "breast: white blending with black on wings", + "crown: prominent black cap", + "forehead: sleek black coloration", + "eyes: piercing black eyes with white eye-ring", + "legs: slender black legs and feet", + "wings: long black feathers with white accents", + "nape: transition from black crown to white throat", + "tail: elongated black tail feathers with white outer edges", + "throat: pristine white plumage" + ], + "black and white tanager": [ + "back: sleek black feathers", + "beak: thin, pointy, white beak", + "belly: white under-feathers", + "breast: contrasting white chest", + "crown: distinguished black cap", + "forehead: smooth black texture", + "eyes: sharp, attentive gaze", + "legs: slender white legs", + "wings: expansive black feathers", + "nape: smooth black neck", + "tail: elongated black feathers", + "throat: white, well-defined patch" + ], + "black and white tody flycatcher": [ + "back: black feathers with white streaks", + "beak: small, pointed, black", + "belly: white with gray undertones", + "breast: white, slightly puffed", + "crown: black and glossy", + "forehead: black, slightly raised", + "eyes: black with white eye-ring", + "legs: slender, gray", + "wings: black with white edges", + "nape: black with small white markings", + "tail: black with white outer feathers", + "throat: white with gray shading" + ], + "black and white triller": [ + "back: sleek black feathers", + "beak: sharp, black, and pointed", + "belly: white and soft", + "breast: white with a slight curve", + "crown: black with smooth feathers", + "forehead: black with a gentle slope", + "eyes: small, round, and black", + "legs: long and slender, black", + "wings: black with contrasting white lines", + "nape: black and neatly feathered", + "tail: black with white edges, fanned", + "throat: white and smoothly feathered" + ], + "black and white casqued hornbill": [ + "back: sleek black feathers", + "beak: large, curved, yellow-white casque", + "belly: snowy white plumage", + "breast: striking white feathers", + "crown: jet black with prominent casque", + "forehead: black feathers meeting the casque", + "eyes: piercing dark brown", + "legs: sturdy, dark grey", + "wings: bold black with white flight feathers", + "nape: black with smooth transition to the wings", + "tail: elongated, white, and black central feathers", + "throat: smooth white leading to the breast" + ], + "black and yellow grosbeak": [ + "back: dark black feathers", + "beak: thick, conical yellow", + "belly: vibrant yellow plumage", + "breast: striking yellow feathers", + "crown: deep black crest", + "forehead: bold black feathers", + "eyes: small, beady black", + "legs: sturdy grey", + "wings: black with white wing bars", + "nape: black plumage", + "tail: black with yellow edges", + "throat: bright yellow feathers" + ], + "black and yellow silky flycatcher": [ + "back: sleek black feathers", + "beak: sharp, pointed yellow", + "belly: light yellow fluff", + "breast: vibrant yellow plumage", + "crown: black with a hint of gloss", + "forehead: smooth black feathers", + "eyes: piercing dark with a distinct yellow ring", + "legs: slender, strong, and black", + "wings: black with a silky texture & yellow edges", + "nape: black feathers transitioning to yellow", + "tail: long, fan-shaped black with yellow tips", + "throat: bright yellow, fluffy feathers" + ], + "black and yellow tanager": [ + "back: vibrant yellow feathers", + "beak: sharp, black, pointed", + "belly: bright yellow plumage", + "breast: striking yellow feathers", + "crown: glossy black plumage", + "forehead: smooth, black feathers", + "eyes: round, dark, alert", + "legs: slender, strong, black", + "wings: black with yellow edging", + "nape: black with glossy sheen", + "tail: long, black, with yellow tips", + "throat: contrasting yellow feathers" + ], + "black backed antshrike": [ + "back: black feathers with white streaking", + "beak: short, robust, pale grey or white", + "belly: light-grey or buff", + "breast: greyish-white or buff", + "crown: black with white streaks", + "forehead: black with small white fine streaks", + "eyes: dark brown or black, surrounded by white eye ring", + "legs: thin, pale pink or grey", + "wings: black, edged with white tips", + "nape: black with white streaks", + "tail: long, broad, black with white tips", + "throat: white or light grey" + ], + "black backed barbet": [ + "back: black-feathered with green sheen", + "beak: thick, strong, and slightly curved", + "belly: vibrant yellow with black streaks", + "breast: bright yellow", + "crown: vivid red with black streaks", + "forehead: vivid red", + "eyes: black with white eye-ring", + "legs: short and grayish", + "wings: black with colorful patterns", + "nape: bright yellow with black streaks", + "tail: greenish-black with narrow banding", + "throat: yellow with black speckles" + ], + "black backed bittern": [ + "back: dark grey with subtle spotting", + "beak: long, sharp, and yellowish", + "belly: off-white with brown streaks", + "breast: pale with thin, dark streaks", + "crown: black with green sheen", + "forehead: white, merging into dark crown", + "eyes: round and yellow with a black pupil", + "legs: long, slender, and yellow-green", + "wings: mottled black and grey with broad white tips", + "nape: white, contrasting with dark crown", + "tail: long and dark with thin white bands", + "throat: white, connecting to belly" + ], + "black backed bush tanager": [ + "back: yellowish-olive with black streaks", + "beak: short, black, and conical", + "belly: pale yellow or whitish", + "breast: yellow with faint black streaks", + "crown: black with a yellow stripe", + "forehead: bright yellow", + "eyes: small, dark brown", + "legs: thin, grayish-brown", + "wings: black with yellow-edged feathers", + "nape: black, narrow band separating crown and back", + "tail: black, elongated with a slight fork", + "throat: bright yellow" + ], + "black backed butcherbird": [ + "back: dark grey-black feathers", + "beak: strong, hooked, silvery-grey", + "belly: off-white to light grey", + "breast: pale grey with darker streaks", + "crown: black with slight sheen", + "forehead: black, blending with crown", + "eyes: bright yellow with black pupils", + "legs: thin, grey-black", + "wings: black with white spots near tips", + "nape: black, connects to back", + "tail: long, black with white band near tip", + "throat: light grey, contrasting with black head" + ], + "black backed cisticola": [ + "back: dark brown with streaks", + "beak: slim, pointed, pale gray", + "belly: buff-white with light streaks", + "breast: rufous-buff, faint streaks", + "crown: dark brown, streaked", + "forehead: dark brown with streaks", + "eyes: small, dark brown", + "legs: long, pale gray", + "wings: dark brown, short, rounded", + "nape: dark brown with faint streaks", + "tail: dark brown, rounded, tipped white", + "throat: buff-white, unmarked" + ], + "black backed dwarf kingfisher": [ + "back: vibrant blue with black streaks", + "beak: sharp, black, and pointed", + "belly: bright orange and fluffy", + "breast: rich, orange plumage", + "crown: deep blue with black markings", + "forehead: striking blue with black patterns", + "eyes: dark, rounded, and piercing", + "legs: short and black with sharp claws", + "wings: brilliant blue with black speckles", + "nape: deep blue with black accents", + "tail: blue with black bands, fan-shaped", + "throat: vivid orange feathers" + ], + "black backed forktail": [ + "back: black and white feathers pattern", + "beak: thin, straight, black", + "belly: clean white feathers", + "breast: white with distinct black central band", + "crown: solid black feathers", + "forehead: black with small white markings", + "eyes: dark, round, alert gaze", + "legs: long, thin, orange-brown", + "wings: black feathers with sleek white edging", + "nape: black feathers with white spots", + "tail: long, forked, black with white tip", + "throat: pure white feathers" + ], + "black backed fruit dove": [ + "back: greenish-black with a metallic sheen", + "beak: short and dark gray", + "belly: light gray fading to white", + "breast: pinkish-purple hue", + "crown: dark greenish-black", + "forehead: small gray fluff of feathers", + "eyes: striking red-orange with a black pupil", + "legs: short and purple-gray", + "wings: greenish-black with white-tipped secondary feathers", + "nape: metallic greenish-black tapering to a point", + "tail: greenish-black with white-bordered feathers", + "throat: pinkish-gray blending into breast color" + ], + "black backed grosbeak": [ + "back: black feathers with slight white flecks", + "beak: thick, conical, and pinkish-orange", + "belly: creamy white with black streaks", + "breast: vibrant orange fading to white", + "crown: black with a reddish-orange stripe", + "forehead: black, forming a mask around the eyes", + "eyes: dark, surrounded by a black mask", + "legs: slender, grayish-pink", + "wings: black with white patches and orange edging", + "nape: black blending with the crown and back", + "tail: black with white outer feathers", + "throat: white transitioning to orange breast" + ], + "black backed oriole": [ + "back: black plumage with a slight sheen", + "beak: sharp, straight, and black", + "belly: bright yellow feathers", + "breast: vibrant yellow plumage", + "crown: black with slight sheen", + "forehead: black feathers transitioning into yellow", + "eyes: dark with black outline", + "legs: slender, black, and strong", + "wings: mostly black with splashes of white and yellow", + "nape: smooth black feathers", + "tail: black with white tips on the outer feathers", + "throat: brilliant yellow feathers" + ], + "black backed puffback": [ + "back: black, fluffy feathers", + "beak: small, sharp, grayish", + "belly: white, soft plumage", + "breast: white, smooth feathers", + "crown: black, rounded crest", + "forehead: black, sleek feathers", + "eyes: small, bright, black", + "legs: short, gray, powerful", + "wings: black, distinct white markings", + "nape: black, connecting to back", + "tail: black, elongated, fan-like", + "throat: white, delicate feathers" + ], + "black backed sibia": [ + "back: sleek black feathers", + "beak: sharp blackish-brown bill", + "belly: feathery white underside", + "breast: white plumage with black streaks", + "crown: smooth black crest", + "forehead: dark black feathers", + "eyes: inquisitive round black orbs", + "legs: strong gray legs and talons", + "wings: elongated black feathers with hints of blue", + "nape: black plumage with subtle blue markings", + "tail: long, sleek black feathers with white tips", + "throat: contrasting white soft feathers" + ], + "black backed swamphen": [ + "back: dark blue-violet plumage", + "beak: thick and red with yellow tip", + "belly: deep blue to purple feathers", + "breast: bright blue-violet plumage", + "crown: dark purplish-black feathers", + "forehead: red shield-like frontal", + "eyes: small and reddish-brown", + "legs: long, orange-red with large feet", + "wings: dark blue with white streaks", + "nape: purplish-blue feathering", + "tail: short, dark blue-violet feathers with white underside", + "throat: pale blue to lavender plumage" + ], + "black backed tanager": [ + "back: black feathers with a greenish-blue sheen", + "beak: sharp and stout, blackish-gray", + "belly: bright red or orange", + "breast: vibrant red or orange feathers", + "crown: black feathers with a slight iridescence", + "forehead: black feathers, seamlessly blending into the crown", + "eyes: dark and round with a thin black eye-line", + "legs: strong and slender, dark in color", + "wings: black with bright blue or green highlights", + "nape: black feathers continuing down from the crown", + "tail: long and black with a blue or green shimmer", + "throat: brilliant red or orange, matching the breast and belly" + ], + "black backed thornbill": [ + "back: dark iridescent greenish-blue", + "beak: long, slender and slightly curved", + "belly: pale grayish-white", + "breast: bright metallic green", + "crown: gleaming green with bluish tinge", + "forehead: vibrant emerald green", + "eyes: small and dark, encircled by white eye-ring", + "legs: thin black with strong claws", + "wings: dark blue-green with black tips", + "nape: deep metallic blue-green", + "tail: short and slightly forked, black with contrasting white edges", + "throat: iridescent greenish-blue, fading to grayish-white" + ], + "black backed tody flycatcher": [ + "back: dark black feathers", + "beak: short, pointy, black", + "belly: off-white with orange undertones", + "breast: bright yellow feathers", + "crown: black head feathers", + "forehead: black plumage", + "eyes: small, dark piercing", + "legs: thin, black, strong", + "wings: black primaries, white secondaries", + "nape: black, delicate neck feathers", + "tail: long, black with white edges", + "throat: vibrant yellow feathers" + ], + "black backed water tyrant": [ + "back: black feathers, sleek appearance", + "beak: black, stout, slightly hooked", + "belly: white, soft feathers", + "breast: white, well-defined plumage", + "crown: black, smooth cap", + "forehead: black, connected to crown", + "eyes: bright, attentive gaze", + "legs: long, slender, reddish-brown", + "wings: black, wide, curved edges", + "nape: black, joins back and crown", + "tail: black, fan-like, sharp tips", + "throat: white, clean contrast with beak" + ], + "black banded barbet": [ + "back: vibrant, green feather coverage", + "beak: thick, black and stout", + "belly: pale, yellowish-green hue", + "breast: bold, yellowish-green with black bands", + "crown: red to maroon coloring with black streaks", + "forehead: red to maroon shading", + "eyes: dark, deep-set with a white eye-ring", + "legs: strong, black, and sturdy", + "wings: vibrant, green with black flight feathers", + "nape: green with black streaks and markings", + "tail: long, green with black terminal band", + "throat: black-bordered, pale green-yellow patch" + ], + "black banded crake": [ + "back: dark slate gray with black banding", + "beak: short, sharp, and yellowish", + "belly: white with black barring", + "breast: grayish with fine black streaks", + "crown: dark gray to black", + "forehead: paler gray with fine streaks", + "eyes: dark brown, surrounded by pale white eye-ring", + "legs: long, slender, greenish-yellow", + "wings: dark gray with white streaks and black bars", + "nape: gray with fine black streaks", + "tail: black with white edged feathers", + "throat: pale gray with fine black streaks" + ], + "black banded flycatcher": [ + "back: solid black with streaks of green", + "beak: sharp, slender, and black", + "belly: white with black streaks", + "breast: clean white", + "crown: black with slight green sheen", + "forehead: black and white stripes", + "eyes: dark with black outline", + "legs: thin and greyish-black", + "wings: black with white and green bars", + "nape: black with subtle green shine", + "tail: long, black with white outer tips", + "throat: white with light black markings" + ], + "black banded fruit dove": [ + "back: dark green with black banding", + "beak: short, curved, and pale red", + "belly: grayish-green with black barring", + "breast: reddish-purple with black edges", + "crown: bright green and slightly iridescent", + "forehead: vibrant emerald green", + "eyes: dark with pale gray eye-ring", + "legs: short and red-orange", + "wings: green with black and gray stripes", + "nape: deep green with fine black banding", + "tail: long, tapered, and dark green", + "throat: whitish-gray with minimal black markings" + ], + "black banded owl": [ + "back: dark brown with subtle black banding", + "beak: curved and sharp, blackish-grey", + "belly: off-white with black horizontal bands", + "breast: white with distinct black bands", + "crown: dark brown with black-bordered light streaks", + "forehead: dark brown with light speckles", + "eyes: large and round, yellow with black pupils", + "legs: long and feathered, off-white with black bands", + "wings: dark brown with faint black bands, wide and rounded", + "nape: dark brown with light streaks", + "tail: long, dark brown with black bands", + "throat: white with denser black banding" + ], + "black banded woodcreeper": [ + "back: rich brown with thin black streaks", + "beak: long, slightly curved, and pale brownish-gray", + "belly: cream-colored with black bands", + "breast: white with bold black bars", + "crown: dark brown with faint streaks", + "forehead: slightly paler brown than the crown", + "eyes: black with a white eye-ring", + "legs: strong and grayish-blue", + "wings: brown with black barring and white spots", + "nape: brownish-gray with faint streaks", + "tail: long and brown, with black bars and white tips", + "throat: white and unstreaked" + ], + "black bellied antwren": [ + "back: dark gray, feathered coat", + "beak: slim, straight, sharp point", + "belly: black, with white flecks", + "breast: black, with white streaks", + "crown: black, with gray accents", + "forehead: smooth, dark gray", + "eyes: small, dark, alert", + "legs: slender, grayish-brown", + "wings: dark gray, with lighter edges", + "nape: dark gray, with thin white striping", + "tail: long, with dark gray, narrow feathers", + "throat: black, with white speckles" + ], + "black bellied bustard": [ + "back: brownish-black plumage with fine white speckles", + "beak: strong, sharp, and slightly curved", + "belly: black with white and brown feather accents", + "breast: mixed pattern of black, white, and brown", + "crown: dark brown with fine white streaks", + "forehead: sleek brown feathers with subtle white streaks", + "eyes: dark and expressive with a prominent brow ridge", + "legs: long and slender with a light grayish-brown color", + "wings: brown with a mix of white and black patterns", + "nape: dark brown with fine white streaking", + "tail: elongated, fan-shaped with black and white barring", + "throat: whitish color with a black downward stripe on each side" + ], + "black bellied cicadabird": [ + "back: dark blue feathers with a hint of green", + "beak: short, slightly hooked, black", + "belly: black with a subtle shine", + "breast: black, feathers slightly fluffed", + "crown: dark blue transitioning to black", + "forehead: deep blue with a darker outline", + "eyes: small, dark, and alert", + "legs: black, slender, and strong", + "wings: dark blue-green with black borders", + "nape: gradual transition from blue to black", + "tail: elongated, black with some dark blue-green", + "throat: black, blending into the belly color" + ], + "black bellied cuckoo": [ + "back: dark grey-brown feathers", + "beak: slightly curved, black upper, yellow lower", + "belly: black with white spots", + "breast: white, subtly streaked", + "crown: dark grey-brown, smooth", + "forehead: slightly lighter grey-brown", + "eyes: dark brown, round", + "legs: grey, strong", + "wings: grey-brown, long, pointed", + "nape: dark grey-brown, smooth", + "tail: long, dark, graduated", + "throat: white, streaked with grey" + ], + "black bellied firefinch": [ + "back: vibrant red and black speckled pattern", + "beak: small, pointed, and black", + "belly: rich black, extending to vent", + "breast: vivid scarlet hue, expanding to face", + "crown: fiery red with smooth feathers", + "forehead: brilliant red, seamlessly blending with crown", + "eyes: black, beady, and alert", + "legs: slender, dark grey with sharp claws", + "wings: black with red highlights, sleek feathers", + "nape: red, transitioning from crown to back", + "tail: black, medium length with slightly forked shape", + "throat: glowing red, connecting to breast and face" + ], + "black bellied gnateater": [ + "back: dark olive-green color with slight sheen", + "beak: short, stout, and black", + "belly: deep black with smooth plumage", + "breast: black upper area transitioning into a white lower region", + "crown: vibrant rufous-red with sleek feathers", + "forehead: rufous-red color blending into the crown", + "eyes: dark, beady, and alert", + "legs: slim, pale pinkish-gray with sharp claws", + "wings: dark olive-green with blackish-brown flight feathers", + "nape: rich olive-green color blending into the back", + "tail: long and black with white outer edges", + "throat: bright white, contrasting the black breast" + ], + "black bellied hummingbird": [ + "back: iridescent green feathers", + "beak: long, thin, and straight", + "belly: shimmering black color", + "breast: iridescent dark blue feathers", + "crown: bright green with a slight shine", + "forehead: metallic green feathers", + "eyes: small and round, dark brown color", + "legs: short and thin, gray color", + "wings: rapid fluttering, elongated shape", + "nape: glossy green feathers", + "tail: narrow, forked shape with dark feathers", + "throat: vibrant purple with reflective sheen" + ], + "black bellied malkoha": [ + "back: glossy olive-green plumage", + "beak: long, curved, dark gray in color", + "belly: black with vibrant green markings", + "breast: black with greenish sheen", + "crown: iridescent dark green", + "forehead: dark green, seamlessly blending into crown", + "eyes: bright red, encircled by black rings", + "legs: strong, grayish-blue with pale green bands", + "wings: large, rounded, iridescent green-black feathers", + "nape: dark green plumage continuing from crown", + "tail: long, black feathers with prominent green iridescence", + "throat: dark, glossy black with green undertones" + ], + "black bellied myzomela": [ + "back: dark-grey plumage", + "beak: slender, curved black beak", + "belly: distinct black patch", + "breast: reddish-orange hue", + "crown: black-colored top", + "forehead: slightly darker feathers", + "eyes: small, black and bright", + "legs: short, black, and thin", + "wings: dark-grey with layered feathers", + "nape: black and reddish-orange blend", + "tail: medium-length with dark grey feathers", + "throat: mostly black with some reddish-orange" + ], + "black bellied sandgrouse": [ + "back: brownish-gray feathers with subtle patterns", + "beak: short and stout, grayish-black", + "belly: dark black with fine white spots", + "breast: buff colored with black spotting", + "crown: brownish-gray feathers, blending with back", + "forehead: buff with black specks", + "eyes: small and dark, surrounded by pale feathers", + "legs: short and grayish, with tiny scales", + "wings: long and pointed, brownish-gray with speckles", + "nape: brownish-gray feathers, consistent with back", + "tail: brownish-gray with faint barring, short and fan-shaped", + "throat: pale buff with light speckling" + ], + "black bellied seedcracker": [ + "back: dark brown feathers with white speckles", + "beak: short and stout, pale-colored", + "belly: black with reddish tones and white speckles", + "breast: reddish brown with black streaks", + "crown: dark brown with white spots", + "forehead: dark brown with white flecks", + "eyes: blackish-brown with white eye-ring", + "legs: sturdy and pale-colored", + "wings: dark brown with hints of reddish-brown and white spots", + "nape: dark brown and speckled white", + "tail: long and dark brown with white tips", + "throat: reddish-brown with black streaks" + ], + "black bellied seedeater": [ + "back: dark brown with subtle streaks", + "beak: short, conical, pale gray", + "belly: deep black with slight shine", + "breast: contrasting white and black", + "crown: chestnut-brown with streaks", + "forehead: chestnut-brown with streaks", + "eyes: small, dark, round", + "legs: short, grayish-brown", + "wings: dark brown with white wing bars", + "nape: chestnut-brown with streaks", + "tail: long, brown with white outer edges", + "throat: black, forming clear border with breast" + ], + "black bellied starling": [ + "back: vibrant, iridescent blue and green feathers", + "beak: thin, pointed black bill", + "belly: black, glossy feathers with purple sheen", + "breast: dark blend of blue, purple, and black feathers", + "crown: striking blue feathers with shine", + "forehead: bold blue feathers transitioning to black", + "eyes: round black eyes with alert expression", + "legs: long black legs with sharp claws", + "wings: iridescent green-blue feathers with black edges", + "nape: blue and purple feathers transitioning to black", + "tail: long, black feathers with green-blue sheen", + "throat: deep black feathers with noticeable blue-purple tint" + ], + "black bellied storm petrel": [ + "back: dark greyish-black feathers", + "beak: short, black, hooked tip", + "belly: black, slightly glossy", + "breast: dark greyish-black feathers", + "crown: dark grey, almost black", + "forehead: black, like a cap", + "eyes: small, black, hidden in feathers", + "legs: black, thin and long", + "wings: long, black, and pointed", + "nape: dark greyish-black, continuation of crown", + "tail: black, forked shape", + "throat: black, blending with belly" + ], + "black bellied sunbird": [ + "back: glossy blue-green plumage", + "beak: slender, down-curved", + "belly: deep black with a metallic shimmer", + "breast: vibrant red-orange", + "crown: iridescent blue-green", + "forehead: shining green", + "eyes: round and dark", + "legs: thin, dark gray", + "wings: iridescent blue-green with white wing bars", + "nape: bright blue-green with metallic sheen", + "tail: long, black, and forked", + "throat: shimmering green-blue with red border" + ], + "black bellied tanager": [ + "back: vibrant green feathers", + "beak: short, pointed, and dark", + "belly: deep black with a slight shine", + "breast: bright yellow with black markings", + "crown: greenish-blue plumage", + "forehead: blue-green feathers transitioning into black", + "eyes: small, dark with a white ring", + "legs: strong, thin, and dark gray", + "wings: green feathers with black and blue markings", + "nape: green feathers blending into the crown", + "tail: black with blue-green edges", + "throat: black transitioning into the yellow breast" + ], + "black bellied tern": [ + "back: sleek grey feathers", + "beak: sharp, pointed, blackish-blue", + "belly: distinct black patch", + "breast: white and soft", + "crown: smooth greyish-black", + "forehead: light grey, blending into crown", + "eyes: alert, dark brown", + "legs: slender, red-orange", + "wings: long and narrow, grey and white", + "nape: grey, connecting to the crown", + "tail: forked, sophisticated white feathers", + "throat: delicate white plumage" + ], + "black bellied thorntail": [ + "back: iridescent green feathers", + "beak: short, straight, black", + "belly: contrasting black color", + "breast: shimmering green plumage", + "crown: vibrant green feathers", + "forehead: shining green", + "eyes: small, black, beady", + "legs: short, slender, black", + "wings: elongated and tapered", + "nape: green feathered", + "tail: long, thin, filament-like extensions", + "throat: bright white patch" + ], + "black bellied whistling duck": [ + "back: dark gray-brown with lighter feather edges", + "beak: bright coral-orange color, long and slightly curved", + "belly: deep chestnut color, distinct from breast", + "breast: gray with slight pinkish-brown hue, contrasting with belly", + "crown: dark gray-brown, smooth and rounded", + "forehead: dark gray-brown, blending into crown and nape", + "eyes: large and dark with pale white eyering", + "legs: long, coral-orange, suited for walking and swimming", + "wings: dark gray-brown with slight green sheen, white wing stripe visible in flight", + "nape: dark gray-brown, continuous with crown and back", + "tail: long, dark gray-brown with white undertail coverts", + "throat: white, sharply contrasting with belly and breast" + ], + "black bellied wren": [ + "back: dark brown with faint black streaks", + "beak: long, slender, and curved; blackish-brown in color", + "belly: deep black with a slight glossy shine", + "breast: dark brown, transitioning to black at the lower region", + "crown: dark brown with black streaks and spots", + "forehead: short blackish-brown feathers, slightly lighter than crown", + "eyes: small, black with a faint white eyering", + "legs: sturdy, grayish-brown with sharp claws", + "wings: dark brown with black barring and white spots", + "nape: dark brown, blending seamlessly with the crown", + "tail: elongated, black with prominent white tips and edges", + "throat: black, transitioning to dark brown near the breast area" + ], + "black belted flowerpecker": [ + "back: dark blueish-black feathers", + "beak: small, sharp, and black", + "belly: pale white to light grey", + "breast: orange-rust colored patch", + "crown: deep blueish-black feathers", + "forehead: dark blueish-black feathers", + "eyes: small, round, and black", + "legs: thin and black", + "wings: dark blueish-black with slight iridescence", + "nape: deep blueish-black feathers", + "tail: short blueish-black feathers", + "throat: light grey merging to orange-rust breast color" + ], + "black bibbed cuckooshrike": [ + "back: dark grayish-black plumage", + "beak: sharp, medium-length, and black", + "belly: off-white with gray tinges", + "breast: light gray with a transverse black bib", + "crown: dark grayish-black feathers", + "forehead: smooth, dark grayish-black", + "eyes: small, beady and black", + "legs: thin, dark gray with sharp claws", + "wings: long, slender, and dark grayish-black", + "nape: dark grayish-black with a slight collar", + "tail: narrow, elongated, dark grayish-black feathers", + "throat: off-white with black bib merging from the breast" + ], + "black bibbed monarch": [ + "back: dark, blue-black plumage", + "beak: short, thin, pointed", + "belly: pale gray-white hue", + "breast: light gray with blue undertones", + "crown: striking black crest", + "forehead: bright white markings", + "eyes: dark, guarded by black eyeliners", + "legs: slender with gray-black coloring", + "wings: black and blue, white patch highlights", + "nape: rufous, brownish-orange shade", + "tail: black, long, and slightly forked", + "throat: distinctive black bib marking" + ], + "black bibbed tit": [ + "back: sleek, charcoal-colored feathers", + "beak: short, strong, and black", + "belly: snowy white with yellow undertones", + "breast: striking white with a black stripe down the middle", + "crown: black and glossy, extending to the nape", + "forehead: adorned with a sharp black marking", + "eyes: dark, beady, and inquisitive", + "legs: agile gray legs with sharp claws", + "wings: black with contrasting white spots and streaks", + "nape: continuous black crown, sleek and elegant", + "tail: long, fan-like, and black with white edges", + "throat: white blending into the black bib" + ], + "black billed barbet": [ + "back: vibrant green feathers", + "beak: black, stout, and slightly curved", + "belly: yellowish-green with red streaks", + "breast: red with fine black streaks", + "crown: greenish-blue with slight crest", + "forehead: blue with thin black border", + "eyes: dark brown surrounded by green feathers", + "legs: light gray with sturdy feet", + "wings: green with blue tips and black markings", + "nape: yellow-green fading into the blue crown", + "tail: greenish-blue with black bars", + "throat: yellow-green with red streaks" + ], + "black billed capercaillie": [ + "back: rusty brown with black barring", + "beak: short, black, and sturdy", + "belly: grayish-white with fine black barring", + "breast: glossy, dark green-black", + "crown: black with greenish sheen", + "forehead: black with greenish-blue highlights", + "eyes: small and deep red", + "legs: feathered, gray with sharp black claws", + "wings: brown with thick black stripes", + "nape: black with glossy green sheen", + "tail: fan-shaped, black-brown with white outer tips", + "throat: iridescent green-black" + ], + "black billed cuckoo dove": [ + "back: dark grayish-brown feathers", + "beak: solid black, curved slightly downwards", + "belly: lighter gray-white hue", + "breast: grayish-white, blending in with belly", + "crown: smooth grayish-brown feathers", + "forehead: slightly darker grayish-brown hue", + "eyes: small, black, surrounded by lighter feathering", + "legs: slender, black, with scaly texture", + "wings: dark grayish-brown, broad, rounded tips", + "nape: light gray-white hue, with a slight curve", + "tail: long, dark gray-brown, with white tips", + "throat: pale, grayish-white, continuous with breast" + ], + "black billed flycatcher": [ + "back: olive-green feathers", + "beak: short and black", + "belly: pale yellow hue", + "breast: vibrant yellow plumage", + "crown: dark grayish-green feathers", + "forehead: olive-gray markings", + "eyes: small and dark", + "legs: slender black limbs", + "wings: blackish-green flight feathers", + "nape: olive-green feathers", + "tail: dark, forked tail feathers", + "throat: bright yellow plumage" + ], + "black billed gull": [ + "back: smooth grey feathers", + "beak: sharp, black, and slightly curved", + "belly: bright white feathers", + "breast: white with some grey spots", + "crown: grey feathers with slight crest", + "forehead: smooth, grey plumage", + "eyes: small and black, with white rings around them", + "legs: thin, black, and long", + "wings: broad and grey, with black tips", + "nape: light grey plumage, transitioning to darker grey", + "tail: white with a black subterminal band", + "throat: soft white feathers" + ], + "black billed koel": [ + "back: dark olive-green feathers", + "beak: sharp, black, and slightly curved", + "belly: pale grayish-white with light streaks", + "breast: light gray with some dark streaks", + "crown: glossy black with subtle green sheen", + "forehead: smooth black feathers", + "eyes: dark brown with a thin black eye-ring", + "legs: black and slender with strong claws", + "wings: long and pointed with dark greenish-black feathers", + "nape: black with a slightly glossy green sheen", + "tail: long and dark with subtle green iridescence", + "throat: light gray with a hint of streaks" + ], + "black billed mountain toucan": [ + "back: black, glossy feathers", + "beak: elongated, black and white edges", + "belly: yellowish-green plumage", + "breast: vibrant blue feathers", + "crown: black, sleek feathers", + "forehead: black, smooth appearance", + "eyes: dark, round, and expressive", + "legs: strong, grayish-blue", + "wings: black, spread out like a fan", + "nape: black, soft-feathered", + "tail: long, black with yellow and blue tips", + "throat: black, narrow, and sleek" + ], + "black billed nightingale thrush": [ + "back: olive-brown upperparts", + "beak: short, black, and slightly curved", + "belly: creamy-white underside", + "breast: slightly spotted pale brown", + "crown: smooth olive-brown feathers", + "forehead: plain olive-brown plumage", + "eyes: small, dark, and round", + "legs: slender, black, and medium-length", + "wings: olive-brown with faint bars", + "nape: continuous olive-brown shading", + "tail: moderately long, brownish-black", + "throat: pale with faint brown spots" + ], + "black billed parrot": [ + "back: vibrant green feathers", + "beak: curved black upper and lower mandibles", + "belly: bright green and yellow plumage", + "breast: soft green feathers blending into the belly", + "crown: emerald green with a slight curve", + "forehead: bright green fading into the crown", + "eyes: dark brown, surrounded by a small white ring", + "legs: strong grayish-black with sharp claws", + "wings: strong green feathers with blue tinges", + "nape: rich green feathers blending into the back", + "tail: long, green and blue-tipped feathers", + "throat: soft green feathers, lighter than rest of body" + ], + "black billed peppershrike": [ + "back: dark olive-green hue", + "beak: black, sharp, slightly hooked", + "belly: pale yellowish tone", + "breast: light olive-green", + "crown: grayish, slight crest", + "forehead: smooth gray", + "eyes: black, beady", + "legs: slender, grayish-black", + "wings: dark green, faint markings", + "nape: grayish-green color", + "tail: long, black, subtle fork", + "throat: pale grayish-white" + ], + "black billed scythebill": [ + "back: dark brownish-black with faint streaks", + "beak: long, slender, and black curved like a scythe", + "belly: pale with brownish-black streaks", + "breast: light buff with darker streaks", + "crown: dark brownish-black with pale streaks", + "forehead: dark brown with a slight pale streak", + "eyes: small, dark, and beady", + "legs: thin and grayish-black", + "wings: brownish-black with faint pale markings", + "nape: dark brown with lighter streaks", + "tail: long, dark brown with slight pale streaks", + "throat: buff with brownish-black streaks" + ], + "black billed seed finch": [ + "back: olive greenish brown feathers", + "beak: strong, conical black bill", + "belly: pale buff to whitish underparts", + "breast: light brownish gray feathers", + "crown: dark brownish gray plumage", + "forehead: brownish gray feathers", + "eyes: dark, round eyes surrounded by off-white eye rings", + "legs: sturdy, grayish brown", + "wings: olive brown feathers with buffy white edging", + "nape: brownish gray plumage", + "tail: dark brown feathers with slight white edging", + "throat: light brownish gray plumage" + ], + "black billed shrike tyrant": [ + "back: dark grey feathers", + "beak: black and slightly hooked", + "belly: white with greyish flanks", + "breast: white with dark grey streaks", + "crown: black with a distinct crest", + "forehead: black, seamlessly merging with the crown", + "eyes: dark with a subtle white eye-ring", + "legs: slim and black", + "wings: grey with black edges and white patches", + "nape: dark grey, transitioning from the crown", + "tail: black with white outer feathers", + "throat: white, connecting to the breast" + ], + "black billed sicklebill": [ + "back: iridescent green and bronze", + "beak: long, curved black bill", + "belly: light brown with hint of green", + "breast: vibrant golden-yellow", + "crown: glossy greenish-blue", + "forehead: metallic blue-green", + "eyes: dark brown with white eyering", + "legs: short, grayish-blue", + "wings: long, green-bronze feathers", + "nape: bronzy-green sheen", + "tail: elongated, curved wire-like", + "throat: bright golden-yellow" + ], + "black billed streamertail": [ + "back: iridescent green", + "beak: long, black and curved", + "belly: white, with green accents", + "breast: shimmering green", + "crown: shining green, feathered", + "forehead: bright green, feathered", + "eyes: small, black, with a white ring", + "legs: thin, black, with sharp claws", + "wings: iridescent green, long and narrow", + "nape: bright green, feathered", + "tail: two long black streamers", + "throat: shiny green with white edges" + ], + "black billed thrush": [ + "back: sleek brown feathers", + "beak: strong black bill", + "belly: pale white to buffy with brown speckles", + "breast: light brown with muted spotting", + "crown: smooth reddish-brown", + "forehead: slightly lighter brown", + "eyes: bright, inquisitive black", + "legs: sturdy brown-black", + "wings: long, brown with buffy or white edges", + "nape: reddish-brown, connects with the crown", + "tail: fan-like, brown with buffy tips", + "throat: white with faint brown streaks" + ], + "black billed treehunter": [ + "back: dark olive-green feathers", + "beak: black, stout, and slightly curved", + "belly: dull yellowish-green underside", + "breast: olive-green with faint streaks", + "crown: dark green with a slight crest", + "forehead: greenish-gray fading to the crown", + "eyes: dark brown with pale eye-ring", + "legs: dark gray, slender and strong", + "wings: greenish-black with slight barring", + "nape: greenish-gray merging with the crown", + "tail: long, greenish-black with white tips", + "throat: pale grayish-green with faint streaks" + ], + "black billed turaco": [ + "back: deep green plumage", + "beak: black, strong, curved", + "belly: bright green feathers", + "breast: vibrant green plumage", + "crown: fiery red crest", + "forehead: green feathers, red border", + "eyes: dark-colored, medium-sized", + "legs: black, sturdy, scaled", + "wings: broad, long, green", + "nape: deep green with a hint of red", + "tail: long green feathers with red tips", + "throat: green, smooth plumage" + ], + "black billed weaver": [ + "back: olive-green feathers with a slight sheen", + "beak: sharp, pointed, black bill", + "belly: pale yellowish-white underparts", + "breast: lighter olive-green plumage", + "crown: vibrant yellow feathers", + "forehead: small patch of black feathers above the beak", + "eyes: round, dark, and surrounded by a thin white eye-ring", + "legs: slender, greyish-blue legs and clawed feet", + "wings: elongated, olive-green with flight feathers outlined in black", + "nape: transition between yellow crown and olive-green back", + "tail: long, narrow, dark feathers with pointed tips", + "throat: yellowish-white coloration extending from beak to breast" + ], + "black billed wood dove": [ + "back: shades of brown and grey feathers with a green sheen", + "beak: short, curved black bill", + "belly: creamy white feathers", + "breast: pinkish-grey hue with black spots", + "crown: blackish-green iridescent feathers", + "forehead: black feathers with a green gloss", + "eyes: dark, rounded with thin white eye-ring", + "legs: short, reddish-pink limbs", + "wings: brown and grey with black markings and green iridescence", + "nape: green-tinged black feathers", + "tail: long, dark feathers with white outer tips", + "throat: pale grey with black speckles" + ], + "black billed woodhoopoe": [ + "back: deep metallic blue-green sheen", + "beak: long and dark black", + "belly: dusky blue-black", + "breast: dark blue with purple undertones", + "crown: iridescent blue-green", + "forehead: shiny metallic blue", + "eyes: dark brown, nearly black", + "legs: black and slender", + "wings: glossy blue-black, elongated", + "nape: blue-green sheen, blending with the crown", + "tail: long and iridescent, blue-black color", + "throat: dark blue, slightly lighter than the belly" + ], + "black bodied woodpecker": [ + "back: glossy black feathers", + "beak: strong, chisel-shaped", + "belly: solid black plumage", + "breast: smooth black feathers", + "crown: vibrant red patch", + "forehead: black with white streaks", + "eyes: dark, alert, and piercing", + "legs: sturdy, gray-colored", + "wings: black with white barring", + "nape: black, blending into red crown", + "tail: long, black, white-tipped feathers", + "throat: contrastingly white feathers" + ], + "black breasted barbet": [ + "back: vibrant green feathers", + "beak: short, powerful, and red", + "belly: bright yellow plumage", + "breast: distinct black band", + "crown: red and blue feathers", + "forehead: blue feathers with slight streaks", + "eyes: round, dark, and expressive", + "legs: short and equipped with strong claws", + "wings: green with blue tips and red patches", + "nape: blue and green feathers blending", + "tail: green with blue ends and elongated central feathers", + "throat: red plumage with slight streaks" + ], + "black breasted boatbill": [ + "back: dark black plumage", + "beak: short and wide, hooked tip", + "belly: lighter shades of gray", + "breast: distinct black band", + "crown: smooth black feathers", + "forehead: black with slight gray markings", + "eyes: small and bright, blackish-brown", + "legs: thin and long, dark gray", + "wings: black with white patch", + "nape: black with subtle gray streaks", + "tail: long and black with white outer feathers", + "throat: grayish-white, slightly puffed" + ], + "black breasted buttonquail": [ + "back: black, brown, and white speckled feathers", + "beak: short and pale yellowish-gray", + "belly: white with black spots and bars", + "breast: black with white spots and bars", + "crown: black with white streaks", + "forehead: white speckling on black background", + "eyes: small and dark with a white eyering", + "legs: light gray with long, slender toes", + "wings: mottled black, brown, and white feathers", + "nape: black and white streaked pattern", + "tail: short, square-shaped with bold black and white bars", + "throat: white with black spotting" + ], + "black breasted gnateater": [ + "back: olive-grey with blackish markings", + "beak: short and conical, dark grey", + "belly: white or pale grey", + "breast: black with white bars", + "crown: slate-grey with blackish edges", + "forehead: dark grey with blackish streaks", + "eyes: dark, with pale grey eyering", + "legs: slender, greyish-brown", + "wings: olive-grey, with black and white streaks", + "nape: olive-grey, merging into the crown", + "tail: olive-grey with black bars", + "throat: white; sharply contrasting with black breast" + ], + "black breasted hillstar": [ + "back: iridescent green shimmer", + "beak: thin, elongated, and black", + "belly: white and fluffy", + "breast: black with bright violet patch", + "crown: shimmering green feathers", + "forehead: iridescent green shine", + "eyes: small, round, and dark", + "legs: slim, gray, and scaly", + "wings: elongated, dark, and pointed", + "nape: radiant green coloration", + "tail: forked, long, and black", + "throat: green with a violet sheen" + ], + "black breasted kite": [ + "back: sleek, black feathers", + "beak: sharp, hooked, dark gray", + "belly: white to pale gray", + "breast: black, contrast with the belly", + "crown: black, smooth feathers", + "forehead: black feathers blend into the crown", + "eyes: intense, yellow-orange with black pupils", + "legs: strong, yellow, and scaled", + "wings: broad, black with white spots", + "nape: black feathers continue from the crown", + "tail: long, black with white bands", + "throat: white, contrasting with the breast" + ], + "black breasted munia": [ + "back: dark brown feathers", + "beak: short, black, and pointed", + "belly: black feathers blending into the chest", + "breast: striking black plumage", + "crown: smooth, dark brown feathered top", + "forehead: small and dark brown", + "eyes: tiny, black, and round", + "legs: slender, gray-legged with tiny black claws", + "wings: brown and black feathers, slightly rounded", + "nape: dark brown feathers transitioning from the crown", + "tail: long, pointy, and dark brown to black feathers", + "throat: black feathers merging into breast area" + ], + "black breasted myzomela": [ + "back: dark grey with faint olive hue", + "beak: slender, slightly curved, black", + "belly: light grey with pale shading", + "breast: vibrant black with sharp contrast", + "crown: dark grey with sleek texture", + "forehead: prominent, greyish-black", + "eyes: small, black, bead-like", + "legs: thin, wiry, dark grey", + "wings: elongated, dark grey with light feather edging", + "nape: greyish-olive blending into back", + "tail: dark grey with visible light feather edging", + "throat: deep black with seamless transition to breast" + ], + "black breasted parrotbill": [ + "back: dark brown with subtle markings", + "beak: short and thick, pale yellow", + "belly: pale brownish-white", + "breast: black patch with a white border", + "crown: chestnut with pale streaks", + "forehead: brownish-gray", + "eyes: small, black, and round", + "legs: short and sturdy, pale pinkish-gray", + "wings: brown with fine white streaks", + "nape: reddish-brown with lighter markings", + "tail: long and dark brown", + "throat: white with pale black streaks" + ], + "black breasted puffleg": [ + "back: iridescent green feathers", + "beak: slim, slightly curved, black", + "belly: fluffy black plume", + "breast: black with metallic sheen", + "crown: shiny green cap", + "forehead: bright green feathers", + "eyes: small, dark, and alert", + "legs: thin, black, and scaly", + "wings: medium-sized, green and black", + "nape: green and black feathers", + "tail: elongated, dark green and black feathers", + "throat: iridescent green patch" + ], + "black breasted thrush": [ + "back: dark slate grey, smooth feathers", + "beak: strong, slightly curved, yellowish", + "belly: creamy white, soft feathers", + "breast: black, distinctly contrasting", + "crown: dark grey, gently sloping", + "forehead: grey, feathers converging", + "eyes: alert, black with white eye-ring", + "legs: sturdy, pale pinkish hue", + "wings: grey, medium length, folded neatly", + "nape: grey, distinct feather contour", + "tail: grey, slightly forked, well-rounded", + "throat: white, blending into breast" + ], + "black breasted weaver": [ + "back: olive-green feathers", + "beak: sharp, pointed, silver-grey", + "belly: creamy yellow plumage", + "breast: striking black band", + "crown: bright yellow crest", + "forehead: vivid yellow feathers", + "eyes: small, dark, shiny", + "legs: long, slender, greyish-brown", + "wings: olive-green with darker flight feathers", + "nape: yellow, blending into olive-green", + "tail: short, dark, fan-like", + "throat: bold black patch" + ], + "black breasted wood quail": [ + "back: dark black feathers with lighter streaks", + "beak: short, curved, grayish-black beak", + "belly: pale gray with faint black barring", + "breast: deep black feathers with subtle texture", + "crown: black plumes with a crest-like shape", + "forehead: smooth, black feathers extending from beak", + "eyes: dark, round, and slightly shiny", + "legs: skinny, grayish-black with strong toes", + "wings: short, rounded, displaying black feathers with lighter edges", + "nape: black feathers transitioning into neck and back", + "tail: short and square-shaped with black feather tips", + "throat: black and narrow, connecting the head and breast" + ], + "black browed albatross": [ + "back: sleek, dark gray-black feathers", + "beak: long, strong, light grey with a yellow-orange tip", + "belly: white, smooth plumage", + "breast: white, feathers blending into the belly", + "crown: dark gray-black feathers, continuous with the back", + "forehead: white, extending above the eyes", + "eyes: dark with a distinctive black eyebrow-like line", + "legs: sturdy, pinkish-grey with webbed feet", + "wings: elongated, black-grey with a white leading edge", + "nape: blackish-grey feathers, continuous with the back", + "tail: black, wedge-shaped short feathers", + "throat: white, finely feathered starting from lower beak" + ], + "black browed barbet": [ + "back: green with yellow streaks", + "beak: thick, red and slightly curved", + "belly: vibrant yellow-green", + "breast: bright yellow with green patches", + "crown: blue with black-browed stripe", + "forehead: blue and black striped pattern", + "eyes: white with black pupil, surrounded by blue feathers", + "legs: dull grey with blue-green tinges", + "wings: green with yellow and blue patterns", + "nape: green with yellow streaks", + "tail: long, green with yellow and blue accents", + "throat: yellow with a hint of green" + ], + "black browed fulvetta": [ + "back: olive-brown feathers", + "beak: small, sturdy gray-black bill", + "belly: off-white with light gray streaks", + "breast: pale gray with subtle streaks", + "crown: black and well-defined", + "forehead: black stripe extending from beak to crown", + "eyes: black with distinct white eye-ring", + "legs: grayish-pink, slender and powerful", + "wings: olive-brown feathers with white wingbars", + "nape: olive-brown, blending into the back", + "tail: short and olive-brown with slight white edges", + "throat: pale gray extending to breast" + ], + "black browed mountain greenbul": [ + "back: sleek, dark olive-green feathers", + "beak: thin, slightly curved, dark-colored", + "belly: pale yellow-green, soft plumage", + "breast: vibrant green, smooth feathers", + "crown: deep black with a prominent brow", + "forehead: contrasting black against green body", + "eyes: small, dark, and alert", + "legs: slender, grayish-brown with sharp claws", + "wings: strong, dark olive-green feathers with lighter edges", + "nape: dark olive-green, gently sloping neckline", + "tail: long, dark green feathers with narrow white tips", + "throat: pale yellow-green, smooth plumage" + ], + "black browed reed warbler": [ + "back: olive-brown feathers, well-camouflaged", + "beak: slim, pointed, dark in color", + "belly: off-white with pale brown streaks", + "breast: beige with faint streaks", + "crown: dark brown with black stripe", + "forehead: black eyebrow stripe", + "eyes: small, dark, and alert", + "legs: long, slender, pale pink", + "wings: olive-brown with faint wing-bars", + "nape: brown with blackish streaks", + "tail: brownish, square-tipped, short", + "throat: whitish with some brown markings" + ], + "black browed tit": [ + "back: dark, greyish-black feathers", + "beak: small, pointed, blackish color", + "belly: white with grey streaks", + "breast: white and greyish-black feathers", + "crown: black with thin white line", + "forehead: black with white streak", + "eyes: black, rounded, surrounded by white feathers", + "legs: thin, greyish-black", + "wings: greyish-black with white patches", + "nape: black with white streaks", + "tail: long, greyish-black, white-tipped feathers", + "throat: white with grey streaks" + ], + "black browed triller": [ + "back: olive-green with faint streaks", + "beak: short, pointed, and black", + "belly: pale yellow with slight streaks", + "breast: light olive-green to yellowish hue", + "crown: black with distinct white eyebrows", + "forehead: black and slightly glossy", + "eyes: dark, surrounded by expressive white eyerings", + "legs: medium-length, grayish-black", + "wings: dark olive-green, edged with white", + "nape: olive-green, blending with the back", + "tail: olive-green with white tips and outer edges", + "throat: yellowish-white with faint streaks" + ], + "black capped antwren": [ + "back: greenish-black with slight sheen", + "beak: thin and curved, dark grey", + "belly: whitish with faint black streaks", + "breast: white to light grey, blending with belly", + "crown: black with a glossy cap", + "forehead: black, extending to the crown", + "eyes: dark brown with a subtle white ring", + "legs: long and thin, dark grey", + "wings: greenish-black with white-tipped feathers", + "nape: greenish-black, connecting with the back", + "tail: long and slender, greenish-black with white outer feathers", + "throat: white, contrasting with the black forehead and crown" + ], + "black capped apalis": [ + "back: olive-green feathers", + "beak: small, pointed, black", + "belly: pale yellowish-white", + "breast: light olive-green", + "crown: black with slight crest", + "forehead: black and sleek", + "eyes: dark, beady, surrounded by white rings", + "legs: slender, greyish-blue", + "wings: olive-green with black edging", + "nape: black, transitioning to olive-green", + "tail: long, olive-green with black tips", + "throat: white, contrasted with black cap" + ], + "black capped babbler": [ + "back: dark brown color with mild streaks", + "beak: short, sturdy and black", + "belly: pale gray with fine streaks", + "breast: grayish-brown with light streaks", + "crown: deep black with a distinct cap", + "forehead: black, merging with crown", + "eyes: alert, dark surrounded by a light gray ring", + "legs: strong, grayish-brown", + "wings: dark brown with lighter edgings", + "nape: dark gray-brown with light streaks", + "tail: long, dark brown with subtle white tips", + "throat: light gray with indistinct streaks" + ], + "black capped becard": [ + "back: dark grayish-green feathers", + "beak: short, stout, black hooked bill", + "belly: pale yellowish-white plumage", + "breast: light grayish-white feathers", + "crown: prominent black cap", + "forehead: black plumage blending with the crown", + "eyes: dark brown with thin, pale eye-ring", + "legs: dark gray, slender limbs", + "wings: long and rounded, grayish-green with black edging", + "nape: dark grayish-green plumage, connecting crown and back", + "tail: long, grayish-green with black barring and whitish tips", + "throat: pale grayish-white feathers" + ], + "black capped bulbul": [ + "back: olive-green with slight sheen", + "beak: short, dark, and pointed", + "belly: light beige with faint streaks", + "breast: pale yellow with hint of grey", + "crown: glossy black with slight tuft", + "forehead: deep black merging with crown", + "eyes: dark, beady, encircled by thin white eye-ring", + "legs: slender greyish-brown", + "wings: olive-green with bold black flight feathers", + "nape: transition between black crown and olive-green back", + "tail: long, dark with olive-green tinges", + "throat: light greyish-yellow with faint streaking" + ], + "black capped donacobius": [ + "back: black and glossy feathers", + "beak: pointed and blackish-gray in color", + "belly: buff-yellow feathers with black streaking", + "breast: buff-yellow with black streaks", + "crown: black with slight iridescent sheen", + "forehead: glossy black plumage", + "eyes: dark with thin white eye-ring", + "legs: long and dark gray", + "wings: black with small white patch at base of primaries", + "nape: glossy black feathers", + "tail: long and black, often fanned out slightly", + "throat: white with black lower edge" + ], + "black capped flycatcher": [ + "back: dark grey and black-patterned feathers", + "beak: short, sharp, and slightly hooked", + "belly: light grey and white plumage", + "breast: greyish-white with black streaks", + "crown: distinct black cap on the head", + "forehead: black feathers above the eyes", + "eyes: small, dark, and round", + "legs: thin and black with three forward-facing toes", + "wings: black and grey with white wing-bars", + "nape: dark grey feathers behind the crown", + "tail: long and black with white edges on each feather", + "throat: white or pale grey with black streaks" + ], + "black capped foliage gleaner": [ + "back: olive-brown plumage", + "beak: short and curved", + "belly: light whitish-buff color", + "breast: pale brown with faint streaks", + "crown: black cap with slight crest", + "forehead: black with narrow white supercilium", + "eyes: dark brown with pale eyering", + "legs: strong and greyish", + "wings: olive-brown with lighter covert feathers", + "nape: olive-brown with slight streaks", + "tail: long with square-ended brown feathers", + "throat: pale whitish-buff with thin streaks" + ], + "black capped gnatcatcher": [ + "back: bluish-gray feathers", + "beak: small, thin, and black", + "belly: pale gray-white underside", + "breast: light gray plumage", + "crown: black cap on head", + "forehead: black feathers above eyes", + "eyes: small, dark, with white eyering", + "legs: thin, black, and agile", + "wings: bluish-gray with white edges", + "nape: gray feathers with black cap edge", + "tail: dark, long, and fan-shaped", + "throat: light gray feathering" + ], + "black capped hemispingus": [ + "back: olive green with streaks", + "beak: sharp and conical, blackish-gray", + "belly: pale yellowish-white", + "breast: yellow with black streaks", + "crown: solid black cap", + "forehead: contrasting black against pale face", + "eyes: dark with white eye-ring", + "legs: thin and grayish", + "wings: blackish with white bars", + "nape: olive green, connecting to black cap", + "tail: dark with noticeable white corners", + "throat: pale white-yellow with thin black streaks" + ], + "black capped kingfisher": [ + "back: iridescent blue-green feathers", + "beak: sturdy, bright red-orange", + "belly: white, slightly rounded", + "breast: white, meets blue-green wings", + "crown: black, well-defined cap", + "forehead: black, transitions to blue-green", + "eyes: dark, alert, outlined in black", + "legs: reddish-orange, short and strong", + "wings: blue-green, curved and pointed", + "nape: blue-green, connects crown to back", + "tail: blue-green, proportionate length", + "throat: white, contrasts with black cap" + ], + "black capped lory": [ + "back: vibrant red feathers with blue hints", + "beak: strong, orange curved bill", + "belly: deep red plumage with black edges", + "breast: red feathers with hints of black", + "crown: black feathers covering head top", + "forehead: black feathered area above eyes", + "eyes: bright, round, and attentive", + "legs: strong, gray, and scaly", + "wings: red upperparts with black-tipped edges", + "nape: red and black-bordered feathers", + "tail: elongated red and black feathers", + "throat: contrasting black feathers against red chest" + ], + "black capped paradise kingfisher": [ + "back: iridescent blue-green feathers", + "beak: black, medium-length and slightly curved", + "belly: white with fine rufous striping", + "breast: vibrant rufous red", + "crown: glossy black with slight blue-green sheen", + "forehead: shining black feathers", + "eyes: dark brown with thin white eye-ring", + "legs: short and black with strong feet", + "wings: deep blue-green with black tips and white stripe", + "nape: glossy black transitioning to iridescent blue-green", + "tail: long, narrow, and white with blue-green central feathers", + "throat: bright, clean white" + ], + "black capped parakeet": [ + "back: vibrant green feathers", + "beak: curved, sharp, and cream-colored", + "belly: pale green or light yellow plumage", + "breast: mix of green and yellow feathers", + "crown: black cap covering the top of the head", + "forehead: area under the black cap, bright green feathers", + "eyes: dark, round, encircled by white eye-ring", + "legs: strong, grayish-blue with zygodactyl feet", + "wings: green with blue or dark green edges", + "nape: transitioning from black cap to green body feathers", + "tail: long, green with blue or yellowish tips", + "throat: greenish-yellow feathers, sometimes with a lighter patch" + ], + "black capped petrel": [ + "back: dark grey with black streaks", + "beak: long, black, and slender", + "belly: white with light grey sides", + "breast: white with black flecks", + "crown: black covering the head", + "forehead: black, extending to eyes", + "eyes: dark, with black surrounding feathers", + "legs: pale pink with black webbed feet", + "wings: long, black, and scythe-shaped", + "nape: black and greyish mix", + "tail: elongated, black with white band", + "throat: white, transitioning to black on the upper breast" + ], + "black capped piprites": [ + "back: olive-green feathers", + "beak: short, thin, blackish-brown", + "belly: light gray to white underside", + "breast: grayish-white feathers", + "crown: black cap on the head", + "forehead: black extending from the crown", + "eyes: small, dark with a thin, pale eyering", + "legs: slim, grayish-brown", + "wings: olive-green with two faint yellowish wing bars", + "nape: olive-green feathers transitioning from the back", + "tail: short, rounded, olive-green", + "throat: grayish-white under the beak" + ], + "black capped pygmy tyrant": [ + "back: olive-green feathers", + "beak: small, black, and pointed", + "belly: pale yellow-white plumage", + "breast: light grayish-yellow feathers", + "crown: black cap with white edges", + "forehead: dark black patch", + "eyes: black dots on white background", + "legs: thin, grayish-brown appendages", + "wings: olive-green with faint wingbars", + "nape: olive-green plumage connecting to the crown", + "tail: short, pale olive with white tips", + "throat: light grayish-white feathers" + ], + "black capped rufous warbler": [ + "back: olive-green to rufous", + "beak: thin and pointy", + "belly: white with brownish tinge", + "breast: rich rufous color", + "crown: black with creamy stripe", + "forehead: black with white borders", + "eyes: large and dark", + "legs: pale pink to reddish-brown", + "wings: olive-brown with two white wing bars", + "nape: olive-green shading to rufous", + "tail: olive-brown with white outer edges", + "throat: white with black stripes" + ], + "black capped screech owl": [ + "back: dark greyish-brown feathering", + "beak: sharp, black, curved", + "belly: light grey with darker streaks", + "breast: pale grey with faint barring", + "crown: mottled dark grey and light grey", + "forehead: light grey blending with crown", + "eyes: large, yellow, piercing", + "legs: feathered grey, strong", + "wings: dark greyish-brown with light grey barring", + "nape: mottled dark grey with light grey streaks", + "tail: dark grey with light grey horizontal bands", + "throat: pale grey with darker streaks" + ], + "black capped siskin": [ + "back: olive-green feathers", + "beak: small, pointed, and pale", + "belly: pale grayish-yellow hue", + "breast: soft and yellowish-olive", + "crown: black cap extending to nape", + "forehead: black, merging with cap", + "eyes: round black with white ring", + "legs: dainty, grayish-pink", + "wings: dark, streaked, white-edged feathers", + "nape: continuation of black cap", + "tail: black feathers with white outer edges", + "throat: pale, olive-yellow color" + ], + "black capped social weaver": [ + "back: brown and streaked with black", + "beak: relatively short, hooked, and blackish-grey", + "belly: greyish-white and faintly streaked", + "breast: pale grey with black streaks", + "crown: black with a distinctive cap", + "forehead: black, blending into the cap", + "eyes: dark with a white eye-ring", + "legs: slender and light brown", + "wings: brownish-black with white spots and grey edges", + "nape: brown, streaked, and blending into the back", + "tail: short and brown with dark banding", + "throat: whitish-grey with faint streaks" + ], + "black capped sparrow": [ + "back: contrasting gray and brown feathers", + "beak: small, dark, and conical", + "belly: light gray plumage", + "breast: pale gray feathering", + "crown: black cap atop head", + "forehead: black continuation of crown", + "eyes: sharp, black with white eye-ring", + "legs: pinkish-brown and slender", + "wings: brown with white wing bars", + "nape: gray-brown feathers", + "tail: brown and notched", + "throat: white with grayish sides" + ], + "black capped speirops": [ + "back: dark grey with streaks of black and white", + "beak: short, stout black beak", + "belly: white with dark streaks", + "breast: white with black speckles", + "crown: distinct black cap", + "forehead: black leading into cap", + "eyes: expressive dark eyes with white eye-ring", + "legs: blackish-grey, slender legs", + "wings: grey with dark grey and white accents", + "nape: dark grey with slight streaks", + "tail: short, dark grey with faint white edging", + "throat: whitish-grey, speckled" + ], + "black capped swallow": [ + "back: iridescent bluish-black feathers", + "beak: short and pointed, black", + "belly: clean white underside", + "breast: white transitioning to bluish-black", + "crown: black cap extending to eye level", + "forehead: black merging with crown", + "eyes: small, black and alert", + "legs: slender, dark-grey limbs", + "wings: long, sleek, and bluish-black", + "nape: iridescent bluish-black feathers", + "tail: forked with elongated feathers, bluish-black", + "throat: white, blending into breast" + ], + "black capped tanager": [ + "back: bright turquoise-blue feathers", + "beak: short, dark, and conical", + "belly: vibrant sky blue", + "breast: rich bright blue", + "crown: black with a tinge of blue", + "forehead: glossy black color", + "eyes: small, dark, and surrounded by black feathers", + "legs: slender, dark gray", + "wings: turquoise-blue with black primary feathers", + "nape: blue-black feathers", + "tail: long, black central feathers with hues of blue", + "throat: deep black, contrasting with the blue breast" + ], + "black capped tinamou": [ + "back: blackish-brown with greenish sheen", + "beak: short and curved, dark gray", + "belly: pale grayish-brown", + "breast: dark gray with fine white barring", + "crown: black with greenish gloss", + "forehead: black, fading to gray on the sides", + "eyes: small, dark brown", + "legs: bluish-gray with sharp claws", + "wings: short and rounded, blackish-brown with greenish sheen", + "nape: black with greenish gloss", + "tail: short and blackish-brown with faint white barring", + "throat: white with dark gray streaks" + ], + "black capped tyrannulet": [ + "back: olive-green feathers", + "beak: small, pointed, grayish-black", + "belly: pale gray-white underparts", + "breast: grayish-white with olive tinge", + "crown: plain black cap", + "forehead: faint white eyestripe", + "eyes: small, black, round", + "legs: slender, pale pink", + "wings: olive-green, darker flight feathers", + "nape: olive-green with a slight gray wash", + "tail: long, slender, dark olive-brown", + "throat: grayish-white, unmarked" + ], + "black capped warbling finch": [ + "back: olive-green feathers with faint black streaks", + "beak: sharp, conical, and black", + "belly: whitish grey with sparse streaks", + "breast: dull grey with faint black streaks", + "crown: black cap extending from forehead to nape", + "forehead: black, part of the black cap", + "eyes: large, dark, with a thin white eye-ring", + "legs: thin, dark grey, with strong claws", + "wings: olive-green with black feather edges", + "nape: black, connecting to the black cap", + "tail: black outer feathers, greyish-brown inner feathers", + "throat: greyish-white with faint streaking" + ], + "black capped white eye": [ + "back: olive green with black streaks", + "beak: short, slender, and black", + "belly: white with faint gray markings", + "breast: white with grayish undertones", + "crown: black with white markings", + "forehead: black with white streaks", + "eyes: prominent white eye-ring", + "legs: blue-gray with sharp claws", + "wings: blackish-gray with white bars", + "nape: olive green with black streaks", + "tail: blackish-gray with white outer tips", + "throat: white with grayish shading" + ], + "black capped woodland warbler": [ + "back: deep olive-green hue", + "beak: fine, pointed, blackish", + "belly: creamy-white coloration", + "breast: yellowish-white tint", + "crown: distinct black cap", + "forehead: black merging with crown", + "eyes: dark, prominent, encircled with white", + "legs: slender, pale pinkish-gray", + "wings: olive-green with fine dark streaks", + "nape: greenish, continuous with back", + "tail: long, dark, olive-shaded feathers", + "throat: whitish, contrasting with breast" + ], + "black casqued hornbill": [ + "back: black feathers covering the upper body", + "beak: large, curved, ivory-colored casque", + "belly: dark grey feathers with creamy-yellow edging", + "breast: black feathers with a slight shine", + "crown: black, topped with a large ivory-colored casque", + "forehead: smooth black feathers leading to the casque", + "eyes: small, dark with a white ring around them", + "legs: short, dark grey with sharp claws", + "wings: broad, black feathers with white stripes", + "nape: black feathers descending gracefully down the neck", + "tail: long, black feathers with white tips", + "throat: dark grey feathers transitioning to the belly" + ], + "black cheeked ant tanager": [ + "back: deep black feathers", + "beak: sharp, silver-gray edges", + "belly: bright red patch", + "breast: black with red highlights", + "crown: black, sleek plumage", + "forehead: black with red undertones", + "eyes: dark brown, piercing gaze", + "legs: sturdy, grayish-blue", + "wings: black feathers with white trim", + "nape: black feathers transitioning to red", + "tail: long, black, and slightly forked", + "throat: intense red plumage" + ], + "black cheeked gnateater": [ + "back: dark greenish-brown feathers", + "beak: short and sturdy, dark gray color", + "belly: white with black streaks", + "breast: black with white streaks", + "crown: black with a cheek patch", + "forehead: black with a slender white stripe", + "eyes: dark brown with black outline", + "legs: strong and featherless, grayish-brown color", + "wings: brown with black and white patterns", + "nape: dark greenish-brown, blending with back", + "tail: long with brown and white stripes", + "throat: black with white streaks" + ], + "black cheeked lovebird": [ + "back: vibrant green feathers", + "beak: sharp, orange-red", + "belly: rich yellow hue", + "breast: bright orange-yellow plumage", + "crown: black with blue tint", + "forehead: striking black patch", + "eyes: round, dark with white eye-ring", + "legs: grayish, strong and slender", + "wings: vivid green with black flight feathers", + "nape: radiant green feathering", + "tail: emerald green with bright red tips", + "throat: deep black contrasting with chest" + ], + "black cheeked mountain tanager": [ + "back: dark blue feathers with turquoise sheen", + "beak: short, strong, black in color", + "belly: bright turquoise with iridescent feathers", + "breast: deep blue with teal shading", + "crown: rich blue with a vibrant sheen", + "forehead: dark blue merging to the crown", + "eyes: deep brown with a small white eye-ring", + "legs: grayish-black with powerful claws", + "wings: deep blue with turquoise edges", + "nape: dark blue blending to the back", + "tail: long, dark blue with teal edging", + "throat: bright yellow contrasting with surrounding blue" + ], + "black cheeked warbler": [ + "back: black streaks on olive-green", + "beak: sharp and thin, black color", + "belly: pale yellow with black streaks", + "breast: yellowish-green with black markings", + "crown: black and yellow stripes pattern", + "forehead: black with yellow markings", + "eyes: round, black, with white eyering", + "legs: long, dark grayish-brown", + "wings: olive-green with black streaks and white wing bars", + "nape: olive-green with black streaks", + "tail: dark olive-green, with white tips", + "throat: bright yellow" + ], + "black cheeked waxbill": [ + "back: grayish-brown with subtle darker streaks", + "beak: black and conical", + "belly: whitish to pale gray", + "breast: reddish-brown with black chevrons", + "crown: reddish-brown with fine dark streaks", + "forehead: reddish-brown, bordered with black", + "eyes: black with white eye-ring", + "legs: dark gray, slender", + "wings: gray-brown with black-streaked coverts", + "nape: reddish-brown, blending into back", + "tail: dark brown, edged with gray-brown", + "throat: black, extending to the cheeks" + ], + "black cheeked woodpecker": [ + "back: black and white striped pattern", + "beak: sturdy, chisel-shaped, relatively short", + "belly: creamy white with black spots", + "breast: black and white striped pattern, bold", + "crown: bright red plumage, distinct", + "forehead: red and black feathers, striking", + "eyes: dark, bead-like, with white circles", + "legs: grayish with long, sharp claws", + "wings: black with white spotting, strong", + "nape: black with white barring, short feathers", + "tail: long, black feathers with white spots", + "throat: creamy white with black markings" + ], + "black chested buzzard eagle": [ + "back: dark gray, sleek feathers", + "beak: sharp, curved, black beak", + "belly: light gray, soft feathering", + "breast: black, distinctive chest patch", + "crown: dark gray, well-defined feathers", + "forehead: light gray, fading to darker feathers", + "eyes: piercing, yellow with black outline", + "legs: strong, featherless, yellow", + "wings: broad, black, and white-tipped", + "nape: light gray, blending into back feathers", + "tail: black, long, with white bands", + "throat: light gray, smooth, narrow feathers" + ], + "black chested fruiteater": [ + "back: dark black feathers with a slight sheen", + "beak: short and strong, yellow to orange color", + "belly: creamy white feathers with spots", + "breast: striking black feathers with patches of white", + "crown: black and smooth with slight gloss", + "forehead: slight curve with black glossy feathers", + "eyes: dark and rather small, with an alert expression", + "legs: sturdy and gray, slightly curved claws", + "wings: deep black feathers with white edging", + "nape: black and glossy, slightly elongated feathers", + "tail: long black feathers with white tips", + "throat: whitish color with black and white pattern" + ], + "black chested honeyeater": [ + "back: dark greenish-grey feathers", + "beak: slender, slightly curved black", + "belly: pale grey underparts", + "breast: vibrant black chest band", + "crown: dark greenish-grey feathers", + "forehead: greenish-grey feathers", + "eyes: deep black, bright eyes", + "legs: slim, grey legs", + "wings: dark greenish-grey with slight iridescence", + "nape: greenish-grey feathers", + "tail: dark greenish-grey feathery tail", + "throat: soft white plumage" + ], + "black chested jay": [ + "back: dark blue feathers with a slight sheen", + "beak: strong, black, and pointed", + "belly: pale gray-blue feathers", + "breast: striking black chest band", + "crown: deep blue, semi-crested appearance", + "forehead: vibrant blue feathers", + "eyes: dark and expressive", + "legs: strong, black, and sturdy", + "wings: blue with black flight feathers", + "nape: rich blue hues", + "tail: long and blue, with black tips", + "throat: light grayish-blue feathers" + ], + "black chested mountain tanager": [ + "back: vibrant blue feathers with iridescent green highlights", + "beak: strong, medium-length, and black in color", + "belly: deep black feathers reaching down to the legs", + "breast: brightly colored with an eye-catching mix of red and orange hues", + "crown: shimmering blue-green feathers adorning the top of the head", + "forehead: intense blue feathers merging with the crown", + "eyes: small and beady with black pupils, surrounded by a thin ring of white", + "legs: stout and sturdy, covered in black scales", + "wings: long and powerful, showcasing an array of blue and green hues", + "nape: gracefully blending from the crown's blue-green to the back's deep blue shades", + "tail: dark blue feathers with a green iridescence, fanning out behind the bird", + "throat: deep black feathers smoothly transitioning to the bright breast coloration" + ], + "black chested prinia": [ + "back: dark brown with faint streaks", + "beak: sharp, thin, and black", + "belly: pale with black streaks", + "breast: white with a black band across", + "crown: grey-brown with an elongated crest", + "forehead: smooth, grey-brown", + "eyes: small, black, and round", + "legs: slender and pinkish-brown", + "wings: short, rounded, with dark brown feathers", + "nape: grey-brown and smooth", + "tail: long, narrow, and dark brown", + "throat: pale white and unmarked" + ], + "black chested snake eagle": [ + "back: dark brown feathers", + "beak: strong black curved bill", + "belly: light cream-colored feathers", + "breast: striking black feathers", + "crown: rounded dark brown head", + "forehead: smooth brown plumage", + "eyes: piercing yellow gaze", + "legs: sturdy yellow legs", + "wings: expansive dark brown wingspan", + "nape: sleek brown feathers", + "tail: long brown feathers with faint bands", + "throat: pale cream-colored plumage" + ], + "black chested sparrow": [ + "back: dark brown feathers with subtle streaks", + "beak: short, pointed, grayish color", + "belly: light cream with brown spots", + "breast: distinct black patch contrasting light underparts", + "crown: dark brown peak with streaked pattern", + "forehead: light brown merging into the crown", + "eyes: small, round, black with white eye-ring", + "legs: thin, grayish-brown, scaly texture", + "wings: dark brown with white bars at tips", + "nape: similar brown color as the back with streakings", + "tail: long and dark brown, with white edges", + "throat: white, contrasting with black breast" + ], + "black chested tyrant": [ + "back: dark gray feathers", + "beak: short and sharp", + "belly: light gray plumage", + "breast: black chested patch", + "crown: dark gray, rounded", + "forehead: dark gray feathers", + "eyes: small and bright", + "legs: long and slender", + "wings: mid-length, dark gray", + "nape: smooth gray transition", + "tail: long and thin, gray", + "throat: light gray feathers" + ], + "black chinned antbird": [ + "back: dark grey feathers", + "beak: thin, black, and slightly curved", + "belly: white with greyish streaks", + "breast: light grey with dark markings", + "crown: black with a slightly raised crest", + "forehead: dark grey feathers", + "eyes: black and piercing, surrounded by a thin white eye-ring", + "legs: slender, greyish-black", + "wings: dark grey with faint white markings", + "nape: charcoal grey with a slight sheen", + "tail: long and dark grey, with faint white tips on outer feathers", + "throat: black with a hint of iridescence" + ], + "black chinned babbler": [ + "back: olive-brown feathers", + "beak: short, pointed, gray-black", + "belly: pale, whitish-gray", + "breast: light grayish-brown", + "crown: dark brown with slight crest", + "forehead: black and narrow", + "eyes: dark brown, bright", + "legs: pinkish-brown, slender", + "wings: olive-brown, rounded", + "nape: grayish-brown, smooth", + "tail: long, narrow, brown", + "throat: black distinct patch" + ], + "black chinned fruit dove": [ + "back: olive green with hints of blue", + "beak: short and curved, grayish color", + "belly: pale yellow with grayish undertones", + "breast: vibrant purple and green gradient", + "crown: iridescent bluish-green", + "forehead: bright yellow merging into green", + "eyes: dark with gray eye-ring", + "legs: short, red with sharp claws", + "wings: olive green tinged with blue shades", + "nape: shiny golden green", + "tail: elongated with olive green and blue hues", + "throat: vivid purple with plum-colored undertones" + ], + "black chinned honeyeater": [ + "back: dark, streaked olive-green feathers", + "beak: long, slender, and slightly curved", + "belly: pale yellow tinted white", + "breast: greyish-white shading to yellow", + "crown: black patch with subtle purple iridescence", + "forehead: bright yellow band above beak", + "eyes: dark, attentive gaze surrounded by off-white markings", + "legs: skinny legs with sharp, gripping claws", + "wings: olive-green with a tint of yellow and fine white streaks", + "nape: olive-green feathers fading to black at the edges", + "tail: long, dark finely-barred tail feathers with white tips", + "throat: vibrant yellow patch contrasting with the black chin" + ], + "black chinned monarch": [ + "back: vibrant bluish-black feathers", + "beak: greyish-black, slender and sharp", + "belly: lighter sky-blue coloration", + "breast: rich royal blue plumage", + "crown: deep black with a slight sheen", + "forehead: black with a bluish tinge", + "eyes: dark, perceptive, and round", + "legs: greyish-black slender limbs", + "wings: striking blue with black edges", + "nape: brilliant blue contrasting with the crown", + "tail: elongated black feathers with blue accents", + "throat: deep black transitioning into blue breast" + ], + "black chinned mountain tanager": [ + "back: vibrant blue feathers with black markings", + "beak: small but strong, blackish-gray", + "belly: intense blue feathers fading into emerald green", + "breast: brilliant turquoise merging into yellow", + "crown: vivid blue with black outlines", + "forehead: radiant blue with subtle black streaks", + "eyes: dark and expressive, surrounded by blue feathers", + "legs: grayish-black, slender, and strong", + "wings: striking mix of blue, green, and yellow feathers", + "nape: rich blue with hints of black markings", + "tail: elongated, lustrous blue-green feathers", + "throat: golden yellow blending into turquoise" + ], + "black chinned robin": [ + "back: dark olive-green feathers", + "beak: slim, sharp, dark grey", + "belly: pale greyish-white", + "breast: delicate orange-red hue", + "crown: deep black, glossy", + "forehead: black with a touch of iridescence", + "eyes: bright, black beady orbs", + "legs: slender, dark grey", + "wings: olive-green with dark grey flight feathers", + "nape: black, matching crown", + "tail: olive-green, slightly forked", + "throat: radiant black, shiny" + ], + "black chinned siskin": [ + "back: olive-green plumage covering the upper body", + "beak: short, pointed, and gray in color", + "belly: pale yellow-green underside", + "breast: vibrant yellow feathers on the chest", + "crown: dark gray cap on the top of the head", + "forehead: smaller area above the beak; dark gray", + "eyes: small and black, encircled with faint grayish-white rings", + "legs: slender and gray with sharp claws", + "wings: olive-green with black-edged feathers and hints of yellow", + "nape: area between the crown and back, olive-green in color", + "tail: long, forked, and covered in dark gray feathers with yellow edges", + "throat: bright yellow, extending to the sides of the head" + ], + "black chinned weaver": [ + "back: olive-green plumage", + "beak: black, conical shape", + "belly: pale yellowish-white", + "breast: bright yellow feathers", + "crown: black cap-like pattern", + "forehead: black streak running to eyes", + "eyes: dark, round with white eye-ring", + "legs: dark gray with sturdy claws", + "wings: olive-green with black markings", + "nape: olive-green, blend with back", + "tail: dark with olive green tinge", + "throat: black chin, yellowish-white throat" + ], + "black chinned whistler": [ + "back: dark olive-green feathers", + "beak: short and strong, pale yellow", + "belly: white with pale yellow undertone", + "breast: grayish-white with faint yellow hues", + "crown: olive-green with black stripe", + "forehead: black chin blending into greenish crown", + "eyes: black, small and alert", + "legs: pale pink, strong and slender", + "wings: dark olive-green with prominent yellow patches", + "nape: greenish olive, continuous with the back", + "tail: elongated, olive-green with black accents", + "throat: striking black chin, grayish-white below" + ], + "black chinned yuhina": [ + "back: olive-green feathers", + "beak: short, slightly curved", + "belly: white with faint streaks", + "breast: white with dark streaks", + "crown: black crest, extending to nape", + "forehead: bright yellow band", + "eyes: dark, piercing gaze", + "legs: strong, grayish-brown", + "wings: olive-green, white-edged feathers", + "nape: black, connected to crown", + "tail: long, olive-green with white tips", + "throat: white, contrasting with black chin" + ], + "black collared apalis": [ + "back: dark grey feathered", + "beak: small, sharp, black", + "belly: light gray patch", + "breast: greyish-white feathers", + "crown: black with slight crest", + "forehead: black feathers", + "eyes: small, round, black", + "legs: slender, dark grey", + "wings: grey-black, medium-sized", + "nape: black with white collar", + "tail: long, grey-black feathers", + "throat: greyish-white, lighter than breast" + ], + "black collared barbet": [ + "back: vibrant red with black feathers", + "beak: sturdy, greyish horn color", + "belly: bright red plumage", + "breast: scarlet red feathers", + "crown: black with slight feather crest", + "forehead: white band above beak", + "eyes: small, dark, and round", + "legs: greyish-blue and strong", + "wings: black with white markings", + "nape: black collar connecting to wings", + "tail: black with white outer edges", + "throat: white patch under beak" + ], + "black collared bulbul": [ + "back: glossy black feathers", + "beak: short and conical, dark grey", + "belly: pale greyish-white", + "breast: blackish-grey blend", + "crown: slightly raised crest, black", + "forehead: smooth transition to crown, black", + "eyes: brown, encircled with black feathers", + "legs: short, dark grey", + "wings: black with prominent white tips", + "nape: smooth black curve towards wings", + "tail: elongated, black with white edges", + "throat: full black plumage" + ], + "black collared hawk": [ + "back: sleek, dark plumage", + "beak: sharp, hooked, black", + "belly: creamy white", + "breast: white with fine streaks", + "crown: black, rounded", + "forehead: white, contrast with crown", + "eyes: intense, yellow", + "legs: long, yellow", + "wings: broad, dark, with white patches", + "nape: black, collar-like", + "tail: black and white bands", + "throat: white, unmarked" + ], + "black collared jay": [ + "back: dark blue-gray feathers", + "beak: strong, black, slightly curved", + "belly: light grey plumage", + "breast: bluish-grey feathers", + "crown: black crest with a small white patch", + "forehead: smooth black feathers", + "eyes: dark, piercing gaze", + "legs: long, black and sturdy", + "wings: dark blue-grey with black primaries", + "nape: black feathers with distinct white collar", + "tail: long, blue-grey with black tips", + "throat: pale grey plumage" + ], + "black collared lovebird": [ + "back: vibrant green feathers", + "beak: small and sharp, beige color", + "belly: soft green hue", + "breast: bright orange plumage", + "crown: reddish-brown top feathers", + "forehead: orange-reddish feathers", + "eyes: beady black and alert", + "legs: thin and gray, ending in claws", + "wings: vivid green with black flight feathers", + "nape: black collar-like marking", + "tail: long, green with black tips", + "throat: orangish-yellow plumage" + ], + "black collared starling": [ + "back: glossy black with a slight metallic sheen", + "beak: sturdy and slightly curved, yellow-orange hue", + "belly: creamy white with fine black streaks", + "breast: white with subtle black stripes", + "crown: iridescent black and beautifully sleek", + "forehead: shiny black with an elegant shine", + "eyes: dark brown, bright and watchful", + "legs: slender, well-defined and pale orange", + "wings: glistening black with a hint of green iridescence", + "nape: black featuring an eye-catching white collar", + "tail: long and radiant black with white outer feathers", + "throat: dazzling white with black streaks on either side" + ], + "black collared swallow": [ + "back: sleek dark-feathered back", + "beak: sharp, black pointed beak", + "belly: light gray underbelly", + "breast: grayish-feathered chest", + "crown: dark-feathered head crest", + "forehead: smooth black forehead", + "eyes: small, round dark eyes", + "legs: slender black legs", + "wings: long, dark-feathered wings", + "nape: black-furred neck area", + "tail: elongated, forked black tail feathers", + "throat: light gray throat region" + ], + "black cowled oriole": [ + "back: vibrant yellow with black streaks", + "beak: sharp and pointed, black", + "belly: bright yellow", + "breast: vivid yellow with slight black markings", + "crown: striking black", + "forehead: deep black", + "eyes: dark with a black outline", + "legs: slender black", + "wings: black with yellow edges", + "nape: contrasting black", + "tail: long, black, and straight", + "throat: brilliant yellow" + ], + "black cowled saltator": [ + "back: glossy black feathers", + "beak: thick and conical in shape", + "belly: white with black streaks", + "breast: dark gray with white streaks", + "crown: black with a slight shine", + "forehead: black connecting with the crown", + "eyes: small and dark with a white ring", + "legs: strong and grayish", + "wings: black with white tips", + "nape: black, blending with the back and crown", + "tail: long and black with white outer feathers", + "throat: blackish-gray, connecting with the breast" + ], + "black crested antshrike": [ + "back: sleek black feathers", + "beak: robust, pointed, pale grey", + "belly: white, slight yellow tint", + "breast: white with black streaks", + "crown: prominent black crest", + "forehead: smooth black feathers", + "eyes: dark, beady, alert", + "legs: strong, grey, long toes", + "wings: black, white markings, sturdy", + "nape: black, merging with crown", + "tail: long, black, white tips", + "throat: white, narrow black streaks" + ], + "black crested bulbul": [ + "back: olive-green feathers covering the dorsal region", + "beak: short, slightly curved, and conical in shape", + "belly: pale yellow with slight hints of green", + "breast: vibrant yellow transitioning from the throat area", + "crown: defined black crest, raised or lowered depending on mood", + "forehead: prominent black feathers extending from the beak to the crown crest", + "eyes: round, dark brown, surrounded by a thin white eye-ring", + "legs: thin, greyish brown with strong, flexible toes", + "wings: olive-green, with darker flight feathers for agile flying", + "nape: dark olive-green feathers connecting the crown to the back", + "tail: long, olive-green, with a lighter central patch and a graduated shape", + "throat: vibrant yellow feathers starting at the base of the beak" + ], + "black crested coquette": [ + "back: vibrant green iridescent plumage", + "beak: thin, slightly curved, black", + "belly: white with green tinge", + "breast: bright green with feather tufts", + "crown: black feathers with purple sheen", + "forehead: black with vivid purple crest", + "eyes: small, dark, and round", + "legs: slender, grayish-brown", + "wings: dark green with elongated feathers", + "nape: green with a hint of purple iridescence", + "tail: dark green, long, and forked", + "throat: iridescent green with feather fluffs" + ], + "black crested finch": [ + "back: black-feathered with a slight sheen", + "beak: short, conical, and pale pinkish", + "belly: bright white feathers", + "breast: contrasting white, meeting the black plumage", + "crown: prominent black crest feathers", + "forehead: smooth black plumage", + "eyes: dark, round, with a white eye-ring", + "legs: slender, pinkish-grey", + "wings: black with white-edged flight feathers", + "nape: continuation of black crest feathers", + "tail: forked shape, black with white outer edges", + "throat: pure white, contrasting with black plumage" + ], + "black crested tit tyrant": [ + "back: dark gray feathers with subtle stripes", + "beak: small, sharp, and black", + "belly: light gray with mottled streaks", + "breast: soft, pale gray with fine barring", + "crown: striking black crest with pointed feathers", + "forehead: sleek, dark gray merging into the crest", + "eyes: small, black, and round with a white eye-ring", + "legs: thin, black, and slightly scaled", + "wings: dark gray with lighter gray fringes on flight feathers", + "nape: gray feathers fading into the black crest", + "tail: long, dark gray, and slightly forked with white edges", + "throat: pale gray with faint streaks" + ], + "black crested warbler": [ + "back: dark olive-green with black streaks", + "beak: slender, slightly curved, black", + "belly: pale yellowish-green", + "breast: light yellow with black streaks", + "crown: black with a prominent crest", + "forehead: black, connecting to the crown", + "eyes: dark with a white eye-ring", + "legs: long, slender, pale pinkish-brown", + "wings: dark olive-green with black and yellow markings", + "nape: olive-green blending with the black crown", + "tail: blackish-grey with white outer feathers", + "throat: bright yellow, contrasting with the black face" + ], + "black crowned antpitta": [ + "back: dark olive green feathers", + "beak: short, stout, and pale gray", + "belly: whitish with black streaks", + "breast: grayish-green with black streaks", + "crown: distinctive black crown", + "forehead: prominent grayish-white eyebrows", + "eyes: round, black, and alert", + "legs: long, pinkish-gray, and strong", + "wings: dark olive green with white wing-bars", + "nape: dark olive with faint streaks", + "tail: short, dark olive green, and square-cut", + "throat: whitish with faint black streaks" + ], + "black crowned antshrike": [ + "back: black plumage with white spots", + "beak: short, black, and slightly curved", + "belly: white with black markings", + "breast: white with black streaks", + "crown: black with distinct white stripe", + "forehead: black with prominent white eyebrow", + "eyes: dark brown, encircled with white ring", + "legs: long, dark gray", + "wings: black feathers with white bars", + "nape: black with white stripe continuation from crown", + "tail: long, black, and white-tipped", + "throat: white with subtle black markings" + ], + "black crowned babbler": [ + "back: dark olive-brown feathers", + "beak: sharp, straight, and black", + "belly: whitish-gray with streaks", + "breast: grayish-white with dark streaks", + "crown: distinct black cap", + "forehead: black extending to the eyes", + "eyes: bright and expressive with pale eye-ring", + "legs: sturdy and dark gray", + "wings: olive-brown with faint bands", + "nape: grayish-green fading to brown", + "tail: long and graduated with olive-brown feathers", + "throat: whitish-gray with dark streaks" + ], + "black crowned barwing": [ + "back: dark gray feathers with slight iridescence", + "beak: strong, slightly curved, dark gray", + "belly: lighter gray with white streaks", + "breast: gray with subtle white streaking", + "crown: distinctive black with glossy finish", + "forehead: black, connecting to the crown", + "eyes: small, black, alert", + "legs: slender, dark gray or black", + "wings: dark gray with white bands and edging", + "nape: black, extending from crown", + "tail: long, dark gray with white tips", + "throat: pale gray with fine white streaks" + ], + "black crowned fulvetta": [ + "back: a blend of olive-green and grey hues", + "beak: short, thin, and pointed", + "belly: pale grey-white", + "breast: contrasting grey-white", + "crown: distinct black with slight metallic sheen", + "forehead: black connecting to black crown", + "eyes: dark and round, surrounded by black feathers", + "legs: slim and light pinkish-grey", + "wings: olive-green with faint barring", + "nape: continuation of black crown curving down", + "tail: medium length, dark gray with olive-green tinge", + "throat: soft white-grey" + ], + "black crowned monjita": [ + "back: dark grey feathers", + "beak: small, black, sharp", + "belly: whitish-grey plumage", + "breast: light grey feathers", + "crown: distinct black crest", + "forehead: black feathers extending to the eyes", + "eyes: small, black, bright", + "legs: slim, dark grey", + "wings: black and grey with white markings", + "nape: grey feathers transitioning from black crown", + "tail: long, black with white outer feathers", + "throat: light grey, blending with breast" + ], + "black crowned palm tanager": [ + "back: dark olive-green feathers", + "beak: thick and pointed, black", + "belly: light grayish-green tones", + "breast: olive-gray plumage", + "crown: black with raised crest", + "forehead: black, blending with crown", + "eyes: small and dark, encircled by a thin white ring", + "legs: strong and dark gray", + "wings: dark olive-green with white-edged feathers", + "nape: dark olive-green with black striping or mottling", + "tail: long and dark green with white outer edges", + "throat: olive-gray plumage, similar to the breast" + ], + "black crowned pitta": [ + "back: vibrant blue with greenish tinge", + "beak: strong, short, and black", + "belly: bright yellow and black striped", + "breast: striking yellow with black markings", + "crown: black with delicate turquoise streaks", + "forehead: rich turquoise blue, blending with crown", + "eyes: medium size with black iris, surrounded by blue feather patch", + "legs: long and sturdy, deep grey-black in color", + "wings: blue with black barring and a hint of turquoise", + "nape: transition between the back and crown colors", + "tail: bold, long with blue and black stripes, and a turquoise tint", + "throat: pale yellow and white, a contrast to the colorful body" + ], + "black crowned scimitar babbler": [ + "back: olive-brown feathers", + "beak: long, curved, grayish-black", + "belly: white with chestnut streaks", + "breast: dark chestnut plumage", + "crown: black with grayish-white brows", + "forehead: black continuation of the crown", + "eyes: dark, surrounded by black feathers", + "legs: sturdy, pale pinkish-gray", + "wings: olive-brown with broad white tips", + "nape: olive-brown blending with back", + "tail: long, dark chestnut with white tips", + "throat: white with chestnut bordering" + ], + "black crowned sparrow lark": [ + "back: subtle brownish-grey plumage", + "beak: short and conical, pale grey", + "belly: white with light brown markings", + "breast: pale brown with darker streaks", + "crown: black patch on the head, males have larger patch", + "forehead: light brown with a faint white band above the eye", + "eyes: small, black, and beady", + "legs: strong, pale grey with sharp claws", + "wings: dark brown with pale edges, short, compact, and rounded", + "nape: light brown with faint streaks", + "tail: short and rounded, brown with white outer feathers", + "throat: white with dark brown streaks converging in a v shape" + ], + "black crowned tchagra": [ + "back: dark brown with faint streaks", + "beak: short, sharp, and black", + "belly: light brown or beige", + "breast: rufous-brown fading to lighter shades", + "crown: black with a small crest", + "forehead: black merging with the crown", + "eyes: dark brown with a white ring around them", + "legs: slender and grayish", + "wings: brown with black and white markings", + "nape: black, connecting the crown and back", + "tail: long and brown with black and white tips", + "throat: pale buff color, lighter than breast" + ], + "black crowned tityra": [ + "back: sleek black feathers", + "beak: pale, thick, and slightly hook-shaped", + "belly: white with soft feathers", + "breast: smooth white plumage", + "crown: striking black crest", + "forehead: black with narrow feathers", + "eyes: sharp and dark", + "legs: pale grey and sturdy", + "wings: black with white patches", + "nape: black and well-defined", + "tail: long black feathers", + "throat: white with a hint of black at the edge" + ], + "black crowned waxbill": [ + "back: dark olive-brown feathers", + "beak: deep red color, pointed shape", + "belly: soft greyish-white plumage", + "breast: greyish-white blending with dark brown", + "crown: glossy black with a slight metallic sheen", + "forehead: black, merged with the crown", + "eyes: small, dark, vibrant with a thin white ring", + "legs: reddish-brown, slender", + "wings: dark olive-brown with white streaks", + "nape: olive-brown, connects the crown and back", + "tail: dark olive-brown, slightly forked", + "throat: pale greyish-white, contrasts with dark upperparts" + ], + "black crowned white eye": [ + "back: sleek black feathers", + "beak: petite and pointed", + "belly: clean white plumage", + "breast: smooth white feathers", + "crown: distinct black cap", + "forehead: black-to-white gradient", + "eyes: bright and alert", + "legs: thin and delicate", + "wings: black-tipped white feathers", + "nape: white with black edges", + "tail: short with black and white feathers", + "throat: white and unmarked" + ], + "black eared catbird": [ + "back: dark gray feathered body", + "beak: strong, slightly curved black beak", + "belly: soft gray underbelly", + "breast: gray-feathered chest", + "crown: dark gray feathers at bird's head-top", + "forehead: smooth gray feathers above eyes", + "eyes: striking, dark and round", + "legs: long, blackish-gray and slender", + "wings: dark gray with lighter gray edges", + "nape: gray transition from head to back", + "tail: long, dark gray fanned feathers", + "throat: lighter gray feathers near beak" + ], + "black eared cuckoo": [ + "back: dark gray with metallic sheen", + "beak: slim, curved, dark grayish", + "belly: white with faint gray markings", + "breast: pale gray with subtle black streaks", + "crown: dark gray with a metallic shine", + "forehead: dark gray with a slight sheen", + "eyes: dark, beady, and sharp", + "legs: long, slender, charcoal gray", + "wings: broad, dark gray with white tips", + "nape: gleaming dark gray", + "tail: long, thin, dark gray with white markings", + "throat: pale gray with faint black streaks" + ], + "black eared fairy": [ + "back: sleek black feathers", + "beak: slender, dark gray", + "belly: silver-white plumage", + "breast: light gray feathers", + "crown: iridescent black crest", + "forehead: black with slight glimmer", + "eyes: small and dark brown", + "legs: thin and grayish", + "wings: black with elongated flight feathers", + "nape: shimmering black", + "tail: long, black streamer-like feathers", + "throat: feathered in soft white" + ], + "black eared hemispingus": [ + "back: olive-green with black streaks", + "beak: short, grayish-black, cone-shaped", + "belly: pale yellow with black streaks", + "breast: bright yellow with black streaks", + "crown: olive-green with black edges", + "forehead: olive-green with black lining", + "eyes: dark brown with white eye-ring", + "legs: grayish-black and slender", + "wings: olive-green with black flight feathers", + "nape: olive-green with black streaks", + "tail: blackish-brown with white outer feathers", + "throat: bright yellow with black streaks" + ], + "black eared miner": [ + "back: dark grey-brown with slight streaks", + "beak: slim, curved, blackish-grey", + "belly: white-pale grey with some streaks", + "breast: greyish-white with light streaks", + "crown: dark grey with a faint black streak", + "forehead: light grayish-brown fading to white", + "eyes: surrounded by thin black line extending behind the eye", + "legs: short, delicate, and grayish-brown", + "wings: dark grey-brown with blackish edges on flight feathers", + "nape: grey-brown with slight streaks", + "tail: short, blackish-grey with a white tip", + "throat: white with grayish streaks" + ], + "black eared seedeater": [ + "back: dark grayish-brown upper body", + "beak: short, stout, and light gray", + "belly: lighter gray with delicate white accents", + "breast: blended gray and white feathers", + "crown: deep black, well-defined crest", + "forehead: smooth black-to-gray gradient", + "eyes: small, sharp, dark brown", + "legs: slender, pale gray with strong claws", + "wings: bold black shoulders with gray and white edges", + "nape: black region bridging head and back", + "tail: short, dark gray with white outer tips", + "throat: prominent black patch with white-bordered edge" + ], + "black eared shrike babbler": [ + "back: dark olive-green feathers", + "beak: strong, slightly curved, dark gray", + "belly: pale and yellowish-gray feathers", + "breast: grayish-white with black streaks", + "crown: bluish-black with fine white streaks", + "forehead: short black bristles", + "eyes: dark brown with pale eyering", + "legs: dark gray, sturdy", + "wings: dark olive-green with blackish flight feathers", + "nape: bluish-gray with white streaks", + "tail: long and dark olive-green", + "throat: pale gray with fine black streaks" + ], + "black eared sparrow lark": [ + "back: dark brown, with subtle streaks", + "beak: sharp, pointed, black", + "belly: white, with black spots on sides", + "breast: rich chestnut color, with black bib", + "crown: dark brown, with slight crest", + "forehead: pale brown, with black border on crown", + "eyes: small, dark, with white eye-ring", + "legs: slender, grayish-brown", + "wings: dark brown, with pale edges and black ear patch", + "nape: pale brown, with dark streaks", + "tail: dark brown, with white outer feathers, forked", + "throat: white, contrasting with black bib" + ], + "black eared wood quail": [ + "back: dark brown with subtle black stripes", + "beak: short, slightly curved, dark gray", + "belly: rich chestnut brown with faint black barring", + "breast: warm chestnut brown with black bars", + "crown: black with small white specks", + "forehead: black with a hint of white flecks", + "eyes: dark, surrounded by pale white eye-ring", + "legs: medium length, strong, slate gray", + "wings: dark brown with fine black-and-white streaks", + "nape: black with white flecks, forming a collar-like pattern", + "tail: dark brown, short and rounded", + "throat: black with fine white streaks" + ], + "black faced antbird": [ + "back: dark grey feathers with slight greenish sheen", + "beak: short, straight, and black", + "belly: dull grey with lighter gray streaks", + "breast: charcoal grey with lighter gray streaks", + "crown: black feathers with slight blue sheen", + "forehead: solid black with blue sheen", + "eyes: dark brown with thin white eye-ring", + "legs: dark grey and slender", + "wings: dark grey with faint greenish highlights", + "nape: black feathers with blue sheen", + "tail: long and dark grey, with subtle greenish sheen", + "throat: black with a faint blue shine" + ], + "black faced antthrush": [ + "back: dark brown with blackish streaks", + "beak: short and robust; dark grey", + "belly: pale grey with scalloped pattern", + "breast: grayish-brown with fine black streaks", + "crown: dark with slight rufous tinge", + "forehead: black with a slight hint of rufous", + "eyes: dark brown; well-defined pale eye-ring", + "legs: long and sturdy; greyish-blue", + "wings: dark brown with rufous edges and faint pale markings", + "nape: dark brown with light rufous streaks", + "tail: long and broad; rufous-brown with faint dark barring", + "throat: grayish-white with fine black streaks" + ], + "black faced apalis": [ + "back: olive-green feathers", + "beak: small, black and pointed", + "belly: white, grayish or cream", + "breast: grayish-white plumage", + "crown: black with white eyebrows", + "forehead: narrow black band", + "eyes: dark, with white eye ring", + "legs: pale pink or gray", + "wings: olive-green with darker tips", + "nape: black, continuous from crown", + "tail: long and olive-green", + "throat: white or grayish-white" + ], + "black faced babbler": [ + "back: dark brown feathers", + "beak: small, pointed, slightly curved", + "belly: off-white to light brown", + "breast: light brown with streaks of black", + "crown: black feathers with shiny highlights", + "forehead: smooth black with white markings", + "eyes: small, brown, surrounded by black feathers", + "legs: strong, greyish", + "wings: brown with white streaks, slightly rounded", + "nape: black feathers transitioning to brown on the back", + "tail: medium length, dark brown feathers with white tips", + "throat: black feathers leading to light brown breast" + ], + "black faced brushfinch": [ + "back: olive-green feathers covering the upper body", + "beak: short, conical, and black in color", + "belly: pale greyish-white underside", + "breast: greyish-white blending into the belly", + "crown: black feathers with streaks of grey", + "forehead: black feathers meeting with crown", + "eyes: small, round with a black pupil and white eye-ring", + "legs: thin, long, and grayish-brown", + "wings: olive-green with dark brown accents", + "nape: olive-green feathers transitioning from the crown", + "tail: long, dark brown with olive-green edges", + "throat: black feathers continuing from the forehead" + ], + "black faced bunting": [ + "back: light brown with black streaks", + "beak: small and conical, pale peach color", + "belly: creamy white with faint streaks", + "breast: light yellowish-brown with streaks", + "crown: black with gray-brown streaks", + "forehead: black, extends to the eyes and nape", + "eyes: dark, surrounded by creamy-white eye-ring", + "legs: slim, pale pinkish-gray", + "wings: dark brown with cream and light brown edges", + "nape: black, merging with the crown", + "tail: dark brown, medium length, with faint cream edges", + "throat: creamy white, contrasts with black face" + ], + "black faced canary": [ + "back: vibrant green feathers", + "beak: small, sharp, and black", + "belly: bright yellow plumage", + "breast: radiant yellow feathers", + "crown: glossy black top with green streaks", + "forehead: deep black mask", + "eyes: small, intense with a white circle around", + "legs: slender and gray", + "wings: green with slight hints of blue", + "nape: greenish-yellow transitioning from black face", + "tail: long, pointy feathers in dark green and black hues", + "throat: yellow, blending with the rest of black-faced mask" + ], + "black faced cormorant": [ + "back: sleek, dark feathers", + "beak: long, sharp, and hooked", + "belly: lighter grey plumage", + "breast: dark grey feathers", + "crown: solid black with slight sheen", + "forehead: black, smooth contour", + "eyes: piercing turquoise color", + "legs: short, black, webbed feet", + "wings: elongated, powerful, dark feathers", + "nape: black with subtle grey highlights", + "tail: short, rigid, black feathers", + "throat: dark grey, slightly curved neck" + ], + "black faced cotinga": [ + "back: vibrant teal-blue feathers", + "beak: short and stout, black in color", + "belly: deep sky-blue plumage", + "breast: striking blue feathers", + "crown: shimmering black cap", + "forehead: glossy black feathers", + "eyes: beady and black, well-defined", + "legs: sleek and gray, sturdy yet delicate", + "wings: bold blue with teal undertones", + "nape: intense black, blending with the crown", + "tail: elongated, golden-yellow feathers with iridescent tips", + "throat: striking black, creating a distinct contrast with the vibrant breast" + ], + "black faced coucal": [ + "back: greenish-brown upper feathers", + "beak: short and stout black beak", + "belly: creamy white underside", + "breast: grayish brown with lighter streaks", + "crown: dark gray head cap", + "forehead: black face mask", + "eyes: dark brown and sharp", + "legs: strong and black with zygodactyl feet", + "wings: greenish-brown with slight iridescence", + "nape: dark gray to greenish-brown transition", + "tail: long and greenish-brown with black banding", + "throat: cream-colored with a grayish tint" + ], + "black faced cuckooshrike": [ + "back: dark gray feathers", + "beak: short, black, and sturdy", + "belly: light gray with black streaks", + "breast: grayish-white", + "crown: dark gray with black face markings", + "forehead: dark gray blending into black face", + "eyes: small, black, alert", + "legs: black, thin, and strong", + "wings: dark gray with black wing edges", + "nape: gray and feathered", + "tail: long, black, and fan-shaped", + "throat: white to light gray with black markings" + ], + "black faced dacnis": [ + "back: vibrant blue feathers", + "beak: short, black and conical", + "belly: light blue-gray plumage", + "breast: brilliant blue feathers", + "crown: deep cobalt blue with a black face", + "forehead: intense dark blue with a black border", + "eyes: large and dark, surrounded by a black facial mask", + "legs: dark gray and sturdy", + "wings: bright blue with black edges", + "nape: striking blue with a touch of black", + "tail: sky blue with black tips", + "throat: dark blue fading into a lighter blue-gray" + ], + "black faced firefinch": [ + "back: deep red with black streaks", + "beak: short and conical, black in color", + "belly: bright red", + "breast: bold red with spotted pattern", + "crown: black with a distinct red crest", + "forehead: pitch black", + "eyes: small and black, surrounded by red feathers", + "legs: long and dark gray", + "wings: dark red with black wingbars", + "nape: red with a tinge of black", + "tail: medium length, red with black markings", + "throat: striking red with few black markings" + ], + "black faced grassquit": [ + "back: olive-green feathers", + "beak: short, conical, black", + "belly: light gray-white plumage", + "breast: grayish-brown feathers", + "crown: black feathers with a slight sheen", + "forehead: black feathers extending above the eyes", + "eyes: small, round, dark brown", + "legs: thin, grayish-brown", + "wings: olive-green with darker primary feathers", + "nape: olive-green feathers", + "tail: short, rounded, darker olive-green feathers", + "throat: black feathers, distinctive on males" + ], + "black faced grosbeak": [ + "back: dark black feathers covering the upper body", + "beak: large, stout, and conical shaped with a silver-gray color", + "belly: lighter shade of gray with subtle black streaks", + "breast: rich gray plumage blending into the belly", + "crown: black feathers covering the top of the head", + "forehead: black feathered area above the eyes and the beak", + "eyes: small, black, and glistening with a focused gaze", + "legs: sturdy and gray, tipped with sharp black claws", + "wings: black outer feathers with white streaks and grayish under feathers", + "nape: black-feathered area at the back of the neck", + "tail: long, black feathers with a slight grayish-white undertone", + "throat: black feathers transitioning into the gray belly area" + ], + "black faced hawk": [ + "back: dark feathered, sleek body", + "beak: sharp, hooked, black tip", + "belly: lighter grey, soft plumage", + "breast: dark grey, barred feathers", + "crown: black, well-defined feathers", + "forehead: smooth, black curve", + "eyes: piercing yellow, rounded", + "legs: strong, scaly, yellow talons", + "wings: long, dark with lighter grey flight feathers", + "nape: black, uniform coverage", + "tail: strong, black with grey bands", + "throat: dark grey, barring connecting breast" + ], + "black faced ibis": [ + "back: smooth slate-gray feathers", + "beak: long, curved, and black", + "belly: lighter gray compared to the back", + "breast: pale grayish-white plumage", + "crown: black feathers with a glossy sheen", + "forehead: narrow patch of black feathers", + "eyes: bright orange or yellow", + "legs: long, slender, and gray", + "wings: slate-gray with a black edge and visible white band when in flight", + "nape: black, glossy feather draping", + "tail: medium length, gray feathers", + "throat: white plumage sharply contrasting with the black face" + ], + "black faced laughingthrush": [ + "back: dark grayish-brown feathers covering", + "beak: short, sturdy, and slightly curved, dark gray-to-black", + "belly: plain gray with a hint of brown undertones", + "breast: reddish-brown hue with subtle streaks", + "crown: solid black, extending down to the eye", + "forehead: distinct black marking on a gray background", + "eyes: piercing, shiny black orbs on each side", + "legs: strong, dark gray, and scaled", + "wings: elongated, rounded, and brownish-gray in color", + "nape: plain gray with a smooth texture transition", + "tail: lengthy, dark brown with a touch of rusty coloration", + "throat: bold black patch, surrounded by reddish hues" + ], + "black faced monarch": [ + "back: deep olive-green feathers", + "beak: short, hooked, dark grey", + "belly: pale yellow plumage", + "breast: yellowish-orange hue", + "crown: black with pale blue fringes", + "forehead: black extending to eye area", + "eyes: dark brown with white outlines", + "legs: slender, dark grey", + "wings: blue-black with white fringes", + "nape: olive-green transitioning into black", + "tail: blue-black with white tips", + "throat: black fading into yellow on breast" + ], + "black faced munia": [ + "back: black feathered with slight gleam", + "beak: short, sharp, silver-grey", + "belly: dark grey with black spots", + "breast: charcoal grey with faint markings", + "crown: black with a smooth, sleek appearance", + "forehead: sooty black merging into the crown", + "eyes: small, bright, dark-brown", + "legs: sturdy, greyish-black", + "wings: black, slightly glossy with white edges on feathers", + "nape: black with a velvety texture", + "tail: elongated, black feathers with white tips", + "throat: inky black, slightly glossy" + ], + "black faced pitta": [ + "back: vibrant green with hints of blue", + "beak: strong, dark grey", + "belly: pale yellow with olive-green sides", + "breast: striking golden-yellow", + "crown: black with a greenish sheen", + "forehead: intense black, well-defined", + "eyes: large, black with white eye-ring", + "legs: sturdy, salmon pink", + "wings: green and blue mix, short and rounded", + "nape: smooth black, connecting to crown", + "tail: long, bright blue with black tips", + "throat: yellow, slightly paler than breast" + ], + "black faced rufous warbler": [ + "back: olive-brown with rufous tones", + "beak: slender and pointed, black", + "belly: pale and buff-colored", + "breast: creamy-white with black streaks", + "crown: rufous-orange with black face mask", + "forehead: black with white eyebrow stripe", + "eyes: dark with white eye-ring accent", + "legs: pale pinkish-grey", + "wings: olive-brown, edged with rufous hue", + "nape: rufous-orange, blending with back", + "tail: rufous-brown, slightly forked", + "throat: white with a touch of pale rufous" + ], + "black faced sandgrouse": [ + "back: brownish-grey feathers with a mottled pattern", + "beak: short, stout, and pale yellow", + "belly: dull white with grey-black markings", + "breast: sandy brown with black speckled spots", + "crown: dark grey with a semi-circular black face mask", + "forehead: light grey blending into the crown", + "eyes: small, dark, and surrounded by black face mask", + "legs: short, pale, and feathered with strong toes", + "wings: elongated, brownish-grey with black and white speckled details", + "nape: sandy brown with grey and black markings", + "tail: medium-length, fan-shaped, and brown with black banding", + "throat: white with a contrasting black face mask" + ], + "black faced sheathbill": [ + "back: white with black speckles", + "beak: short and hooked, black in color", + "belly: white with black spots", + "breast: white with some black markings", + "crown: black face extending over the head", + "forehead: black along with the face and crown", + "eyes: dark and small, surrounded by black feathers", + "legs: strong and pinkish-gray", + "wings: white with black spots, rounded", + "nape: white with black speckles", + "tail: short and white with black bar", + "throat: white, connecting to the black face" + ], + "black faced solitaire": [ + "back: dark gray plumage", + "beak: slender, slightly curved", + "belly: light gray to white", + "breast: white with faint gray speckles", + "crown: black with a gray border", + "forehead: black, merging into white", + "eyes: dark, surrounded by white feathering", + "legs: sturdy, grayish-black", + "wings: dark gray, with black flight feathers", + "nape: gray, seamlessly transitioning from the crown", + "tail: dark gray, slightly fanned", + "throat: white with sparse gray markings" + ], + "black faced tanager": [ + "back: vibrant green feathers", + "beak: short and sharp, black", + "belly: lemon yellow plumage", + "breast: bright yellow feathers", + "crown: glossy black cap", + "forehead: black with slight shine", + "eyes: small, round, dark brown", + "legs: thin and grey, strong", + "wings: green with hints of blue, short", + "nape: black transitioning to green", + "tail: dark blue-green, medium length", + "throat: black with a defined border" + ], + "black faced warbler": [ + "back: sleek dark feathers", + "beak: thin sharp black", + "belly: pale gray-white", + "breast: light gray plumage", + "crown: dark black cap", + "forehead: black and narrow", + "eyes: round, black, alert", + "legs: slender grayish-blue", + "wings: dark feathered, white bars", + "nape: grayish, smooth transition", + "tail: white-edged black feathers", + "throat: white bordered by black" + ], + "black faced waxbill": [ + "back: olive-green with faint dark streaks", + "beak: sharp, black, conical-shaped", + "belly: light greyish-brown, fading to white", + "breast: pale gray with hints of brown", + "crown: rich, chestnut-brown", + "forehead: black with small white spots", + "eyes: small, dark, circular", + "legs: slim, greyish-blue, strong", + "wings: olive-green with dark streaks and hints of red", + "nape: chestnut-brown fading to olive-green", + "tail: long, black with white outer edges", + "throat: white, bordered by a black face mask" + ], + "black faced woodswallow": [ + "back: soft gray feathers", + "beak: short, sharp, black", + "belly: light gray plumage", + "breast: smooth gray feathers", + "crown: black face and head", + "forehead: black and bold", + "eyes: bright, black, alert", + "legs: dark, thin, strong", + "wings: broad, gray, agile", + "nape: black blending into gray", + "tail: long, gray, forked", + "throat: black patch connecting face" + ], + "black fronted bulbul": [ + "back: olive-green with subtle streaks", + "beak: short, slender, and pointed", + "belly: whitish with soft green flanks", + "breast: pale yellow with greenish tinges", + "crown: black or dark grey with slight crest", + "forehead: black with a smooth curve", + "eyes: dark brown, surrounded by faint eyering", + "legs: strong and slender, grey or brownish", + "wings: olive-green with darker flight feathers", + "nape: olive-green, merging with the crown", + "tail: long and dark, often with white outer feathers", + "throat: light grey, blending into breast coloration" + ], + "black fronted bushshrike": [ + "back: rich chestnut-brown with black streaks", + "beak: short, slightly hooked, black", + "belly: pale yellow with a reddish tinge", + "breast: vibrant yellow-orange with black markings", + "crown: black with white streaks", + "forehead: black with a greenish sheen", + "eyes: dark brown, surrounded by thin white eye-ring", + "legs: strong, grayish-brown", + "wings: black with white and green spots", + "nape: black with white streaks", + "tail: long, black with white edges", + "throat: marked black with grayish-white underfeathers" + ], + "black fronted dotterel": [ + "back: brownish-grey with wing covert", + "beak: short, black, and slightly curved", + "belly: white with slight pale pink hue", + "breast: thin black crescent band", + "crown: white with black edges along the crown", + "forehead: striking white patch", + "eyes: small, round, and black", + "legs: thin, long, and blue-grey", + "wings: brownish-grey with black edges", + "nape: white that extends to the sides of the neck", + "tail: black with white outer feathers", + "throat: pure white and well-defined" + ], + "black fronted flowerpecker": [ + "back: olive-brown feathers", + "beak: short and stout", + "belly: white with black streaks", + "breast: white with black streaks", + "crown: black with blue sheen", + "forehead: black with blue sheen", + "eyes: dark with white eyering", + "legs: gray and slender", + "wings: olive-brown with black tips", + "nape: black with blue sheen", + "tail: olive-brown with notched tip", + "throat: white with black streaks" + ], + "black fronted ground tyrant": [ + "back: dark grayish-black feathers", + "beak: short, sharp, black", + "belly: white-gray plumage", + "breast: white with black streaks", + "crown: black with streaks of gray", + "forehead: smooth black feathers", + "eyes: small, dark, piercing gaze", + "legs: long, slender, black", + "wings: black with white tips, medium length", + "nape: grayish-black, blending into back", + "tail: black, slender, medium length", + "throat: white-bordered black patch" + ], + "black fronted nunbird": [ + "back: deep black feathers with slight glossy sheen", + "beak: long, straight, and black with a sturdy structure", + "belly: black, fluffy feathers with subtle shimmer", + "breast: glossy black plumage, covering a muscular chest", + "crown: smooth black feathers with a hint of sheen", + "forehead: flat, covered in fine black feathers", + "eyes: dark brown, alert and focused, surrounded by black feathers", + "legs: strong and black, with sharp talons for perching", + "wings: black and elongated, built for fast flight", + "nape: black, slightly curved feathers transitioning from the crown", + "tail: long, black feathers with a slight fan-shape, for balance and maneuvering", + "throat: black, smooth feathers covering the vocal area" + ], + "black fronted piping guan": [ + "back: glossy black feathers", + "beak: short, hooked, and grayish", + "belly: black with white under feathers", + "breast: black feathers with white markings", + "crown: black with a small crest", + "forehead: striking red patch above beak", + "eyes: brown with a light eye-ring", + "legs: long, bluish-gray with strong feet", + "wings: black with white wing-bars", + "nape: black feathers merging with crown", + "tail: long, black, rounded with white tips", + "throat: black with occasional white markings" + ], + "black fronted tern": [ + "back: pale grey feathers", + "beak: slender, sharp, black", + "belly: white underparts", + "breast: white feathers", + "crown: black plumage", + "forehead: distinct black front", + "eyes: beady, black", + "legs: orange-red, slender", + "wings: pale grey with dark tips", + "nape: black-tinged plumage", + "tail: forked, white with grey edges", + "throat: white feathers" + ], + "black fronted tyrannulet": [ + "back: dark olive-green feathers", + "beak: short, sharp, black", + "belly: pale yellowish-white", + "breast: light grayish-olive", + "crown: black with white streaks", + "forehead: black with white streaks", + "eyes: large, dark brown", + "legs: slender, grayish-black", + "wings: dark olive-green with two white-wing bars", + "nape: olive-green with black streaks", + "tail: dark olive-green with white outer feathers", + "throat: grayish-white" + ], + "black fronted white eye": [ + "back: small, smooth feathered", + "beak: short, slightly curved", + "belly: white, soft feathers", + "breast: white and rounded", + "crown: black with a white ring", + "forehead: black and prominent", + "eyes: large and white-ringed", + "legs: slim, gray tones", + "wings: black and rounded", + "nape: black, connecting crown and back", + "tail: short, black feathers", + "throat: white, distinct contrast with the black head" + ], + "black fronted wood quail": [ + "back: deep olive-green plumage", + "beak: short, curved, and black", + "belly: greyish-brown feathers", + "breast: reddish-brown with black markings", + "crown: black with white streaks", + "forehead: black, slightly curved", + "eyes: dark brown with white circles", + "legs: strong, greyish-brown", + "wings: olive-green with black and white stripes", + "nape: black with white streaks", + "tail: short, black with greenish sheen", + "throat: black with white markings" + ], + "black girdled barbet": [ + "back: dark green-blue feathering", + "beak: stout, black and slightly hooked", + "belly: white with black stripes", + "breast: white with black-banded feathers", + "crown: vibrant red with a yellow band", + "forehead: bright red feathers", + "eyes: dark, with a white ring surrounding", + "legs: short, gray and strong", + "wings: dark blue-green with white spots", + "nape: red feathers transitioning to blue", + "tail: blue-green with white-tipped feathers", + "throat: white feathers with thin black bands" + ], + "black goggled tanager": [ + "back: vibrant emerald green", + "beak: short and black", + "belly: rich yellow-orange hue", + "breast: bright yellow-orange tone", + "crown: intense black hood", + "forehead: striking black feathers", + "eyes: glistening black circles", + "legs: sturdy dark grey limbs", + "wings: vivid green with black edges", + "nape: smooth black transitioning to green", + "tail: elongated vibrant green feathers", + "throat: prominent black extending to breast" + ], + "black headed antbird": [ + "back: dark gray feathers", + "beak: sharp, thin, black", + "belly: light gray plumage", + "breast: pale gray feathers", + "crown: glossy black cap", + "forehead: black feathers", + "eyes: dark, small, round", + "legs: slender, gray", + "wings: gray with black edges", + "nape: black and gray feathers", + "tail: long, gray with black tips", + "throat: black patch surrounded by gray" + ], + "black headed antthrush": [ + "back: dark brown plumage", + "beak: short and stout", + "belly: pale gray feathers", + "breast: light gray plumage", + "crown: black head feathers", + "forehead: black merging with crown", + "eyes: small and dark", + "legs: long and slender", + "wings: brown with some white spots", + "nape: dark brown connecting to back", + "tail: long, brownish-black", + "throat: pale gray coloration" + ], + "black headed apalis": [ + "back: dark olive-green feathers", + "beak: slender, black, and pointed", + "belly: light gray with yellow tint", + "breast: yellowish-white plumage", + "crown: black with crisp edges", + "forehead: black, extending to the eyes", + "eyes: dark brown, circular, and alert", + "legs: grayish-blue, sturdy, and nimble", + "wings: dark green, short, and rounded", + "nape: black, connecting to the crown", + "tail: olive-green, long, and narrow", + "throat: bright yellow, fading into the breast" + ], + "black headed bee eater": [ + "back: vibrant green feathers", + "beak: long, black, curved", + "belly: white plumage", + "breast: yellowish-orange feathers", + "crown: glossy black with a hint of blue", + "forehead: bright red patch", + "eyes: dark, rounded with white eye-ring", + "legs: slender, pale blue-gray", + "wings: green with black tipped feathers", + "nape: bright green feathers", + "tail: elongated, green with black tips", + "throat: bright yellow feathers" + ], + "black headed berryeater": [ + "back: olive-green feathers covering the dorsal side", + "beak: straight, medium-sized, and silver-gray", + "belly: pale yellow with sporadic gray markings", + "breast: vibrant yellow blending into gray", + "crown: black cap extending to the back of the head", + "forehead: smooth transition from black cap to yellow breast", + "eyes: small, round, with a reddish-brown iris", + "legs: slender, pale blue-gray, with sharp claws", + "wings: olive-green with lighter gray edgings", + "nape: continuation of black cap with olive-green transition", + "tail: long, olive-green feathers with lighter gray edges", + "throat: bright yellow meeting the chest and blending into the belly" + ], + "black headed brushfinch": [ + "back: dark olive-green feathers", + "beak: short, black cone-shaped", + "belly: creamy white feathers", + "breast: light gray plumage", + "crown: black with partially concealed tuft", + "forehead: black feathers merging with crown", + "eyes: small, dark-centered, white eye-ring", + "legs: slender, dark gray legs", + "wings: olive-green with darker flight feathers", + "nape: dark olive-green, connects crown with back", + "tail: long, olive-green with a hint of black", + "throat: light gray, blending into breast" + ], + "black headed bulbul": [ + "back: olive-green feathers with slight sheen", + "beak: short, robust, and dark-colored", + "belly: whitish-gray with faint streaks", + "breast: light olive-green and slightly paler than back", + "crown: glossy black plumage", + "forehead: black, continuing from the crown", + "eyes: dark with a thin white eye-ring", + "legs: grayish-black and slender", + "wings: olive-green with blackish flight feathers", + "nape: black, connecting the crown to the back", + "tail: long, pointed, and olive-green with black tips", + "throat: light gray, contrasting with the black head" + ], + "black headed bunting": [ + "back: olive-green with dark streaks", + "beak: conical-shaped, light-colored", + "belly: bright yellow-orange hue", + "breast: vibrant yellow-orange shade", + "crown: striking black color", + "forehead: black, like the crown", + "eyes: dark, surrounded by black crown and nape", + "legs: thin, long, and pale", + "wings: dark brown with white edges", + "nape: black, connecting the crown and back", + "tail: brown feathers with white outer edges", + "throat: bright yellow-orange, like the breast and belly" + ], + "black headed canary": [ + "back: vibrant yellow feathers", + "beak: small, pointed, dark gray", + "belly: soft, pale yellow plumage", + "breast: bright yellow feathers", + "crown: distinct black coloration", + "forehead: smooth black feathers", + "eyes: small, dark, round", + "legs: thin, gray, strong", + "wings: yellow with black markings", + "nape: yellow with slight transition to black on crown", + "tail: long, slim, black-tipped feathers", + "throat: bright yellow, unmarked" + ], + "black headed cuckooshrike": [ + "back: slate gray with subtle dark streaks", + "beak: short, sharp, grayish-black", + "belly: pale grayish-white, lightly streaked", + "breast: smooth gray blending into white", + "crown: solid black, extending down to nape", + "forehead: black, continuous with crown", + "eyes: dark brown with small, white eye ring", + "legs: slender, grayish-black", + "wings: dark gray with white patches on secondaries", + "nape: black, continuous with crown", + "tail: long, gray with white-tipped feathers", + "throat: white, contrasting with black head" + ], + "black headed duck": [ + "back: sleek dark feathers", + "beak: short and pointed", + "belly: whitish underparts", + "breast: grey feathers", + "crown: black rounded head", + "forehead: smoothly meets beak", + "eyes: bright and alert", + "legs: short and webbed", + "wings: long with visible speculum", + "nape: smoothly curved neck", + "tail: short fan of feathers", + "throat: lighter grey area" + ], + "black headed gonolek": [ + "back: vibrant red feathers", + "beak: sharp, black, and pointed", + "belly: red and white plumage", + "breast: brilliant red feathers", + "crown: glossy black with a slight crest", + "forehead: striking black coloration", + "eyes: small, dark, and alert", + "legs: sturdy and grayish-brown", + "wings: black with white wing bars", + "nape: bright red and black feathers", + "tail: black with white outer feathers", + "throat: bold black coloration" + ], + "black headed greenfinch": [ + "back: olive-green plumage", + "beak: pale, conical, and robust", + "belly: pale yellowish-green", + "breast: bright yellow-green", + "crown: glossy black", + "forehead: shiny black", + "eyes: black with white eye-ring", + "legs: pinkish-brown", + "wings: dark with yellow bars", + "nape: greenish-black", + "tail: dark with yellow markings", + "throat: vibrant yellow" + ], + "black headed gull": [ + "back: pale grey and smooth feathers", + "beak: dark orange, medium length", + "belly: white and well-groomed", + "breast: light grey, soft feathers", + "crown: velvety black cap", + "forehead: merging with black crown", + "eyes: dark, gleaming beads", + "legs: slender and orange", + "wings: light grey with black tips", + "nape: black and sleek transition", + "tail: narrow, white feathers", + "throat: white, smooth transition" + ], + "black headed hemispingus": [ + "back: olive-green feathers", + "beak: short and conical", + "belly: buff-colored", + "breast: orange-yellow plumage", + "crown: black head with a blue sheen", + "forehead: black with a tint of blue", + "eyes: small and dark", + "legs: thin and gray", + "wings: partly olive-green and dark gray", + "nape: olive-green feathers", + "tail: short and dark", + "throat: bright yellow" + ], + "black headed heron": [ + "back: sleek gray feathers", + "beak: long and sharp, yellowish", + "belly: white feathered underbelly", + "breast: grayish-white feathered chest", + "crown: black feathered top of head", + "forehead: black feathers leading to beak", + "eyes: piercing yellow and black", + "legs: long, slender and yellowish", + "wings: long, gray feathers with black tips", + "nape: black feathers transitioning to gray", + "tail: gray, fan-shaped feathers", + "throat: white feathers below beak" + ], + "black headed honeyeater": [ + "back: sleek, olive-green feathers", + "beak: long, sharp, and slender", + "belly: pale yellow, soft plumage", + "breast: yellow-orange, fluffy feathers", + "crown: black, smooth feathers", + "forehead: black plumage, near eyes", + "eyes: small, dark, and round", + "legs: slender, with short claws", + "wings: olive-green with yellow edges", + "nape: black, curved at the neck", + "tail: elongated, olive-green feathers", + "throat: light yellow, fine feathers" + ], + "black headed ibis": [ + "back: sleek, pale gray feathers", + "beak: long, slender, downward-curved", + "belly: light gray, soft plumage", + "breast: pale gray, smooth feathers", + "crown: black, smooth feathers with a hint of gloss", + "forehead: black, glossy feathers", + "eyes: small, dark, and focused", + "legs: long, thin, greenish-gray", + "wings: broad, pale gray with black tips", + "nape: pale gray, elongated feathers", + "tail: short and fan-shaped, with black and gray feathers", + "throat: white, delicate feathers" + ], + "black headed jay": [ + "back: vibrant blue feathers with dark streaks", + "beak: black, powerful, sharply pointed", + "belly: light greyish-white plumage", + "breast: pale grey with faint blue tinges", + "crown: sleek black head feathers", + "forehead: black and glossy plumage", + "eyes: sharp, intelligent gaze with dark brown irises", + "legs: sturdy black legs with sharp agile claws", + "wings: long blue feathers with black and white bands", + "nape: subtle transition from the black head to blue back feathers", + "tail: with broad blue feathers and black and white tips", + "throat: smooth greyish-white feather patch" + ], + "black headed lapwing": [ + "back: sleek, slightly rounded, grayish-brown plumage", + "beak: short, sharp, black, slightly curved", + "belly: white, lightly feathered, unmarked", + "breast: vivid white, clear demarcation from neck", + "crown: jet black, smooth feathers, encompassing eyes and ear coverts", + "forehead: black, feathers seamlessly transitioning into crown", + "eyes: round, dark, alert, rimmed with black feathers", + "legs: long and slender, yellowish-gray, unfeathered", + "wings: strong, broad, pale gray-brown with dark flight feathers", + "nape: black, smoothly connecting to the crown and back", + "tail: well-proportioned, pale gray-brown, neat feather edges", + "throat: white, sharply contrasting black crown" + ], + "black headed mountain finch": [ + "back: olive green feathered back", + "beak: short, stout black beak", + "belly: white feathered underside", + "breast: slight yellowish tint on white feathers", + "crown: black feathers covering the head", + "forehead: black feathered area above eyes", + "eyes: small black beads with white eye-ring", + "legs: sturdy dark grey legs", + "wings: olive green with black streaks", + "nape: black feathers connecting crown to back", + "tail: short black and olive feathers", + "throat: white feathered base of the head" + ], + "black headed myzomela": [ + "back: dark gray feathered", + "beak: slim and black", + "belly: pale grayish-white", + "breast: reddish-orange hue", + "crown: glossy black top", + "forehead: black and striking", + "eyes: dark, beady gaze", + "legs: long and black", + "wings: dark gray with white edges", + "nape: black blending into gray", + "tail: short and dark gray", + "throat: vibrant red contrast" + ], + "black headed nightingale thrush": [ + "back: olive brown with a subtle sheen", + "beak: thin, pointed, and black", + "belly: pale yellow, slightly darker at the sides", + "breast: vibrant yellow, fading towards the belly", + "crown: deep black, contrasting with the rest of the body", + "forehead: also deep black, part of the distinctive black-headed appearance", + "eyes: dark brown, surrounded by a thin white ring", + "legs: slender and grayish-brown", + "wings: olive brown, matching the back, with pale-edged feathers", + "nape: olive brown, transitioning from the black crown", + "tail: long and olive brown, with faint buff tips on the outer tail feathers", + "throat: brilliant yellow, blending seamlessly into the breast color" + ], + "black headed paradise flycatcher": [ + "back: sleek black feathers", + "beak: sharp, slender, black", + "belly: clean white plumage", + "breast: white and smooth feathers", + "crown: striking black crest", + "forehead: jet black with white surrounding", + "eyes: alert, deep black orbs", + "legs: long, thin, black", + "wings: black primaries, white edges", + "nape: glossy black feathers", + "tail: elongated, ribbon-like", + "throat: fluffy white plumage" + ], + "black headed parrotbill": [ + "back: greenish-yellow upper back", + "beak: short and stout, black", + "belly: off-white with yellow undertones", + "breast: pale yellow", + "crown: black, rounded", + "forehead: black, blending into crown", + "eyes: small and black, surrounded by thin white rings", + "legs: pale pinkish-gray", + "wings: greenish-yellow with black markings", + "nape: yellowish-green, meeting black crown", + "tail: long and pointed, greenish-yellow with black markings", + "throat: off-white with pale yellow shading" + ], + "black headed penduline tit": [ + "back: brownish-gray plumage", + "beak: short and conical, dark gray", + "belly: white feathers with gray flanks", + "breast: off-white to pale gray", + "crown: black with slight brownish tinge", + "forehead: black, extending to eye area", + "eyes: small, black, encircled by black feathers", + "legs: light gray to pinkish", + "wings: brownish-gray with white wing bars", + "nape: black, transitioning to brownish-gray", + "tail: brownish-gray, slightly forked", + "throat: black, sharply contrasting with breast" + ], + "black headed saltator": [ + "back: olive-green with slight shine", + "beak: sturdy, grayish cone-shaped", + "belly: dirty off-white hue", + "breast: light gray with darker streaks", + "crown: black with slight blue sheen", + "forehead: black merging with crown", + "eyes: dark with a small pale ring", + "legs: grayish, strong and agile", + "wings: olive-green with dark flight feathers", + "nape: olive-green color, continuous with the back", + "tail: olive-green, long and tapering", + "throat: light gray, blending into breast" + ], + "black headed shrike babbler": [ + "back: olive-green feathers", + "beak: short, hooked black bill", + "belly: pale yellow plumage", + "breast: yellowish-green feathers", + "crown: black head with white stripe", + "forehead: black with a white brow line", + "eyes: dark brown with pale eyering", + "legs: light pinkish-grey", + "wings: bluish-grey with black tips", + "nape: white stripe across the back of the head", + "tail: long, greyish-blue with black band and white tip", + "throat: vibrant yellow feathers" + ], + "black headed sibia": [ + "back: dark grey feathers", + "beak: pale yellow, sturdy", + "belly: light grey plumage", + "breast: slightly darker grey feathers", + "crown: deep black, rounded", + "forehead: black transition to grey", + "eyes: bright, white eye-ring", + "legs: pale pink, strong", + "wings: grey, white streak patterns", + "nape: black to grey gradient", + "tail: long, grey, white tips", + "throat: lighter grey feathers" + ], + "black headed siskin": [ + "back: greenish-yellow feathers", + "beak: sharp, pointed, dark gray", + "belly: light yellow underparts", + "breast: bright yellow plumage", + "crown: black head cover", + "forehead: black transitioning to yellow", + "eyes: small, black, alert", + "legs: strong, grayish-brown", + "wings: black with yellow edges", + "nape: black connecting to green-yellow", + "tail: black with white outer feathers", + "throat: vibrant yellow markings" + ], + "black headed tanager": [ + "back: vibrant blue plumage", + "beak: short, pointed, black", + "belly: bright yellow feathers", + "breast: rich golden-orange hue", + "crown: glossy black head", + "forehead: black forward feathering", + "eyes: small, black, keen gaze", + "legs: dark slender limbs", + "wings: deep cerulean blue with a greenish tinge", + "nape: black transitioning to blue-green plumage", + "tail: elongated, blueish-green feathers", + "throat: striking orange-yellow coloring" + ], + "black headed tody flycatcher": [ + "back: olive green with slight sheen", + "beak: short, thin, and black", + "belly: yellowish with some light streaks", + "breast: bright yellow with olive-green sides", + "crown: shiny black with tiny feathers", + "forehead: black with a few white spots", + "eyes: small, dark, and bright", + "legs: thin, gray, and sturdy", + "wings: olive-green with black edges", + "nape: black, merging into olive-green", + "tail: dark, forked, with white edges", + "throat: bright yellow contrasting with the black head" + ], + "black headed trogon": [ + "back: vibrant greenish-yellow hue", + "beak: stout, sharp, black", + "belly: bright lemon-yellow", + "breast: deep blue band separation", + "crown: glossy black gleaming", + "forehead: black, mixed green", + "eyes: dark, surrounded by black", + "legs: short, teal blue-gray", + "wings: green shimmering, rounded", + "nape: glossy black continuation", + "tail: elongated, green-blue hues", + "throat: rich, bright yellow" + ], + "black headed waxbill": [ + "back: sleek black feathers with orange-brown hints", + "beak: short, cone-shaped, and red", + "belly: pale greyish-white plumage", + "breast: orange-brown coloration", + "crown: shiny black with a rounded shape", + "forehead: black plumage meeting the beak", + "eyes: small, dark, and round with white eye-ring", + "legs: thin, pale grey, with strong feet for perching", + "wings: short and rounded with black and white bars", + "nape: continuation of the black crown, blending into orange-brown", + "tail: straight black-feathered with white outer tips", + "throat: black and narrow, meeting the breast's orange-brown plumage" + ], + "black headed weaver": [ + "back: olive-green feathers", + "beak: black and conical", + "belly: bright-yellow plumage", + "breast: golden-yellow feathers", + "crown: glossy black, rounded", + "forehead: shiny black, smooth", + "eyes: dark brown, small", + "legs: grayish, slender", + "wings: olive-green with black markings", + "nape: black, blending into green", + "tail: olive-green, slightly forked", + "throat: yellowish hues, smooth" + ], + "black headed whistler": [ + "back: olive-green with faint streaks", + "beak: short and sharp, pale gray", + "belly: creamy white to pale yellow", + "breast: buff to olive-gray, blending into belly", + "crown: glossy black with slight blue iridescence", + "forehead: glossy black, joining the crown", + "eyes: dark brown, encircled by a white eye-ring", + "legs: sturdy and grayish-brown", + "wings: olive-green with black-edged feathers", + "nape: olive-gray, transitioning to the back", + "tail: olive-brown with a slight fork", + "throat: crisp white, contrasting with the black head" + ], + "black headed white eye": [ + "back: dark gray upper body feathers", + "beak: small, pointed, black", + "belly: white underbody feathering", + "breast: white with slight gray feathering", + "crown: black patch on top of head", + "forehead: black from beak to crown", + "eyes: wide and white with an encircling black ring", + "legs: slim, dark gray", + "wings: gray with white wingbars", + "nape: gray scaling down from the crown", + "tail: gray with white outer tail feathers", + "throat: white extending from beak to breast" + ], + "black headed woodpecker": [ + "back: black and white striped pattern", + "beak: long, sturdy, and sharp for drilling wood", + "belly: white with black spots or streaks", + "breast: white with black spots or streaks", + "crown: bright red patch on top of the head", + "forehead: black feathers covering front of the head", + "eyes: dark, round, and alert", + "legs: strong and gray, with sharp claws for gripping branches", + "wings: black with white spots, strong and agile for flying", + "nape: black feathers below the red crown", + "tail: black with white spots, used for support while perching", + "throat: white with black spots or streaks" + ], + "black hooded antshrike": [ + "back: olive-green feathers", + "beak: stout, hooked, black", + "belly: pale gray plumage", + "breast: grayish-white feathers", + "crown: black hood, extending to nape", + "forehead: black hood, continuing from crown", + "eyes: pale yellow, encircled by black hood", + "legs: sturdy, gray", + "wings: olive-green, short and rounded", + "nape: black hood, merging with crown", + "tail: olive-green, long and straight", + "throat: grayish-white, contrasting with black hood" + ], + "black hooded antwren": [ + "back: dark grey feathers", + "beak: thin, pointed, black", + "belly: light grey plumage", + "breast: light grey feathers", + "crown: black hooded head", + "forehead: black hood extending", + "eyes: round, dark, alert", + "legs: slim, dark grey", + "wings: dark grey, medium size", + "nape: black hood continuation", + "tail: long, dark grey feathers", + "throat: black hood ending" + ], + "black hooded coucal": [ + "back: dark black feathers", + "beak: short, sharp, black", + "belly: white or light-gray feathers", + "breast: white or light-gray feathers", + "crown: smooth black feathers", + "forehead: black feathered front", + "eyes: round, dark eyes", + "legs: lean, grayish-black legs", + "wings: long, black, spreadable", + "nape: black feathers meeting the head", + "tail: long, black, and slightly fanned", + "throat: white or light-gray feathers" + ], + "black hooded laughingthrush": [ + "back: dull brown, densely feathered", + "beak: sharp, slender, black", + "belly: light brown, plump", + "breast: soft brown, rounded", + "crown: dark black cap", + "forehead: black, smooth arch", + "eyes: soft brown, alert gaze", + "legs: sturdy, scaly, black", + "wings: brown, rounded, feathered", + "nape: lighter brown nape patch", + "tail: long, brown with a plume", + "throat: brown, lightly-feathered" + ], + "black hooded oriole": [ + "back: bright yellow feathers with slight greenish shade", + "beak: sharp, pointed black beak", + "belly: vibrant yellow feathers", + "breast: blending of yellow and greenish feathers", + "crown: shiny, black feathered crest", + "forehead: black feathers extending down to the eyes", + "eyes: dark brown with sharp gaze", + "legs: black, slender legs with strong claws", + "wings: yellow and black, elongated feathers with hints of green", + "nape: black feathers forming a hood-like shape", + "tail: elongated, yellow and black feathers with greenish tint", + "throat: smooth, yellow feathers transitioning to the black hood" + ], + "black hooded sierra finch": [ + "back: dark gray feathers", + "beak: short and conical shape", + "belly: light grayish-white plumage", + "breast: dark gray feathers", + "crown: black hood covering the head", + "forehead: part of the black hood", + "eyes: small and black, surrounded by black hood", + "legs: thin and dark gray", + "wings: dark gray with lighter gray edges", + "nape: black hood continuation from the crown", + "tail: long and dark gray with lighter edges", + "throat: black hood extending to the throat area" + ], + "black hooded sunbeam": [ + "back: iridescent green feathers", + "beak: slender, curved, and black", + "belly: shimmering greenish-bronze", + "breast: bright golden-orange", + "crown: glossy black hood", + "forehead: black and shining", + "eyes: dark and beady", + "legs: slender and black", + "wings: sparkling green, elongated", + "nape: black, continuation of the hood", + "tail: iridescent green-blue, forked", + "throat: radiant golden-orange" + ], + "black hooded thrush": [ + "back: olive-brown feathers", + "beak: short and pointed", + "belly: creamy-white feathers", + "breast: olive-brown with dark spots", + "crown: black feathers with a crest", + "forehead: black feathers", + "eyes: small, dark with white rings", + "legs: long, yellowish-gray", + "wings: olive-brown with white streaks", + "nape: black feathers", + "tail: olive-brown with white tips", + "throat: black feathers" + ], + "black legged dacnis": [ + "back: deep blue plumage", + "beak: black, sharp, conical", + "belly: light grey or white feathers", + "breast: rich turquoise-blue coloration", + "crown: vibrant blue with a black stripe on males, duller on females", + "forehead: bright blue, transitioning to black near the beak", + "eyes: dark, small, with white eye-ring", + "legs: black and slender", + "wings: deep blue with black outer feathers", + "nape: bright blue, connecting to the back", + "tail: medium length, dark blue with black edges", + "throat: turquoise-blue on males, greyish-white on females" + ], + "black legged seriema": [ + "back: dark gray plumage", + "beak: black hooked bill", + "belly: pale gray feathers", + "breast: light gray with black speckles", + "crown: black elongated crest", + "forehead: grayish-white plumage", + "eyes: bright yellow-orange surrounding", + "legs: strong long black legs", + "wings: gray dark-colored wingtips", + "nape: black feathers connecting to gray back plumage", + "tail: long gray tail with black stripes", + "throat: white feathers blending into light gray breast" + ], + "black lored babbler": [ + "back: olive-brown feathers with slight streaks", + "beak: sturdy, dark gray, slightly curved", + "belly: light, creamy white with sparse gray markings", + "breast: muted light brown with faint streaks", + "crown: grayish-brown with a black lore (eye-stripe", + "forehead: light brown with a subtle black eye-stripe", + "eyes: small, round, black with a white eye-ring", + "legs: slim, grayish, strong for perching and hopping", + "wings: olive-brown with pale edges on coverts", + "nape: grayish-brown, slightly streaked", + "tail: olive-brown and moderately long, with a broad white tip", + "throat: whitish, blending into the brown breast feathers" + ], + "black lored cisticola": [ + "back: light brown with subtle striping", + "beak: short and sharp, pale in color", + "belly: pale, creamy-white tone", + "breast: whitish with faint streaks", + "crown: dark brown with reddish tint", + "forehead: pale brown fading to off-white", + "eyes: small and black with white eye-ring", + "legs: slender, pale pinkish-gray", + "wings: brown with faint streaks and rufous fringes", + "nape: brownish-grey with faint streaks", + "tail: rounded, brown with rufous edges", + "throat: off-white with light brown markings" + ], + "black lored parrot": [ + "back: vibrant green feathers", + "beak: sharp and curved, light gray", + "belly: yellowish-green hue", + "breast: bright green plumage", + "crown: dark green with a bluish tinge", + "forehead: deep bluish-green feathers", + "eyes: dark, surrounded by black eye patches (\"lores", + "legs: sturdy and gray", + "wings: lively green with blue edges", + "nape: deep green transitioning to lighter green near the throat", + "tail: long and green with blue wingtips", + "throat: pale green feathers" + ], + "black lored yellowthroat": [ + "back: vibrant green with faint streaks", + "beak: thin, pointed, black", + "belly: pale yellowish-white", + "breast: bright yellow with dark markings", + "crown: olive-green with a yellow tinge", + "forehead: black lore (stripe) extending above the eye", + "eyes: dark, surrounded by yellow markings", + "legs: pale pinkish-grey with sharp claws", + "wings: greenish-yellow with black or brown edges", + "nape: greenish-yellow, continuous with back", + "tail: olive-brown with black borders", + "throat: bright yellow with black border" + ], + "black mantled goshawk": [ + "back: sleek dark brown feathers", + "beak: sharp, powerful, black hooked bill", + "belly: lightly streaked white underparts", + "breast: partially barred with brown markings", + "crown: dark brown with hints of black", + "forehead: smooth brown plumage", + "eyes: piercing red or yellow orbs", + "legs: sturdy yellow legs with sharp talons", + "wings: broad, powerful, dark brown with black mantle", + "nape: brownish feathers, slightly lighter than crown", + "tail: long, banded dark brown and creamy white", + "throat: whitish with subtle barring and markings" + ], + "black masked finch": [ + "back: sleek dark feathers", + "beak: sharp, silvery-gray", + "belly: soft white plumage", + "breast: off-white with black streaks", + "crown: jet-black cap", + "forehead: black, merging with mask", + "eyes: bright, dark beady orbs", + "legs: thin, delicately gray", + "wings: dark with sleek feathers", + "nape: smooth, black-masked edge", + "tail: long, pointed, dark feathers", + "throat: clear white contrasting mask" + ], + "black naped fruit dove": [ + "back: vibrant green feather coverage", + "beak: curved, pale yellow with reddish tip", + "belly: creamy white with soft feathers", + "breast: bright orange feathers", + "crown: glossy greenish-blue sheen", + "forehead: iridescent bluish-green feathers", + "eyes: black, alert, and expressive", + "legs: short, strong; pinkish-gray in color", + "wings: deep green feathers with a purple sheen", + "nape: black stripe across rear of the neck", + "tail: long and central, green feathers with white tips", + "throat: velvety yellow feathers" + ], + "black naped monarch": [ + "back: vibrant blue feathers", + "beak: small and sharp", + "belly: pale blue or white hue", + "breast: blue or white depending on the gender", + "crown: deep blue with black nape", + "forehead: lighter blue with slight gradient", + "eyes: round and dark", + "legs: slender and grayish", + "wings: blue with black tips and white bars", + "nape: distinct black band", + "tail: long and blue with white outer feathers", + "throat: blue or white depending on the gender" + ], + "black naped oriole": [ + "back: vibrant yellow with black streaks", + "beak: sharp, pointed, black", + "belly: bright yellow", + "breast: golden-yellow", + "crown: black, smooth", + "forehead: black, sleek", + "eyes: dark, piercing gaze", + "legs: slim, grayish", + "wings: black with yellow edges", + "nape: distinct black patch", + "tail: long, black, yellow-tipped", + "throat: brilliant yellow" + ], + "black naped tern": [ + "back: sleek grey feathers", + "beak: sharp, slender yellow beak", + "belly: soft white plumage", + "breast: white and smooth-feathered", + "crown: black cap on the head", + "forehead: white with a touch of black at the crown", + "eyes: dark and piercing", + "legs: slender, yellow-orange legs", + "wings: tip-to-tip grey feathers with a black edge", + "nape: distinguished black band on the back of the head", + "tail: forked and elongated white feathers", + "throat: white, smooth feathers" + ], + "black necked aracari": [ + "back: vibrant green and yellow feathers", + "beak: large, curved, and multicolored", + "belly: bright yellow plumage", + "breast: vivid orange hue", + "crown: deep black with greenish shimmer", + "forehead: black transitioning into vibrant colors", + "eyes: large, dark, with pale eye-ring", + "legs: greyish-blue with sharp claws", + "wings: multicolored with black, green, and yellow", + "nape: black feathers extending into a collar", + "tail: long, black with white horizontal banding", + "throat: striking orange-red feathers" + ], + "black necked crane": [ + "back: sleek black feathers", + "beak: long, pointed and sharp", + "belly: white and fluffy", + "breast: white feathers with a hint of gray", + "crown: black with a red patch on top", + "forehead: smooth black and red", + "eyes: dark and round, with a focused gaze", + "legs: long, slender, and gray", + "wings: wide-spread black and white feathers", + "nape: elegant black curve", + "tail: short and fan-shaped, with black feathers", + "throat: white with black streaks" + ], + "black necked eremomela": [ + "back: olive-green upperparts", + "beak: pointed and slender", + "belly: pale yellow underparts", + "breast: light yellow feathers", + "crown: grayish-green plumage", + "forehead: greenish tint", + "eyes: small and black", + "legs: pale gray and slender", + "wings: olive-green with blackish flight feathers", + "nape: distinct black band", + "tail: dark olive-green with white tips", + "throat: light yellow hue" + ], + "black necked red cotinga": [ + "back: iridescent dark blue", + "beak: short and black", + "belly: deep red", + "breast: bright red", + "crown: shiny dark blue", + "forehead: reflective dark blue", + "eyes: small and dark", + "legs: short and gray", + "wings: deep blue with black feather tips", + "nape: black with a hint of red", + "tail: elongated dark blue feathers", + "throat: vibrant red" + ], + "black necked stork": [ + "back: dark black feathers", + "beak: long, pointy, and black with red tip", + "belly: white and fluffy feathers", + "breast: white feathers transitioning to black", + "crown: glossy black feathers on top of the head", + "forehead: smooth black feathers", + "eyes: piercing yellow with black outline", + "legs: long, slender, and dark gray", + "wings: large, with black and white feathers", + "nape: black feathers connecting to back", + "tail: black and white feathers, slightly fanned out", + "throat: white feathers transitioning into black" + ], + "black necked swan": [ + "back: sleek, black plumage", + "beak: striking reddish-orange", + "belly: smooth, white feathers", + "breast: curved, white plumage", + "crown: black, gently sloping", + "forehead: defined, black feathering", + "eyes: dark, piercing gaze", + "legs: sturdy, grey-black", + "wings: broad, black and white", + "nape: curved, elongated black neck", + "tail: short, fan-like, white feathers", + "throat: white, gracefully blending into neck" + ], + "black necked wattle eye": [ + "back: deep blue feathers", + "beak: black, straight, pointed", + "belly: white plumage", + "breast: dark blue, slightly puffed", + "crown: iridescent blue-black", + "forehead: shiny blue-black", + "eyes: large, round, dark", + "legs: long, dark grey", + "wings: blue-black feathers, white secondary wing bars", + "nape: inky black", + "tail: blue-black feathers, medium length", + "throat: black, adorned with red wattles" + ], + "black necked weaver": [ + "back: olive green feathers", + "beak: strong, conical black bill", + "belly: bright yellow feathers", + "breast: golden-yellow plumage", + "crown: black, helmet-like head", + "forehead: black feathers contrasting with yellow face", + "eyes: dark, round eyes surrounded by yellow", + "legs: dark gray, sturdy legs and feet", + "wings: olive green with black flight feathers", + "nape: black feathers transitioning to olive green", + "tail: long, dark, forked tail feathers", + "throat: vibrant yellow feathers" + ], + "black necked woodpecker": [ + "back: dark green feathers with lighter green streaks", + "beak: long, sturdy, light gray chisel-shaped beak", + "belly: dark gray with vertical light gray stripes", + "breast: dark gray with lighter gray streaks", + "crown: red or orange crest with dark green to black feathers", + "forehead: smooth, light gray transitioning to the crown", + "eyes: large, round, black eyes with thin white eye-ring", + "legs: pale gray, sturdy legs with sharp claws", + "wings: dark green feathers with black and white bars", + "nape: dark green with light green streaks, metallic sheen", + "tail: long, black feathers with white bars, square-shaped end", + "throat: dark gray feathers, slightly lighter than the belly" + ], + "black necklaced scimitar babbler": [ + "back: dark olive-brown feathers", + "beak: black, curved and pointed", + "belly: off-white with black streaks", + "breast: pale brown with black necklace", + "crown: dark brown with a rufous tinge", + "forehead: olive-brown with faint streaks", + "eyes: dark brown with pale eye-ring", + "legs: strong and greyish", + "wings: olive-brown with covert feathers", + "nape: brown with slight rufous hue", + "tail: long, broad feathers in dark brown", + "throat: white with faint black streaks" + ], + "black nest swiftlet": [ + "back: sleek, dark feathers", + "beak: small, sharp, black", + "belly: lighter grey plumage", + "breast: dark, smooth feathers", + "crown: black, glossy cap", + "forehead: slightly curved, dark", + "eyes: beady, black", + "legs: thin, black, strong", + "wings: long, curved, black", + "nape: dark, narrow transition", + "tail: forked, black, streamlined", + "throat: pale grey, delicate" + ], + "black polled yellowthroat": [ + "back: dark greenish-yellow feathers", + "beak: short, black, and conical", + "belly: bright yellow plumage", + "breast: vibrant yellow feathers", + "crown: smooth black cap", + "forehead: black band above eyes", + "eyes: small, black, and alert", + "legs: long and dark gray", + "wings: olive-green with black edges", + "nape: greenish-yellow, connecting black crown to back", + "tail: short and dark, with yellow edges", + "throat: striking yellow, contrasting black mask" + ], + "black ringed white eye": [ + "back: olive-green feathers", + "beak: small, pointed, black", + "belly: light cream hue", + "breast: white with fine black streaks", + "crown: bluish-gray with a slight crest", + "forehead: white, bordered by black", + "eyes: distinctive white ring", + "legs: slender gray-brown", + "wings: olive-green with white-edged feathers", + "nape: bluish-gray, fades into olive-green back", + "tail: broad and slightly forked, olive-green with white edges", + "throat: white and unmarked" + ], + "black rumped buttonquail": [ + "back: mottled brown with buff streaks", + "beak: short, stout, and pale", + "belly: buff-colored with black markings", + "breast: warm brown with distinct black bars", + "crown: reddish-brown, finely freckled", + "forehead: whitish, contrasting with the crown", + "eyes: dark with pale eyebrow", + "legs: long, slender, and grayish-blue", + "wings: brown with black and white markings", + "nape: reddish-brown, blending into back", + "tail: short and black with white edging", + "throat: white, bordered by black mottling" + ], + "black rumped flameback": [ + "back: golden-yellow feathers with black borders", + "beak: long, curved, and pale ivory", + "belly: pale yellow with black streaks", + "breast: golden-yellow with black streaks", + "crown: vibrant red with black borders", + "forehead: fiery red patch", + "eyes: dark brown with white eye-ring", + "legs: grayish-black with strong claws", + "wings: golden-yellow feathers with black borders and white patches", + "nape: bright red with black borders", + "tail: black with white tips and curved feathers", + "throat: pale yellow with black streaks" + ], + "black rumped magpie": [ + "back: glossy blue-black feathers", + "beak: strong, black hooked bill", + "belly: white, lightly streaked with gray", + "breast: white with smoky gray streaks", + "crown: metallic blue-green, vibrant sheen", + "forehead: smooth, blue-black plumage", + "eyes: dark, bead-like with black iris", + "legs: sturdy, black and scaly", + "wings: elongated, black-blue sheen with white patch", + "nape: shimmering green-blue hue", + "tail: long, black with sharp white v-shaped marking", + "throat: white with subtle gray streaks" + ], + "black rumped waxbill": [ + "back: light brown with subtle streaks", + "beak: sharp, greyish-black", + "belly: creamy off-white", + "breast: pale orange-brown", + "crown: warm reddish-brown", + "forehead: light grey", + "eyes: small, dark with thin white eye-ring", + "legs: slender, pale pinkish-grey", + "wings: beige with black and white markings", + "nape: reddish-brown fading to grey", + "tail: black with white outer edges", + "throat: off-white with light grey streaks" + ], + "black shouldered kite": [ + "back: light gray feathers with subtle markings", + "beak: sharp, hooked, black", + "belly: white and lightly streaked", + "breast: white and clean", + "crown: light gray with smooth feathers", + "forehead: pale gray, blending into the crown", + "eyes: large, round, bright red or black pupils", + "legs: yellow, strong, and thin", + "wings: long and pointed, black wingtips", + "nape: light gray, blending into the back", + "tail: white, forked, with black outer feathers and white tips", + "throat: white, unmarked" + ], + "black sided flowerpecker": [ + "back: deep black feather coverage", + "beak: short, thin, and pointy", + "belly: whitish-gray with black sides", + "breast: pale gray with tinges of yellow", + "crown: dark black with a slight gloss", + "forehead: smooth black transition to the crown", + "eyes: sharp and tiny with dark pupils", + "legs: slender grayish-brown", + "wings: black with white fringes and markings", + "nape: glossy black with smooth feather pattern", + "tail: short and dark with distinct white fringes", + "throat: light gray fading into the white belly" + ], + "black sided robin": [ + "back: dark green with black streaks", + "beak: sharp and pointed, black in color", + "belly: black with light grey streaks", + "breast: bright orange-red", + "crown: deep green/black with a slight shine", + "forehead: light green fading into the crown", + "eyes: small and black, surrounded by pale feathers", + "legs: slender, greyish-brown", + "wings: dark green with black edges and light green highlights", + "nape: greenish-black with subtle streaks", + "tail: long and black with green highlights", + "throat: light grey, contrasting with the bright breast" + ], + "black spectacled brushfinch": [ + "back: dark grayish-black feathers", + "beak: short, pointed, and black", + "belly: whitish-gray with black speckles", + "breast: pale gray with black-speckled sides", + "crown: black, smooth feathers", + "forehead: black feathers with white spectacle-like markings", + "eyes: dark brown with white eyering", + "legs: slim, black, and strong", + "wings: black feathers with white streaks", + "nape: black, smooth feathers", + "tail: long, black feathers with white outer edges", + "throat: pale gray with white streaks" + ], + "black spotted barbet": [ + "back: green with black spots", + "beak: short, stout, and red", + "belly: olive-green with black spots", + "breast: yellowish-green with black spots", + "crown: red with a black stripe", + "forehead: bright red", + "eyes: dark brown, surrounded by white eye-ring", + "legs: grayish-blue, sturdy", + "wings: green with black spots, rounded tips", + "nape: green with black spots", + "tail: green with black bands, short and broad", + "throat: yellowish-green with black spots" + ], + "black spotted bare eye": [ + "back: light grayish-brown with black spots", + "beak: short and curved, pale yellow", + "belly: white with black spots", + "breast: white with black spots", + "crown: black with white spots", + "forehead: white with narrow black spots", + "eyes: large white rings, black pupils", + "legs: slender, pale pinkish-brown", + "wings: grayish-brown with white and black spots", + "nape: black with white spots", + "tail: long with black and white bands", + "throat: white with small black spots" + ], + "black streaked puffbird": [ + "back: dark brown with faint black streaks", + "beak: short, sharp, and black", + "belly: white with black streaking", + "breast: white with thick black streaks", + "crown: black with scattered brown spots", + "forehead: dark brown merging into black crown", + "eyes: bright, inquisitive, and black", + "legs: short and sturdy, black", + "wings: dark brown with black streaks and white bands", + "nape: black with brown shading", + "tail: broad, dark brown with black bars", + "throat: white with thin black streaks" + ], + "black streaked scimitar babbler": [ + "back: dark olive-brown with black streaks", + "beak: long, curved, dusky-gray", + "belly: pale buff with dark streaks", + "breast: warm brown with black streaks", + "crown: rich chestnut with a dark eyebrow", + "forehead: chestnut brown", + "eyes: dark, small, and round", + "legs: pale pinkish-grey, sturdy", + "wings: olive-brown with black barring", + "nape: olive-brown with black streaks", + "tail: long, graduated, dark brown with white tips", + "throat: pale buff-white, unmarked" + ], + "black striped sparrow": [ + "back: dark grey with faint black stripes", + "beak: small, pointed, pale grey", + "belly: light grey with faint darker stripes", + "breast: pale grey with black streaks", + "crown: light brown with grey streaks", + "forehead: white with black stripes", + "eyes: dark with thin white rings", + "legs: long, slender, greyish-brown", + "wings: grey-brown with black stripes and white bars", + "nape: light grey with thin dark stripes", + "tail: long, greyish-brown with black bands", + "throat: white with faint grey stripes" + ], + "black striped woodcreeper": [ + "back: brownish-black with fine streaks", + "beak: long, slender, and slightly curved", + "belly: white with tinges of buff", + "breast: white with broad black stripes", + "crown: reddish-brown with faint streaks", + "forehead: rufous with fine black markings", + "eyes: dark brown, surrounded by a faint white ring", + "legs: strong and grayish-yellow", + "wings: brownish-black, with light buff tips on flight feathers", + "nape: reddish-brown with fine black streaks", + "tail: long and brown, with black bars and white tips", + "throat: white and unmarked" + ], + "black tailed antbird": [ + "back: dark grey feathers", + "beak: short and hooked, black", + "belly: white-greyish plumage", + "breast: greyish-white feathers", + "crown: black feathers with a slight crest", + "forehead: black, streamlined with the crown", + "eyes: small and black, bordered by white feathers", + "legs: long and slender, grey", + "wings: black with white edges", + "nape: dark grey feathers", + "tail: long, black with white tips", + "throat: white-greyish feathers" + ], + "black tailed crake": [ + "back: dark brown with rusty-orange streaks", + "beak: pointed, yellowish upper, greenish-gray lower", + "belly: creamy-white with black bars", + "breast: rust-colored with black barring", + "crown: dark brown with faint white streaks", + "forehead: light grayish-brown", + "eyes: dark brown, surrounded by white eye-ring", + "legs: greenish-gray, long, and slender", + "wings: dark brown, short, with white-tipped feathers", + "nape: grayish-brown with pale streaks", + "tail: black with white-tipped outer feathers", + "throat: pale gray with faint black streaks" + ], + "black tailed flycatcher": [ + "back: dark green feathers", + "beak: slender black beak", + "belly: pale yellow underside", + "breast: light greenish-yellow", + "crown: black crest", + "forehead: olive-green", + "eyes: dark rounded eyes", + "legs: black thin legs", + "wings: dark grey with black edges", + "nape: greenish-black", + "tail: black with white outer feathers", + "throat: pale yellowish-green" + ], + "black tailed gnatcatcher": [ + "back: gray-blue feathered surface", + "beak: small, black, and pointed", + "belly: white with pale gray sides", + "breast: light gray with subtle blue hue", + "crown: black cap extending to nape", + "forehead: gray-blue hue blending into crown", + "eyes: dark, round, and alert", + "legs: slender, black, and well-adapted for perching", + "wings: gray-blue with black accents and white edges", + "nape: continuation of black cap from crown", + "tail: long, black with white outer edges", + "throat: pale gray leading to white belly" + ], + "black tailed godwit": [ + "back: sleek, brownish-grey plumage", + "beak: long, straight, and slightly upturned", + "belly: light, buff-colored feathers", + "breast: pale, subtly barred with brown", + "crown: brownish with streaked patterns", + "forehead: smooth, light brown blending into crown", + "eyes: dark, beady, centered on the head", + "legs: long, slender, and pale grey", + "wings: elongated, pointed, adorned with white barring", + "nape: brownish-grey with streaks, transitioning to back", + "tail: black with white outer feathers and a triangular shape", + "throat: pale and unmarked, leading to the breast" + ], + "black tailed gull": [ + "back: grey-feathered with a hint of cream", + "beak: sharp, amber-colored with a red tip", + "belly: creamy-white", + "breast: soft white feathers", + "crown: smooth grey feathers", + "forehead: clear grey, slight lineament", + "eyes: quick, black with white eye-ring", + "legs: vibrant pink, webbed feet", + "wings: silver-grey with a touch of black at the tips", + "nape: smooth, light grey", + "tail: core white with outer black band", + "throat: pale white with soft feathering" + ], + "black tailed leaftosser": [ + "back: olive-green feathers", + "beak: strong, hooked, black", + "belly: pale yellow hue", + "breast: golden-yellow feathers", + "crown: dark olive-green crest", + "forehead: prominent, olive-green", + "eyes: black with noticeable ring", + "legs: strong, grayish-brown", + "wings: olive-brown with black edges", + "nape: olive-green feathers", + "tail: black, broad, slightly forked", + "throat: buff-yellow with streaks" + ], + "black tailed monarch": [ + "back: dark gray with slight green sheen", + "beak: thin and pointed, black color", + "belly: creamy white, light gray fading", + "breast: vibrant orange-yellow hue", + "crown: dark gray, slightly greenish tint", + "forehead: dark gray with a green sheen", + "eyes: small, round, black pupils, and white eyering", + "legs: slender, black, and scaled", + "wings: black with vibrant blue sheen, white patches on inner parts", + "nape: dark gray, subtle green shimmer", + "tail: long, black with white edges on outer feathers", + "throat: orange-yellow, bright and colorful" + ], + "black tailed nativehen": [ + "back: dark brown with subtle streaks", + "beak: short, stout, and pale yellow", + "belly: dark brown with faint barring", + "breast: deep chestnut with fine horizontal bars", + "crown: smooth, dark brown", + "forehead: dark brown blending into the crown", + "eyes: bright, beady, and brownish-red", + "legs: long, strong, and greenish-yellow", + "wings: dark brown with white flight feathers", + "nape: dark, glossy brown", + "tail: black with a slight upward curve", + "throat: chestnut-colored with lighter streaks" + ], + "black tailed oriole": [ + "back: vibrant bright orange-yellow", + "beak: strong, slightly curved, black", + "belly: pale yellow or white", + "breast: bright orange-yellow", + "crown: orange-yellow with black stripe", + "forehead: sleek, black feathers", + "eyes: beady, intense black", + "legs: sturdy, slender, and black", + "wings: black with yellow and white margins", + "nape: rich golden-yellow hue", + "tail: prominent, black with yellow edges", + "throat: orange-yellow, unblemished" + ], + "black tailed tityra": [ + "back: light grayish-white feathers", + "beak: large, pale yellowish hooked beak", + "belly: off-white and slightly fluffy", + "breast: whitish-gray with faint streaks", + "crown: black extending down to nape", + "forehead: black with a slight ridge", + "eyes: dark with white surrounding feathers", + "legs: long, slender, and gray", + "wings: black with white edges", + "nape: blackish, connecting to the crown", + "tail: long, black, and slightly forked", + "throat: white tinged with light gray" + ], + "black tailed trainbearer": [ + "back: vibrant green and shimmering", + "beak: long, slender, and curved", + "belly: creamy-white feathers", + "breast: iridescent green plumage", + "crown: shining green feathers", + "forehead: bright emerald-green", + "eyes: small and jet-black", + "legs: thin, dark-gray", + "wings: elongated with striking green feathers", + "nape: vibrant green, shimmering", + "tail: long, black, and scissor-like", + "throat: iridescent green plumage" + ], + "black tailed treecreeper": [ + "back: brownish-grey with fine streaks", + "beak: long, slender, and slightly curved", + "belly: white with some faint streaks", + "breast: white and buff with fine streaks", + "crown: reddish-brown with streaks", + "forehead: reddish-brown blending into the crown", + "eyes: small, dark with white eyering", + "legs: long, slender, and pale", + "wings: brownish-grey with white-tipped feathers", + "nape: reddish-brown, merging with the crown", + "tail: black with white outer feathers", + "throat: white and clean, contrasting with the breast" + ], + "black tailed trogon": [ + "back: glossy green upperparts", + "beak: sturdy, black, and slightly curved", + "belly: bright yellow in males, pale yellow in females", + "breast: blue-black band across the chest in males, dark gray in females", + "crown: deep green with a subtle metallic shimmer", + "forehead: green, with a smooth transition to the crown", + "eyes: large, dark brown with a thin black eyering", + "legs: short, powerful, and orange-red", + "wings: green with white and black bands, and black-edged feathers", + "nape: iridescent green, connecting with the crown and back", + "tail: black, with broad white-tipped feathers, and a slightly forked shape", + "throat: bright yellow in males, pale yellow in females" + ], + "black tailed waxbill": [ + "back: olive-brown with dark speckles", + "beak: short and black", + "belly: pale yellowish-white", + "breast: light chestnut-orange", + "crown: steel blue with white stripes", + "forehead: small white patch", + "eyes: dark brown encircled by a white ring", + "legs: short, dark gray", + "wings: olive-brown with dark streaks", + "nape: steel blue with white stripes", + "tail: black with white outer feathers", + "throat: light chestnut-orange" + ], + "black tailed whistler": [ + "back: olive-brown with faint black markings", + "beak: sturdy and slightly curved, pale grayish", + "belly: whitish-cream with light streaks", + "breast: off-white with dark streaks", + "crown: olive-brown with subtle black streaks", + "forehead: olive-brown, blending with the crown", + "eyes: dark, encircled by pale eye-ring", + "legs: long and grayish-pink", + "wings: blackish-brown with white wing-bars", + "nape: olive-brown, continuing from the crown", + "tail: black with characteristic white edges", + "throat: pale cream with dark streaks" + ], + "black thighed falconet": [ + "back: sleek dark plumage", + "beak: sharp, curved, and black", + "belly: white with faint streaks", + "breast: white with black spots", + "crown: black with white streaks", + "forehead: white contrast against dark crown", + "eyes: large, dark, and piercing", + "legs: strong, yellow-orange", + "wings: long, black, and pointed", + "nape: white, separating dark crown and back", + "tail: black with white banding", + "throat: clean white appearance" + ], + "black thighed grosbeak": [ + "back: deep black plumage", + "beak: thick, conical, and pinkish-gray", + "belly: bright yellow feathers", + "breast: vibrant yellow and black", + "crown: black and sleek", + "forehead: smooth black contour", + "eyes: small, dark, and attentive", + "legs: sturdy pink-gray limbs", + "wings: black with white markings", + "nape: rich black gradient", + "tail: long, black and white pattern", + "throat: intense black contrast" + ], + "black thighed puffleg": [ + "back: shiny green feathers", + "beak: long and slender, black", + "belly: green feathers with black streaks", + "breast: vibrant green plumage", + "crown: iridescent green head", + "forehead: metallic green sheen", + "eyes: small, round, black", + "legs: dark gray with black thighs", + "wings: broad, green with black edges", + "nape: green feathers, subtle shimmer", + "tail: long, forked, black feathers", + "throat: gleaming deep green feathers" + ], + "black throated accentor": [ + "back: brownish-grey with subtle streaks", + "beak: short, sharp, and black", + "belly: whitish-grey with black streaks", + "breast: greyish-brown with bold black streaks", + "crown: grey with black, streaked pattern", + "forehead: greyish-brown and slightly mottled", + "eyes: dark, small, and round", + "legs: thin, black, and sturdy", + "wings: brown with white wingbars", + "nape: greyish-brown with streaked pattern", + "tail: brown with white outer feathers", + "throat: striking black color" + ], + "black throated antbird": [ + "back: olive-brown with lighter feather edges", + "beak: thin, slightly curved, sharp", + "belly: white with black scaling", + "breast: black with white streaking", + "crown: gray-blue with fine white streaks", + "forehead: gray-blue with fine white streaks", + "eyes: dark with a pale eye-ring", + "legs: pale pink with strong feet", + "wings: olive-brown with faint wing bars", + "nape: gray-blue with fine white streaks", + "tail: olive-brown, slightly rounded", + "throat: deep black with white scaling" + ], + "black throated antshrike": [ + "back: dark gray feathering", + "beak: short, stout, and black", + "belly: creamy-white hue", + "breast: grayish-white plumage", + "crown: black with a small crest", + "forehead: black, blending into the crown", + "eyes: dark and well-defined", + "legs: strong, pale pink or gray", + "wings: blackish-gray with white spots", + "nape: dark gray, connecting to the back", + "tail: long, black with white bands", + "throat: distinct black patch" + ], + "black throated apalis": [ + "back: dark olive-green feathers", + "beak: short, thin, and black", + "belly: white with black streaks", + "breast: white with black streaks", + "crown: dark gray with a black central stripe", + "forehead: dark gray with a black central stripe", + "eyes: small, dark, with light-gray eye-ring", + "legs: long, grayish-brown", + "wings: dark olive-green with faint wingbars", + "nape: dark gray with a black central stripe", + "tail: long, dark olive-green, and slightly forked", + "throat: boldly black with sharp contrasting" + ], + "black throated babbler": [ + "back: brownish-grey, with light streaks", + "beak: short and stout, dark grey", + "belly: creamy-white with faint grey markings", + "breast: light grey, with darker streaks on sides", + "crown: slate grey, with minimal streaks", + "forehead: smooth slate grey", + "eyes: dark brown, slightly hidden by feathers", + "legs: long and slender, light grey", + "wings: brownish-grey, with faint white streaks", + "nape: slate grey, transitioning from crown", + "tail: long and narrow, brownish-grey with faint streaks", + "throat: black patch, contrasting with grey breast" + ], + "black throated barbet": [ + "back: vibrant shades of blues and greens", + "beak: sturdy and slightly curved for chiselling wood", + "belly: blend of red and yellow hues", + "breast: rich red or orange coloration", + "crown: distinctive green plumage with some blue patches", + "forehead: brilliant green, blending into the crown", + "eyes: beady black and alert", + "legs: sturdy grey with sharp-clawed feet for gripping tree trunks", + "wings: strikingly patterned with bands of blues, greens, and yellows", + "nape: greenish-blue feathers leading to the back", + "tail: greenish feathers with blue tips and yellow undersides", + "throat: deep black color, extending to the upper breast area" + ], + "black throated bobwhite": [ + "back: dark brown feathers with white speckles", + "beak: short, stout, and light grayish", + "belly: buffy tinges with dark streaks", + "breast: white with bold, dark barring", + "crown: broad rusty-brown stripe", + "forehead: white stripe above the beak", + "eyes: small, dark, surrounded by pale ring", + "legs: short, strong, and grayish-blue", + "wings: brown with fine white speckles", + "nape: rusty-brown with black markings", + "tail: short, brown with white edges", + "throat: striking black patch" + ], + "black throated brilliant": [ + "back: iridescent green feathers", + "beak: short, sharp, and black", + "belly: pale green with dark streaks", + "breast: vibrant turquoise and black", + "crown: shimmering purple-blue", + "forehead: bright green plumage", + "eyes: dark, with thin white eye-ring", + "legs: slim and black", + "wings: iridescent green and black", + "nape: striking purple-blue band", + "tail: long, forked, and black", + "throat: deep black with metallic sheen" + ], + "black throated canary": [ + "back: vibrant yellow-green feathers", + "beak: short, curved, and pointed", + "belly: soft, pale yellow plumage", + "breast: bright yellow with black streaks", + "crown: bright yellow feathers", + "forehead: prominent yellow forehead", + "eyes: small, dark, and alert", + "legs: slender with scaly skin", + "wings: yellow-green with dark edges", + "nape: yellow-green plumage blending into back", + "tail: long, forked, and black-tipped", + "throat: striking black patch" + ], + "black throated coucal": [ + "back: dark green feathers", + "beak: short and curved black beak", + "belly: deep black plumage", + "breast: black with greenish iridescence", + "crown: glossy green head feathers", + "forehead: iridescent dark green feathers", + "eyes: bright yellow-orange with black pupil", + "legs: strong, black, scaly", + "wings: dark green with black edges", + "nape: lustrous green-black plumage", + "tail: green-black with white-tipped feathers", + "throat: vibrant black coloration" + ], + "black throated finch": [ + "back: dark grey, smooth feathers", + "beak: conical-shaped, silver-grey color", + "belly: white with faint black speckles", + "breast: light grey with dark speckles", + "crown: black with a slight sheen", + "forehead: black, extending into the crown", + "eyes: round and black, surrounded by white feathers", + "legs: short and sturdy, pinkish-grey", + "wings: dark grey with lighter edges, slightly pointed", + "nape: dark grey, transitioning from the black crown", + "tail: long and dark grey, with slightly rounded tip", + "throat: black, sharply contrasting with the breast" + ], + "black throated flowerpiercer": [ + "back: dark blue-gray with hints of green", + "beak: black, hooked, and slightly upturned", + "belly: deep black, fading to gray on sides", + "breast: black, merging into grayish-blue flanks", + "crown: glossy black, bordered with blue-gray", + "forehead: shiny black, slightly raised", + "eyes: small, dark, with thin, pale eye-ring", + "legs: sturdy, dark gray, with sharp claws", + "wings: blue-gray, with black accents and covert feathers", + "nape: blue-gray, blending into the crown and back", + "tail: medium length, dark blue-gray with black central feathers", + "throat: striking black, contrasting with breast" + ], + "black throated grosbeak": [ + "back: dark-hued feathers with streaks", + "beak: thick, conical-shaped, pale-color", + "belly: bright yellow plumage", + "breast: vibrant orange-red coloration", + "crown: black stripe atop the head", + "forehead: prominent black stripe", + "eyes: tiny, round, jet-black orbs", + "legs: slender, grayish-blue limbs", + "wings: black feathers with white patches", + "nape: black plumage towards the back of the head", + "tail: elongated black feathers with white tips", + "throat: distinct black region contrasting with breast" + ], + "black throated hermit": [ + "back: olive-green with light feather edges", + "beak: long, slender, and slightly curved", + "belly: white with faint gray streaks", + "breast: grayish-white, transitioning from throat", + "crown: dark green, brighter at the front", + "forehead: bright green with iridescence", + "eyes: dark with white eyering", + "legs: pale pinkish-gray, strong and slender", + "wings: olive-green with white tips", + "nape: dark green, borders the crown", + "tail: long, graduated, dark iridescent blue-black", + "throat: velvety black with a slight sheen" + ], + "black throated honeyeater": [ + "back: olive-green feathers", + "beak: thin, curved, black", + "belly: grayish-white", + "breast: grayish-white, streaked", + "crown: olive-green, gray streaks", + "forehead: olive-green", + "eyes: dark, prominent", + "legs: slender, gray", + "wings: olive-green, black markings", + "nape: grayish streaks", + "tail: olive-green, black tips", + "throat: striking black patch" + ], + "black throated huet huet": [ + "back: dark feathered, greenish-black", + "beak: strong, slightly curved", + "belly: black, blending into greenish-black", + "breast: black, blending into greenish-black", + "crown: smooth, deep black", + "forehead: black, with dense feathers", + "eyes: bright, fiery red", + "legs: strong, dark grey", + "wings: short, rounded, greenish-black feathers", + "nape: black, with hint of greenish sheen", + "tail: long, dark, with greenish-black feathers", + "throat: black, with a distinctive metallic sheen" + ], + "black throated jay": [ + "back: dark blue feathers with subtle streaks", + "beak: sharp, black, slightly curved", + "belly: light grey-blue hue", + "breast: greyish-blue feathers with faint barring", + "crown: deep blue head crest", + "forehead: bright blue plumage", + "eyes: black with expressive white rings", + "legs: slim black with strong grip", + "wings: dark blue with white markings", + "nape: bold black and blue neck feathers", + "tail: elongated, blue-black with white tips", + "throat: striking black patch" + ], + "black throated laughingthrush": [ + "back: olive-brown with hints of green", + "beak: sturdy, blackish-gray", + "belly: white with black barring", + "breast: dark grayish-blue with black spots", + "crown: bluish-gray with streaks", + "forehead: bluish-gray with streaks", + "eyes: bright, black with white eye-ring", + "legs: strong, grayish-brown", + "wings: olive-brown with blackish edging", + "nape: bluish-gray, streaked", + "tail: olive-brown with black bands", + "throat: black with white streaks" + ], + "black throated magpie jay": [ + "back: deep blue feathers", + "beak: strong, black curved beak", + "belly: white underside", + "breast: vibrant blue chest feathers", + "crown: black crown with crest", + "forehead: black forehead feathers", + "eyes: black, expressive eyes", + "legs: long, black thin legs", + "wings: large blue wings with white-tipped feathers", + "nape: blue neck feathers", + "tail: long, streamer-like tail feathers", + "throat: distinct black patch" + ], + "black throated malimbe": [ + "back: black feathers with subtle hints of green iridescence", + "beak: short, thick and black", + "belly: black with minimal reddish streaks", + "breast: black feathers and prominent red throat patch", + "crown: smooth black feathers and slightly rounded", + "forehead: black with a slight green shine", + "eyes: small, round, and dark brown", + "legs: dark gray and strong", + "wings: black feathers with green iridescence and rounded shape", + "nape: black with a touch of iridescent green", + "tail: black, long, and slightly forked", + "throat: bright red patch contrasting with black feathers" + ], + "black throated mango": [ + "back: iridescent green or bronze upper body", + "beak: long, thin, and slightly curved", + "belly: grayish-white with black markings", + "breast: bright golden green with black vertical stripes", + "crown: iridescent green head plumage", + "forehead: bright green with metallic sheen", + "eyes: small and black, alert gaze", + "legs: short, dark, and sturdy", + "wings: dark flight feathers, bright green coverts", + "nape: vibrant green iridescence", + "tail: long, forked, dark central feathers, white outer feathers", + "throat: striking black patch, edged in blue" + ], + "black throated munia": [ + "back: dark brown with fine white streaks", + "beak: short, conical, and silver-grey", + "belly: dark grey with white scaling", + "breast: black base with white speckles", + "crown: deep black, smoothly rounded", + "forehead: glossy black, blending into crown", + "eyes: small, dark, with a subtle white eye-ring", + "legs: strong, reddish-brown, adapted for perching", + "wings: short, round, dark brown with white tips", + "nape: dark brown with fine white streaks, matching back", + "tail: medium-length, straight, dark brown with white edges", + "throat: solid black coloration, sharp contrast to breast" + ], + "black throated parrotbill": [ + "back: olive green feathers", + "beak: small, curved, black", + "belly: off-white with light barring", + "breast: greenish-yellow with dark streaks", + "crown: bright yellow crest", + "forehead: pale yellow plumage", + "eyes: dark, beady with white eyering", + "legs: short, greyish", + "wings: olive green with black edging", + "nape: yellowish-green", + "tail: long and narrow, black with white tips", + "throat: bold black patch" + ], + "black throated prinia": [ + "back: olive-brown feathers", + "beak: thin, pointed beak", + "belly: light-colored underside", + "breast: pale greyish-brown", + "crown: indistinctive pale stripe", + "forehead: greyish-brown feathers", + "eyes: small, beady black", + "legs: long, slender, flesh-colored", + "wings: olive-brown with slight barring", + "nape: grey-brown area behind head", + "tail: long, slender, and pointed", + "throat: distinct black patch" + ], + "black throated robin": [ + "back: dark gray feathers", + "beak: thin and pointed", + "belly: creamy-white with black streaks", + "breast: orange-red with bold black edges", + "crown: dark gray plumage", + "forehead: slightly paler gray feathers", + "eyes: small black and attentive", + "legs: thin and long, light gray", + "wings: dark gray with white wingbars", + "nape: dark gray plumage", + "tail: long black feathers", + "throat: distinct black patch" + ], + "black throated saltator": [ + "back: dark gray with subtle streaks", + "beak: strong, conical, and black", + "belly: pale grayish-white", + "breast: slightly darker gray than belly", + "crown: black with a blue sheen", + "forehead: blackish-blue", + "eyes: black with a thin white eye-ring", + "legs: blue-gray and slender", + "wings: dark gray with white edges on feathers", + "nape: combination of black and blue-gray", + "tail: long, dark gray with white outer feathers", + "throat: distinct black patch with white border" + ], + "black throated shrike tanager": [ + "back: vibrant green feathers", + "beak: sturdy and sharply pointed", + "belly: bright yellow plumage", + "breast: striking black throat patch", + "crown: iridescent blue-green head", + "forehead: blue-green feathers transitioning to black", + "eyes: beady black with a keen gaze", + "legs: strong, grayish-brown limbs", + "wings: green feathers with blue edge markings", + "nape: bluish-green blended with yellow", + "tail: elongated forked green feathers", + "throat: distinctive black patch contrasting yellow breast" + ], + "black throated shrikebill": [ + "back: dark metallic green, iridescent sheen", + "beak: broad and stout, curved hook, blackish", + "belly: deep rufous, fading to yellowish", + "breast: narrow black band, separates deep rufous throat", + "crown: striking metallic green", + "forehead: vibrant blue iridescence", + "eyes: dark, small, surrounded by black mask", + "legs: dark grey, medium length", + "wings: greenish-blue iridescence with black edges", + "nape: metallic green, contrasts with black band", + "tail: short, dark with iridescent greenish-blue tips", + "throat: deep rufous, black throat band" + ], + "black throated spinetail": [ + "back: olive-brown with streaks", + "beak: short and sharp, black", + "belly: pale grayish-white", + "breast: grayish-white with streaks", + "crown: dark brown with reddish-brown streaks", + "forehead: dark brown", + "eyes: small and black, surrounded by pale gray", + "legs: thin, dark brown", + "wings: olive-brown, streaked with reddish-brown", + "nape: dark brown with reddish-brown streaks", + "tail: long and brown, with a black throat band", + "throat: black, contrasting against lighter breast" + ], + "black throated sunbird": [ + "back: shiny greenish-blue feathers", + "beak: long, curved, and black", + "belly: dark yellow to olive-green", + "breast: bright red with a black patch", + "crown: iridescent greenish-blue", + "forehead: bright red strip", + "eyes: small and dark", + "legs: thin and black", + "wings: dark blue-green with yellow edges", + "nape: vibrant green-blue hue", + "tail: long, needle-like, and dark green", + "throat: striking black with red edges" + ], + "black throated thistletail": [ + "back: olive-brown with shades of gray", + "beak: short, thin, and pointed", + "belly: dull and pale gray", + "breast: light gray", + "crown: dark gray with black streaks", + "forehead: grayish-black", + "eyes: small and dark", + "legs: slender, gray and feathered", + "wings: olive-brown with subtle patterning", + "nape: gray with black streaks", + "tail: olive-brown and short", + "throat: deep black with fine scalloping" + ], + "black throated thrush": [ + "back: dark grey feathers", + "beak: strong, pointed, yellowish", + "belly: white with black speckles", + "breast: reddish-brown plumage", + "crown: greyish-brown head", + "forehead: light grey feathers", + "eyes: bright, black with white eyelids", + "legs: long and dark", + "wings: dark grey with white streaks", + "nape: grey with a black patch", + "tail: long, grey with white edges", + "throat: prominent black patch" + ], + "black throated tit": [ + "back: small, gray with streaks", + "beak: thin, pointed, black", + "belly: white with gray streaks", + "breast: white, patchy black markings", + "crown: gray, black markings", + "forehead: black, slight white stripe", + "eyes: round, dark, intense gaze", + "legs: thin, black, strong", + "wings: gray, black markings, white tips", + "nape: gray, black streaks", + "tail: long, black, white edges", + "throat: black, contrasting white chest" + ], + "black throated tody tyrant": [ + "back: vibrant green feathers", + "beak: small, sharp, and black", + "belly: pale yellow with light streaks", + "breast: bright yellow with black throat patch", + "crown: olive green with slight crest", + "forehead: greenish-yellow feathers", + "eyes: black, beady, and alert", + "legs: slender and grayish", + "wings: greenish-brown with lighter edges", + "nape: olive green fading to yellow", + "tail: short and dark brown", + "throat: bold, black contrast against yellow breast" + ], + "black throated trogon": [ + "back: deep green with a shimmer", + "beak: short, slightly curved, black", + "belly: vibrant yellow or white, depending on gender", + "breast: dark green or blue, separates throat from belly", + "crown: glossy, deep green-blue", + "forehead: deep green, blending into crown", + "eyes: dark, encircled by thin blue eyering", + "legs: short, grayish-blue", + "wings: green-blue with black flight feathers", + "nape: deep green, part of back and head", + "tail: long, black with broad white band", + "throat: striking black, main identifier of the species" + ], + "black throated wattle eye": [ + "back: dark gray feathers", + "beak: small, thin, black", + "belly: light gray underpart", + "breast: gray plumage", + "crown: black with slight shine", + "forehead: black feathers", + "eyes: dark brown, encircled by blue-black eye-ring", + "legs: slender, grayish-black", + "wings: blue-gray with black edges", + "nape: black with blue sheen", + "tail: long, dark gray", + "throat: striking black patch" + ], + "black throated wren babbler": [ + "back: dark brown with subtle patterns", + "beak: small, pointed, and black", + "belly: grayish-brown with faint streaks", + "breast: blackish-brown with fine streaks", + "crown: dark brown with lighter markings", + "forehead: black with a white stripe above the eyes", + "eyes: small, beady, and black", + "legs: thin, pale, and featherless", + "wings: dark brown with intricate markings", + "nape: black with a thin white stripe", + "tail: long, dark brown with subtle barring", + "throat: black with white speckles" + ], + "black tipped cotinga": [ + "back: dark blue with a slight sheen", + "beak: black, short, and sharp", + "belly: lighter blue fading to white", + "breast: vibrant sky blue", + "crown: deep blue-black with slight iridescence", + "forehead: dark blue with a black tip", + "eyes: beady and black", + "legs: slender and gray", + "wings: dark blue, wide and smooth-edged", + "nape: brilliant blue with subtle black markings", + "tail: elongated, with black tips on blue feathers", + "throat: bright blue fading to a lighter hue" + ], + "black tipped monarch": [ + "back: dark blue-gray feathers", + "beak: sharp, black-tipped orange", + "belly: light gray with white undertones", + "breast: bluish-gray plumage", + "crown: dark bluish-black head crest", + "forehead: blue-gray plumage merging with crown", + "eyes: small, dark, with white-ringed edges", + "legs: slim, charcoal-black", + "wings: blue-gray with striking black tips", + "nape: blue-gray feathers connecting crown to back", + "tail: lengthy, blue-gray with bold black tips", + "throat: pale gray, transition to breast plumage" + ], + "black vented oriole": [ + "back: deep black with a slight sheen", + "beak: strong, black, and slightly curved", + "belly: bright yellow-orange", + "breast: vivid yellow-orange", + "crown: smooth black with a subtle gloss", + "forehead: shiny black, continuous with the crown", + "eyes: dark brown with a pale eyering", + "legs: sturdy black, ending in sharp claws", + "wings: black with white edging on the feathers", + "nape: sleek black connecting the crown and back", + "tail: elongated black feathers with white edges", + "throat: rich yellow-orange, contrasting with the black head" + ], + "black whiskered vireo": [ + "back: rich olive-green plumage", + "beak: strong, slightly curved, dark gray", + "belly: white with pale yellow wash", + "breast: whitish with olive-green sides", + "crown: olive-green with faint gray streaks", + "forehead: olive-green blending into crown", + "eyes: dark with white eyering, prominent whisker-like black streak below", + "legs: grayish-blue, strong and slender", + "wings: olive-green, slightly darker than back, white wing bars", + "nape: olive-green, continuous with crown and back color", + "tail: olive-green, darker than back, with whitish edges on feathers", + "throat: whitish, bordered by black whisker-like streaks" + ], + "black winged bishop": [ + "back: glossy black feathers", + "beak: short and black", + "belly: black plumage with gray undertones", + "breast: dark black feathers", + "crown: black with slight crest", + "forehead: smooth, black feathers", + "eyes: dark brown, piercing gaze", + "legs: long, slender black legs", + "wings: expansive black feathers with white trim", + "nape: black feathers meeting at the neck", + "tail: long, sweeping black feathers", + "throat: black plumage with hints of gray" + ], + "black winged cuckooshrike": [ + "back: sleek, dark gray feathers", + "beak: sharp, slightly hooked, black", + "belly: lighter gray plumage", + "breast: smooth gray, well-rounded", + "crown: dark gray, streamlined", + "forehead: gray, flatter, meeting beak", + "eyes: sharp gaze, dark-centered", + "legs: slim but sturdy, black", + "wings: long, black, with white bars", + "nape: grayish, slightly ruffled feathers", + "tail: elongated, black feathers", + "throat: lighter gray, slightly paler than breast" + ], + "black winged flycatcher shrike": [ + "back: dark grey with faint stripes", + "beak: strong, stout, and black", + "belly: light grey-white", + "breast: pale grey", + "crown: dark grey with a prominent crest", + "forehead: dark grey blending into crown", + "eyes: black and beady", + "legs: slender, black", + "wings: black with white banding", + "nape: grey with faint striping", + "tail: long, black with white edges", + "throat: grey-white, separating breast from head" + ], + "black winged ground dove": [ + "back: smooth blackish feathers", + "beak: short and black", + "belly: light gray plumage", + "breast: muted gray feathers", + "crown: dark grayish-black plumage", + "forehead: black feathers with faint gray markings", + "eyes: small, dark, and round", + "legs: slender black appendages", + "wings: black with bold white stripes", + "nape: dark gray-black feathers", + "tail: long black feathers with white edges", + "throat: pale gray plumage" + ], + "black winged kite": [ + "back: light grey feathers", + "beak: short, sharp, black", + "belly: white with light grey hues", + "breast: white, fluffy plumage", + "crown: light grey with dark streaks", + "forehead: white, smooth", + "eyes: striking red, large", + "legs: long, yellowish", + "wings: primarily black with white patches", + "nape: light grey, sleek", + "tail: long, black and white feathers", + "throat: white, softly feathered" + ], + "black winged lapwing": [ + "back: sleek black feathers", + "beak: sharp, yellow-tipped", + "belly: predominantly white", + "breast: white with black markings", + "crown: glossy black, sleek feathers", + "forehead: white with black demarcation", + "eyes: piercing, dark brown", + "legs: long, slender, yellow-orange", + "wings: vibrant black with white underside", + "nape: black, smoothly flowing feathers", + "tail: contrast of black and white feathers", + "throat: white, unblemished plumage" + ], + "black winged lory": [ + "back: bright red feathers", + "beak: curved orange beak", + "belly: orange and red feathers", + "breast: mixture of red, blue, and black feathers", + "crown: red feathers with a slight crest", + "forehead: vibrant red feathers", + "eyes: dark brown surrounded by black feathers", + "legs: grayish legs with sharp talons", + "wings: black and blue feathers with unique patterns", + "nape: red and blue feathered", + "tail: long, black feathers with blue tips", + "throat: fiery red feathers" + ], + "black winged lovebird": [ + "back: vibrant green feathers covering the upper body", + "beak: strong, short, sharp, red upper, and black lower mandible", + "belly: light green feathered round lower body", + "breast: smooth green plumage on the front upper body", + "crown: emerald green head with a blue tinge", + "forehead: vivid red patch with a sharp contrast to the green head", + "eyes: round, black, with white outlined rings", + "legs: gray, strong, with curved claws for grasping", + "wings: black or navy blue flight feathers with green coverts", + "nape: soft green continuation of the head and upper neck", + "tail: long, dark blue feathers with white tips", + "throat: pale green feathered extension of the breast, leading up to the beak" + ], + "black winged monarch": [ + "back: deep black color with a slight sheen", + "beak: sharp, contrastingly yellow and strong", + "belly: vibrant white with a characteristic black stripe", + "breast: mixture of black and white feathers", + "crown: black feathers extending over the head", + "forehead: intense black, leading to the eyes", + "eyes: sharp, observing with a dark pupil", + "legs: black and slender with small talons", + "wings: stunning black with blue iridescence", + "nape: blending from the crown into the back", + "tail: fan-like black feathers, extending from the body", + "throat: contrasting white with black plumage" + ], + "black winged myna": [ + "back: shiny black feathers", + "beak: yellow and slightly hooked", + "belly: black with possible green sheen", + "breast: glossy black plumage", + "crown: black feathers with iridescence", + "forehead: black with a hint of metallic shine", + "eyes: dark surrounded by yellow eye ring", + "legs: yellow and sturdy", + "wings: black with green-blue sheen", + "nape: black with iridescent feathers", + "tail: black and elongated", + "throat: black feathers with slight metallic glint" + ], + "black winged oriole": [ + "back: vibrant golden yellow", + "beak: sharp, pointed black", + "belly: rich golden yellow", + "breast: bright golden hue", + "crown: deep black with a glossy shine", + "forehead: shining black plumage", + "eyes: dark, expressive, and round", + "legs: slender black legs with sharp claws", + "wings: striking black feathers with contrasting yellow edges", + "nape: glossy black plumage seamlessly connected to the crown", + "tail: long, black with distinct yellow tail feathers", + "throat: radiant golden yellow akin to the belly" + ], + "black winged parrot": [ + "back: vibrant green feathers", + "beak: strong, curved black beak", + "belly: lighter green hue", + "breast: bright green with subtle hints of blue", + "crown: deep blue with green accents", + "forehead: dark blue feathers", + "eyes: intelligent, dark and round", + "legs: sturdy grey with sharp claws", + "wings: striking black, green, and blue pattern", + "nape: dark blue meeting green transition", + "tail: long and broad, black edged feathers", + "throat: lighter green with blue hints" + ], + "black winged petrel": [ + "back: sleek black feathers", + "beak: sharp, curved point", + "belly: white and soft", + "breast: white with black edges", + "crown: black, smooth plumage", + "forehead: black, small feathers", + "eyes: dark, beady gaze", + "legs: slender and pinkish-gray", + "wings: long, pointed black feathers", + "nape: subtle black transition to white", + "tail: black, slender forked feathers", + "throat: white, soft plumage" + ], + "black winged pratincole": [ + "back: dark gray feathered covering", + "beak: thin, pointy, black instrument", + "belly: light gray plumage underside", + "breast: muted gray front feathers", + "crown: slightly darker gray head crest", + "forehead: smooth gray plumage transition", + "eyes: piercing, round, black orbs", + "legs: slender, black, long limbs", + "wings: expansive black-tipped flappers", + "nape: curved gray neck connection", + "tail: short, fan-shaped, gray feathers", + "throat: lighter gray feathered area" + ], + "black winged saltator": [ + "back: dark olive green feathers", + "beak: robust, silvery gray", + "belly: pale gray with black streaks", + "breast: grayish white, streaked with black", + "crown: black with a silvery border", + "forehead: blackish gray", + "eyes: alert, dark brown", + "legs: strong, grayish", + "wings: black with vibrant white markings", + "nape: black with a metallic sheen", + "tail: black, forked, with white edges", + "throat: whitish, streaked with black" + ], + "black winged snowfinch": [ + "back: dark gray feathers with white streaks", + "beak: black, short and conical", + "belly: white with gray markings", + "breast: white with gray streaks", + "crown: black and white speckles", + "forehead: white with black streaks", + "eyes: small and black, surrounded by white eye-ring", + "legs: dark gray, slender and strong", + "wings: black with white patches and bars", + "nape: gray with white streaks", + "tail: black and white, fork-shaped", + "throat: white with gray markings" + ], + "black winged stilt": [ + "back: sleek black upper layer", + "beak: long, thin, sharp, and black", + "belly: clean white underbody", + "breast: white plumage", + "crown: contrasting black pattern", + "forehead: smooth, black feathers", + "eyes: bright red with a dark pupil", + "legs: exceptionally thin, lengthy, and reddish-pink", + "wings: long, striking black feathers", + "nape: black with a slight curve", + "tail: short, black feathers", + "throat: elegant white feathers" + ], + "blackcap babbler": [ + "back: olive-brown feathers", + "beak: short, sturdy, black", + "belly: dull grayish-white", + "breast: grayish-white, blending with belly", + "crown: distinctive black cap", + "forehead: black, part of cap", + "eyes: dark brown, surrounded by grayish-white feathers", + "legs: dark gray, slender", + "wings: olive-brown with faint wing bars", + "nape: olive-brown, connecting with cap", + "tail: long, olive-brown with rounded edges", + "throat: grayish-white, distinct from black cap" + ], + "blackcap illadopsis": [ + "back: dark brown with subtle streaks", + "beak: black, strong, and slightly curved", + "belly: creamy-white with light brown streaks", + "breast: buff-colored with brown streaks", + "crown: dark brown with a distinctive black cap", + "forehead: light brown blending into the black cap", + "eyes: tiny, black, and round", + "legs: brownish-gray with strong, scaly texture", + "wings: brown with faint wing bars and rounded shape", + "nape: light brown blending into the dark crown", + "tail: brown with a slightly forked shape", + "throat: creamy-white with a soft, smooth appearance" + ], + "blackish antbird": [ + "back: dark grey with subtle feather patterns", + "beak: black, slightly curved, and sharp", + "belly: lighter grey, gradual fading from breast", + "breast: medium grey, horizontal striations", + "crown: black with a slight crest", + "forehead: smooth, dark grey, merging with crown", + "eyes: small, round, black with a white ring", + "legs: long, slender, black", + "wings: dark grey, intricate feather patterns", + "nape: grey with fine black streaks", + "tail: long, dark grey, fan-shaped feathers", + "throat: pale grey, slight contrast to breast" + ], + "blackish chat tyrant": [ + "back: dark gray upper body", + "beak: short, sharp, black", + "belly: light grayish-white underparts", + "breast: dark gray feathers", + "crown: blackish-gray head", + "forehead: slightly paler gray", + "eyes: small, round, black", + "legs: slim, black", + "wings: dark gray, rounded", + "nape: blackish-gray", + "tail: dark gray, medium length", + "throat: light grayish-white" + ], + "blackish cinclodes": [ + "back: dark brownish-black feathers", + "beak: strong, slightly curved, and black", + "belly: mottled blackish-brown and white", + "breast: dark brownish-black with white spots", + "crown: uniformly dark brownish-black", + "forehead: dark blackish-brown fading into the crown", + "eyes: small, round, with dark brown iris", + "legs: strong, dark gray and slightly feathered", + "wings: blackish-brown with slight white barring", + "nape: dark brown-black feathers, continuous with the crown", + "tail: relatively short, blackish-brown with white edges", + "throat: mottled white and dark brown-black feathers" + ], + "blackish cuckooshrike": [ + "back: dark gray with hints of green", + "beak: short and slightly curved, black", + "belly: pale gray, fading into white", + "breast: dark gray with subtle green sheen", + "crown: sleek blackish crown, slightly raised", + "forehead: smooth and dark gray", + "eyes: small, round, and black with a white eye-ring", + "legs: strong, gray, and thin", + "wings: dark gray with lighter gray edges", + "nape: matte black, connecting crown to back", + "tail: long and straight, blackish-gray with white tips", + "throat: pale gray, blending into breast" + ], + "blackish nightjar": [ + "back: dark grayish-brown with subtle black streaks", + "beak: black, short and wide", + "belly: slightly paler grayish-brown, minimal barring", + "breast: dark grayish-brown with fine black barring", + "crown: dark gray with faint black streaks", + "forehead: grayish-brown, blending with the crown", + "eyes: large, black with a white ring around them", + "legs: black, short and slender", + "wings: dark grayish-brown, long with subtle barring", + "nape: grayish-brown, blending with the crown", + "tail: dark grayish-brown, medium length with white-tipped feathers", + "throat: slightly paler grayish-brown with minimal barring" + ], + "blackish oystercatcher": [ + "back: dark, sleek feathers", + "beak: long, straight, red-orange", + "belly: blackish-gray plumage", + "breast: dark, full feathers", + "crown: black with subtle gray streaks", + "forehead: black, merging with beak", + "eyes: alert, yellow with red ring", + "legs: sturdy, pinkish-red", + "wings: broad, black with white trim", + "nape: gray-streaked black feathers", + "tail: short, black with white band", + "throat: black, blending with breast" + ], + "blackish pewee": [ + "back: dark olive-grey feathers", + "beak: slim and black, slightly curved", + "belly: lighter grey with subtle streaks", + "breast: pale grey, blending into belly", + "crown: dark olive-grey, well-defined", + "forehead: slightly lighter grey than crown", + "eyes: black with pale eye-ring", + "legs: slim and dark grey", + "wings: dark olive-grey with distinct white bars", + "nape: dark olive-grey, connecting crown to back", + "tail: long and dark grey, with white outer edges", + "throat: pale grey, blending into breast" + ], + "blackish rail": [ + "back: dark brown with lighter streaks", + "beak: slender and straight, dark grey", + "belly: dusky grey with white streaks", + "breast: dark grey with white speckles", + "crown: solid blackish-brown", + "forehead: blackish-brown, blending into crown", + "eyes: small and black", + "legs: slender with grey-green color", + "wings: short, dark brown with faint white stripes", + "nape: blackish-brown, consistent with crown", + "tail: relatively short, dark greyish-brown", + "throat: pale grey, contrasting with breast" + ], + "blackish tapaculo": [ + "back: dark gray with subtle brownish hue", + "beak: short and sturdy, black color", + "belly: slightly lighter gray than back", + "breast: dark gray with faint brownish undertones", + "crown: deep gray, almost black", + "forehead: dark gray, less intense than crown", + "eyes: black with white eyering", + "legs: long and slender, black or dark brown", + "wings: dark gray with brownish feather edges", + "nape: dark gray, consistent with back color", + "tail: long and wide, dark gray with possible brown tint", + "throat: slightly lighter gray than breast" + ], + "blackish blue seedeater": [ + "back: dark blue feathers, smooth texture", + "beak: small, pointed, black", + "belly: lighter blue hue, soft feathers", + "breast: vibrant blue plumage", + "crown: iridescent blue top feathers", + "forehead: sleek blue, hint of shimmer", + "eyes: round, black, alert gaze", + "legs: slender black limbs, strong grip", + "wings: dark gradient blue feathers, spread wide", + "nape: blue feathers blending to darker hue", + "tail: long, blue-black feathers, fan-like shape", + "throat: lighter blue feathers, distinct shape" + ], + "blackish gray antshrike": [ + "back: sleek, dark gray feathers", + "beak: sharp, blackish-gray, slightly hooked", + "belly: lighter gray with fine dark streaks", + "breast: dark gray, slightly plump", + "crown: blackish-gray, smooth feathers", + "forehead: slightly lighter gray, merging with the crown", + "eyes: dark, piercing, surrounded by a faint gray ring", + "legs: strong, blackish-gray, with sharp claws", + "wings: blackish-gray, with bold white wingbars", + "nape: dark gray, continuing from the crown", + "tail: long, blackish-gray, with distinct white tips", + "throat: lighter gray, with fine dark streaks" + ], + "blackish headed spinetail": [ + "back: dark olive-brown feathers", + "beak: blackish-grey, pointed", + "belly: creamy-white with faint streaks", + "breast: pale grey with brownish streaks", + "crown: blackish-brown with slight crest", + "forehead: blackish-grey, slightly raised", + "eyes: small, dark-brown", + "legs: greyish, slender", + "wings: blackish-brown with subtle barring", + "nape: blackish-brown with short feathers", + "tail: long, blackish-brown with thin white tips", + "throat: pale grey with subtle streaks" + ], + "blacksmith lapwing": [ + "back: black feathers with a hint of green iridescence", + "beak: short and sharp, primarily black with a yellow base", + "belly: clean white feathers", + "breast: smooth black feathers transitioning to white", + "crown: sleek black feathers with green sheen", + "forehead: distinct white patch above the beak", + "eyes: bright, alert, with red-orange rings", + "legs: long, thin, and yellow", + "wings: black feathers with green iridescence, white patches", + "nape: black feathers with a green sheen", + "tail: short with black feathers and white outer edges", + "throat: striking white feather patch" + ], + "blacksmith thrush": [ + "back: dark brown upper body", + "beak: straight, slim, and black", + "belly: pale white underpart", + "breast: white with dark brown spots", + "crown: dark brown atop the head", + "forehead: dark brown, continuous with the crown", + "eyes: black, encircled with pale skin", + "legs: strong, grayish-colored", + "wings: dark brown with faint, white wing bars", + "nape: dark brown, connects to back", + "tail: dark brown, long, and fan-shaped", + "throat: pale white with brown spots" + ], + "blackstart": [ + "back: dark gray plumage", + "beak: slim, black, and pointed", + "belly: pale grayish-white", + "breast: light gray feathers", + "crown: dark gray towards the rear", + "forehead: paler gray, close to eyes", + "eyes: round and black with a white eye-ring", + "legs: long, thin, and black", + "wings: dark gray with white patch at base", + "nape: dark gray, blending into crown", + "tail: black with reddish-orange undertail coverts", + "throat: light gray, similar to breast" + ], + "blackthroat": [ + "back: dark olive-green feathers", + "beak: sharp, straight, and black", + "belly: white with dark streaks", + "breast: black and white patterned feathers", + "crown: dark with bright white markings", + "forehead: black feathers with white outline", + "eyes: small, dark, and alert", + "legs: long, slender, and dark", + "wings: dark with noticeable white wingbars", + "nape: black with white markings", + "tail: elongated and dark with white outer feathers", + "throat: intense black or dark, prominent patch" + ], + "blakiston fish owl": [ + "back: brownish-black with white mottling", + "beak: large, deep, and pale yellow", + "belly: creamy-white with dark brown bars", + "breast: white with brown streaks and spots", + "crown: dark brown with lighter flecks", + "forehead: dark brown with pale markings", + "eyes: blackish-brown, surrounded by pale feather disk", + "legs: thick and feathered, pale grayish-white", + "wings: huge, long, with brown and white alternating patterns", + "nape: brown with white mottling and spots", + "tail: broad, brown with wavy white bands", + "throat: white, contrasting with dark upperparts" + ], + "blanford lark": [ + "back: light brown with dark streaks", + "beak: short and pale", + "belly: creamy white", + "breast: buff-colored with dark markings", + "crown: light brown with dark streaks", + "forehead: pale and streaked", + "eyes: small and dark", + "legs: thin and pale", + "wings: brown with white panels", + "nape: pale brown with streaks", + "tail: dark with white outer feathers", + "throat: creamy white with markings" + ], + "blanford rosefinch": [ + "back: light brown with slight streaking", + "beak: conical and pale pinkish-orange", + "belly: white with faint streaking", + "breast: rosy pink blending into white", + "crown: slate gray with a hint of pink", + "forehead: slate gray blending into the crown", + "eyes: black with a white eyering", + "legs: pale pinkish-orange", + "wings: brown with white wing bars", + "nape: slate gray fading into light brown", + "tail: brown with white outer tail feathers", + "throat: rosy pink" + ], + "blanford snowfinch": [ + "back: pale brown with subtle streaks", + "beak: short, conical, and dark-colored", + "belly: white with faint brown markings", + "breast: light brownish-gray with streaks", + "crown: pale sandy-brown with streaks", + "forehead: pale brown with minimal streaks", + "eyes: small, dark, and bead-like", + "legs: short, sturdy, and dark gray", + "wings: sandy-brown with darker flight feathers", + "nape: pale brown with faint streaks", + "tail: pale brown with darker bands and white edges", + "throat: white and unmarked" + ], + "blaze winged parakeet": [ + "back: vibrant green feathers", + "beak: small, hooked, orange-red", + "belly: olive green with a yellow tinge", + "breast: bright yellow-green", + "crown: deep blue with a striking pattern", + "forehead: greenish-blue feathers", + "eyes: dark brown with a thin white ring", + "legs: gray and slender", + "wings: dark blue with blazing red markings", + "nape: rich blue feathers", + "tail: dark blue with lighter blue edges", + "throat: bright yellow-green" + ], + "blond crested woodpecker": [ + "back: black and white striped pattern", + "beak: strong, chisel-like, and black", + "belly: white with yellow tint", + "breast: white with black horizontal stripes", + "crown: bright yellow crest", + "forehead: red patch between eyes", + "eyes: black with white outlining", + "legs: gray, sturdy, and short", + "wings: black with white spots and yellow tips", + "nape: black and white striped pattern", + "tail: black with white outer feathers and sharp ends", + "throat: white with black markings" + ], + "blood breasted flowerpecker": [ + "back: vibrant green feathers", + "beak: short, curved, black", + "belly: pale white feathers", + "breast: deep red hue", + "crown: green with a slight sheen", + "forehead: green feathers blending with crown", + "eyes: small, black, alert", + "legs: thin, gray, agile", + "wings: green with blue tinge, swift", + "nape: green, connecting crown and back", + "tail: short, green with blue streaks", + "throat: iridescent blue-green feathers" + ], + "blood colored woodpecker": [ + "back: crimson feathers with black speckles", + "beak: sharp, chiseled, and deep red", + "belly: rich blood-red hue with spotted texture", + "breast: vibrant red with subtle feather lines", + "crown: striking red with a slightly darker shade", + "forehead: smooth, sleek, and blood-red", + "eyes: piercing dark orbs with red accents", + "legs: strong, dark red with curved talons", + "wings: deep red with black spots and intricate patterns", + "nape: intense red with a gradient to the crown", + "tail: elongated, red feathers with black banding", + "throat: lustrous blood-red with fine feather detail" + ], + "blossom headed parakeet": [ + "back: vibrant green feathers", + "beak: small, sharp, red-orange", + "belly: light green, soft feathers", + "breast: bright green or yellowish-green", + "crown: deep purple-blue or red", + "forehead: brilliant red or purple plumage", + "eyes: dark with a white ring", + "legs: strong, grey-brown", + "wings: green with blue-tipped feathers", + "nape: rich green hue", + "tail: long, semi-fanned, green-blue feathers", + "throat: light green or yellowish-green" + ], + "blue bird of paradise": [ + "back: shimmering iridescent blue and black plumage", + "beak: black, short, and curved", + "belly: deep velvety black feathers", + "breast: rich cobalt blue with black accents", + "crown: glossy black with blue sheen", + "forehead: midnight blue with iridescence", + "eyes: dark with a bold white ring around them", + "legs: strong and slender, black in color", + "wings: black and iridescent blue, elongated with striking patterns", + "nape: black feathers blending into the blue of the crown", + "tail: long, ribbon-like, black and blue streamers", + "throat: vivid cobalt blue with a subtle iridescence" + ], + "blue bunting": [ + "back: vibrant blue feathers", + "beak: short and conical, silver-grey", + "belly: soft, creamy white", + "breast: deep, royal blue", + "crown: brilliant blue cap", + "forehead: bright blue feathers", + "eyes: small black beads, white eye-ring", + "legs: pale grey, slender", + "wings: striking blue with black bars", + "nape: blue feathers with smooth transition", + "tail: blue and black, slightly forked", + "throat: rich blue plumage" + ], + "blue bustard": [ + "back: sleek, blue-gray feathers", + "beak: long, sharp, and black", + "belly: off-white underbelly with thin, blue streaks", + "breast: vibrant blue chest with dark speckles", + "crown: smooth, round crest with iridescent blue sheen", + "forehead: sleek, glossy blue feathers", + "eyes: small, piercing black eyes", + "legs: slender, gray-blue legs and feet", + "wings: large, blue-black feathers with intricate patterns", + "nape: blue feathers transitioning to gray, shorter feathers", + "tail: horizontal, fan-like tail with varying lengths of blue and black feathers", + "throat: pale, smooth blue throat with subtle dark spots" + ], + "blue cotinga": [ + "back: iridescent blue feathers", + "beak: short, stout black bill", + "belly: light blue hue", + "breast: bright turquoise plumage", + "crown: shiny blue top", + "forehead: vibrant blue feathers", + "eyes: striking black orbs", + "legs: short, black appendages", + "wings: wide, shimmering blue", + "nape: rich blue color", + "tail: elongated blue feathers", + "throat: vivid blue plumage" + ], + "blue coua": [ + "back: vibrant blue feathers", + "beak: short and stout, grayish-black", + "belly: pale blue-gray plumage", + "breast: rich blue feathers", + "crown: deep blue with crest", + "forehead: royal blue plumage", + "eyes: bright red, surrounded by gray feathering", + "legs: strong, grayish-blue", + "wings: striking blue, edged with black", + "nape: brilliant blue feathers", + "tail: long and blue, featuring white tips", + "throat: pale blue-gray plumage" + ], + "blue crane": [ + "back: soft gray feathers with a slight sheen", + "beak: long, slender, and slightly curved", + "belly: pale gray with smooth feather coverage", + "breast: light gray with a subtle white streak", + "crown: sleek dark gray with erectable plume feathers", + "forehead: smooth and rounded with fine gray feathers", + "eyes: large, dark, and round with a gentle gaze", + "legs: elongated, thin, and pale with sharp claws", + "wings: wide, gray-blue with a dramatic wingtip sweep", + "nape: smooth gray connecting to a graceful arched neck", + "tail: elongated, wispy gray feathers with a dancing flutter", + "throat: soft and light gray with a smooth, curved contour" + ], + "blue cuckooshrike": [ + "back: sleek, bluish-gray feathers", + "beak: short, sharp, and black", + "belly: pale, bluish-gray plumage", + "breast: lightly streaked, grayish-blue feathers", + "crown: smooth, deep blue-colored feathers", + "forehead: bright blue, slightly rounded head", + "eyes: dark, attentive, and expressive", + "legs: sturdy, black, and featherless", + "wings: elongated, blue-gray with black edges", + "nape: bluish-gray, gently curved neck feathers", + "tail: slightly forked, blue-gray with black tips", + "throat: pale blue-gray, smooth-feathered" + ], + "blue duck": [ + "back: vibrant blue feathers with a smooth texture", + "beak: sturdy, greyish-blue with a slightly curved tip", + "belly: soft, lighter blue plumage for added warmth", + "breast: mix of bright and light blue feathers for optimal comfort", + "crown: sleek, dark blue feathers atop the head", + "forehead: slightly lighter blue hue connecting crown to the beak", + "eyes: round, alert eyes with a hint of ocean blue", + "legs: strong, greyish-blue matching the beak for stability", + "wings: varying shades of blue feathers for swift flight", + "nape: smooth transition from crown to back in deep blue", + "tail: elongated blue feathers providing balance and support", + "throat: delicate, lighter blue plumage for unobstructed air flow" + ], + "blue eared pheasant": [ + "back: dark blue feathers with light iridescent sheen", + "beak: short, sturdy, and slightly curved", + "belly: deep blue with slight lustrous sheen", + "breast: rich blue feathers with subtle metallic shimmer", + "crown: plush crest of velvety blue-black feathers", + "forehead: smooth deep blue feathers transitioning into the crown", + "eyes: small, dark, and piercing with a white eye-ring", + "legs: strong, grey-blue with sturdy feathered feet", + "wings: long, rounded with iridescent blue and black feathers", + "nape: thick, luxurious blue-black feathers cascading down the neck", + "tail: elongated, slightly curved with a mix of blue and black feathers", + "throat: soft, vibrant blue feathers with a hint of iridescence" + ], + "blue finch": [ + "back: blue-gray feathers with dark streaks", + "beak: short, conical, heavy-duty beak", + "belly: white with some grayish-blue streaks", + "breast: bluish-gray with dark streaks", + "crown: bright blue feathers on top of the head", + "forehead: bright blue that extends to the eye line", + "eyes: black, small, and alert", + "legs: pale pinkish-gray, thin, with sharp claws", + "wings: blue-gray with darker edges, outlined with white trim", + "nape: bluish-gray transitioning to bright blue at the crown", + "tail: long, blue-gray, with white outer feathers", + "throat: white, bordered by blue-gray and streaked with black" + ], + "blue ground dove": [ + "back: blueish-gray feathers", + "beak: short and black", + "belly: delicate pale blue-gray", + "breast: muted blue-gray plumage", + "crown: blue-gray feathers", + "forehead: smooth blue-gray", + "eyes: dark with thin eye-ring", + "legs: dark, slender limbs", + "wings: blue-gray with black spots", + "nape: subtle blue-gray shading", + "tail: blue-gray with white tips", + "throat: lighter blue-gray color" + ], + "blue jewel babbler": [ + "back: vibrant blue feathers with metallic sheen", + "beak: short but sturdy black beak", + "belly: deep sapphire color fading to lighter blue", + "breast: shimmering royal blue feathers", + "crown: a sleek blue crest adorning its head", + "forehead: a slight iridescence at the front of the crown", + "eyes: sharp, inquisitive black eyes", + "legs: slender but strong, with black claws", + "wings: a stunning mix of various blue shades in a delicate pattern", + "nape: the area where neck and head join with darker blue feathers", + "tail: long, cascading blue feathers with striping for impressive flights", + "throat: contrasting lighter blue from breast, hinting at opalescence" + ], + "blue lorikeet": [ + "back: vibrant blue feathers", + "beak: short, curved orange-yellow beak", + "belly: light blue feathers with white accents", + "breast: striking turquoise plumage", + "crown: bright blue crest on top of the head", + "forehead: brilliant blue hue", + "eyes: small, black, and expressive", + "legs: slender gray-blue legs with sharp claws", + "wings: brilliant blue feathers with black flight feathers", + "nape: transition from bright blue on the head to turquoise on shoulders", + "tail: long, blue tail feathers with black barring", + "throat: light blue with a white patch" + ], + "blue mockingbird": [ + "back: vibrant blue feathers covering the upper body", + "beak: slender, curved black beak for catching insects and fruits", + "belly: soft white or pale gray feathers on the lower body", + "breast: blue or light gray feathers across the chest", + "crown: striking blue or gray feathers on top of the head", + "forehead: smooth blue or gray feathers above the eyes", + "eyes: round, black eyes with a sharp gaze", + "legs: long, sleek gray-black legs with three toes facing forward and one backward", + "wings: iridescent blue or gray feathers extending from the shoulders", + "nape: transition from the blue or gray head to the back feathers", + "tail: long, blue-gray tail feathers with white tips that fan out during flight", + "throat: lighter blue or gray feathers below the beak and chin, leading to the breast" + ], + "blue mountain vireo": [ + "back: vibrant green with bluish hue", + "beak: short, sharp, and black", + "belly: pale grey with greenish tinge", + "breast: light grey, merging with green", + "crown: rich blue with green shades", + "forehead: bluish-green, transitioning to crown", + "eyes: dark, small, and beady", + "legs: strong, grey-blue, and scaly", + "wings: blue-green with black feather tips", + "nape: bright green-blue, connecting to crown", + "tail: long and tapered, with blue-green feathers", + "throat: light grey, bordered by green" + ], + "blue nuthatch": [ + "back: sleek blue-gray feathers", + "beak: petite, sharp, and black", + "belly: light gray with subtle blue shades", + "breast: soft blue-gray plumage", + "crown: vibrant blue with black streaks", + "forehead: striking blue with black border", + "eyes: small and beady, surrounded by black markings", + "legs: thin, agile, grayish-blue", + "wings: layered blue-gray feathers with elegant curve", + "nape: smooth transition from blue crown to gray back", + "tail: elongated blue-gray feathers with a slight upward curve", + "throat: pale gray with a hint of blue" + ], + "blue paradise flycatcher": [ + "back: vibrant cobalt blue feathers", + "beak: small, sharp black beak", + "belly: azure blue with subtle white highlights", + "breast: deep sky blue plumage", + "crown: gleaming sapphire crest", + "forehead: bright blue extending above beak", + "eyes: piercing black orbs", + "legs: slender, long, dark gray", + "wings: gradient of blue hues, wide feathers", + "nape: brilliant blue connecting head and back", + "tail: two long, ribbon-like feathers, blue and white", + "throat: light cerulean, contrasts with breast" + ], + "blue petrel": [ + "back: pale blue-grey upper side", + "beak: short, dark, hooked tip", + "belly: white underside", + "breast: white plumage", + "crown: blue-grey head", + "forehead: slightly paler blue-grey", + "eyes: small, dark, circled in white", + "legs: short, dark", + "wings: long, pointed, blue-grey", + "nape: blue-grey neck", + "tail: short, forked, blue-grey", + "throat: white contrasting with head" + ], + "blue pitta": [ + "back: vibrant blue feathers", + "beak: short, stout, and black", + "belly: pale blue plumage", + "breast: bright orange-red feathers", + "crown: deep blue with black stripe", + "forehead: steel blue feathers", + "eyes: black, round, and watchful", + "legs: long, slender, and gray", + "wings: striking blue feathers with spots", + "nape: navy blue with a hint of green", + "tail: elongated blue feathers, slightly fanned", + "throat: orange red plumage" + ], + "blue quail": [ + "back: blue and brown feathered patterns", + "beak: short, grey curved beak", + "belly: soft white feathers with brown spots", + "breast: pale bluish-grey feathers", + "crown: greyish-blue plumage at the top of the head", + "forehead: grey-blue feathers with a few black markings", + "eyes: round, dark eyes with thin white eye rings", + "legs: sturdy grey-blue legs with three toes", + "wings: blue and brown feathers with white streaks", + "nape: grey-blue feathers with faint brown markings", + "tail: square-shaped, grey-blue feathers with black and white tips", + "throat: white feathers bordered by black crescent lines" + ], + "blue rock thrush": [ + "back: deep blue feathered body", + "beak: slim, black, and pointed", + "belly: light blue-grey plumage", + "breast: vibrant blue feathers", + "crown: glossy blue covering head", + "forehead: intense blue hue", + "eyes: black, bright, and alert", + "legs: strong, black, and thin", + "wings: striking blue with black flight feathers", + "nape: gleaming blue on the back of the neck", + "tail: elongated, blue feathers with a black band", + "throat: brilliant blue feathers" + ], + "blue whistling thrush": [ + "back: dark blue iridescent feathers", + "beak: sturdy black curved beak", + "belly: deep blue with a slight sheen", + "breast: shimmering cobalt blue plumage", + "crown: glossy sapphire blue atop the head", + "forehead: vibrant blue with a smooth gradient", + "eyes: small, black, and beady", + "legs: slender black legs with sharp claws", + "wings: elongated dark blue feathers with tinges of turquoise", + "nape: glistening azure blue from neck to shoulders", + "tail: lengthy flowing feathers with a gradient of navy and royal blue", + "throat: bright blue with contrasting dark feather edges" + ], + "blue and black tanager": [ + "back: vibrant shades of blue", + "beak: black and pointed", + "belly: deep black feathers", + "breast: rich blue plumage", + "crown: brilliant blue top", + "forehead: intense blue shade", + "eyes: dark with a subtle ring", + "legs: black and slender", + "wings: mix of blue and black feathers", + "nape: bright blue continuation", + "tail: elongated with black and blue feathers", + "throat: dark black contrasting with blue" + ], + "blue and gold tanager": [ + "back: vibrant blue plumage", + "beak: black, short and stout", + "belly: brilliant gold feathers", + "breast: bright gold plumes merge with blue", + "crown: deep blue colors", + "forehead: vivid azure hue", + "eyes: black tiny beads surrounded by blue", + "legs: dark gray, thin and sturdy", + "wings: striking blue with gold accents", + "nape: radiant blue continues down the neck", + "tail: rich blue feathers with gold outlines", + "throat: shimmering golden hue" + ], + "blue and white flycatcher": [ + "back: vibrant blue feathers", + "beak: sharp black, slightly hooked", + "belly: white, soft feathers", + "breast: white, gently plumed", + "crown: bright blue with small crest", + "forehead: intense blue plumage", + "eyes: dark, alert beads", + "legs: thin, dark, sturdy", + "wings: striking blue, elongated feathers", + "nape: transitional gradient from blue to white", + "tail: elongated blue feathers with white tips", + "throat: white, plumed feathers" + ], + "blue and white kingfisher": [ + "back: vibrant blue feathers", + "beak: strong, elongated black", + "belly: predominantly white plumage", + "breast: white with blue streaks", + "crown: striking blue crest", + "forehead: brilliant blue coloring", + "eyes: sharp, dark gaze", + "legs: short, sturdy, and gray", + "wings: broad, blue with white highlights", + "nape: blue plumage, blending with crown", + "tail: long and blue, banded with white", + "throat: clean, unblemished white" + ], + "blue and white mockingbird": [ + "back: vibrant blue feathers", + "beak: sharp white beak", + "belly: soft white feathers", + "breast: bright white plumage", + "crown: striking blue crest", + "forehead: sleek blue feathers", + "eyes: piercing black eyes", + "legs: slender white legs", + "wings: expansive blue wings", + "nape: deep blue feathered nape", + "tail: long, flowing blue tail", + "throat: white curved throat" + ], + "blue and white swallow": [ + "back: vibrant blue feathers", + "beak: small and pointed", + "belly: soft white plumage", + "breast: white feathered chest", + "crown: blue-feathered head", + "forehead: light blue feathers", + "eyes: small, dark, and alert", + "legs: slender and delicate", + "wings: long and blue-tinted", + "nape: blue feathers at the base of the neck", + "tail: forked and blue with white accents", + "throat: white-feathered front of the neck" + ], + "blue and yellow macaw": [ + "back: vibrant blue feathers covering the upper body", + "beak: strong black curved beak for breaking nuts", + "belly: bright yellow feathers on the lower body", + "breast: vivid yellow plumage extending up from the belly", + "crown: blue feathered crest on the top of the head", + "forehead: bright blue feathers transitioning to yellow near beak", + "eyes: smart, expressive gaze surrounded by white skin", + "legs: strong grey legs with sharp claws for perching", + "wings: large wings with blue, green, and yellow feathers", + "nape: blue feathers extending down from the head to the back", + "tail: long, narrow tail feathers with blue and yellow bands", + "throat: brilliant yellow feathers connecting to the breast" + ], + "blue and yellow tanager": [ + "back: vibrant blue plumage", + "beak: short and pointed, blackish-grey", + "belly: bright yellow feathers", + "breast: rich yellow plumage", + "crown: deep blue, slightly crested", + "forehead: brilliant blue feathers", + "eyes: small, dark, and circular", + "legs: slender and greyish-black", + "wings: striking blue with black edges", + "nape: vivid blue coloration", + "tail: elongated, blue with black tips", + "throat: bright yellow hue" + ], + "blue backed conebill": [ + "back: vibrant blue feathers", + "beak: short and sharply pointed", + "belly: light grayish-blue hue", + "breast: bright blue plumage", + "crown: deep blue feathers", + "forehead: sky blue coloration", + "eyes: small and dark", + "legs: slender and grayish-blue", + "wings: blue with dark flight feathers", + "nape: brilliant blue", + "tail: long, blue, and slightly forked", + "throat: lighter blue plumage" + ], + "blue backed manakin": [ + "back: vibrant blue feathers", + "beak: small, black, and sharp", + "belly: white or pale gray hue", + "breast: intense blue plume", + "crown: glossy black head cap", + "forehead: dark, continuous with the crown", + "eyes: small and black, well-defined", + "legs: thin and grayish-black", + "wings: shorter, rounded, with black and blue feathers", + "nape: dark, blending with the crown", + "tail: elongated square-tipped, black feathers", + "throat: bright white contrast to the head" + ], + "blue backed tanager": [ + "back: vibrant blue feathers", + "beak: small, sharp, black", + "belly: rich golden yellow", + "breast: bright orange-yellow", + "crown: deep blue", + "forehead: shimmering blue", + "eyes: small, round, black", + "legs: dark gray, thin", + "wings: radiant blue with black accents", + "nape: brilliant blue", + "tail: elongated, blue feathers", + "throat: fiery yellow" + ], + "blue banded pitta": [ + "back: vibrant blue feathers with emerald green streaks", + "beak: strong, slightly curved, and black", + "belly: turquoise blue with black bands", + "breast: vivid blue with thin black barring", + "crown: deep blue with a slight sheen", + "forehead: mix of rich blue and emerald green", + "eyes: dark brown with a white eye-ring", + "legs: sturdy, pale pink with sharp claws", + "wings: short, rounded, with blue and green feathers", + "nape: bright blue blending into the crown", + "tail: moderately long and blue with black bands", + "throat: bright blue with thin black lines" + ], + "blue banded toucanet": [ + "back: vibrant green feathers", + "beak: striking blue and black banding", + "belly: lighter green feathers", + "breast: soft blue-green plumes", + "crown: deep emerald feathers", + "forehead: intense blue patch", + "eyes: piercing dark orbs", + "legs: sturdy and gray", + "wings: lush green with hints of blue", + "nape: rich green plumage", + "tail: elongated, green-blue feathers with bold black tips", + "throat: delicate bluish-white feathers" + ], + "blue bearded bee eater": [ + "back: vibrant green feathers", + "beak: long, black curved beak", + "belly: light blue and pale yellow plumage", + "breast: bright blue feathers", + "crown: greenish-blue and slightly elongated", + "forehead: greenish-blue plumage", + "eyes: dark, with thin white eyestripe", + "legs: short, dark grey legs", + "wings: green with blue-black flight feathers", + "nape: greenish-blue with a thin yellow collar", + "tail: long, blackish-blue, and forked", + "throat: blue beard-like feathers" + ], + "blue bearded helmetcrest": [ + "back: iridescent green feathers", + "beak: black, long, and curved", + "belly: grayish-white and fluffy", + "breast: light blue plumage", + "crown: shimmering green crest", + "forehead: radiant blue feathers", + "eyes: dark and beady", + "legs: black and slender", + "wings: green and blue, rounded feathers", + "nape: continuation of green crest", + "tail: long, green, and fan-like", + "throat: vibrant blue beard-like feathers" + ], + "blue bellied parrot": [ + "back: vibrant green feathers", + "beak: strong, curved, greyish", + "belly: striking blue hue", + "breast: vivid green plumage", + "crown: green feathers, slight crest", + "forehead: bright green with faint markings", + "eyes: black, intelligent gaze", + "legs: grey, scaly skin, strong", + "wings: greenish-blue, long feathers", + "nape: green, transition to blue", + "tail: elongated, blue and green feathers", + "throat: bright green, smooth contour" + ], + "blue bellied roller": [ + "back: vibrant turquoise feathers", + "beak: strong, black, and slightly curved", + "belly: striking blue plumage", + "breast: beautiful blue and turquoise mix", + "crown: sleek, turquoise with a hint of purple", + "forehead: glistening purple-blue gradient", + "eyes: small, black, and piercing", + "legs: slender, black, and agile", + "wings: broad, violet-blue with a touch of teal", + "nape: deep blue transitioning to a lighter shade", + "tail: long, streamlined, and vibrant blue-green", + "throat: rich blue with a smooth texture" + ], + "blue billed black tyrant": [ + "back: sleek black feathers", + "beak: striking blue color", + "belly: dark feathers, slim profile", + "breast: black plumage, slightly puffed", + "crown: black feathers, slightly raised", + "forehead: deep black, blending into crown", + "eyes: sharp, intelligent gaze", + "legs: thin and sturdy, dark gray", + "wings: elongated black feathers, streamlined", + "nape: smooth black transition to wings", + "tail: long black feathers, fanned appearance", + "throat: black plumage, slight downward curve" + ], + "blue billed curassow": [ + "back: sleek black feathers", + "beak: robust, blue-tinted", + "belly: glossy black plumage", + "breast: smooth black feathers", + "crown: curly black crest", + "forehead: blue facial skin", + "eyes: small, sharply focused", + "legs: sturdy, feathered", + "wings: long black feathers", + "nape: graceful curving neck", + "tail: elongated black feathers", + "throat: distinct blue wattles" + ], + "blue billed duck": [ + "back: sleek blue-black feathers", + "beak: vibrant blue color, strong structure", + "belly: white/grey plumage area", + "breast: mixing of black and white feathers", + "crown: smooth blue-black feathered head", + "forehead: blue-black, smooth transition into beak", + "eyes: alert, with dark brown/black tint", + "legs: sturdy, yellow-orange color, webbed feet", + "wings: blue-black feathers, useful for swift movement", + "nape: curved neck, blue-black feathers", + "tail: short, blue-black feathers", + "throat: white plumage, contrast to blue-black head" + ], + "blue billed malimbe": [ + "back: vibrant black feathers", + "beak: striking blue color", + "belly: deep black plumage", + "breast: glossy black feathers", + "crown: jet black crest", + "forehead: sleek black with blue hues", + "eyes: black with a hint of blue", + "legs: dark grayish-blue", + "wings: black feathers with hues of blue", + "nape: shiny black feathers", + "tail: long black tail feathers", + "throat: dark black with subtle blue sheen" + ], + "blue billed teal": [ + "back: dark brown with bluish-green iridescence", + "beak: vibrant blue-grey with dark edges", + "belly: pale grey with feathered texture", + "breast: greyish-brown with white speckles", + "crown: chestnut-colored with dark streaks", + "forehead: pale grey blending into the crown", + "eyes: dark brown with white eye ring", + "legs: yellowish-orange with dark webbing", + "wings: greenish-blue speculum with black and white borders", + "nape: chestnut-colored with dark streaks", + "tail: dark brown with white outer feathers", + "throat: soft grayish-white with fine markings" + ], + "blue black grassquit": [ + "back: deep blue feathered covering", + "beak: small, pointed black beak", + "belly: rich dark blue underside", + "breast: vibrant blue-black feathers", + "crown: bluish-black coloration atop head", + "forehead: striking blue-black plumage", + "eyes: small, dark, and round", + "legs: slender and grayish-black", + "wings: blue-black feathers for short flights", + "nape: bluish tint connecting head to back", + "tail: short, black-blue, fan-shaped feathers", + "throat: intense dark blue hue" + ], + "blue black grosbeak": [ + "back: deep blue-black feathers", + "beak: strong, conical shape", + "belly: lighter blackish-blue hue", + "breast: intense blue-black coloring", + "crown: sleek, blue-black sheen", + "forehead: smooth, blackish-blue curve", + "eyes: piercing and black", + "legs: sturdy, dark gray", + "wings: long blue-black feathers with white markings", + "nape: vibrant blue-black plumage", + "tail: broad, blue-black feathers with white tips", + "throat: rich, blue-black hue" + ], + "blue black kingfisher": [ + "back: vibrant blue feathers", + "beak: long, black, and curved", + "belly: soft white plumage", + "breast: rich blue feathers", + "crown: brilliant blue and black", + "forehead: striking black markings", + "eyes: bright, dark, and alert", + "legs: short and robust", + "wings: deep blue and broad", + "nape: blue and black transition", + "tail: long, blue-black feathers", + "throat: white and contrasting" + ], + "blue breasted bee eater": [ + "back: vibrant green feathers", + "beak: long, black, and pointed", + "belly: bright, turquoise blue", + "breast: stunning blue with green hues", + "crown: green with a hint of gold", + "forehead: emerald green", + "eyes: dark with a white eyering", + "legs: thin, slate gray", + "wings: elongated, green with black tips", + "nape: golden green", + "tail: long, slender, black streamers", + "throat: vibrant blue with black stripe" + ], + "blue breasted blue flycatcher": [ + "back: vibrant blue feathers", + "beak: small, sharp, black", + "belly: light blue plumage", + "breast: bright blue chest", + "crown: deep blue crest", + "forehead: blue feathers fade into white", + "eyes: round, black, alert", + "legs: thin, grey, delicate", + "wings: striking blue with dark tips", + "nape: blue neck feathers", + "tail: long, tapered, blue feathers", + "throat: white-blue transition area" + ], + "blue breasted fairywren": [ + "back: vibrant sky-blue plumage", + "beak: petite, sleek black beak", + "belly: soft, chalky white underside", + "breast: rich, vivid blue feathers", + "crown: bright blue cap on head", + "forehead: striking blue, blending into the crown", + "eyes: inquisitive, dark bead-like eyes", + "legs: slender, charcoal gray legs", + "wings: elegant, royal blue feathers", + "nape: subtle transition from blue crown to white belly", + "tail: elongated, iridescent azure feathers", + "throat: blue-feathered, flowing into breast" + ], + "blue breasted kingfisher": [ + "back: vibrant blue feathers", + "beak: long, black dagger-like", + "belly: white underside", + "breast: deep blue plumage", + "crown: electric blue crest", + "forehead: bright blue patch", + "eyes: dark, round orbs", + "legs: sturdy, bright orange", + "wings: vivid blue with black tips", + "nape: royal blue neck feathers", + "tail: blue, slightly forked", + "throat: white, contrasting front" + ], + "blue breasted pitta": [ + "back: vibrant turquoise feathers", + "beak: short, strong, and black", + "belly: deep blue feathers with a purple sheen", + "breast: bright blue with a black center line", + "crown: deep greenish-blue feathers", + "forehead: emerald green feathers", + "eyes: black with thin dark-green eye-ring", + "legs: pale pink with curved talons", + "wings: mix of turquoise, blue, and green feathers", + "nape: emerald green feathers", + "tail: long, blue and black feathers with white tips", + "throat: bright yellow feathers" + ], + "blue breasted quail": [ + "back: blue-tinted, sleek feathers", + "beak: petite, light grey", + "belly: soft, creamy white", + "breast: bright, sky blue feathers", + "crown: deep, indigo-colored crest", + "forehead: vivid, blue feathered", + "eyes: beady, small yet lively", + "legs: slender, light grey", + "wings: vibrant blue hue with intricate patterns", + "nape: elegant, blue-feathered transition", + "tail: short, fan-shaped with varying shades of blue", + "throat: light blue, delicate plumage" + ], + "blue browed tanager": [ + "back: vibrant turquoise-blue feathers", + "beak: black, pointed, moderately-sized", + "belly: bright yellow plumage", + "breast: rich yellow with slight orange hue", + "crown: vivid blue head feathers", + "forehead: defined deep blue contours", + "eyes: black, surrounded by faint blue circles", + "legs: dark gray, with sturdy toes", + "wings: mix of electric blue and teal feathers", + "nape: bright blue transitioning into yellow", + "tail: elongated blue-green feathers", + "throat: vivid yellow with slight blue accent" + ], + "blue capped cordonbleu": [ + "back: vibrant blue feathers", + "beak: short, curved, silver-gray", + "belly: soft, pale blue plumage", + "breast: bright blue, slightly puffed", + "crown: brilliant blue cap", + "forehead: blue with fine feather detail", + "eyes: round, black, alert", + "legs: slender, grayish-pink", + "wings: mix of blue and brown feathers", + "nape: transition from blue cap to brown back", + "tail: long, brownish-blue feathers", + "throat: pale blue, delicate contour" + ], + "blue capped fruit dove": [ + "back: vibrant green plumage", + "beak: short, hooked, cream-colored", + "belly: soft, pale gray feathers", + "breast: beautiful light blue feathers", + "crown: deep blue cap-like feathers", + "forehead: iridescent blue feathers", + "eyes: small, round, dark brown", + "legs: short, pale pink, scaly", + "wings: green and blue feathered, streamlined", + "nape: lovely teal plumage", + "tail: elongated, green and blue feathers", + "throat: gray and iridescent blue feathers" + ], + "blue capped hummingbird": [ + "back: iridescent green shimmer", + "beak: long, thin, and slightly curved", + "belly: pale grayish-white", + "breast: vibrant turquoise-blue", + "crown: bright reflective blue", + "forehead: shining blue cap", + "eyes: dark, small, and alert", + "legs: short and delicate", + "wings: rapidly flapping, translucent", + "nape: metallic green transition", + "tail: forked, green with white tips", + "throat: intense blue-green sheen" + ], + "blue capped ifrita": [ + "back: vibrant blue hues", + "beak: short and black", + "belly: yellow-orange", + "breast: vibrant yellow", + "crown: deep blue cap", + "forehead: iridescent blue", + "eyes: small and beady, with a black outline", + "legs: gray-brown with sharp black claws", + "wings: blue upperparts and yellow underparts", + "nape: electric blue sheen", + "tail: long, tapering, with hints of blue and yellow", + "throat: bright yellow" + ], + "blue capped kingfisher": [ + "back: vibrant blue plumage", + "beak: long, black, and sharp", + "belly: white and soft-feathered", + "breast: white with a hint of blue", + "crown: striking blue with a slight crest", + "forehead: bright blue, blending into the crown", + "eyes: dark and piercing, surrounded by blue feathers", + "legs: short and sturdy, blending with plumage", + "wings: blue with black stripes, powerful flight", + "nape: deep blue, meeting crown and back", + "tail: blue feathers with black edges, assisting in flight", + "throat: white, transitioning to blue on the breast" + ], + "blue capped manakin": [ + "back: vibrant green feathering", + "beak: small and black, slightly curved", + "belly: lighter green hue, soft feathers", + "breast: bright green plumage, rounded shape", + "crown: distinctive bright blue cap-like crest", + "forehead: eye-catching blue hue, above eyes", + "eyes: black beads, surrounded by blue feathers", + "legs: slender black legs with bent toes", + "wings: vivid green, strong and curved", + "nape: green feathers smoothly transitioning to blue crown", + "tail: green, elongated feathers with white edges", + "throat: greenish-yellow, adjacent to blue forehead" + ], + "blue capped motmot": [ + "back: vibrant olive-green", + "beak: long, black, and pointed", + "belly: light olive-green", + "breast: bright turquoise-blue", + "crown: striking blue-violet", + "forehead: deep blue cap", + "eyes: large, dark, and expressive", + "legs: short, sturdy, and gray", + "wings: olive-green with sharp accents", + "nape: striking blue-violet", + "tail: long, featuring racquet-shaped feathers", + "throat: pale yellowish-green" + ], + "blue capped puffleg": [ + "back: vibrant green-blue feathers", + "beak: slender, curved black beak", + "belly: soft, pale green", + "breast: iridescent turquoise-blue", + "crown: brilliant blue cap", + "forehead: bright blue feathers", + "eyes: small, round, and black", + "legs: thin, black, and wiry", + "wings: green-blue, elongated feathers", + "nape: shining green-blue", + "tail: rectangular, blue-green feathers", + "throat: white feather patch" + ], + "blue capped redstart": [ + "back: vibrant blue feathers", + "beak: small, pointed, black", + "belly: white with orange tint", + "breast: fiery orange-red plumage", + "crown: bright blue cap", + "forehead: blue feathers transitioning to white", + "eyes: round, black, alert", + "legs: thin, delicate, dark gray", + "wings: blue with white patches, strong", + "nape: blue feathers leading to orange-red", + "tail: blue with white outer edges, fan-like", + "throat: bright white with a hint of orange" + ], + "blue capped rock thrush": [ + "back: dark blue feathers with a slight sheen", + "beak: black, short, and strong", + "belly: pale orange with light speckling", + "breast: vibrant orange fading into the belly", + "crown: bright blue with an iridescent shine", + "forehead: deep blue feathers meeting the crown", + "eyes: round, expressive, bordered by blue feathers", + "legs: strong, greyish-brown tone", + "wings: dark blue with hints of turquoise", + "nape: distinct bright blue hue", + "tail: long, dark blue with white tips", + "throat: rich blue contrasting with the orange breast" + ], + "blue capped tanager": [ + "back: vibrant turquoise-blue feathers", + "beak: thick, black, slightly curved", + "belly: shimmering light-blue plumage", + "breast: bright turquoise-blue plumage", + "crown: radiant blue cap", + "forehead: iridescent blue feathers", + "eyes: small, black, alert gaze", + "legs: greyish, thin, with strong-footed grip", + "wings: striking blue and black pattern", + "nape: shimmering blue-green feathers", + "tail: long, black, with blue feather edges", + "throat: brilliant blue, contrasting plumage" + ], + "blue cheeked bee eater": [ + "back: vibrant green covering the majority of the upper body", + "beak: long, slender, and black for catching insects in flight", + "belly: pale turquoise leading to a yellowish-green underside", + "breast: bright green blending into the belly", + "crown: emerald green with a black border", + "forehead: blue with a hint of purple", + "eyes: dark, beady, and surrounded by black", + "legs: slender and black, perfect for perching", + "wings: elongated and green, featuring a blue-turquoise patch", + "nape: green transitioning from the crown", + "tail: elongated, needle-like feathers, with black and blue edges", + "throat: distinct blue patch, contrasting with surrounding green feathers" + ], + "blue cheeked jacamar": [ + "back: iridescent green sheen", + "beak: long and slender, black", + "belly: white with light blue feathers", + "breast: shiny green", + "crown: gleaming green-blue", + "forehead: metallic blue-green", + "eyes: dark and round, with white eye-ring", + "legs: grayish-blue, thin and agile", + "wings: shimmering green with blue edges", + "nape: greenish-blue, glossy", + "tail: elongated, green with blue tinges", + "throat: bright blue with small black feathers" + ], + "blue cheeked parrot": [ + "back: vibrant green feathers", + "beak: strong, hooked, dark grey", + "belly: soft lime green shades", + "breast: turquoise blue plumage", + "crown: deep blue mixed with green", + "forehead: bright blue patch above eyes", + "eyes: alert, black with white rings", + "legs: sturdy, dark grey with sharp claws", + "wings: lush green with blue edges", + "nape: greenish-blue merging to the back", + "tail: long, tapered green and blue feathers", + "throat: subtle blue hue on lighter green" + ], + "blue chested hummingbird": [ + "back: iridescent green feathers", + "beak: slender, long, and straight", + "belly: pale grayish-white underside", + "breast: vibrant blue chest patch", + "crown: bright green with a slight shine", + "forehead: shimmering green plumage", + "eyes: small, round, and dark", + "legs: short and delicate", + "wings: rapidly flapping, transparent edges", + "nape: green-tinted feathers with a metallic sheen", + "tail: fan-shaped with black and white tips", + "throat: glossy dark green feathers" + ], + "blue chinned sapphire": [ + "back: iridescent green plumage", + "beak: long, slender, and black", + "belly: white with some blue", + "breast: vibrant blue feathers", + "crown: shining green-blue", + "forehead: bright green hue", + "eyes: small, dark orbs", + "legs: slender, black sticks", + "wings: sleek, greenish-blue", + "nape: metallic green shimmer", + "tail: forked, elongated, and blue", + "throat: vibrant blue chin patch" + ], + "blue collared parrot": [ + "back: vibrant green feathers", + "beak: strong, light-colored, hooked shape", + "belly: light green to yellow gradient", + "breast: bright blue feathers with slight collar", + "crown: deep blue crest on top of the head", + "forehead: green plumage blending into the crown", + "eyes: dark, expressive, surrounded by white rings", + "legs: strong, light-gray, with sharp claws", + "wings: green with hints of blue and yellow", + "nape: deep blue feathers blending into the back", + "tail: long, green and blue feathers with yellow tips", + "throat: green fading into lighter shades on the chest" + ], + "blue crowned chlorophonia": [ + "back: vibrant green feathers", + "beak: short, curved, yellowish-orange", + "belly: yellow feathers with green sides", + "breast: bright yellow feathers", + "crown: striking blue plumage", + "forehead: blue feathers, blending into green", + "eyes: round, dark, with white eye-ring", + "legs: sturdy, grayish-brown", + "wings: iridescent green and blue feathers", + "nape: lime green feathers, blending into blue", + "tail: green feathers with blue edges", + "throat: brilliant yellow feathers" + ], + "blue crowned hanging parrot": [ + "back: vibrant green feathers", + "beak: short, curved orange-red", + "belly: bright turquoise-blue", + "breast: light green plumage", + "crown: shimmering blue crest", + "forehead: yellow-green transition", + "eyes: small, black beady", + "legs: slender, gray-clawed", + "wings: green with blue trimmings", + "nape: lime green feathers", + "tail: elongated, greenish-blue", + "throat: pale yellowish-green" + ], + "blue crowned laughingthrush": [ + "back: deep blue feathered covering", + "beak: black, sharp, and pointed", + "belly: pale blue-grey plumage", + "breast: bright blue vibrant feathers", + "crown: brilliant blue crest on top", + "forehead: deep blue area above eyes", + "eyes: small, black, and round", + "legs: dark grey and sturdy", + "wings: blue-black with white streaks", + "nape: blue-grey neck feathers", + "tail: long, black with blue tinges", + "throat: light blue-grey plumage" + ], + "blue crowned lorikeet": [ + "back: vibrant blue feathers with hints of green", + "beak: orange curved hook", + "belly: bright red-orange coloring", + "breast: rich red-orange plumage", + "crown: striking blue-bronze crest", + "forehead: light blue to violet hue", + "eyes: dark brown with white eye rings", + "legs: strong grey limbs", + "wings: blue-green feathers with red-orange underwing coverts", + "nape: blue-green blend into the back", + "tail: elongated, blue-green feathers with red-orange tips", + "throat: deep red-orange feathers" + ], + "blue crowned parakeet": [ + "back: vibrant green feathers", + "beak: curved, grayish-black", + "belly: light green plumage", + "breast: soft greenish-blue feathers", + "crown: striking blue crest", + "forehead: deep blue coloration", + "eyes: dark with a white eye-ring", + "legs: grayish, strong limbs", + "wings: bright green with blue edging", + "nape: green feathers, transitioning to blue", + "tail: long, green with blue tips", + "throat: pale green, almost yellowish" + ], + "blue crowned racquet tail": [ + "back: vibrant green plumage", + "beak: black, curved, and sharp", + "belly: light green feathers", + "breast: bright blue patch on chest", + "crown: striking blue cap atop head", + "forehead: blue feathers blending to green", + "eyes: black with white eye-ring", + "legs: gray and scaly with sharp claws", + "wings: elongated green feathers", + "nape: green feathers transitioning to blue", + "tail: unique racquet-shaped feathers", + "throat: pale green, blending with breast color" + ], + "blue crowned trogon": [ + "back: vibrant green upper feathers", + "beak: strong, black hook-shaped", + "belly: dark blue lower feathers", + "breast: bright yellow plumage", + "crown: striking blue top crest", + "forehead: deep blue feathers", + "eyes: large, round, and black", + "legs: short, black, and sturdy", + "wings: green-blue with black markings", + "nape: contrasting green and blue feathers", + "tail: long, black, and white-tipped", + "throat: dark blue with feathered texture" + ], + "blue eared barbet": [ + "back: vibrant green feathers", + "beak: short, stout, black", + "belly: light greenish-yellow hue", + "breast: bright blue mixed with green feathers", + "crown: deep blue with black spots", + "forehead: rich blue feathers", + "eyes: dark with white rings", + "legs: short, grayish-blue", + "wings: green with patches of blue", + "nape: bright blue and green blend", + "tail: elongated, green feathers with hints of blue", + "throat: vivid blue feathers" + ], + "blue eared kingfisher": [ + "back: vibrant blue feathers", + "beak: long, sharp, black", + "belly: white, soft plumage", + "breast: orange rust highlights", + "crown: deep blue, striking", + "forehead: blue feathers, small", + "eyes: round, alert, brown", + "legs: short, strong, orange", + "wings: large, blue, powerful", + "nape: blue, feathers overlapping", + "tail: elongated, blue feathers", + "throat: white with slight orange hue" + ], + "blue eared lory": [ + "back: vibrant blue with hints of black", + "beak: sharp, curved, orange-red", + "belly: deep blue, fading to black", + "breast: bright red, feathered", + "crown: vivid blue, pointed feathers", + "forehead: rich blue, smooth transition into crown", + "eyes: dark, surrounded by blue feathers", + "legs: short, gray, powerful", + "wings: blue-black, wide, strong in flight", + "nape: blue, arching gracefully to head", + "tail: long, blue-black, feathers narrowing to points", + "throat: vivid red, in contrast with blue tones" + ], + "blue eyed cockatoo": [ + "back: smooth white feathers", + "beak: large, curved, white and cream-colored", + "belly: white feathers with a subtle yellow hue", + "breast: fluffy white plumage", + "crown: prominent white crest with a yellow tint", + "forehead: clean, smooth white feathers", + "eyes: striking blue color with white feathered surroundings", + "legs: sturdy gray legs with sharp claws", + "wings: broad white feathers with a slight yellow touch", + "nape: white feathers transitioning to a pale yellow tone", + "tail: long, white feathers with subtle yellow accents", + "throat: smooth white feathered area" + ], + "blue eyed ground dove": [ + "back: blue-grey feathered with light streaks", + "beak: short and pointed, light grey color", + "belly: soft off-white plumage", + "breast: light blue feathers with dark patterns", + "crown: blue-grey feathers, smooth appearance", + "forehead: pale blue feathers, smooth texture", + "eyes: prominent blue irises, round shape", + "legs: short and pinkish, strong for ground dwelling", + "wings: blue-grey with dark streaks, designed for quick bursts", + "nape: slightly darker shade of blue-grey feathers", + "tail: short and fan-shaped, streaked with grey and black", + "throat: delicate off-white feathers with light markings" + ], + "blue faced honeyeater": [ + "back: vibrant blue and green plumage", + "beak: sleek black, elongated shape", + "belly: light cream to white coloring", + "breast: creamy white with a slight yellow tinge", + "crown: blue facial skin with black feathers", + "forehead: bright blue featherless patch", + "eyes: striking white ring around dark pupils", + "legs: dark gray with sharp claws", + "wings: iridescent blue-green feathers", + "nape: mixture of blue-green and black feathers", + "tail: long, tapered with blue-green and black feathers", + "throat: white with a hint of yellow, smooth feathers" + ], + "blue faced malkoha": [ + "back: dark bluish-black feathers", + "beak: long, thin, and dark grayish-blue", + "belly: pale gray with blue and black streaks", + "breast: pale gray with blue and black streaks", + "crown: bluish-black feathers", + "forehead: black feathers with a slight blue hue", + "eyes: dark, encircled by blue skin patches", + "legs: dark gray-blue, long and slender", + "wings: dark blue with prominent black and white barring", + "nape: bluish-black feathers with grayish-blue undertones", + "tail: long and dark blue, with a white-tipped end", + "throat: pale gray, transitioning into the breast area" + ], + "blue faced parrotfinch": [ + "back: vibrant green feathers", + "beak: short, sturdy, red-orange", + "belly: light sky-blue", + "breast: bright azure blue", + "crown: rich blue coloring", + "forehead: stunning cobalt hue", + "eyes: dark, piercing gaze", + "legs: slender, greyish-brown", + "wings: mix of green and blue feathers", + "nape: deep green transitioning to blue", + "tail: elongated, green with blue accents", + "throat: vivid blue feathers" + ], + "blue faced rail": [ + "back: vibrant blue feathers with black streaks", + "beak: strong, sharp, black curved beak", + "belly: soft white feathers with blue tinges", + "breast: bright blue plumage with dark speckles", + "crown: deep blue and black feathers forming a crest", + "forehead: bold blue feathers transitioning to black", + "eyes: piercing yellow eyes with black pupils", + "legs: sturdy, dark grey legs with three well-defined toes", + "wings: iridescent blue with black tips and a hint of green", + "nape: dark blue plumage extending to the back of the head", + "tail: long, sleek tail feathers with black and blue bands", + "throat: bright blue feathers transitioning to white on the belly" + ], + "blue footed booby": [ + "back: sleek contour, blue-gray feathers", + "beak: long, straight, serrated edges", + "belly: white plumage, slightly round", + "breast: white feathers, plump", + "crown: smooth blue-gray gradient", + "forehead: sloped, blue-gray smoothness", + "eyes: piercing yellow ring, dark pupils", + "legs: iconic bright blue, webbed feet", + "wings: strong, broad, blue-gray feathers", + "nape: delicate curve, subtle feather transition", + "tail: relatively long, thin, blue-gray feathers", + "throat: white plumage, elongated shape" + ], + "blue fronted flycatcher": [ + "back: vibrant blue feathers", + "beak: small, sharp, black", + "belly: creamy white color", + "breast: blue with white streaks", + "crown: bright blue with ruffled feathers", + "forehead: bold blue shade", + "eyes: round, black, and alert", + "legs: sturdy, dark gray", + "wings: blue with white and black accents", + "nape: blue with subtle striping", + "tail: elongated, blue with black banding", + "throat: white with blue streaks" + ], + "blue fronted lancebill": [ + "back: deep blue, vibrant feathers", + "beak: slender, sharp, and black", + "belly: pale blue feathers fading into white", + "breast: rich blue feather gradient", + "crown: bright blue plumage with a hint of green", + "forehead: sapphire hue with iridescent sheen", + "eyes: small, black, and alert", + "legs: slim, dark gray-blue, and powerful", + "wings: striking blue feathers with green accents", + "nape: cobalt blue with a hint of green shimmer", + "tail: elongated forked feathers in a gradient of blue", + "throat: brilliant blue transitioning into a softer hue" + ], + "blue fronted lorikeet": [ + "back: vibrant green feathers covering the upper body", + "beak: short, curved, and orange in color", + "belly: creamy white to light yellow plumage", + "breast: bright green with blue hints, transitioning to the belly", + "crown: deep blue stretching from the eyes to the nape", + "forehead: brilliant blue feathers meeting the beak", + "eyes: small, round, encircled by a white eye ring", + "legs: short, gray, ending in strong zygodactylous feet", + "wings: mixture of green and blue feathers, folded at rest", + "nape: green feathers seamlessly following the blue crown", + "tail: long, tapering feathers with green and blue coloration", + "throat: deep blue feathers fading into the chest area" + ], + "blue fronted parrotlet": [ + "back: vibrant green feathers", + "beak: short, hooked, and light-colored", + "belly: pale green with light blue tinges", + "breast: greenish-yellow plumage", + "crown: bright blue feathers", + "forehead: striking blue patch", + "eyes: dark, surrounded by white skin", + "legs: short, gray with strong toes", + "wings: green with dark blue edges", + "nape: green with a touch of blue", + "tail: long, green, with blue tips", + "throat: pale green, sometimes with light blue hues" + ], + "blue fronted redstart": [ + "back: vibrant blue feathers", + "beak: small, slender, black", + "belly: fiery reddish-orange", + "breast: striking red hue", + "crown: deep blue plumage", + "forehead: vivid blue coloring", + "eyes: small, round, dark", + "legs: thin, black, and delicate", + "wings: blue with reddish edges", + "nape: bright blue feathers", + "tail: long and blue with red streaks", + "throat: blazing red patch" + ], + "blue fronted robin": [ + "back: vibrant blue feathers covering the bird's upper body", + "beak: small, thin, sharp-edged for catching insects", + "belly: soft white or grayish feathers on the lower body", + "breast: bright blue plumage with a hint of iridescence", + "crown: brilliant blue crest adorning the head", + "forehead: rich blue feathers meeting the beak", + "eyes: round, dark, alert and expressive", + "legs: slender, strong, and flexible for perching", + "wings: long, slim, blue feathers for easy flight", + "nape: bright blue feathers transitioning to the back", + "tail: fan-shaped, blue feathers for balance and control", + "throat: lighter blue or white feathers surrounding the base of the beak" + ], + "blue gray noddy": [ + "back: pale bluish-gray feathers", + "beak: short and pointed black", + "belly: light gray underbelly", + "breast: soft gray plumage", + "crown: smooth slate gray", + "forehead: lighter gray markings", + "eyes: small, dark with white eyerings", + "legs: slender black legs and webbed feet", + "wings: bluish-gray with slightly darker tips", + "nape: bluish-gray neck feathers", + "tail: long, forked gray feathers", + "throat: subtle gray feathers" + ], + "blue gray robin": [ + "back: smooth, bluish-gray feathers", + "beak: sleek, pointed, yellowish", + "belly: light gray with white undertones", + "breast: pale gray-blue with gentle streaks", + "crown: blue-gray, slightly raised", + "forehead: light gray, blending with crown", + "eyes: small, round, black, alert", + "legs: thin, light brown, scaly", + "wings: blue-gray feathered with white markings", + "nape: connecting gracefully to back, light gray-blue", + "tail: long, blue-gray feathers with white tips", + "throat: whitish, slightly streaked, transitioning to belly" + ], + "blue gray tanager": [ + "back: sleek blue-gray feathers", + "beak: sharp, slender, and silverish-black", + "belly: lighter gray plumage", + "breast: smooth blue-gray feathers", + "crown: vibrant blue hue on the head", + "forehead: mixing of blue and gray feathers", + "eyes: dark, round and alert", + "legs: slender, black, and strong", + "wings: blue-gray with noticeable flight feathers", + "nape: blending of blue-gray and lighter gray feathers", + "tail: long, blue-gray feathers with slight fanning", + "throat: soft gray plumage" + ], + "blue headed bee eater": [ + "back: vibrant green feathered body", + "beak: long, curved black beak", + "belly: pale yellow underbelly", + "breast: bright yellow chest feathers", + "crown: stunning blue head cap", + "forehead: sky blue forehead plumage", + "eyes: small, black beady eyes", + "legs: slender, grey bird legs", + "wings: green feathered wings with blue tips", + "nape: blue and green blended neck plumage", + "tail: elongated, green forked tail feathers", + "throat: yellow throat feathers blending into the chest" + ], + "blue headed coucal": [ + "back: deep blue iridescent plumage", + "beak: black, slightly hooked", + "belly: creamy buff color", + "breast: chestnut-brown", + "crown: glossy blue-green feathers", + "forehead: bright, metallic blue", + "eyes: dark brown with blue eyering", + "legs: strong black with sharp talons", + "wings: blue-green with chestnut primary feathers", + "nape: metallic blue and green transition", + "tail: long, deep blue with chestnut undertail coverts", + "throat: pale cream with blue head markings" + ], + "blue headed crested flycatcher": [ + "back: vibrant blue feathers", + "beak: short and sharp black", + "belly: creamy white plumage", + "breast: grayish-white feathers", + "crown: bright blue crest", + "forehead: deep blue with a black border", + "eyes: small, round, and black", + "legs: thin with black-yellow coloration", + "wings: vibrant blue with black markings", + "nape: sky-blue feathers", + "tail: elongated blue feathers with black tips", + "throat: pale gray plumage" + ], + "blue headed fantail": [ + "back: vibrant blue feathers with a slight hint of green", + "beak: small, sharp, and black", + "belly: light grey with delicate bluish tones", + "breast: pale grey, transitioning to light blue near the neck", + "crown: bright blue, contrasting with the rest of the body", + "forehead: deep blue, merging seamlessly with the crown", + "eyes: black and beady, surrounded by thin blue circles", + "legs: slender and black, with sharp talons", + "wings: blue and grey, with intricate feather patterns", + "nape: faded blue, lightening as it moves down the neck", + "tail: long and fan-shaped, with distinct blue and grey bands", + "throat: silver-grey, accentuating the blue hues of the head" + ], + "blue headed hummingbird": [ + "back: shimmering green feathers", + "beak: long, slender, and black", + "belly: light grayish-white feathers", + "breast: iridescent blue plumage", + "crown: bright blue with metallic sheen", + "forehead: glittering blue feathers", + "eyes: small and dark, alert gaze", + "legs: short and delicate, black in color", + "wings: rapid flutter, green and blue hues", + "nape: shimmery green feather transition", + "tail: elongated, forked, green and black feathers", + "throat: gleaming blue, catches light" + ], + "blue headed macaw": [ + "back: vibrant green feathers", + "beak: strong black hook", + "belly: light greenish-yellow plumage", + "breast: bright green feathers", + "crown: brilliant blue feathers", + "forehead: deep blue coloring", + "eyes: dark with white eye-ring", + "legs: sturdy gray-black", + "wings: green with blue tips", + "nape: blue and green mix", + "tail: long green feathers with blue tips", + "throat: yellowish-green feathers" + ], + "blue headed parrot": [ + "back: vibrant green feathers", + "beak: strong black curved", + "belly: soft light green plumes", + "breast: gradient green-blue plumage", + "crown: bright blue feathers", + "forehead: vivid blue meeting beak", + "eyes: dark with white outline", + "legs: gray scaly, with zygodactyl toes", + "wings: green with blue highlights", + "nape: blue-to-green transition", + "tail: tapered green-blue feathers", + "throat: lighter green plumage" + ], + "blue headed pitta": [ + "back: vibrant blue feathers covering upper body", + "beak: short, strong, and curved for catching insects", + "belly: bright pale-yellow plumage", + "breast: rich and deep orange-red in color", + "crown: striking azure-blue with a hint of green", + "forehead: brilliant blue fading into the crown", + "eyes: large, dark, and observant", + "legs: long, slim, and powerful for hopping", + "wings: vivid blue with blackish flight feathers", + "nape: deep blue hue connecting crown and back", + "tail: short and steely blue tipped with black", + "throat: clear yellowish-white coloration" + ], + "blue headed quail dove": [ + "back: vibrant blue and gray feathers", + "beak: short and stout, grayish color", + "belly: soft, light gray plumage", + "breast: bluish-gray feathers with slight iridescence", + "crown: deep blue with slight metallic sheen", + "forehead: bright blue feathers extending from beak", + "eyes: dark, round with white eye-ring", + "legs: reddish-brown with strong, scaly texture", + "wings: blue-gray with intricate patterns and white tips", + "nape: rich blue transitioning to gray on the neck", + "tail: long, bluish-gray with white outer feathers", + "throat: pale grayish-blue with a soft texture" + ], + "blue headed racquet tail": [ + "back: bright green feathers", + "beak: short, pale, hooked", + "belly: pale green plumage", + "breast: yellowish-green feathers", + "crown: deep blue coloring", + "forehead: vibrant blue hue", + "eyes: dark, round, expressive", + "legs: short, sturdy, gray", + "wings: green with blue touches", + "nape: green with blue streaks", + "tail: elongated with racket-shaped tips", + "throat: light green plumage" + ], + "blue headed sapphire": [ + "back: iridescent blue-green feathers", + "beak: black, sharp, and slightly curved", + "belly: light gray with a hint of blue", + "breast: vibrant turquoise or teal", + "crown: bright sapphire blue", + "forehead: glistening blue feathers", + "eyes: dark brown with a thin black ring", + "legs: slender and dark gray", + "wings: blue-green with shimmering accents", + "nape: deep blue turning to green", + "tail: long and slightly forked with blue-green hues", + "throat: shiny blue, lighter than the crown" + ], + "blue headed sunbird": [ + "back: vibrant green plumage", + "beak: slender, curved, black", + "belly: pale yellow feathers", + "breast: bright blue iridescence", + "crown: deep blue with metallic sheen", + "forehead: shimmering blue plumage", + "eyes: dark and round, surrounded by blue", + "legs: slender, black, and sturdy", + "wings: greenish-blue with dark edges", + "nape: blue-green transition", + "tail: elongated, black with greenish-blue highlights", + "throat: bright metallic blue" + ], + "blue headed wood dove": [ + "back: sky-blue plumage with scattered dark spots", + "beak: short and dark gray", + "belly: soft gray with slight blue tint", + "breast: light gray-blue with dark spots", + "crown: deep blue with a shiny texture", + "forehead: bright blue coloration", + "eyes: dark brown with a white eyering", + "legs: dark gray to black with small claws", + "wings: blue-gray feathers with black speckling", + "nape: smooth transition from blue head to gray body", + "tail: long, dark gray with blue highlights", + "throat: light gray, blending with breast coloration" + ], + "blue lored antbird": [ + "back: vibrant blue feathers", + "beak: short, sleek black", + "belly: soft gray-white plumage", + "breast: brilliant blue chest feathers", + "crown: blue-feathered, slightly crest-like", + "forehead: striking blue, meeting eyes", + "eyes: dark, surrounded by blue feathers", + "legs: slender, long, pale pink", + "wings: shimmering blue with intricate pattern", + "nape: plumage transitions from blue to gray", + "tail: elongated, blue patterned feathers", + "throat: vivid blue, contrasting belly" + ], + "blue mantled thornbill": [ + "back: vibrant bluish-green plumage", + "beak: long, slender, and black", + "belly: light bluish-grey feathers", + "breast: soft, bluish-grey plumage", + "crown: iridescent blue feathers", + "forehead: shimmering blue hue", + "eyes: small, round, and black", + "legs: thin, black, and delicate", + "wings: small with bluish-green feathers", + "nape: bright blue plumage", + "tail: long, forked, and bluish-black", + "throat: rich, dark blue feathers" + ], + "blue masked leafbird": [ + "back: vibrant green feathers", + "beak: black, slim, and sharp", + "belly: yellowish-green hue", + "breast: bright yellow with blue tinge", + "crown: deep blue with black streaks", + "forehead: striking blue feathers", + "eyes: small, black, and piercing", + "legs: grayish-brown and slender", + "wings: green with blueish tips", + "nape: rich blue transitioning to green", + "tail: long, green, and slightly forked", + "throat: brilliant blue with black edges" + ], + "blue moustached bee eater": [ + "back: vibrant blue feathers", + "beak: slender and dark", + "belly: light blueish-white", + "breast: soft turquoise blue", + "crown: bright blue plumage", + "forehead: royal blue feathers", + "eyes: black with a hint of blue", + "legs: short, grayish-brown", + "wings: elongated, blue with green tinges", + "nape: greenish-blue hue", + "tail: elongated, streamlined feathers", + "throat: white with a fine, black moustache-like line" + ], + "blue naped chlorophonia": [ + "back: vibrant green feathered back", + "beak: petite, straight ivory beak", + "belly: lime-green and soft underbelly", + "breast: bright yellow feathered chest", + "crown: blue iridescent feathered cap", + "forehead: radiant blue upper face", + "eyes: small, black, and alert eyes", + "legs: thin and sturdy grayish legs", + "wings: green, yellow, and blue gradient feathers", + "nape: brilliant blue feathers on the neck", + "tail: elongated green and blue feathers", + "throat: vivid yellow feathered gullet" + ], + "blue naped mousebird": [ + "back: vibrant blue shade with elongated feathers", + "beak: curved and strong, dark grey color", + "belly: soft grey, sleek feathers", + "breast: light grey plumage with slight sheen", + "crown: eye-catching blue hue with tight feathers", + "forehead: smooth curve, blue color blending with crown", + "eyes: dark, round, and intelligent-looking", + "legs: thin, long, and grey with strong claws", + "wings: elongated blue and grey feathers, wide in flight", + "nape: striking blue, connecting crown and back", + "tail: long, grey feathers with points at the ends", + "throat: pale grey feathers with subtle stripe pattern" + ], + "blue naped parrot": [ + "back: vibrant green feathers", + "beak: strong, black, hooked shape", + "belly: pale green feathering", + "breast: bluish-green plumage", + "crown: deep blue feathers at top of head", + "forehead: greenish-yellow feathers", + "eyes: intelligent, dark with white rings", + "legs: grayish scaled with black claws", + "wings: striking green with black flight feathers", + "nape: bright blue stripe at base of neck", + "tail: long, green feathers with blue tips", + "throat: pale green to yellowish feathers" + ], + "blue naped pitta": [ + "back: vibrant blue-green feathers", + "beak: long, sturdy, and black", + "belly: pale blue-grey plumage", + "breast: golden yellow feathers", + "crown: metallic blue nape and head", + "forehead: bright turquoise-blue stripe", + "eyes: small, inquisitive, and black", + "legs: tall, thin, pinkish-grey", + "wings: brilliant green and blue feathers", + "nape: striking deep blue patch", + "tail: long, green and blue feathers, tipped with white", + "throat: rich chestnut color" + ], + "blue necked tanager": [ + "back: vibrant blue-green feathers", + "beak: sharp, black, and pointed", + "belly: bright turquoise feathers", + "breast: vivid blue feathers", + "crown: brilliant turquoise plumage", + "forehead: deep blue-green feathers", + "eyes: small and black, surrounded by blue feathers", + "legs: slender gray legs with sharp claws", + "wings: turquoise and black feathers with blue edges", + "nape: vivid blue feathers connecting the head to the body", + "tail: long, iridescent blue feathers", + "throat: deep azure plumage" + ], + "blue rumped manakin": [ + "back: vibrant green feathering", + "beak: short, pointed, black", + "belly: bright yellow plumage", + "breast: rich yellow feathers", + "crown: glossy blue-black", + "forehead: smooth blue-black", + "eyes: small, dark, alert", + "legs: slender, grayish-brown", + "wings: green with black edges", + "nape: iridescent blue patch", + "tail: short, square, black", + "throat: deep blue, glossy" + ], + "blue rumped parrot": [ + "back: vibrant green feathers", + "beak: strong, hooked upper mandible and greyish lower mandible", + "belly: pale yellowish coloration", + "breast: blue-green plumage", + "crown: bright blue-green cap", + "forehead: bluish-green tint", + "eyes: dark brown with white eye-ring", + "legs: sturdy, grey with zygodactyl arrangement", + "wings: green with blue tips on primary feathers", + "nape: blue-green with a hint of blue rump", + "tail: long green feathers with blue underside", + "throat: turquoise and white-striped feathers" + ], + "blue rumped pitta": [ + "back: bright turquoise blue feathers", + "beak: small, dark, and slightly hooked", + "belly: white to light grey, spotted with black", + "breast: vibrant blue with streaks of darker blue", + "crown: deep blue with black highlights", + "forehead: black and white speckled pattern", + "eyes: dark with black outlines", + "legs: strong, pale with dark scale-like pattern", + "wings: dark blue with lighter blue edges", + "nape: rich green-blue coloration", + "tail: long, dark blue with white-tipped feathers", + "throat: blue-grey with black spots" + ], + "blue shouldered robin chat": [ + "back: vibrant blue feathers", + "beak: sharp, small, black", + "belly: bright orange plumage", + "breast: rich orange with white streaks", + "crown: blue with dark streaks", + "forehead: brilliant blue patch", + "eyes: round, dark, inquisitive", + "legs: long, sturdy, grey", + "wings: blue with black stripes, rounded", + "nape: deep blue with dark spots", + "tail: long, blue, neatly striped", + "throat: white and orange mix" + ], + "blue spotted wood dove": [ + "back: blue feathers with white spots", + "beak: short and black", + "belly: pale blue with white spots", + "breast: dark blue with white spots", + "crown: glossy dark blue", + "forehead: bright blue", + "eyes: piercing and dark", + "legs: short and red", + "wings: blue with white spotted pattern", + "nape: blue with white spots", + "tail: elongated with white-tipped feathers", + "throat: pale blue with white spots" + ], + "blue streaked lory": [ + "back: vibrant blue feathered covering", + "beak: bright orange, curved and sharp", + "belly: soft greenish-blue plumage", + "breast: deep blue, slightly iridescent feathers", + "crown: vivid blue with streaked patterns", + "forehead: bright blue and smooth curves", + "eyes: expressive, dark and almond-shaped", + "legs: light pink with scaly texture", + "wings: blue feathers with streaks of green and black", + "nape: turquoise blue hue with darker spots", + "tail: long, blue feathers with green and black accents", + "throat: streaked pale blue feathers" + ], + "blue tailed bee eater": [ + "back: vibrant green feathers", + "beak: sleek, black, and slightly curved", + "belly: olive-green plumage", + "breast: golden-yellow feathers", + "crown: bright green with a black eye stripe", + "forehead: emerald green", + "eyes: dark with a black stripe through them", + "legs: black and petite", + "wings: green with blue-tipped flight feathers", + "nape: green transitioning to blue", + "tail: elongated with bright blue streamers", + "throat: rusty orange coloration" + ], + "blue tailed emerald": [ + "back: vibrant green with iridescent sheen", + "beak: slender, slightly curved, blackish", + "belly: pale grayish-white, lightly streaked", + "breast: light green, shimmering feathers", + "crown: bright emerald green, glossy", + "forehead: radiant green, smoothly blending into crown", + "eyes: small, round, dark with white eyering", + "legs: short, strong, dark gray", + "wings: rounded, iridescent green with dark tips", + "nape: rich emerald green, gleaming in sunlight", + "tail: elongated, sleek, bright blue central feathers", + "throat: sparkling green, vibrant contrast to belly" + ], + "blue tailed hummingbird": [ + "back: iridescent green feathers", + "beak: slender, elongated black beak", + "belly: light gray with green iridescence", + "breast: shimmering green chest feathers", + "crown: sparkling emerald head crest", + "forehead: shiny green plumage above the beak", + "eyes: dark, round and alert", + "legs: short, black with small feet", + "wings: rapidly fluttering, slightly curved", + "nape: brilliant green with a touch of blue", + "tail: striking sapphire blue elongated feathers", + "throat: radiant ruby red gorget" + ], + "blue tailed trogon": [ + "back: vibrant green feathers", + "beak: strong, black, slightly curved", + "belly: soft white to pale yellow", + "breast: deep blue with fine white streaks", + "crown: bright green plumage with a crest", + "forehead: shiny green", + "eyes: dark, surrounded by black and blue markings", + "legs: sturdy, dark gray", + "wings: green with blue and white accents", + "nape: metallic green coloration", + "tail: long, broad, blue with white accents", + "throat: deep blue with fine white streaks" + ], + "blue throated barbet": [ + "back: vibrant green with shades of blue", + "beak: sturdy, dark gray, and slightly curved", + "belly: soft greenish-blue hue", + "breast: rich blue or purple transitioning to green", + "crown: bright red with contrasting blue-black border", + "forehead: bold red color", + "eyes: dark, round, and expressive", + "legs: strong, gray, with sharp and slender claws", + "wings: mix of blue, green, and yellow feathers", + "nape: bright blue with black border", + "tail: long, blue-green feathers with yellow and black tips", + "throat: striking blue hue" + ], + "blue throated bee eater": [ + "back: vibrant green covering the upper body", + "beak: slender and black, slightly curved", + "belly: light green, smoothly curving toward the tail", + "breast: bluish-green, slightly higher contrast than belly", + "crown: bluish-green with a sleek contour", + "forehead: bright blue, distinguishing feature", + "eyes: dark and shiny, blackish-brown", + "legs: grayish-black, thin and almost hidden beneath feathers", + "wings: elongated, iridescent green with some blue hues", + "nape: continuation of the vibrant green on the back", + "tail: slender, elongated, and greenish-bronze with sharp ends", + "throat: stunning blue, eye-catching feature" + ], + "blue throated brown sunbird": [ + "back: blue-brown iridescent feathers", + "beak: long, thin, and curved", + "belly: white to yellow underside", + "breast: vibrant blue hues with a brown tint", + "crown: glossy blue-brown with a hint of green", + "forehead: dusky blue-green band", + "eyes: small and dark with a white ring", + "legs: slender, dark gray appendages", + "wings: iridescent blue-brown flight feathers", + "nape: bluish-green with a faint brown shine", + "tail: long, layered blue-brown feathers", + "throat: bright, metallic blue patch" + ], + "blue throated flycatcher": [ + "back: vibrant blue feathers", + "beak: small, sharp black beak", + "belly: white or pale underbelly", + "breast: bright blue plumage", + "crown: bold blue head feathers", + "forehead: bright blue forehead patch", + "eyes: small, dark curious eyes", + "legs: slim, black legs with tiny claws", + "wings: blue and black feathers with white bars", + "nape: blue feathers transitioning to white", + "tail: long, blue and black feathered tail", + "throat: striking blue throat patch" + ], + "blue throated goldentail": [ + "back: vibrant emerald green feathers", + "beak: slender, slightly curved black beak", + "belly: soft yellow underbelly", + "breast: warm golden-yellow plumage", + "crown: shimmering green feathered head", + "forehead: bold green and blue hues", + "eyes: small, alert black eyes", + "legs: delicate grey-blue legs", + "wings: iridescent green and blue feathers", + "nape: green and blue feathers with gold tinge", + "tail: long, slender feathers with blue and golden tips", + "throat: vivid blue patch on front of the neck" + ], + "blue throated hillstar": [ + "back: iridescent green-blue feathers", + "beak: long and slender black bill", + "belly: white with some gray-green feathering", + "breast: bright green with blue highlights", + "crown: shimmering green-blue plumage", + "forehead: shining green-blue feathers", + "eyes: dark, round with a white eye-ring", + "legs: sturdy gray legs and black claws", + "wings: iridescent green-blue with black flight feathers", + "nape: bright green-blue feathers", + "tail: long, slender and forked with blue-black feathers", + "throat: vibrant blue with a distinct purplish-blue patch" + ], + "blue throated macaw": [ + "back: vibrant blue feathers", + "beak: strong black hooked shape", + "belly: light yellow plumage", + "breast: bright yellow feathers", + "crown: brilliant blue head", + "forehead: deep blue hue", + "eyes: dark, with white rings", + "legs: sturdy, dark gray", + "wings: striking blue primary feathers", + "nape: dazzling blue back of neck", + "tail: long blue and yellow feathers", + "throat: distinctive blue patch" + ], + "blue throated motmot": [ + "back: greenish-blue feathers", + "beak: slightly curved, black", + "belly: light blue-green hue", + "breast: turquoise-blue feathers", + "crown: blue-green with black tips", + "forehead: vibrant turquoise", + "eyes: surrounded by black mask-like markings", + "legs: short, brownish-gray", + "wings: long, blue-green with black bars", + "nape: deep blue with black tips", + "tail: long, racket-shaped, blue with black bands", + "throat: bright blue patch" + ], + "blue throated mountain gem": [ + "back: vibrant turquoise feathers", + "beak: slender black and slightly curved", + "belly: soft, light green plumage", + "breast: iridescent turquoise-blue", + "crown: bright green with shimmering hues", + "forehead: shining emerald green", + "eyes: small, dark, and piercing", + "legs: thin and black with dainty feet", + "wings: translucent flight feathers with iridescent hues", + "nape: shimmering green transitioning to blue", + "tail: forked with iridescent green and blue feathers", + "throat: striking blue with a metallic sheen" + ], + "blue throated roller": [ + "back: vibrant blue feathers", + "beak: strong, black, and slightly hooked", + "belly: pale blue coloring", + "breast: rich blue plumage", + "crown: deep blue crest", + "forehead: sky blue hue", + "eyes: dark, expressive, and surrounded by a thin white ring", + "legs: dark grey with powerful grip", + "wings: striking pattern of bright blue and black feathers", + "nape: smooth transition from crown's deep blue", + "tail: elongated with dark blue central feathers and black-tipped outer feathers", + "throat: distinctive light blue patch showcasing its name" + ], + "blue throated starfrontlet": [ + "back: vibrant green feathers", + "beak: thin, curved black bill", + "belly: light green underside", + "breast: turquoise blue patch", + "crown: iridescent green head", + "forehead: bold green strip above the eyes", + "eyes: small, black, and rounded", + "legs: slender and dark grey", + "wings: shimmering green with black tips", + "nape: green with a black border", + "tail: long, green feathers with black edges", + "throat: brilliant sapphire-blue throat" + ], + "blue tufted starthroat": [ + "back: iridescent green-blue feathers", + "beak: long, straight, and black", + "belly: white with some blue-green streaks", + "breast: bright blue tuft surrounded by white", + "crown: green-blue feathers with a metallic sheen", + "forehead: light blue to green gradient", + "eyes: dark and round, surrounded by white feathers", + "legs: slender and gray", + "wings: green-blue with hints of iridescence", + "nape: light blue and green mixed feathers", + "tail: forked with blue-green and black feathers", + "throat: vibrant blue tuft that covers part of the breast" + ], + "blue vented hummingbird": [ + "back: vibrant turquoise feathers", + "beak: long, slender, and black", + "belly: soft, pale gray plumage", + "breast: iridescent blue with white edges", + "crown: shimmering blue-green", + "forehead: gleaming blue with a touch of green", + "eyes: small, round, and black", + "legs: short, delicate, and black", + "wings: thin, elongated, and blurred in motion", + "nape: bright blue transitioning to a greenish hue", + "tail: forked with pointed feathers, shades of blue and black", + "throat: patch of gleaming royal blue" + ], + "blue whiskered tanager": [ + "back: vibrant blue feathers", + "beak: strong, black, and pointed", + "belly: turquoise blue plumage", + "breast: bright blue chest feathers", + "crown: blue, with slightly darker cap", + "forehead: deep blue feathers, almost sapphire", + "eyes: small, black with a white circle surrounding", + "legs: gray and sturdy", + "wings: striking blue with black highlights", + "nape: brilliant sky-blue feathering", + "tail: elongated, sapphire blue with black tips", + "throat: rich blue, often brighter than surrounding plumage" + ], + "blue winged goose": [ + "back: sleek, blue-gray feathers", + "beak: short, stout, black tip", + "belly: whitish-grey, soft feathers", + "breast: pale blue plumage, rounded", + "crown: blue-gray feathers with slight crest", + "forehead: blue-gray, smooth feathers", + "eyes: dark, beady, surrounded by white rings", + "legs: orange, sturdy, webbed feet", + "wings: striking blue, elongated feathers", + "nape: blue-gray, flowing into back", + "tail: short, fan-shaped, blue-gray feathers", + "throat: whitish-grey, with a slight black marking" + ], + "blue winged kookaburra": [ + "back: vibrant blue feathers with white detailing", + "beak: large, charcoal-colored, and sturdy", + "belly: white with soft gray vertical stripes", + "breast: pale gray with subtle striations", + "crown: bright blue, mottled with black markings", + "forehead: white, leading into the crown", + "eyes: dark brown, encircled by blue feathers", + "legs: short, strong, and charcoal-colored", + "wings: striking blue with white patches on the flight feathers", + "nape: vivid blue fading to gray-blue on the neck", + "tail: long, dark blue with white-tipped feathers", + "throat: clean white, contrasting with other blue features" + ], + "blue winged laughingthrush": [ + "back: vibrant blue feathers, streaked with olive-green", + "beak: short, curved, dark grey", + "belly: lighter blue feathers, fading to white", + "breast: bright blue, soft plumage", + "crown: rich sapphire blue, smooth and rounded", + "forehead: blue feathers with slight green tinge", + "eyes: round, beady, dark brown or black", + "legs: slender, grey, well-scaled", + "wings: mixture of brilliant blue and green feathers", + "nape: striking blue hue, transitioning to green towards the back", + "tail: long feathers, bold bluish-green with darker blue tips", + "throat: vibrant blue, soft and smooth plumage" + ], + "blue winged leafbird": [ + "back: vibrant green overlapping feathers", + "beak: sharp, pointed black beak", + "belly: yellowish-green underbelly", + "breast: bright yellow chest feathers", + "crown: green and blue feathered head", + "forehead: bright blue markings above the eyes", + "eyes: small, piercing black eyes", + "legs: slender grey legs and feet", + "wings: blue edges with lush green feathers", + "nape: green feathers transitioning to blue", + "tail: elongated green and blue feathers", + "throat: brilliant yellow feathers contrasting the green" + ], + "blue winged macaw": [ + "back: vibrant blue feathers", + "beak: strong black hook", + "belly: soft white plumage", + "breast: bright blue plumage", + "crown: blue feathers, slight crest", + "forehead: light blue feathers", + "eyes: intelligent, piercing yellow", + "legs: sturdy, dark grey limbs", + "wings: stunning blue and yellow shades", + "nape: blue feathers meeting white", + "tail: elongated blue feathers", + "throat: white plumage accentuated" + ], + "blue winged minla": [ + "back: vibrant blue and black pattern", + "beak: short, dark gray", + "belly: pale yellow", + "breast: deep golden-yellow", + "crown: deep blue with fluffy crest", + "forehead: rich blue", + "eyes: black and beady, encircled by blue", + "legs: gray, thin and twig-like", + "wings: brilliant blue with black bars and white highlights", + "nape: electric blue, extending from crown and neck", + "tail: long, jet-black feathering with blue tips", + "throat: golden-yellow, blending with breast" + ], + "blue winged mountain tanager": [ + "back: vibrant blue feathers", + "beak: small, sharp, black beak", + "belly: soft, pale blue plumage", + "breast: bright blue feathers with white accents", + "crown: cobalt blue feathers covering the top of the head", + "forehead: striking blue feathers above eyes", + "eyes: round, dark, and alert", + "legs: slender black legs with strong perching toes", + "wings: rich blue with contrasting black and white patterns", + "nape: brilliant blue-feathered neck", + "tail: long, blue feathers with white banding", + "throat: bright blue feathers blending into the chest" + ], + "blue winged parrot": [ + "back: vibrant green feathers covering the upper body", + "beak: strong, curved, and sharp-edged", + "belly: light green with a yellowish tint", + "breast: bright green, blending into the belly color", + "crown: deep blue feathers on top of the head", + "forehead: vivid blue meeting the beak", + "eyes: round, dark, and expressive", + "legs: sturdy, gray with scaly texture", + "wings: bright blue with green edges, impressive span", + "nape: rich green feathers transitioning from crown", + "tail: long, green feathers with blue tips", + "throat: lime green feathers, lighter than breast" + ], + "blue winged pitta": [ + "back: vibrant green and blue feathers", + "beak: sturdy and black", + "belly: soft, light cream color", + "breast: bright orange with blue patches", + "crown: deep blue with green borders", + "forehead: vivid orange-red", + "eyes: dark and surrounded by blue feathers", + "legs: strong and lengthy, pale pink", + "wings: deep blue with green upperparts", + "nape: blue-green feathers, blending into back", + "tail: brilliant blue with white tips", + "throat: bold, yellow-orange hue" + ], + "blue winged racquet tail": [ + "back: vibrant green feathers", + "beak: sharp, black, and pointed", + "belly: light green plumage", + "breast: lime green and soft", + "crown: deep blue sheen", + "forehead: bright blue hue", + "eyes: small, black, and round", + "legs: slender and dark gray", + "wings: striking blue with green undertones", + "nape: green with a hint of blue", + "tail: elongated racket-shaped feathers in a mix of green and blue", + "throat: pale green accentuation" + ], + "bluethroat": [ + "back: vibrant blue with rusty orange patch", + "beak: small, thin, and pointed", + "belly: pale with grayish-white feathers", + "breast: striking blue with a distinctive orange and white center", + "crown: brownish-gray with fine streaks", + "forehead: bright blue with rust-colored patch", + "eyes: black and beady with a white eye-ring", + "legs: long, thin, and gray-brown", + "wings: brownish-gray with faint white bars", + "nape: brownish-gray, blending with the crown color", + "tail: brownish-gray with white outer feathers", + "throat: deep blue with a contrasting white border" + ], + "bluish flowerpiercer": [ + "back: vibrant blue feathers", + "beak: sharp, black, hook-shaped", + "belly: lighter blue plumage", + "breast: rich blue feathers", + "crown: dark blue head crest", + "forehead: bright blue patch", + "eyes: small, black, beady", + "legs: thin, black, wiry", + "wings: medium-length, blue with black flight feathers", + "nape: deep blue neck feathers", + "tail: blue feathers, long and pointed", + "throat: soft pale blue plumage" + ], + "bluish fronted jacamar": [ + "back: vibrant green feathers", + "beak: long, black, and pointy", + "belly: white, pale bluish tint", + "breast: rich blue plumage", + "crown: iridescent greenish-blue", + "forehead: shiny green cap", + "eyes: small, dark with white rings", + "legs: slender, dark grey", + "wings: green with blue-tinged edges", + "nape: green, blending with crown", + "tail: long, green with dark banding", + "throat: bluish-white, contrast to breast" + ], + "bluish gray saltator": [ + "back: sleek slate-blue feathers", + "beak: sharp, dark gray", + "belly: soft, pale blue-gray", + "breast: lighter bluish-gray plumage", + "crown: deep blue-gray crest", + "forehead: smooth, dusky blue-gray", + "eyes: bright, piercing black", + "legs: strong, dark gray", + "wings: long, blue-gray with black markings", + "nape: pale bluish-gray transition", + "tail: slender, dark gray-blue feathers", + "throat: vibrant, contrasting light blue" + ], + "bluish slate antshrike": [ + "back: dark bluish-gray feathers", + "beak: short, straight black", + "belly: pale grayish-blue", + "breast: bluish-gray plumage", + "crown: dark slate blue", + "forehead: lighter slate blue", + "eyes: deep black with white eye-ring", + "legs: long, black", + "wings: bluish-gray with black flight feathers", + "nape: blue-gray plumage", + "tail: long, black with blue outer feathers", + "throat: pale grayish-blue with lighter patch" + ], + "blunt winged warbler": [ + "back: olive-green with subtle streaks", + "beak: short, thin, and pointed", + "belly: creamy white with faint markings", + "breast: pale yellow with light, grayish streaks", + "crown: olive-brown with a narrow, yellow stripe", + "forehead: olive-brown, blending with the crown", + "eyes: dark brown with pale, thin eye-ring", + "legs: pale pinkish-gray, slender", + "wings: dark olive-brown with faint barring", + "nape: olive-brown, matching the crown", + "tail: olive-brown with faint notches", + "throat: pale yellow with subtle streaks" + ], + "blyth frogmouth": [ + "back: brownish-black feathers with lighter streaks", + "beak: wide and hooked, yellowish-gray", + "belly: creamy-white with dark barring", + "breast: gray-brown with dark streaks", + "crown: gray-brown with light streaks", + "forehead: light gray with faint spots", + "eyes: large and yellow", + "legs: short and feathered, grayish", + "wings: brownish-black with light spots", + "nape: gray-brown with faint streaks", + "tail: long, dark brown with white bands", + "throat: creamy-white with dark spots" + ], + "blyth hawk eagle": [ + "back: dark brown feathers with white spots", + "beak: strong, hooked, black tip, yellow base", + "belly: white with black barring", + "breast: white with black streaks", + "crown: dark brown feathers with a slight crest", + "forehead: white streaks on brown feathers", + "eyes: bright yellow with a black pupil", + "legs: strong, yellow, and feathered", + "wings: long, broad, dark brown with lighter stripes", + "nape: dark brown with white streaks", + "tail: long, barred black and white with a rounded tip", + "throat: white with thin black streaks" + ], + "blyth hornbill": [ + "back: dark black plumage", + "beak: large, curved, pale-yellowish hornbill", + "belly: white feathers with black barring", + "breast: off-white with black speckled plumage", + "crown: black feathers with a slight crest", + "forehead: black, smooth feathers", + "eyes: small, round, yellow-ringed", + "legs: sturdy gray-black legs and feet", + "wings: broad, black with white flight feathers", + "nape: black and well-feathered", + "tail: elongated, black with a white end band", + "throat: black feathers with a bare red gular pouch" + ], + "blyth kingfisher": [ + "back: vibrant blue and black plumage", + "beak: long, slender, and black", + "belly: white with a hint of blue", + "breast: light blue fading to white", + "crown: deep blue with a greenish sheen", + "forehead: bright blue with a metallic tinge", + "eyes: large and dark brown", + "legs: short and black with sharp claws", + "wings: electric blue with black markings", + "nape: iridescent blue-green feathers", + "tail: long, blue, and forked", + "throat: white to pale blue feathers" + ], + "blyth leaf warbler": [ + "back: olive-green hue with smooth feathers", + "beak: slender and sharp, dark above and pale below", + "belly: whitish with pale yellow tones", + "breast: light yellowish-green, slightly streaked", + "crown: yellowish-green with a darker central stripe", + "forehead: yellowish-green, merging with crown color", + "eyes: dark and round with white eye-ring", + "legs: pale pinkish-brown and slender", + "wings: olive-green with prominent yellow edges on flight feathers", + "nape: olive-green, connecting smoothly to back and crown", + "tail: olive-green with faint yellow edges on outer feathers", + "throat: pale whitish-yellow, less vibrant than breast" + ], + "blyth paradise flycatcher": [ + "back: vibrant blue and turquoise feathers", + "beak: sleek, sharp, black", + "belly: creamy white with a slight tint of blue", + "breast: bright white with subtle blue shades", + "crown: deep, shimmering blue", + "forehead: silky, bright blue", + "eyes: small, alert, black", + "legs: thin, black, and sturdy", + "wings: long, elegant, with a mix of blue and white feathers", + "nape: rich blue plumage", + "tail: streamer-like, elongated feathers in striking blue", + "throat: smooth white with hints of blue" + ], + "blyth pipit": [ + "back: streaked brown and buff feathers", + "beak: long, slender, and pale with a darker tip", + "belly: pale and finely streaked", + "breast: buff-colored with dark streaks", + "crown: brown with fine streaks and a pale central stripe", + "forehead: slightly darker brown with fine streaks", + "eyes: dark with white eye-ring", + "legs: pinkish-brown and long", + "wings: brown with pale wingbars and buff-edged feathers", + "nape: streaked brown with a buff tinge", + "tail: long and pointed, with brown feathers and white outer edges", + "throat: pale and streaked with brown" + ], + "blyth reed warbler": [ + "back: light brown, streaked pattern", + "beak: slender, pointed, and black", + "belly: soft beige-white", + "breast: pale brown with fine streaks", + "crown: brown, subtle striations", + "forehead: plain pale brown, unmarked", + "eyes: dark with prominent white eye-ring", + "legs: pale pinkish-brown", + "wings: light brown, well-defined wing bars", + "nape: mottled light brown", + "tail: long, pale brown, with some dark bars", + "throat: pale white with light brown streaks" + ], + "blyth rosefinch": [ + "back: olive-brown with paler streaks", + "beak: thick, conical, and pinkish-gray", + "belly: pale pinkish-brown", + "breast: rosy pink blending to brown", + "crown: grayish-brown with paler edges", + "forehead: light gray with pinkish tinge", + "eyes: dark with white eye-ring", + "legs: sturdy and flesh-colored", + "wings: brown with white wingbars", + "nape: olive-brown with a pinkish wash", + "tail: brown with white outer feathers", + "throat: rosy pink fading to light brown" + ], + "blyth swift": [ + "back: sleek, brownish-grey feathers", + "beak: thin, dark, and slightly curved", + "belly: pale, off-white feathers", + "breast: light brownish-grey plumage", + "crown: smooth, dusky grey feathers", + "forehead: subtly merging with crown, greyish hue", + "eyes: small, round, dark, and alert", + "legs: thin, long, and dark avian limbs", + "wings: long, slender, and pointed, with grey-brown feathers", + "nape: smooth, greyish-brown transition between head and back", + "tail: straight, prominent, and darkly-colored with a shallow fork", + "throat: soft, pale grey, contrasting with darker head color" + ], + "blyth tragopan": [ + "back: vibrant reddish-brown with black and white spots", + "beak: short, strong, curved, dark gray", + "belly: reddish-brown with white spots and blue-gray markings", + "breast: bright orange-red with white ocellated spots", + "crown: pale blue-gray and black, with a fleshy blue crest", + "forehead: rich orange-red, merging into the crest", + "eyes: large, dark brown, surrounded by a small ring of bare blue skin", + "legs: sturdy, feathered, reddish-orange with spur on the male", + "wings: medium length, reddish-brown with blue-gray and white ocellated patterns", + "nape: reddish-brown with black and white spots", + "tail: long, red-brown tail with black bands", + "throat: bright blue-gray, with inflatable red-orange wattles on the male" + ], + "boa nova tapaculo": [ + "back: grayish-brown plumage", + "beak: short, slightly curved", + "belly: white with gray-brown barring", + "breast: grayish-white with distinct barring", + "crown: dark gray with paler edges", + "forehead: gray-brown with subtle markings", + "eyes: small, black, and beady", + "legs: strong, dull yellow", + "wings: rounded, grayish-brown with white-tipped coverts", + "nape: slightly paler than the crown", + "tail: short, square, grayish-brown with faint barring", + "throat: white, unmarked" + ], + "boat billed flycatcher": [ + "back: olive-brown colored, sleek feathers", + "beak: broad, black and robust with a boat-shaped curve", + "belly: pale yellowish-white with light streaks", + "breast: grayish with faint white or yellowish streaks", + "crown: olive-brown with a hidden yellow crest", + "forehead: small, pale gray or olive-brown", + "eyes: dark brown, with a narrow white eye-ring", + "legs: grayish-black, slender and long", + "wings: olive-brown feathers with white-edged tips", + "nape: olive-brown and seamlessly transitioning from crown", + "tail: olive-brown with light feather fringes, fan-shaped", + "throat: pale gray with faint streaks or wash of white" + ], + "boat billed heron": [ + "back: blue-grey plumage", + "beak: broad and shovel-shaped", + "belly: light cream feathers", + "breast: pale grayish-white", + "crown: black with a slight crest", + "forehead: black, extending to eye area", + "eyes: large and yellow", + "legs: yellowish-green, long and slender", + "wings: blue-grey plumage, rounded", + "nape: black, blending into blue-grey", + "tail: short and pale blue", + "throat: white, contrasting with dark head" + ], + "boat billed tody tyrant": [ + "back: olive green and smooth", + "beak: wide, flat, resembling a boat hull", + "belly: white or light gray, soft feathers", + "breast: pale yellow, fluffy texture", + "crown: bright green with some blue shades", + "forehead: intense green fading to grayish highlights", + "eyes: dark brown, round and expressive", + "legs: grayish-blue, thin and strong", + "wings: rich green with blue edges and intermixed feathers", + "nape: olive green turning lighter near the head", + "tail: long, dark green feathers with reddish-brown tips", + "throat: light gray, smoothly transitioning to breast area" + ], + "bob tailed weaver": [ + "back: olive-green feathers", + "beak: short, conical, and pointed", + "belly: pale yellow underparts", + "breast: golden-yellow plumage", + "crown: black streaks on olive-green", + "forehead: prominent black markings", + "eyes: dark brown with white eye-ring", + "legs: short and sturdy, dark gray", + "wings: olive-green with black bars", + "nape: olive-green with black streaks", + "tail: square-shaped and short", + "throat: golden-yellow feathers" + ], + "bocage akalat": [ + "back: olive-brown with faint scalloping", + "beak: short, thin, and black", + "belly: whitish with brown streaks", + "breast: warm rufous-orange", + "crown: dark olive-brown", + "forehead: smooth olive-brown", + "eyes: small, round, and dark", + "legs: pale pinkish-grey", + "wings: olive-brown with rufous-orange edges", + "nape: olive-brown with slight streaking", + "tail: long, olive-brown with rufous-orange edges", + "throat: pale rufous-white with fine streaks" + ], + "bocage sunbird": [ + "back: iridescent green with a hint of blue", + "beak: long and slender, black color", + "belly: pale yellow with light streaks", + "breast: vibrant yellow, fading into the belly", + "crown: shiny green with hints of purple", + "forehead: iridescent green, extending to the eyes", + "eyes: small and black, encircled with green feathers", + "legs: thin and grayish-brown, with small claws", + "wings: muted green with purple and blue shades", + "nape: bright green, connecting the crown and back", + "tail: elongated, with shimmering green and blue feathers", + "throat: bright yellow, transitioning into the breast" + ], + "bocage weaver": [ + "back: olive-green with dark streaks", + "beak: strong, conical, and black", + "belly: pale yellow and slightly streaked", + "breast: yellow with dark streaks", + "crown: bright yellow with an orange tinge", + "forehead: deep golden-yellow", + "eyes: dark brown, partially hidden by black eye stripe", + "legs: thin, pale, and well-adapted for gripping branches", + "wings: olive-green with black feather edges", + "nape: yellow with dark streaks, blending into back", + "tail: long, dark, and graduated with white edges", + "throat: bright yellow with dramatic black bib extending to upper breast" + ], + "bogota rail": [ + "back: greenish-brown feathers", + "beak: short, straight, black", + "belly: pale gray with fine black stripes", + "breast: light gray", + "crown: olive-green feathers", + "forehead: bright yellow patch", + "eyes: dark with white eyering", + "legs: long, slender, and black", + "wings: greenish-brown with faint stripes", + "nape: olive-green with pale streaks", + "tail: long, straight, and greenish-brown", + "throat: white with fine black stripes" + ], + "b\u00f6hm bee eater": [ + "back: vibrant green feathers with a fine texture", + "beak: long, black, and slender, perfect for catching insects", + "belly: pale yellow with delicate streaks", + "breast: striking blue with hints of green, fading to the yellow belly", + "crown: vivid orange-red top with a gradient to green near the forehead", + "forehead: bright green, blending into the crown and eyes", + "eyes: large, round, and black, lined with fine blue feathers", + "legs: short, strong, and gray, ending in three toes", + "wings: elongated, narrow, green with hints of blue matching the rest of the body", + "nape: subtle transition from blue-green to the red-orange crown", + "tail: long, forked, and greenish-blue with black markings at the tip", + "throat: soft white feathers, contrasting the bright colors around it" + ], + "b\u00f6hm flycatcher": [ + "back: olive green with greyish-brown streaks", + "beak: black and slender, hooked tip", + "belly: pale yellow with faint streaks", + "breast: yellowish-olive with brown spots", + "crown: greyish-green with a diffused crest", + "forehead: greyish-white with fine streaks", + "eyes: dark brown with a white eyering", + "legs: pale pinkish-beige, slender and short", + "wings: dark brown, adorned with three white wing-bars", + "nape: greyish-green with faint streaks", + "tail: dark brown, forked with white outer feathers", + "throat: pale greyish-white with faint streaks" + ], + "bohol sunbird": [ + "back: vibrant green with iridescent sheen", + "beak: slender, curved, and black", + "belly: yellowish-gold with fine streaks", + "breast: bright yellow and orange", + "crown: metallic green with purple highlights", + "forehead: shiny green transitioning to blue", + "eyes: small, round, dark brown", + "legs: thin, grayish-black", + "wings: elongated, green with blue tinges", + "nape: iridescent green fading to blue", + "tail: long, forked, and dark green", + "throat: bright yellow and orange" + ], + "bokmakierie": [ + "back: olive-green with black streaks", + "beak: sturdy, hooked, and blackish", + "belly: yellowish with a grey tint", + "breast: vibrant yellow with black edges", + "crown: olive-green with a narrow black band", + "forehead: greenish-yellow", + "eyes: dark brown with a white eye-ring", + "legs: long and greyish", + "wings: olive-green and black with white flashes", + "nape: olive-green with a black band", + "tail: lengthy, black with white outer feathers", + "throat: bright yellow with a black strip" + ], + "bold striped tit babbler": [ + "back: light brown, streaked with darker shades", + "beak: short, thin, curved black beak", + "belly: creamy white, faint brown streaks", + "breast: off-white, light brown striations", + "crown: gray-brown with light white striping", + "forehead: buff-white and gently striated", + "eyes: black, bead-like, encircled by pale white", + "legs: slim, grayish-brown, agile", + "wings: light brown, patterned with grayish-white bars", + "nape: gray-brown, white streaks fading to light brown", + "tail: long, brownish-gray, white-tipped and striped", + "throat: creamy white, subtle light-brown spotting" + ], + "bolivian antpitta": [ + "back: olive-brown feathers covering the bird's upper body", + "beak: short, slightly curved black beak for plucking insects", + "belly: creamy white feathers with subtle brownish spots", + "breast: gradient of light brown to white, speckled with darker spots", + "crown: dark brown head feathers with an indistinct crest", + "forehead: covered by the same dark brown feathers as the crown", + "eyes: small, dark, and alert, surrounded by a white eyering", + "legs: long, sturdy, and light pinkish-grey designed for hopping", + "wings: rounded with olive-brown plumage and faint barring", + "nape: continuation of the olive-brown feathers from the back", + "tail: short and fan-shaped with brown and black barring", + "throat: white feathers, bordered by a mottled brown breast" + ], + "bolivian blackbird": [ + "back: glossy black feathers with hints of violet", + "beak: sharp and conical, dark shades of grey", + "belly: soft black plumage transitioning to lighter grey", + "breast: sleek black feathers with iridescent sheen", + "crown: smooth black feathers on top of the head", + "forehead: black, seamlessly blending with the surrounding feathers", + "eyes: dark and beady, surrounded by thin black feathers", + "legs: greyish-black, long and slender", + "wings: flexible black feathers with distinct purplish-blue shine", + "nape: black feathers connecting the head to the back", + "tail: long black feathers with subtle violet highlights", + "throat: smoother black plumage in the lower part of the head" + ], + "bolivian brushfinch": [ + "back: olive-green feathers covering upper body", + "beak: short, conical, and dark gray", + "belly: light gray, with some pale yellow tones", + "breast: grayish with a hint of yellowish-olive", + "crown: dark gray, with distinct black stripes", + "forehead: lighter gray, transitioning to dark gray at the crown", + "eyes: sharp, round, and dark brown", + "legs: sturdy, strong, and dark gray", + "wings: olive-brown, with black streaks and white markings", + "nape: grayish-olive feathers with light striping", + "tail: olive-brown, with white outer feathers and black markings", + "throat: pale gray, lighter than surrounding areas" + ], + "bolivian earthcreeper": [ + "back: brownish-grey feathers", + "beak: curved and slender", + "belly: pale beige with fine dark streaks", + "breast: rufous-buff with dark streaks", + "crown: dark brown with white streaks", + "forehead: brown with fine white streaks", + "eyes: small and dark", + "legs: sturdy and pale grey", + "wings: brownish-grey with buff feather edges", + "nape: dark brown with white streaks", + "tail: long and slim, dusky brown", + "throat: pale beige with fine dark streaks" + ], + "bolivian recurvebill": [ + "back: olive-green with light streaks", + "beak: long, curved, blackish", + "belly: yellowish-white with faint streaks", + "breast: whitish-yellow with light brown streaks", + "crown: olive-brown with streaks", + "forehead: olive-brown, blending with the crown", + "eyes: dark brown with grayish eye-ring", + "legs: pale grayish-black", + "wings: olive-brown with slightly paler wingbars", + "nape: olive-brown, matching the crown", + "tail: olive-brown with lighter tips", + "throat: whitish-yellow with light streaks" + ], + "bolivian slaty antshrike": [ + "back: slate gray with a slight sheen", + "beak: black, sharp and straight", + "belly: light grayish-brown", + "breast: slate gray", + "crown: dark gray, distinctive crest", + "forehead: slightly lighter gray than crown", + "eyes: small, dark with pale eye-ring", + "legs: grayish-brown, strong", + "wings: dark gray with faint barring", + "nape: slate gray", + "tail: long, gray with white tips", + "throat: lighter gray than breast" + ], + "bolivian spinetail": [ + "back: olive-brown with slight streaks", + "beak: short, stout, and grayish-black", + "belly: white with pale, brownish flanks", + "breast: white with grayish-brown streaks", + "crown: rufous-chestnut with a spiky crest", + "forehead: reddish-brown, slightly paler than crown", + "eyes: dark brown with an indistinct white eye-ring", + "legs: long, grayish, and slender", + "wings: brownish-olive with faint bars and edgings", + "nape: rufous-chestnut, blending into back coloration", + "tail: dark brown with rufous-chestnut edgings and white tips", + "throat: white, sometimes with a tinge of buff" + ], + "bolivian tapaculo": [ + "back: dark brown feathers with black streaks", + "beak: short, stout, and black", + "belly: dark gray with a hint of brown", + "breast: grayish tones with subtle brown-tinted spots", + "crown: dark brown and slightly rounded", + "forehead: brown with narrow black streaks", + "eyes: small, black, and well-spaced", + "legs: sturdy, with black or dark gray scales", + "wings: relatively short, brown with faint black barring", + "nape: brown with black streaks and spots", + "tail: short and squared, dark brown with muted black bands", + "throat: gray with sparse light brown markings" + ], + "bolivian tyrannulet": [ + "back: olive-green feathers", + "beak: short, pointed, and black", + "belly: pale yellow underparts", + "breast: soft yellow plumage", + "crown: grayish-green with slight crest", + "forehead: light grayish-green", + "eyes: dark brown with white eye-ring", + "legs: thin and dark gray", + "wings: olive-green with faint barring", + "nape: grayish-green feathers", + "tail: long and square-tipped, olive-green", + "throat: soft yellow plumage" + ], + "bolivian warbling finch": [ + "back: olive-brown with fine streaks", + "beak: short, sharp, and silvery-gray", + "belly: soft yellow with subtle streaks", + "breast: pale yellow with light streaks", + "crown: olive-brown with a hint of yellow", + "forehead: slightly paler than the crown", + "eyes: small, round, and black", + "legs: thin and grayish-blue", + "wings: olive-brown with faint yellow edges", + "nape: olive-brown blending with the crown", + "tail: long and olive-brown with slight yellow tips", + "throat: pale yellow with fine brown streaks" + ], + "bolle pigeon": [ + "back: light bluish-grey feathers with a slight sheen", + "beak: short and straight, light-colored with a dark tip", + "belly: pale grey with a slight pink tinge", + "breast: soft, rosy pink feathers transitioning to grey", + "crown: smooth, bluish-grey feathers blending into the neck", + "forehead: lighter grey than the crown, above the beak", + "eyes: bright, round eyes with a dark pupil and light-colored ring", + "legs: sturdy, red to pinkish-red with sharp claws", + "wings: bluish-grey feathers with dark primary feathers and white tips", + "nape: where bluish-grey crown feathers meet the paler grey neck", + "tail: long, dark bluish-grey feathers with a black band and white tips", + "throat: light grey with a subtle pink hue, starting below beak" + ], + "bonaparte nightjar": [ + "back: soft grayish-brown feathers with black speckles", + "beak: short, black, and slightly curved downward", + "belly: pale gray with subtle black markings", + "breast: mottled gray-brown with black speckles", + "crown: gray-brown with prominent black central stripe", + "forehead: pale gray with fine black lines", + "eyes: large, dark brown, and wide-set", + "legs: short, pinkish-gray with small black claws", + "wings: gray-brown with intricate black patterning", + "nape: mottled gray and brown with black speckles", + "tail: long and fan-shaped, gray-brown with black bars", + "throat: pale gray with fine black streaks" + ], + "bonaparte parakeet": [ + "back: vibrant green feathers", + "beak: small, hooked, yellowish-brown", + "belly: pale green with subtle markings", + "breast: vibrant green, blending to the belly", + "crown: bright green, transitioning to the nape", + "forehead: striking green, meeting the eyes", + "eyes: dark, surrounded by green feathers", + "legs: slim, grayish-blue, with zygodactyl feet", + "wings: green with blue and black flight feathers", + "nape: rich green, continuing from the crown", + "tail: long, green with blue and black markings", + "throat: yellowish-green, blending with the breast" + ], + "bonelli eagle": [ + "back: dark brown feathers with white fringes", + "beak: strong, hooked black beak", + "belly: creamy-white feathers with dark speckles", + "breast: white with brown streaks and spots", + "crown: dark brown feathers with white streaks", + "forehead: creamy-white with dark brown streaks", + "eyes: piercing yellow eyes", + "legs: yellow, featherless legs with strong talons", + "wings: dark brown with white patches and long, swept-back shape", + "nape: dark brown feathers with white streaks", + "tail: brown feathers with white barring and broad dark terminal band", + "throat: creamy-white feathers with brown speckles" + ], + "bonin petrel": [ + "back: light gray feathers cover the bird's back", + "beak: small, pointed black beak for catching insects", + "belly: white feathers and slender body", + "breast: soft, white feathers across the chest", + "crown: smooth, light gray feathers atop the head", + "forehead: light gray feathers at the front of the head", + "eyes: small, dark eyes for good night vision", + "legs: short, black legs with webbed feet for swimming", + "wings: long, slender wings for gliding over the ocean", + "nape: light gray feathers at the back of the head and neck", + "tail: short, slightly forked tail for steering in flight", + "throat: white feathers continuing down from the chin" + ], + "bonin white eye": [ + "back: olive-green upper body", + "beak: small, dark gray", + "belly: pale gray-white underparts", + "breast: light grayish-white", + "crown: greenish-yellow head", + "forehead: bright yellow stripe", + "eyes: distinct white eyering", + "legs: grayish-brown", + "wings: green-tinged dark feathers", + "nape: greenish-yellow", + "tail: grayish-brown with black tips", + "throat: light grayish-white" + ], + "booted eagle": [ + "back: brownish-grey feathers with white speckles", + "beak: sharp, hooked, blackish-grey", + "belly: white or light-colored with dark streaks", + "breast: creamy brown with fine dark streaks", + "crown: dark brown, feathered head", + "forehead: white or light-colored with contrasting dark streaks", + "eyes: piercing yellow, surrounded by dark patch", + "legs: strong, yellow with sharp talons", + "wings: long, dark feathers with light patches on underneath", + "nape: brownish-grey feathers transitioning to lighter shades", + "tail: broad, dark feathers with pale bars", + "throat: white or light-colored with fine dark streaks" + ], + "booted warbler": [ + "back: light brown with subtle streaks", + "beak: thin and pointy", + "belly: creamy white", + "breast: pale brown, lightly streaked", + "crown: warm brown with faint markings", + "forehead: smooth light brown", + "eyes: small and dark", + "legs: thin and pale", + "wings: brown with faint feather patterns", + "nape: light brown with soft shading", + "tail: long and narrow, brownish with faint markings", + "throat: white with delicate streaks" + ], + "boran cisticola": [ + "back: brownish-grey with subtle streaks", + "beak: short and conical, dark-colored", + "belly: pale brownish-white with fine streaks", + "breast: buff-colored with dark streaks", + "crown: rusty-brown with a slightly raised crest", + "forehead: pale brown merging into the crown", + "eyes: small and dark, encircled by a faint eye-ring", + "legs: slender and light-colored", + "wings: brown with rufous fringes on flight feathers", + "nape: brownish-grey with faint streaks", + "tail: short and rufous-edged, often fan-shaped", + "throat: white or buffy, with fine dark streaks" + ], + "boreal owl": [ + "back: subtle brown plumage with white speckles", + "beak: sharp, curved, light-yellow beak", + "belly: white, lightly streaked with brown horizontal lines", + "breast: pale with darker brown vertical streaks", + "crown: rounded head with brown and white speckled feathers", + "forehead: white, blending seamlessly with the crown and eyes", + "eyes: large, piercing yellow eyes surrounded by distinct white \"goggles", + "legs: sturdy, feathered, and light brown", + "wings: brown with white barring and rounded edges", + "nape: speckled brown and white pattern continuing from the crown", + "tail: brown with thin white bars and a squared-off end", + "throat: white with light brown streaks" + ], + "bornean banded pitta": [ + "back: vibrant blue and green feathers", + "beak: short, strong, yellow-orange", + "belly: orange and black bands", + "breast: bright orange feathers", + "crown: deep blue with light blue streak", + "forehead: light blue plumage", + "eyes: dark with white eye rings", + "legs: strong, grey-brown", + "wings: blue-green with black bars", + "nape: rich blue and green feathers", + "tail: short, bright blue with black tips", + "throat: vivid orange color" + ], + "bornean barbet": [ + "back: vibrant green feathers", + "beak: thick and short, ivory-white color", + "belly: pale yellow with blue streaks", + "breast: vivid blue with streaks of green", + "crown: red with black markings", + "forehead: deep-blue patch", + "eyes: black with white outline", + "legs: grey with strong, zygodactyl toes", + "wings: blend of green and blue feathers", + "nape: blue with green streaks", + "tail: short, green with subtle blue markings", + "throat: white with turquoise-blue streaks" + ], + "bornean blue flycatcher": [ + "back: bluish-grey feathers", + "beak: small, thin, black", + "belly: pale blue underside", + "breast: light blue plumage", + "crown: bright blue with slight crest", + "forehead: vibrant blue feathers", + "eyes: round, dark, and small", + "legs: black and slim", + "wings: blue with a white patch", + "nape: bluish-grey feathers", + "tail: long, blue with white tips", + "throat: light blue covering" + ], + "bornean bulbul": [ + "back: olive-brown feathers", + "beak: short and stout, pale yellow", + "belly: pale yellowish-white", + "breast: pale cream with light streaks", + "crown: narrow black crest on the head", + "forehead: dark reddish-brown", + "eyes: dark with white eye-ring", + "legs: grayish-brown and slender", + "wings: olive-brown with slight greenish tinge", + "nape: olive-yellow with light streaks", + "tail: long and olive-brown with slightly paler tips", + "throat: pale cream color" + ], + "bornean crested fireback": [ + "back: metallic greenish-black plumage", + "beak: short, strong, and whitish-gray", + "belly: white or cream underside", + "breast: golden-orange feathers", + "crown: dark blue-black with a crest", + "forehead: black plumage meeting the crest", + "eyes: small, round, and dark brown or black", + "legs: long, powerful, and light gray", + "wings: blackish-brown with iridescent blue tips", + "nape: blue and black with elongated feathers", + "tail: long and wide with metallic blue feathers and a white tip", + "throat: golden-yellow with fine black streaks" + ], + "bornean crestless fireback": [ + "back: dark grey feathers with a subtle green sheen", + "beak: short, stout, and pale grey", + "belly: dull black with fine white speckles", + "breast: light grey with white speckles", + "crown: smooth, slate-grey feathers", + "forehead: pale grey with a slight crest", + "eyes: dark brown, encircled by thin skin of light blue", + "legs: long, slim, and yellowish-orange", + "wings: dark grey with white-tipped covert feathers", + "nape: slate grey with thin white streaks", + "tail: graduated, black, and fan-shaped", + "throat: light grey, speckled with white" + ], + "bornean forktail": [ + "back: dark blue-grey feathers", + "beak: short, black, and pointed", + "belly: off-white with black barring", + "breast: light gray with black streaks", + "crown: dark blue-grey, flat head", + "forehead: white streak, contrasting with dark crown", + "eyes: small, black, and bright", + "legs: orange with long, slender claws", + "wings: dark blue-grey with thin white bars", + "nape: white streak extending from crown to throat", + "tail: long, deeply forked, blue-grey with white tips", + "throat: white, bordered by black lateral stripe" + ], + "bornean frogmouth": [ + "back: mottled brown plumage with lighter spots", + "beak: wide, hooked, yellowish-grey", + "belly: dull white to grey with brown streaks", + "breast: greyish-brown with pale markings", + "crown: rounded, dark brown with lighter streaks", + "forehead: greyish-brown, blending into the crown", + "eyes: large, yellow, forward-facing", + "legs: short, feathered, with strong toes", + "wings: mottled brown, long, and broad", + "nape: brown with lighter streaks, blending into back", + "tail: long, broad, with brown and beige barring", + "throat: pale greyish-white with brown streaks" + ], + "bornean green magpie": [ + "back: vibrant green feathering", + "beak: black, stout, and curved", + "belly: bright green hue, slightly paler", + "breast: vivid green plumage, soft texture", + "crown: brilliant green crest, prominent", + "forehead: sleek green, leading into crest", + "eyes: dark with white circle outline, alert", + "legs: strong, black, swift movement", + "wings: striking green, ample for flight", + "nape: rich green-feathered, connecting head to body", + "tail: long, green feathers, fan-like flair", + "throat: lighter green, smooth transitioning to breast" + ], + "bornean ground cuckoo": [ + "back: dark green and black feathered", + "beak: long and curved, pale blue-gray", + "belly: black and rufous striped plumage", + "breast: rich rusty-brown with streaks", + "crown: black with bright blue eye-ring", + "forehead: black feathered with green sheen", + "eyes: dark brown and round", + "legs: long and strong, pale blue-gray", + "wings: large and rounded, dark green with rufous barring", + "nape: black and green feathers", + "tail: long and broad, dark green with rufous barring", + "throat: rich rusty-brown with streaks" + ], + "bornean peacock pheasant": [ + "back: dark green iridescent feathers with blackish edges", + "beak: grayish-black, short and sharp", + "belly: dark green with iridescent blue spots", + "breast: dark green and glossy with metallic blue crescent-shaped markings", + "crown: glossy black with slight green iridescence", + "forehead: dark blackish-green with shiny feathers", + "eyes: silvery-white with grayish-black outlines", + "legs: gray with spurs, strong and feathered", + "wings: dark green iridescent with blue and purple patches and elaborate elongated feathers", + "nape: glossy black with a slight metallic green sheen", + "tail: long and iridescent green-blue with eye-like markings", + "throat: dark metallic green with blue shimmer" + ], + "bornean shortwing": [ + "back: deep blue feathered upper body", + "beak: small, sharp black beak", + "belly: light greyish-white underside", + "breast: pale grey feathered chest", + "crown: deep blue feathered head", + "forehead: vibrant blue feathers above eyes", + "eyes: small, round with black pupils", + "legs: slender, grey-purple legs", + "wings: short, rounded deep blue feathers", + "nape: blue colored feathers connecting head and back", + "tail: short, square deep blue feathers", + "throat: greyish-white feathered area below beak" + ], + "bornean spiderhunter": [ + "back: olive-yellow with grayish tinges", + "beak: long and curved, blackish hue", + "belly: pale yellow with grayish streaks", + "breast: gray-yellow with faint streaks", + "crown: olive-yellow with grayish tones", + "forehead: bright yellow-green", + "eyes: dark brown, encircled by white eye-ring", + "legs: pale pinkish-gray, strong and slender", + "wings: olive-green with darker tips", + "nape: olive-yellow, blending with the back", + "tail: long and dark, with pale edges and white tips", + "throat: lighter gray-yellow, fading to gray" + ], + "bornean stubtail": [ + "back: olive-brown feathers", + "beak: short and sturdy", + "belly: pale yellowish-white", + "breast: light brown with faint streaks", + "crown: dark brown and slightly ruffled", + "forehead: olive-brown plumage", + "eyes: small, black, and alert", + "legs: short and light pink", + "wings: rounded with barred pattern", + "nape: olive-brown with faint streaking", + "tail: short and stubby", + "throat: lighter shade of brown with faint streaks" + ], + "bornean swiftlet": [ + "back: sleek, dark-brown feathers", + "beak: short, flattened, dark-grey", + "belly: slightly paler brown", + "breast: dark chestnut-brown", + "crown: glossy dark-brown", + "forehead: light chestnut-brown", + "eyes: small, black, alert", + "legs: short, dark grey", + "wings: long, slender, and tapered", + "nape: dark chestnut-brown", + "tail: short, square-cut, dark brown feathers", + "throat: light chestnut-brown" + ], + "bornean treepie": [ + "back: olive-brown feathers", + "beak: short and curved, black", + "belly: light grey with white undertail coverts", + "breast: greyish-white", + "crown: black head with a slight crest", + "forehead: black feathers blending into the crown", + "eyes: dark and beady with pale blue eye rings", + "legs: dark grey with strong, curved claws", + "wings: olive-brown with white patches and black edges", + "nape: black merging into brown outline on neck", + "tail: long and black with white tips and outer feathers", + "throat: greyish-white, connecting to breast" + ], + "bornean whistler": [ + "back: greenish-olive colored", + "beak: short, curved, and grayish", + "belly: pale yellow hue", + "breast: greenish-yellow gradient", + "crown: olive-green with slight crest", + "forehead: olive-green blending into crown", + "eyes: black with white eye ring", + "legs: sturdy, grayish-brown", + "wings: greenish-olive with faint yellow banding", + "nape: olive-green transitioning from crown", + "tail: greenish-olive with some yellow tipping", + "throat: pale yellow contrasting the breast" + ], + "bornean whistling thrush": [ + "back: deep blue with glossy feathers", + "beak: strong, straight, blackish-brown", + "belly: dark blue with subtle plumage", + "breast: rich cobalt blue, slightly lighter than the belly", + "crown: deep blue, smooth and sleek", + "forehead: glossy dark blue, blending with the crown", + "eyes: dark and beady, framed by blue feathers", + "legs: strong, grayish-brown, with scaly texture", + "wings: deep blue with elongated flight feathers", + "nape: slightly lighter blue, smooth transition from the crown", + "tail: dark blue with broad feathers and slight fork", + "throat: vivid cobalt blue, contrasting with the breast" + ], + "bornean wren babbler": [ + "back: olive-brown feathers with subtle grey streaks", + "beak: short, curved, and greyish-black", + "belly: buff-colored with some brownish spots", + "breast: pale grey with light brown streaks", + "crown: dark grey to black with slight flecks of white", + "forehead: slightly paler grey than crown", + "eyes: dark brown with thin white eye-ring", + "legs: sturdy and pinkish-grey", + "wings: olive-brown with faint grey streaks", + "nape: greyish-brown with lighter streaks", + "tail: short, rounded, with brown and greyish feathers", + "throat: pale grey with light brown streaks" + ], + "botha lark": [ + "back: light brown with streaks", + "beak: thin and pointed", + "belly: off-white with fine streaks", + "breast: buff-colored, speckled", + "crown: light brown, slightly crested", + "forehead: marked pale brown", + "eyes: tiny, dark, and alert", + "legs: slender, pinkish-brown", + "wings: brown with white margins", + "nape: pale brown, streaked", + "tail: brown, forked or edged with white", + "throat: cream-colored with fine streaks" + ], + "botteri sparrow": [ + "back: olive-brown with faint streaks", + "beak: short, conical, pale yellowish", + "belly: pale buffy-white, unstreaked", + "breast: buffy-brown with fine streaks", + "crown: rufous brown with a narrow, paler median stripe", + "forehead: rufous-brown merging into crown", + "eyes: dark brown, large and expressive", + "legs: pale pinkish-brown, slender", + "wings: brownish-gray with rufous edges on feathers", + "nape: olive-brown, continuous with back", + "tail: rufous-brown, slightly notched, with white outer tail feathers", + "throat: whitish with a buffy tinge, faintly streaked" + ], + "boucard wren": [ + "back: olive-brown with darker streaks", + "beak: slightly curved, dark gray", + "belly: dull white with brown markings", + "breast: grayish-white with dark streaks", + "crown: dark gray with white streaks", + "forehead: light gray, blending into the crown", + "eyes: dark brown with white eye ring", + "legs: dark gray, sturdy", + "wings: brownish-gray with faint markings", + "nape: streaked gray and white", + "tail: long, dark brown with faint barring", + "throat: pale gray with light streaks" + ], + "bougainville crow": [ + "back: sleek black feathers", + "beak: strong, sharp, black hooked beak", + "belly: lighter grey undertone feathers", + "breast: shiny pitch black plumage", + "crown: smooth black feathered crest", + "forehead: smooth transition to beak", + "eyes: piercing, intelligent gaze", + "legs: sturdy, clawed black feet", + "wings: broad, strong, black", + "nape: dark, feathered neckline", + "tail: long, black elegant feathers", + "throat: slightly lighter grey feathers" + ], + "bougainville honeyeater": [ + "back: vibrant olive-green feathers", + "beak: long, slender, and slightly curved", + "belly: pale yellow with fine dark streaks", + "breast: bright yellow with distinct black markings", + "crown: golden-yellow feathers", + "forehead: golden-yellow with prominent black streaks", + "eyes: small, dark, and expressive", + "legs: slender and grayish-brown", + "wings: olive-green with black and yellow accents", + "nape: vibrant olive-green", + "tail: long, tapered, and olive-green with black banding", + "throat: bright yellow with black streaks" + ], + "bougainville hooded whistler": [ + "back: vibrant green with faint yellow streaks", + "beak: slim, slightly curved, dark grey", + "belly: soft yellow with subtle green highlights", + "breast: rich golden-yellow, blending into the belly", + "crown: bright green with a swoop of blue", + "forehead: vivid green, bordering the crown", + "eyes: dark, circular, surrounded by a thin white ring", + "legs: sturdy, dark grey, slightly feathered", + "wings: bright green with flashes of blue and yellow", + "nape: green with hints of yellow, transitioning to the crown", + "tail: long, vibrant green feathers with thin yellow edges", + "throat: gold-yellow, blending into the breast" + ], + "bougainville monarch": [ + "back: vibrant blue upper feathers", + "beak: pointed, black beak", + "belly: light blue and white blend", + "breast: bright blue plumage", + "crown: iridescent blue-black head", + "forehead: shiny blue-black feathers", + "eyes: round, dark eyes", + "legs: thin, black legs", + "wings: blue to black gradient, elongated tips", + "nape: blue-black continuation of crown", + "tail: black, long and forked", + "throat: white to light blue-feathered" + ], + "boulder chat": [ + "back: dark slate gray with a hint of brown", + "beak: strong, black, and conical in shape", + "belly: pale grayish-brown, lightly streaked", + "breast: brownish gray, slightly darker than belly", + "crown: dark grayish-brown with a slight crest", + "forehead: smooth, dark grayish-brown", + "eyes: dark brown with pale gray eye-rings", + "legs: long, strong, and black", + "wings: dark brown with slight white wing-bars", + "nape: dark gray-brown, continuous with crown", + "tail: dark brown, slightly forked with white tips", + "throat: pale gray-brown, similar to the belly" + ], + "boulder finch": [ + "back: grayish-brown with feathered texture", + "beak: short, stout, and conical in shape", + "belly: light, creamy-white underbelly", + "breast: grayish-white with subtle streaks", + "crown: dark gray plumage with feathered detail", + "forehead: grayish-black markings blending into the crown", + "eyes: small, dark, and beady with a white eye-ring", + "legs: short, sturdy, and pinkish-brown", + "wings: brownish-gray with dark feather markings", + "nape: pale gray with feathered texture", + "tail: short, fan-shaped, with dark gray feathers", + "throat: light grayish-white with small streaks" + ], + "boulton batis": [ + "back: olive-grey and patterned", + "beak: small, thin, and black", + "belly: buff-white with some streaks", + "breast: pale grey and slightly spotted", + "crown: males have black crown, females have grey", + "forehead: greyish-white in males, grey in females", + "eyes: large and deep-set, surrounded by a pale-ring", + "legs: slender and pale orange", + "wings: long, blackish-brown with white spots", + "nape: grey, streaked with darker feathers", + "tail: blackish with white outer feathers", + "throat: white with subtle grey markings" + ], + "bounty islands shag": [ + "back: dark, glossy feathers", + "beak: long, slender, hooked tip", + "belly: white, soft plumage", + "breast: bluish-black, dense feathers", + "crown: sleek, black feathers", + "forehead: sharp, angular slope", + "eyes: bright, piercing yellow", + "legs: sturdy, pinkish-gray", + "wings: wide, strong, black feathers", + "nape: smooth, dark plumage", + "tail: long, fan-shaped, black feathers", + "throat: white, narrow stripe" + ], + "bourke parrot": [ + "back: shades of pink and brown with soft feathers", + "beak: small, beige hooked beak, perfect for seeds", + "belly: light pink feathers with a touch of blues and browns", + "breast: soft, pastel pink and salmon-colored feathers", + "crown: light pink feathers accented with pale blue", + "forehead: soft pink feathers transitioning to light blue", + "eyes: round, black bead-like, expressive eyes", + "legs: slender, beige legs with sharp claws for perching", + "wings: folded, brownish-pink feathers with hints of blue", + "nape: pale pink feathers merging with the shades on the back", + "tail: long, central tail feathers brown with blue tips", + "throat: delicate pink feathers contrasting with the surrounding colors" + ], + "bower shrikethrush": [ + "back: olive-brown with faint streaks", + "beak: short and hooked, gray-black", + "belly: creamy-white with brown spots", + "breast: grayish-brown with faint streaks", + "crown: olive-brown with faint streaks", + "forehead: olive-brown with faint streaks", + "eyes: round and dark, with white eye-ring", + "legs: long and slender, gray-black", + "wings: olive-brown with white wingbars", + "nape: olive-brown with faint streaks", + "tail: olive-brown with white outer tips", + "throat: grayish-brown with faint streaks" + ], + "boyd shearwater": [ + "back: grayish-blue, streamlined body", + "beak: hooked, sharp, yellow-tinted", + "belly: pale, white underbelly", + "breast: white, smooth feathers", + "crown: dark gray, distinct plumage", + "forehead: grayish-blue, continuous with crown", + "eyes: bright, black and prominent", + "legs: pinkish, webbed feet for swimming", + "wings: elongated, dark gray, designed for gliding", + "nape: grayish-blue, connects with the crown", + "tail: forked, gray feathers for steering", + "throat: white, slender, elegant" + ], + "boyer cuckooshrike": [ + "back: olive-green with slight dark streaks", + "beak: black, hooked and stout", + "belly: pale grayish-cream", + "breast: light gray with dark streaks", + "crown: dark gray with a subtle crest", + "forehead: lighter gray than crown", + "eyes: black with pale eye-ring", + "legs: dark gray, slender", + "wings: olive-green with rufous patch, blackish flight feathers", + "nape: gray with faint streaks", + "tail: long and graduated, black with white tips", + "throat: pale gray with blackish streaks" + ], + "bradfield hornbill": [ + "back: dark greenish-black with a glossy sheen", + "beak: long, curved, yellow and red casque", + "belly: pale white-feathered underside", + "breast: snowy white feathers", + "crown: black with a purplish-blue sheen", + "forehead: red and yellow, slightly curved", + "eyes: deep, dark brown with a blue eyering", + "legs: sturdy, grayish-blue", + "wings: black, long, and broad with a white band", + "nape: purplish-blue sheen blending with back feathers", + "tail: elongated black feathers, tipped with white", + "throat: white, extending into the breast area" + ], + "bradfield swift": [ + "back: sleek dark-brown plumage", + "beak: short, black, and slightly hooked", + "belly: pale grayish-white underparts", + "breast: white with a hint of brown", + "crown: dark brown, contrasting with the face", + "forehead: white or pale brown band", + "eyes: small, round, dark-colored", + "legs: short, stout, feathered with sharp claws", + "wings: long, slender, and distinctively curved", + "nape: dark brown, matching the back", + "tail: slim, forked with white outer feathers", + "throat: white or pale brown, blending with the breast" + ], + "brahminy kite": [ + "back: reddish-brown feathers with a slight sheen", + "beak: sharp and curved, pale yellow with a black tip", + "belly: contrasting white plumage", + "breast: white feathers with a slight golden hue", + "crown: deep reddish-brown feathers", + "forehead: lighter reddish-brown plumage", + "eyes: piercing yellow with black pupils", + "legs: strong, yellow-orange with dark talons", + "wings: long and broad, reddish-brown with black flight feathers", + "nape: reddish-brown, transitioning to white on the lower neck", + "tail: short, fan-shaped with a white base and a broad black band", + "throat: white feathers with a golden tinge" + ], + "brahminy starling": [ + "back: pale grey, slightly brownish", + "beak: bright yellow, stout and pointed", + "belly: off-white, smooth texture", + "breast: light orange, faint streaks", + "crown: black, crested feathers", + "forehead: black, smooth curve", + "eyes: dark brown, round and alert", + "legs: yellow, strong and slender", + "wings: pale grey, black primary feathers", + "nape: pale grey, slight brownish tinge", + "tail: light grey, fan-shaped, black tips", + "throat: pale orange, soft and smooth" + ], + "brambling": [ + "back: black and orange streaks", + "beak: small and stubby, pale yellow", + "belly: white with brown speckles", + "breast: orange-red with dark speckles", + "crown: black with white stripes", + "forehead: black, extending to eye areas", + "eyes: black with white eye-ring", + "legs: brownish-gray and slender", + "wings: dark with white and yellow edges", + "nape: black with white striping", + "tail: dark with white outer feathers", + "throat: black, contrasting with breast color" + ], + "bran colored flycatcher": [ + "back: reddish-brown, streaked plumage", + "beak: short, black, slightly hooked", + "belly: pale, creamy white", + "breast: light brown, slightly speckled", + "crown: reddish-brown, smooth feathers", + "forehead: light brown, transitioning to crown", + "eyes: small, dark, with white eye-ring", + "legs: thin, black, slightly feathered", + "wings: reddish-brown, with white wing-bars", + "nape: light brown, blending with crown", + "tail: reddish-brown, forked, with white edges", + "throat: pale, creamy white with light speckles" + ], + "brasilia tapaculo": [ + "back: dark gray slate colored", + "beak: short, slender, black", + "belly: gray with a white tinge", + "breast: grayish-white transitioning from the belly", + "crown: rounded dark gray", + "forehead: smooth dark gray", + "eyes: black surrounded by dark gray feathers", + "legs: strong, gray-brown", + "wings: short, rounded, dark gray", + "nape: dark gray, slightly paler than crown", + "tail: short, rounded, dark gray", + "throat: pale gray, spotted with white" + ], + "brass friarbird": [ + "back: golden-brown plumage", + "beak: long, hooked, and black", + "belly: dull grayish-white", + "breast: streaked with brownish-gray", + "crown: grayish-brown with crest", + "forehead: white stripe above the beak", + "eyes: dark and piercing", + "legs: black and slender", + "wings: brownish with gray edges", + "nape: dark brown with grayish streaks", + "tail: long and brown with white tips", + "throat: pale white with light-gray streaks" + ], + "brassy breasted tanager": [ + "back: vibrant golden-green feathers", + "beak: short, sharp, and dark gray", + "belly: rich, deep chestnut hue", + "breast: brilliant brassy-orange", + "crown: shiny emerald-green", + "forehead: bright green feathers", + "eyes: large dark orbs encircled by thin white rings", + "legs: slender and grayish-black", + "wings: multi-colored with yellow-green and dark blue, bordered by black", + "nape: striking green and blue plumage", + "tail: elongated, blue-black feathers with white outer tips", + "throat: dazzling emerald feathers" + ], + "braun bushshrike": [ + "back: olive-brown with subtle streaks", + "beak: strong, hooked, grayish-black", + "belly: pale, creamy-white", + "breast: orange-brown with dark streaks", + "crown: dark brown, slightly crested", + "forehead: olive-brown with faint streaks", + "eyes: large, dark brown with pale eyering", + "legs: strong, grayish-black", + "wings: olive-brown with dark flight feathers", + "nape: olive-brown, streaked with dark markings", + "tail: long, dark brown with olive-brown edges", + "throat: creamy-white with dark streaks" + ], + "brazilian merganser": [ + "back: dark, iridescent green feathers", + "beak: sharp, elongated, blackish-grey", + "belly: white with black stripes", + "breast: predominantly white with black markings", + "crown: black, smooth, and narrow", + "forehead: white strip above beak extending to eyes", + "eyes: small, sharply-focused, with a red ring", + "legs: sturdy, reddish-orange with webbed feet", + "wings: long, dark green with white patches", + "nape: well-defined black strip from crown to shoulders", + "tail: broad, black-edged with white feathers", + "throat: white with black spots and lines" + ], + "brazilian ruby": [ + "back: vibrant green feathers", + "beak: long and slender black", + "belly: white with green streaks", + "breast: bright red and iridescent", + "crown: intense red with a shimmer", + "forehead: gleaming red plumes", + "eyes: dark and expressive", + "legs: strong, grayish-black", + "wings: brilliant green with blue tips", + "nape: greenish-blue hue", + "tail: elongated green with blue accents", + "throat: dazzling red throat patch" + ], + "brazilian tanager": [ + "back: vibrant deep blue", + "beak: black, short and stout", + "belly: bright greenish-yellow", + "breast: intense red-orange", + "crown: radiant blue", + "forehead: deep blue, blending into the crown", + "eyes: black, surrounded by blue feathers", + "legs: black and slender", + "wings: shimmering blue with hints of green", + "nape: rich blue, connecting crown to back", + "tail: blue and elongated", + "throat: bright red-orange, mirroring the breast" + ], + "brazilian teal": [ + "back: greenish-brown with fine black barring", + "beak: black and upturned", + "belly: off-white with small black spots", + "breast: chestnut brown with white speckles", + "crown: glossy green with iridescent sheen", + "forehead: greenish-black with a slight gloss", + "eyes: dark brown with white surrounding feathers", + "legs: grayish-pink with webbed feet", + "wings: greenish-blue with an iridescent patch", + "nape: greenish-brown, merging into the crown", + "tail: dark brownish-black with elongated feathers", + "throat: white with chestnut brown extending from the breast" + ], + "brazilian tinamou": [ + "back: olive-brown with faint black bars", + "beak: slender and slightly curved, dark grey", + "belly: creamy white with faint grey markings", + "breast: dull brown with fine black striping", + "crown: blackish brown with slight gloss", + "forehead: narrow, dark-greyish brown", + "eyes: small and dark, surrounded by pale grey ring", + "legs: short, robust, and pinkish-grey", + "wings: rounded, olive-brown, barred with black", + "nape: blackish brown, glossed with green", + "tail: short, olive-brown with fine black bars", + "throat: whitish-grey with black mottling" + ], + "brazza martin": [ + "back: olive-brown with faint streaks", + "beak: short and stout, dark gray", + "belly: pale gray with fine streaks", + "breast: warm gray with dark spots", + "crown: dark gray with rusty streaks", + "forehead: black with white stripe above the eyes", + "eyes: dark, surrounded by pale eye-ring", + "legs: sturdy, pale pinkish-gray", + "wings: mottled gray, ruddy-brown, and black", + "nape: olive-gray with faint streaks", + "tail: long and graduated, dark gray with white tips", + "throat: white, contrasting with darker head" + ], + "brehm tiger parrot": [ + "back: vibrant green plumage", + "beak: strong, curved orange-red", + "belly: yellowish-green feathers", + "breast: bright yellow with orange streaks", + "crown: red-orange crest", + "forehead: green fading into red", + "eyes: dark, round with white eye-ring", + "legs: sturdy, grayish-brown", + "wings: green with hints of blue, red underside", + "nape: orange-red and green", + "tail: long, green with blue tips", + "throat: bright orange, feathered" + ], + "bridled honeyeater": [ + "back: olive-green with subtle dark streaks", + "beak: long, slender, and curved", + "belly: bright yellow with faint barring", + "breast: golden yellow with faint barring", + "crown: dark gray bordered by white stripe", + "forehead: black with thin, white bridle pattern", + "eyes: dark and beady, surrounded by white eyering", + "legs: slim and gray", + "wings: olive-green with yellowish edges", + "nape: dark gray, blending with the crown", + "tail: olive-green with yellowish fringes", + "throat: white with black streaks forming a bib" + ], + "bridled quail dove": [ + "back: earthy brown with subtle white speckles", + "beak: short, black, and pointed", + "belly: creamy white with brownish accents", + "breast: light rust-colored with a faint pattern", + "crown: slate gray with fine black speckles", + "forehead: pale gray blending into the crown", + "eyes: small, black, surrounded by a narrow white eye-ring", + "legs: short and pink, hidden among plumage", + "wings: brownish-gray with intricate white patterns", + "nape: ashy gray transitioning to brown", + "tail: long, brownish-gray with white-tipped feathers", + "throat: white, bordered by brownish cheeks and neck" + ], + "bridled sparrow": [ + "back: brownish-gray feathers with dark streaks", + "beak: small, dark, conical-shaped", + "belly: pale gray-white with light streaks", + "breast: light gray with faint dark streaks", + "crown: reddish-brown with dark central stripe", + "forehead: white with fine black streaks", + "eyes: dark, surrounded by white eyebrow stripe", + "legs: thin, pale pinkish-grey", + "wings: brown with white wing-bars", + "nape: reddish-brown with black streaks", + "tail: brownish-gray with white outer feathers", + "throat: white with dark, fine 'bridle' markings" + ], + "bridled tern": [ + "back: dark gray feathers with a sleek finish", + "beak: sharply pointed and black", + "belly: white underparts", + "breast: slight grayish-white plumage", + "crown: black cap covering the head", + "forehead: narrow white stripe above the eyes", + "eyes: small and black, surrounded by white feathers", + "legs: short, dark and webbed", + "wings: long, slender and dark gray", + "nape: white collar encircling the neck", + "tail: forked and white with dark edges", + "throat: white feathers transitioning into the breast area" + ], + "bridled white eye": [ + "back: olive-green with white streaks", + "beak: short, pointed, grayish-black", + "belly: pale yellow with soft white streaks", + "breast: white with grayish back markings", + "crown: distinctive black \"bridle\" markings", + "forehead: white fading to gray", + "eyes: large, dark, and surrounded by white feathers", + "legs: pale gray with thin, dainty toes", + "wings: olive-green with faint white edges on feathers", + "nape: white blending into olive-green", + "tail: olive-green with white outer tail feathers", + "throat: pure white with black \"bridle\" markings extending from eyes" + ], + "bright rumped attila": [ + "back: olive-green with subtle golden sheen", + "beak: large, strong, and hooked, blackish-gray", + "belly: pale yellowish-olive", + "breast: golden-yellow with slightly darker edges", + "crown: olive-brown with faint golden highlights", + "forehead: olive-brown, slightly lighter than crown", + "eyes: dark brown with thin, white eyerings", + "legs: strong and robust, grayish-black", + "wings: dark olive-green with golden-yellow edges on feathers", + "nape: olive-brown, similar to crown", + "tail: long and broad, olive-green with faint golden-yellow tips", + "throat: bright golden-yellow with slight olive-green tinge" + ], + "bright rumped yellow finch": [ + "back: vibrant olive-green feathers", + "beak: sharp, pointed, dark gray", + "belly: bright yellow hue", + "breast: golden-yellow plumage", + "crown: striking orange-yellow crest", + "forehead: radiant yellow color", + "eyes: small, dark, and alert", + "legs: sturdy, grayish-blue", + "wings: vivid green with black streaks", + "nape: rich yellow-green gradient", + "tail: contrasting black and gold feathers", + "throat: brilliant yellow under-feathers" + ], + "brimstone canary": [ + "back: yellowish-green plumage", + "beak: short, conical, silver-gray", + "belly: soft yellow feathers", + "breast: bright yellow plumage", + "crown: rich yellow feathers", + "forehead: bright yellow patch", + "eyes: small, dark, alert", + "legs: gray, strong, slender", + "wings: greenish-yellow, edged with black", + "nape: yellowish-green feathers", + "tail: forked, yellow with black markings", + "throat: vibrant yellow plumage" + ], + "bristle crowned starling": [ + "back: dark iridescent feathers", + "beak: short and conical, black", + "belly: grayish-white plumage", + "breast: silvery-gray feathers", + "crown: bristled feathers, yellow base", + "forehead: short, bristled yellow feathers", + "eyes: light-colored with thin black circles", + "legs: dark, thin and long", + "wings: iridescent dark blue-black", + "nape: yellow bristles extending down", + "tail: black, elongated central feathers", + "throat: white-tinged, glossy feathers" + ], + "bristle nosed barbet": [ + "back: vibrant green feathers", + "beak: strong, black, and bristled", + "belly: bright yellow plumage", + "breast: vibrant red feathers", + "crown: brilliant blue crest", + "forehead: blue band above the beak", + "eyes: round, black, and expressive", + "legs: sturdy, grayish-brown", + "wings: deep green, flight feathers with black edges", + "nape: yellowish-green feathers", + "tail: short and squared with green and black feathers", + "throat: sharp red contrast against yellow belly" + ], + "bristle thighed curlew": [ + "back: brownish-gray with dark and light speckles", + "beak: long, slightly curved, and brownish-orange", + "belly: light cream-colored with fine brown spots", + "breast: pale brown with small dark streaks", + "crown: dark brown with light speckles", + "forehead: light brown with some darker spots", + "eyes: dark with white eyebrow stripe", + "legs: long, pale, and grayish-blue", + "wings: brownish-gray with white and dark markings", + "nape: light brown with dark streaks", + "tail: brownish-gray with light and dark bands", + "throat: light cream-colored with fine brown spotting" + ], + "bristled grassbird": [ + "back: olive-brown with faint streaks", + "beak: strong and conical, grayish-horn color", + "belly: whitish with light brown markings", + "breast: buffy-brown with darker streaks", + "crown: rufous-brown with pale central stripe", + "forehead: buffy-white with darker streaks", + "eyes: dark, small with white eye-ring", + "legs: long and slender, pale pinkish-brown", + "wings: olive-brown with faint white bars", + "nape: rufous-brown with white streaks", + "tail: long and graduated, dark brown with white tips and outer edges", + "throat: pale buff with faint brown streaks" + ], + "broad billed flycatcher": [ + "back: olive-green with slight grayish tinge", + "beak: broad and flat; black upper, pale lower, with hooked tip", + "belly: light yellow with pale streaks", + "breast: lemon-yellow with greyish wash on sides", + "crown: olive-green with slight grayish tinge, not distinct", + "forehead: olive-green with slight gray tinge, blends with crown", + "eyes: dark brown, surrounded by pale eye-ring", + "legs: pale orange-brown with strong claws", + "wings: dark brown with two white wing-bars and olive-green edging", + "nape: olive-green with slight grayish tinge, blending with crown", + "tail: dark brown with white outer feather tips and olive-green edging", + "throat: lemon-yellow, distinctive" + ], + "broad billed motmot": [ + "back: bright green feathers with a blue tint", + "beak: wide and curved, black in color", + "belly: pale green or yellowish-green", + "breast: turquoise blue with black markings", + "crown: deep blue-green with a black stripe", + "forehead: blue-green and black, creating a \"mask", + "eyes: large and dark with white rims", + "legs: grayish, strong with sharp claws", + "wings: vibrant green and turquoise feathers", + "nape: blue-green with a black band", + "tail: long and racquet-tipped, shows green and blue feathers", + "throat: turquoise blue with black markings" + ], + "broad billed prion": [ + "back: bluish-gray with delicate white fringes", + "beak: broad, flat, with serrated edges", + "belly: bright white and fluffy", + "breast: white with a subtle bluish-gray hue", + "crown: bluish-gray with a hint of white streaks", + "forehead: bluish-gray, merging with the crown", + "eyes: small, dark, with a black ring around them", + "legs: short, sturdy, pale blue-gray", + "wings: long, slender, bluish-gray with black edges", + "nape: bluish-gray, transitioning to white towards the throat", + "tail: blue-gray, fan-shaped, with white tips", + "throat: white, contrasting with the gray head" + ], + "broad billed roller": [ + "back: vibrant blue plumage", + "beak: wide, dark and strong", + "belly: sky blue feathers", + "breast: turquoise and glossy", + "crown: bold blue and raised", + "forehead: electric blue plumage", + "eyes: dark, pronounced, and alert", + "legs: dark grey and slender", + "wings: beautifully intricate feathers", + "nape: deep blue tufted feathers", + "tail: elongated, colorful feathers", + "throat: subtle purple hue" + ], + "broad billed sandpiper": [ + "back: olive-brown with dark feather centers", + "beak: long, straight, and black", + "belly: white and unmarked", + "breast: white with brown streaks", + "crown: olive-brown with dark streaks", + "forehead: white with brown markings", + "eyes: dark, surrounded by white eyering", + "legs: greenish-yellow, long and slender", + "wings: long, pointed, and streaked brown", + "nape: white with brown streaks", + "tail: black and white with a slight v-shape", + "throat: white, unmarked" + ], + "broad billed tody": [ + "back: vibrant green upper feathers", + "beak: broad, flat, black bill", + "belly: soft gray feathers", + "breast: matching green to back with yellow highlights", + "crown: forest green top of the head", + "forehead: distinctive bright red patch", + "eyes: small, dark, surrounded by green feathers", + "legs: short, sturdy, pale pinkish-gray", + "wings: blend of green with slight blue hue", + "nape: continuation of green from back, transitioning to gray", + "tail: short, slightly fanned, green feathers with black tips", + "throat: white feathers with a grayish tint" + ], + "broad billed warbler": [ + "back: olive-green color with faint streaks", + "beak: broad, slightly curved, dark grey", + "belly: pale buff or cream-colored", + "breast: yellowish-green with subtle streaks", + "crown: bright green with a flat crest", + "forehead: yellowish-green, fading into the crown", + "eyes: dark with a faint white eyering", + "legs: slim, blue-grey, with three forward-facing toes", + "wings: greenish-brown with conspicuous yellow outer-edging", + "nape: greenish, connecting the crown and the back", + "tail: square-ended, dark brown, with faint yellow tips", + "throat: vibrant yellow, contrasting the breast" + ], + "broad tailed grassbird": [ + "back: light brown with streaks of darker brown", + "beak: dark, slender, and slightly curved", + "belly: creamy-white with faint brown streaks", + "breast: pale buff with light brown streaks", + "crown: greyish-brown with a tinge of olive-green", + "forehead: pale brown with darker brown streaks", + "eyes: dark brown with a thin white eye-ring", + "legs: long and slender, pale brown", + "wings: brown with darker brown barring and a distinct white patch", + "nape: greyish-brown transitioning from the crown", + "tail: long and broad, brown with dark bars and white tips", + "throat: creamy-white, blending into the breast area" + ], + "broad tailed paradise whydah": [ + "back: vibrant, brownish-black feathers", + "beak: short, sharp, black point", + "belly: white, soft, feathery underside", + "breast: white, narrow, feathery front", + "crown: sleek, black head feathers", + "forehead: sharp, black contouring", + "eyes: round, dark, beady gaze", + "legs: slender, blue-gray limbs", + "wings: brownish-black, long, curved flight feathers", + "nape: black, feathery neck back", + "tail: long, ribbon-like, extravagant plumes", + "throat: white, delicate, feathery front" + ], + "broad tipped hermit": [ + "back: vibrant green with streaks", + "beak: long, slightly curved, yellow-tipped", + "belly: pale white and fluffy", + "breast: patchwork of russet and buff", + "crown: vivid green plumage", + "forehead: bright green with fine white streaks", + "eyes: small, black, and shiny", + "legs: sturdy, pale yellow-orange", + "wings: green and brown striped pattern", + "nape: striped green and white", + "tail: broad, fan-shaped, brownish-orange", + "throat: white with hints of russet" + ], + "brolga": [ + "back: slate-grey plumage", + "beak: long, slender, and pale grey", + "belly: light grey feathers", + "breast: greyish-white plumage", + "crown: smooth grey feathers", + "forehead: red prominent head patch", + "eyes: deep-set, dark, and expressive", + "legs: tall, slender, and grey", + "wings: broad and slate-grey with black tips", + "nape: grey and soft feathered", + "tail: short and wedge-shaped", + "throat: pale grey feathering" + ], + "bronze ground dove": [ + "back: earthy brown plumage", + "beak: short and sturdy, light brown", + "belly: pale beige feathers", + "breast: soft cinnamon hue", + "crown: bronze tinted with green iridescence", + "forehead: bronze coloring with purple sheen", + "eyes: black with orange eye ring", + "legs: slender and grayish-brown", + "wings: brownish-bronze with intricate patterns", + "nape: green-tinged golden bronze", + "tail: elongated, brown with white tipped feathers", + "throat: light buff with reddish tinge" + ], + "bronze mannikin": [ + "back: subtle greenish-brown feathers", + "beak: conical and dark-colored", + "belly: creamy white hue", + "breast: gray-bronze tinted feathers", + "crown: iridescent purplish-black", + "forehead: shining bronze-green", + "eyes: round, black, and shiny", + "legs: thin and dark gray", + "wings: brownish-black with bronzy sheen", + "nape: bronze-green shine", + "tail: dark brown with bronzy-green gloss", + "throat: striking purplish-black" + ], + "bronze parotia": [ + "back: iridescent bronze-green feathers", + "beak: short, curved black beak", + "belly: silvery-white plumage", + "breast: shimmering golden-green feathers", + "crown: round, black crest of feathers", + "forehead: golden, iridescent feathers", + "eyes: piercing amber eyes", + "legs: slender, black legs", + "wings: medium-sized, bronze-green feathers", + "nape: glossy black plumage", + "tail: elongated, quill-like feathers with black wire-like tips", + "throat: dramatic, black, velvety throat feathers" + ], + "bronze sunbird": [ + "back: iridescent green-bronze feathers", + "beak: long, slender, curved black beak", + "belly: bright green-yellow plumage", + "breast: olive-green feathers with a hint of bronze shine", + "crown: green-bronze iridescent feathers", + "forehead: prominent green-bronze iridescence", + "eyes: small, dark, surrounded by green-bronze feathers", + "legs: slender, black, and well-adapted to perch on branches", + "wings: green-bronze, fairly short and rounded", + "nape: iridescent green-bronze feathers", + "tail: long, slim, green-bronze central tail feathers", + "throat: vibrant metallic green with purple edging" + ], + "bronze green euphonia": [ + "back: vibrant green feathers", + "beak: short and stout, orange-yellow", + "belly: vibrant yellow, soft feathers", + "breast: bright yellow plumage", + "crown: deep green feathers", + "forehead: sleek green plumage", + "eyes: small, dark, and expressive", + "legs: sturdy, gray-blue shade", + "wings: shimmering green with hints of blue", + "nape: smooth green feathers, transitioning to yellow", + "tail: radiant green feathers with subtle blue shades", + "throat: bright yellow feathers, contrasting with the green head" + ], + "bronze naped pigeon": [ + "back: greenish-bronze feathers", + "beak: short, pale-colored", + "belly: white to light gray plumage", + "breast: light gray with a purple sheen", + "crown: gray to greenish-bronze", + "forehead: grayish-white fading to bronze", + "eyes: orange with a gray eye-ring", + "legs: reddish-pink with sharp claws", + "wings: greenish-bronze with a purple sheen", + "nape: bronze or copper-colored feathers", + "tail: dark greenish-blue, short and broad", + "throat: light gray with a purplish hue" + ], + "bronze olive pygmy tyrant": [ + "back: olive-bronze feathers", + "beak: small and sharp", + "belly: light yellowish-brown", + "breast: pale olive", + "crown: bronze-olive ridged", + "forehead: subtly yellow-tinted", + "eyes: small and black", + "legs: slim and grayish", + "wings: olive-bronze with faint barring", + "nape: bronze-olive hue", + "tail: short and square-shaped", + "throat: pale yellowish-white" + ], + "bronze tailed comet": [ + "back: metallic green shine", + "beak: curved, slender black", + "belly: iridescent blue-green", + "breast: bright emerald green", + "crown: vivid violet-blue", + "forehead: greenish golden hue", + "eyes: round, dark inquisitive", + "legs: thin, dark gray", + "wings: shimmering bronze and green", + "nape: vibrant bluish-purple", + "tail: elongated bronze feathers", + "throat: dazzling greenish-yellow" + ], + "bronze tailed peacock pheasant": [ + "back: vibrant feathers with intricate patterns", + "beak: strong, curved, and sharp", + "belly: golden hues with shining specks", + "breast: iridescent bronze with peacock-like markings", + "crown: raised metallic green crest", + "forehead: smooth regal blue tint", + "eyes: striking amber with keen gaze", + "legs: long, sturdy, and feathered", + "wings: adorned with green and bronze patterns", + "nape: exquisite with metallic luster", + "tail: elegant bronze train with eye motifs", + "throat: scintillating plumage with rich tonality" + ], + "bronze tailed plumeleteer": [ + "back: iridescent bluish-green", + "beak: black, slightly curved", + "belly: grayish-blue", + "breast: shimmering greenish-blue", + "crown: vibrant bluish-green", + "forehead: metallic green", + "eyes: dark brown", + "legs: black, slender", + "wings: elongated, fast-beating", + "nape: brilliant green-blue", + "tail: long, bronze-colored feathers", + "throat: sparkling green-blue" + ], + "bronze tailed starling": [ + "back: iridescent greenish-blue feathers", + "beak: sharp, black, and slender", + "belly: pale grey with a slight metallic sheen", + "breast: shiny, slightly purple-tinged feathers", + "crown: glossy greenish-blue plumage", + "forehead: sleek feathers transitioning from green to purple", + "eyes: dark, round, and inquisitive", + "legs: sturdy, grey, and featherless", + "wings: shimmering green and purple feathers with a bronzed edge", + "nape: metallic greenish-blue feathers cascading down", + "tail: long, bronzed, and gracefully tapering", + "throat: feathers fading from grey to a lighter, silvery shade" + ], + "bronze tailed thornbill": [ + "back: olive-green with bronze sheen", + "beak: slender, black, and slightly curved", + "belly: soft white with greenish-brown hues", + "breast: light greenish-brown with white center", + "crown: bright iridescent green", + "forehead: shimmering bronze to green gradient", + "eyes: small, black, and round", + "legs: slender, grey, and well-adapted for perching", + "wings: medium-length, olive-green with hints of bronze", + "nape: iridescent green merging with the back", + "tail: slender and bronze-hued with notched feathers", + "throat: pale white transitioning to the breast color" + ], + "bronze winged courser": [ + "back: bronze and grey feathers with a subtle shimmer", + "beak: short and slightly curved, pale in color", + "belly: light buff-colored feathers with sparse black markings", + "breast: pale beige with faint black and white streaks", + "crown: dark grey with metallic bronze-green highlights", + "forehead: marbled grey and white plumage", + "eyes: dark, rounded, and alert", + "legs: yellowish-tan, long, and slender", + "wings: broad and rounded, displaying iridescent bronze hues", + "nape: marbled grey and light brown feathers", + "tail: dark grey-brown with white outer feathers and a distinctive black band", + "throat: pale grey with slight bronze undertones" + ], + "bronze winged jacana": [ + "back: iridescent green-bronze feather pattern", + "beak: long, straight, dark grey", + "belly: white with black ventral stripe", + "breast: black with white fringe", + "crown: black with white spotted line", + "forehead: red-yellow frontal shield", + "eyes: brown with black region surrounding", + "legs: thin, lengthy and yellow-green", + "wings: bronze colored with white marked tips", + "nape: green-bronze to black gradient", + "tail: short, black with white tips", + "throat: black with white fringe" + ], + "bronze winged parrot": [ + "back: deep forest green with shimmering bronze highlights", + "beak: sharp, curved, dark grey", + "belly: iridescent turquoise and dark blue hues", + "breast: warm bronze merging into green and blue feathers", + "crown: glossy emerald with subtle metallic sheen", + "forehead: brilliant blue leaning into green", + "eyes: piercing dark eyes with a thin white ring", + "legs: strong, dark grey with sharp claws", + "wings: striking bronze feathers with touches of green and blue", + "nape: luminous green fading to iridescent turquoise", + "tail: elongated bronze feathers with hints of blue and green", + "throat: electric blue fading into soft green and bronze" + ], + "bronzed drongo": [ + "back: iridescent dark bronze", + "beak: short and sturdy, black", + "belly: dark bronze feathers", + "breast: shimmering bronze hue", + "crown: glossy bronze-black", + "forehead: sleek dark feathers", + "eyes: dark and piercing", + "legs: slender black legs", + "wings: long, bronzed feathers", + "nape: lustrous metallic bronze", + "tail: forked and rufous-tipped", + "throat: dark bronze plumage" + ], + "bronzy hermit": [ + "back: golden-bronze feathers", + "beak: long, slender, and curved", + "belly: light, pale greenish-yellow", + "breast: golden-bronze shine", + "crown: dark bronze coloration", + "forehead: golden-bronze hue", + "eyes: small, dark, and round", + "legs: slim with long toes", + "wings: elongated with iridescent greens", + "nape: greenish-bronze gloss", + "tail: long, forked with dark greenish-blue color", + "throat: slightly paler golden-bronze shade" + ], + "bronzy inca": [ + "back: iridescent green and bronze", + "beak: short and straight, black", + "belly: pale silvery-green", + "breast: bright bronze-green", + "crown: shining green", + "forehead: gleaming green", + "eyes: dark with white eyerings", + "legs: slender and dark", + "wings: iridescent green and bronze feathers", + "nape: shining green", + "tail: long, dark, and pointed", + "throat: shimmering greenish-bronze" + ], + "bronzy jacamar": [ + "back: iridescent green-bronze plumage", + "beak: long, straight, and black", + "belly: pale greenish-yellow feathers", + "breast: shimmering green-bronze plumage", + "crown: iridescent green-bronze feathers", + "forehead: bright green-bronze feathers", + "eyes: small, dark, and alert", + "legs: short, black, and slender", + "wings: green-bronze and rounded", + "nape: vibrant green-bronze feathers", + "tail: long, straight, and dark", + "throat: pale yellow-green plumage" + ], + "brooks leaf warbler": [ + "back: olive-green upperparts", + "beak: thin, pointed, and black", + "belly: pale yellow with pale streaks", + "breast: yellowish, sometimes with subtle streaking", + "crown: olive-green with yellowish highlights", + "forehead: olive-yellow, blending into the crown", + "eyes: dark brown with light eyering", + "legs: pinkish-brown and slender", + "wings: greenish-brown with two bold yellow wing-bars", + "nape: olive-green, matching the back", + "tail: brownish-green with yellow edges", + "throat: bright yellow and unmarked" + ], + "brown accentor": [ + "back: earthy brown plumage", + "beak: short, conical, and pointed", + "belly: pale with brown speckles", + "breast: grayish-brown", + "crown: reddish-brown", + "forehead: grayish-brown", + "eyes: small and black", + "legs: slender and yellowish-brown", + "wings: brown with lighter edges", + "nape: reddish-brown", + "tail: long and brown with white outer feathers", + "throat: creamy white with brown streaks" + ], + "brown babbler": [ + "back: light brown feathers", + "beak: short, strong, and dark", + "belly: dull cream or beige shades", + "breast: light brown with slight speckling", + "crown: reddish-brown crest", + "forehead: pale brown feathers", + "eyes: dark, with a white eye-ring", + "legs: long and slender, dark brown", + "wings: medium brown with faint streaks", + "nape: light reddish-brown hue", + "tail: elongated brown feathers", + "throat: pale creamy-brown with streaks" + ], + "brown barbet": [ + "back: earthy brown plumage", + "beak: short, stout, and slightly hooked", + "belly: light brown with subtle streaks", + "breast: warm brown with fine white streaks", + "crown: rich brown with a rounded crest", + "forehead: paler brown blending into the crown", + "eyes: dark and bright, framed by a white eye-ring", + "legs: sturdy, grayish-brown, and featherless", + "wings: brown with faint, darker barring", + "nape: uniform brown, connecting crown to back", + "tail: brownish, slightly forked with a blackish band near the tip", + "throat: pale brown, lightly streaked with white" + ], + "brown boobook": [ + "back: earthy brown with faint white spots", + "beak: short, sharp, and greyish-black", + "belly: off-white with reddish-brown barring", + "breast: pale with horizontal brown stripes", + "crown: brown with white speckles and pale facial discs", + "forehead: reddish-brown with white markings", + "eyes: large, piercing yellow orbs", + "legs: feathered, grey, with curved talons", + "wings: brown spotted and striped with white and black bars", + "nape: brown with light, irregular white spots", + "tail: dark brown with white bands and a reddish-brown tip", + "throat: creamy-white with brown bars" + ], + "brown booby": [ + "back: dark brown feathers covering upper body", + "beak: long, sturdy, grayish-blue with a hooked tip", + "belly: white underside with a brown edge", + "breast: white feathers on chest area", + "crown: dark brown feathers atop the head", + "forehead: smooth, dark brown feathers above eyes", + "eyes: bright yellow with black pupils", + "legs: lengthy, dark blue-gray with webbed feet", + "wings: dark brown, elongated and pointed", + "nape: rich brown, connecting the head and back", + "tail: short, dark brown rectangular feathers", + "throat: white feathers transitioning into brown" + ], + "brown bullfinch": [ + "back: dark brown feathers covering upper body", + "beak: short, thick, and sharp for seed-eating", + "belly: lighter brown or grayish feathers on lower body", + "breast: dark brown or reddish-brown feathers on chest", + "crown: dark brown feathers on the top of the head", + "forehead: lighter brown or grayish-brown feathers above the beak", + "eyes: small, round, and black with white eye-ring", + "legs: short and strong with brownish-gray color", + "wings: brown with darker flight feathers, medium length", + "nape: dark brown feathers at the back of the neck", + "tail: short, brown, and slightly forked at the tip", + "throat: lighter brown or grayish-brown feathers directly below the beak" + ], + "brown bush warbler": [ + "back: brownish-grey feathered", + "beak: small, thin, pointed", + "belly: light, creamy-white", + "breast: buffy-brown with slight streaking", + "crown: dark brownish-grey", + "forehead: brownish-grey, paler than crown", + "eyes: round, black, surrounded by pale eye-ring", + "legs: long, pinkish-brown", + "wings: rounded, brownish-grey with faint bars", + "nape: brownish-grey, paler than crown", + "tail: medium-length, brownish-grey with faint darker bars", + "throat: pale buffy-white" + ], + "brown cacholote": [ + "back: brownish-gray feathers", + "beak: short, strong, and cone-shaped", + "belly: light brown with subtle streaks", + "breast: pale brown and slightly spotted", + "crown: slightly raised with dark brown feathers", + "forehead: white line above the eye", + "eyes: small, dark, and alert", + "legs: strong and grayish-brown", + "wings: brown with darker flight feathers", + "nape: streaked with dark brown", + "tail: long and brown with a distinctive upward curve", + "throat: light brown with faint streaks" + ], + "brown crake": [ + "back: brownish-grey feathers", + "beak: short, pointed, pale yellow", + "belly: white to pale buff coloring", + "breast: brown with white streaks", + "crown: dark brown feathers", + "forehead: slightly paler brown", + "eyes: small, black, and round", + "legs: long, greenish-grey", + "wings: brown with traces of white spots", + "nape: brownish-grey, blending with crown", + "tail: short, dark brown, slightly barred", + "throat: white with narrow brown streaks" + ], + "brown cuckoo dove": [ + "back: brownish-grey feathers", + "beak: short, blackish-brown", + "belly: pale brownish-white", + "breast: rosy-brown hue", + "crown: dark brownish-grey", + "forehead: smooth grayish-brown", + "eyes: dark brown with pale eyering", + "legs: short, reddish-pink", + "wings: brownish-grey with distinct wing bars", + "nape: darker brown-grey feathers", + "tail: long and tapering, brownish-grey with white tips", + "throat: pale brownish-white with fine streaks" + ], + "brown dipper": [ + "back: brownish-gray feathers", + "beak: short, stout, and black", + "belly: whitish or light gray", + "breast: brown with a slight reddish hue", + "crown: dark brown feathers", + "forehead: brown blending into the crown", + "eyes: small, round, and black", + "legs: strong and pinkish-gray", + "wings: brown with a slight gloss and moderately long", + "nape: brownish-gray, blending into the back", + "tail: dark brown, short and square-ended", + "throat: white or light gray with a slight tinge of brown" + ], + "brown eared pheasant": [ + "back: dark brown with subtle patterns", + "beak: strong, slightly curved, greyish-black", + "belly: dull brown with soft feathering", + "breast: dark brown with minimal patterns", + "crown: glossy, black with a slight crest", + "forehead: blackish, blending with the crown", + "eyes: dark, with a distinctive reddish-brown eye-ring", + "legs: sturdy, light grey with feathered thighs", + "wings: brownish, with strong white markings", + "nape: brown, turning black towards the crown", + "tail: long, dark brown feathers with white tips", + "throat: soft brown, transitioning from the breast" + ], + "brown emutail": [ + "back: rich brown feathers", + "beak: slender, slightly curved", + "belly: light brown with faint streaks", + "breast: warm chestnut hue", + "crown: dark chocolate crest", + "forehead: smooth, light brown", + "eyes: small, black, and shiny", + "legs: long, sturdy, and twig-like", + "wings: broad, deep brown with lighter tips", + "nape: faintly striped in earthy tones", + "tail: elongated, fan-shaped, emulating hues of the sunset", + "throat: soft beige with delicate markings" + ], + "brown falcon": [ + "back: rich brown feathers with slight barring", + "beak: short, curved, greyish-blue", + "belly: creamy-white with dark brown spots", + "breast: streaked pale brown with a hint of chestnut", + "crown: dark brown with faint streaks", + "forehead: light brown with fine streaks", + "eyes: dark brown, sharply focused", + "legs: sturdy, feathered, yellowish-grey", + "wings: long, pointed, brown with dark barring", + "nape: light brown with faint streaks", + "tail: brown with dark bands, slender and tapered", + "throat: pale buff with fine brown streaks" + ], + "brown fantail": [ + "back: earthy brown feathers with hints of russet", + "beak: petite, slightly curved, and black", + "belly: pale creamy-white undertones", + "breast: warm chestnut hue with delicate white streaks", + "crown: soft cinnamon-brown with a slight crest", + "forehead: smooth mix of light brown and white", + "eyes: black, round, and noticeably alert", + "legs: slim, long, and dark grey", + "wings: beige and brown mix, with dark bars and white spots", + "nape: warm brown feathers with a visible contrast from the crown", + "tail: elongated, fan-shaped with contrasting light and dark brown bands", + "throat: off-white base with subtle brown streaks" + ], + "brown firefinch": [ + "back: brownish-red feathers", + "beak: black, conical shape", + "belly: pale cream or buff color", + "breast: reddish-brown with faint speckling", + "crown: reddish-brown feathers", + "forehead: red or orange-red", + "eyes: dark brown surrounded by a thin white ring", + "legs: grayish-brown", + "wings: short with brownish-red feathers and dark markings", + "nape: reddish-brown", + "tail: brown with darker markings and rounded edges", + "throat: whitish with reddish speckles" + ], + "brown fish owl": [ + "back: brown feathers with dark streaks", + "beak: large, grayish-black hooked beak", + "belly: creamy white with brown markings", + "breast: buffy-white with brown streaks", + "crown: reddish-brown with dark streaks", + "forehead: pale brown with darker streaks", + "eyes: large, dark brown or black", + "legs: yellowish-brown with sharp talons", + "wings: brown with wavy dark bands", + "nape: reddish-brown with dark streaks", + "tail: long, dark brown with faint bars", + "throat: creamy white with brown markings" + ], + "brown fulvetta": [ + "back: rich brown feathers", + "beak: short, sturdy, and grayish", + "belly: pale brown with fine streaks", + "breast: warm buff-brown", + "crown: rusty-brown with distinct streaks", + "forehead: similar to the crown, rusty-brown", + "eyes: small, dark, and round", + "legs: slender and pale pink", + "wings: brown with faint barring", + "nape: rusty-brown with faint streaks", + "tail: moderately long, brown with subtle black bars", + "throat: pale buff with fine streaks" + ], + "brown gerygone": [ + "back: light brown feathers and sleek texture", + "beak: petite and slightly curved, blackish-brown", + "belly: soft cream or off-white plumage", + "breast: pale buff or cream-colored feathers", + "crown: warm brown with subtle streak patterns", + "forehead: light brown blending into the crown", + "eyes: dark, beady, and alert", + "legs: thin and twig-like, dark gray color", + "wings: light brown with faint markings and rounded shape", + "nape: light brown, slightly paler than the crown", + "tail: long and slim with faint barring, brownish hues", + "throat: off-white or cream plumage transitions into breast" + ], + "brown goshawk": [ + "back: brown feathers with a subtly dark pattern", + "beak: strong, sharp, and hooked, yellowish-grey color", + "belly: light cream, with thin rufous bars", + "breast: pale, with brown streaks and spots", + "crown: deep brown, accented with lighter streaks", + "forehead: light brown, tinged with a hint of rufous", + "eyes: piercing yellow, with a dark pupil", + "legs: yellow, powerful, with sharp talons", + "wings: long and wide, with a mix of brown tones and dark tips", + "nape: light brown, with paler rufous streaks", + "tail: dark brown, banded with lighter bars, and tapering to a rounded end", + "throat: creamy white, with soft feathery texture" + ], + "brown hornbill": [ + "back: dark brown, elongated feathers", + "beak: large, curved, yellow and black", + "belly: light brown, small feathers", + "breast: medium brown, compact feathers", + "crown: dark brown, feathery crest", + "forehead: dark brown, smooth feathers", + "eyes: small, round, black with yellow-ring", + "legs: strong, scaled, grayish-brown", + "wings: broad, brown with white tips", + "nape: dark brown, short feathers", + "tail: long, graduated, brown with white bands", + "throat: light brown, soft, thin feathers" + ], + "brown illadopsis": [ + "back: brownish-grey feathers", + "beak: short and stout", + "belly: pale brown with streaks", + "breast: light brown plumage", + "crown: dark brown with faint streaks", + "forehead: slightly paler brown", + "eyes: small, black, and alert", + "legs: greyish-brown and thin", + "wings: rounded with brown feathers", + "nape: brown with subtle streaks", + "tail: medium length, brown feathers", + "throat: light brown and streaked" + ], + "brown inca": [ + "back: rich chestnut-brown feathers", + "beak: long, curved, black", + "belly: soft, tawny-brown", + "breast: reddish-buff with dark spots", + "crown: deep chestnut with a sleek appearance", + "forehead: smooth chestnut-brown", + "eyes: shiny black, alert and forward-facing", + "legs: thin, strong, and dark gray", + "wings: chestnut-brown with black wingtips", + "nape: rusty brown, blending with the crown", + "tail: long, chestnut, with black band at the tip", + "throat: buff with thin, dark streaks" + ], + "brown jacamar": [ + "back: glossy green-bronze feathers", + "beak: long, thin, and slightly curved", + "belly: pale brownish-white and scaled", + "breast: green-bronze iridescence", + "crown: dark green with metallic sheen", + "forehead: metallic green hue", + "eyes: large and dark", + "legs: short, slender, and grayish-blue", + "wings: rounded with green-bronze feathers", + "nape: green and shining bronze", + "tail: long, slender, and dark brown", + "throat: buffy-white with greenish scales" + ], + "brown jay": [ + "back: rich brown plumage", + "beak: strong, black, slightly curved", + "belly: light brown with paler streaks", + "breast: warm brown with soft texture", + "crown: darker brown with slight crest", + "forehead: deep brown with feathered transition", + "eyes: dark, expressive, surrounded by light brown", + "legs: sturdy, grayish-brown with sharp claws", + "wings: long, brown with lighter streaks", + "nape: smooth brown with subtle shading", + "tail: wide, graduated, with brown and gray layers", + "throat: beige with light streaks and feathering" + ], + "brown lory": [ + "back: rich reddish-brown feathers", + "beak: orange-yellow and curved", + "belly: lighter brown plumage", + "breast: vibrant reddish-brown feathers", + "crown: darker brown with smooth feathers", + "forehead: slightly lighter brown than crown", + "eyes: large and white-rimmed with a dark brown iris", + "legs: strong and grayish-brown", + "wings: reddish-brown with blue accents on the flight feathers", + "nape: smooth transition from crown to back feathers", + "tail: elongated, reddish-brown with blue tips on the feathers", + "throat: lighter shade of brown than breast" + ], + "brown mesite": [ + "back: brown feathers with streaks of white", + "beak: short and curved, dark-colored", + "belly: pale brown with subtle markings", + "breast: light brown with speckled white spots", + "crown: reddish-brown with white streaks", + "forehead: light brown with an inconspicuous white line", + "eyes: dark brown, highlighted with white rings", + "legs: long and slender, yellowish-brown", + "wings: brown with white spots and streaks", + "nape: reddish-brown with white streaks", + "tail: long and brown with white-tipped feathers", + "throat: pale brown with some white markings" + ], + "brown nightjar": [ + "back: dark brown with blackish streaks", + "beak: short, wide, blackish-brown", + "belly: pale brown with streaking and spotting", + "breast: mottled reddish-brown with dark spots", + "crown: dark brown with elongated whitish streaks", + "forehead: slightly lighter brown with white speckles", + "eyes: large, dark, and ringed in pale feathers", + "legs: long, thin, grayish-brown", + "wings: dark brown, mottled with white spots and bars", + "nape: buffy-brown with blackish streaks", + "tail: long, brown with white outer feathers and dark bands", + "throat: pale with brown speckles and blackish streaks" + ], + "brown noddy": [ + "back: dark brown feathers", + "beak: black and pointed", + "belly: lighter brown with some white", + "breast: medium brown feathers", + "crown: dark brown with slight cap", + "forehead: medium brown coloration", + "eyes: black, small, and sharp", + "legs: black and slender", + "wings: long, dark brown feathers", + "nape: medium brown, connects to crown", + "tail: brown with black striping", + "throat: lighter brown with some white" + ], + "brown nunlet": [ + "back: light brown feathers", + "beak: short, curved, and black", + "belly: buff-colored feathers", + "breast: pale brown with white streaks", + "crown: dark brown plumage", + "forehead: tan feathers with a slight crest", + "eyes: dark beady eyes with white rings", + "legs: short and sturdy, dark grey", + "wings: brownish-black feathers with pale edges", + "nape: rich brown with fine streaks", + "tail: rounded, brown with black barring", + "throat: creamy white with brown speckles" + ], + "brown oriole": [ + "back: rusty brown with faint streaks", + "beak: strong, pointed, and silver-gray", + "belly: creamy white with brown flanks", + "breast: pale orange-brown", + "crown: rich chestnut-brown", + "forehead: slightly paler brown", + "eyes: dark brown with white eye-ring", + "legs: slender and grayish-blue", + "wings: dark brown with pale wing bars", + "nape: chestnut-brown", + "tail: long with dark brown feathers, white tips", + "throat: light cream with brown streaks" + ], + "brown parisoma": [ + "back: smooth brown feathers", + "beak: small, pointed, beige-colored", + "belly: creamy white with brownish spots", + "breast: light brown with subtle streaks", + "crown: dark reddish-brown", + "forehead: light creamy brown", + "eyes: small, black, and round", + "legs: thin, greyish-pink", + "wings: brown with lighter-edged feathers", + "nape: reddish-brown", + "tail: brown with white tips", + "throat: creamy white with fine brown streaks" + ], + "brown parrotbill": [ + "back: rich brown feathers with subtle streaks", + "beak: short, stout, and curved upper mandible", + "belly: light brown with fine darker streaks", + "breast: warm reddish-brown, slightly paler than back", + "crown: brown with a slight crest", + "forehead: slightly lighter brown with a faint black stripe", + "eyes: dark, encircled by a fine pale eyering", + "legs: sturdy pinkish-gray with strong claws", + "wings: dark brown featuring prominent white wingbars", + "nape: mottled brown and gray feathers", + "tail: long, dark brown with fine white tips", + "throat: light grayish-brown, contrasting with breast" + ], + "brown prinia": [ + "back: light brown with subtle markings", + "beak: thin, sharp, and dark-colored", + "belly: pale and creamy-white", + "breast: light brown with faint streaks", + "crown: warm brown with indistinct patterns", + "forehead: lighter brown blending into the crown", + "eyes: small, black, embedded in light brown feathers", + "legs: slender, grayish-brown", + "wings: long, brown with faint markings, rounded edge", + "nape: slightly darker brown, smoothly transitioning to the back", + "tail: thin, long, wedge-shaped, brown with gentle bands", + "throat: pale, blending into the breast color" + ], + "brown quail": [ + "back: brownish-gray with scaled pattern", + "beak: short and cone-shaped, pale gray", + "belly: pale buff with black spotting", + "breast: grayish-brown with dark streaks", + "crown: rich brown, somewhat crested", + "forehead: buff-white stripe above eye", + "eyes: small and dark", + "legs: dull yellow with strong feet", + "wings: brown with sandy-buff streaks", + "nape: hazel-brown with faint barring", + "tail: short, brown, rounded", + "throat: plain pale buff" + ], + "brown rock chat": [ + "back: earthy brown with a slightly darker hue", + "beak: short and strong, blackish-grey", + "belly: light brown with a hint of pale cream", + "breast: warm sandy brown, occasionally streaked", + "crown: smooth, rich brown", + "forehead: pale brown, blending into the crown", + "eyes: dark brown with a gentle gleam", + "legs: slender yet sturdy, slate grey", + "wings: shades of brown with distinct feather patterns", + "nape: reddish-brown, transitioning to the back", + "tail: elongated, dark brown with white outer feathers", + "throat: pale creamy-brown, with possible faint streaks" + ], + "brown scrub robin": [ + "back: warm brown with faint streaks", + "beak: slim, slightly curved, blackish", + "belly: pale brown with lighter streaks", + "breast: soft brown with subtle markings", + "crown: dark brown fading to lighter shades", + "forehead: smooth, warm brown", + "eyes: beady black with white eye-ring", + "legs: long, slender, light brown", + "wings: brown with buff-white edges, rounded shape", + "nape: rich brown with hints of gray", + "tail: long, fan-like, chestnut brown with lighter tips", + "throat: pale brown with minimal streaks" + ], + "brown shrike": [ + "back: reddish-brown feathers", + "beak: black, hooked tip", + "belly: off-white with brownish streaks", + "breast: faintly streaked pale brown", + "crown: dark brown with lighter edges", + "forehead: pale brown with black eye stripe", + "eyes: black with white eyebrow", + "legs: brownish-gray", + "wings: brown with black flight feathers", + "nape: reddish-brown with pale edges", + "tail: brown with black band and white tip", + "throat: off-white with scaled appearance" + ], + "brown sicklebill": [ + "back: a rich brown, elongated feathers", + "beak: long and curved, black in color", + "belly: light brown with soft, fluffy feathers", + "breast: bronze-chestnut feathers, iridescent shine", + "crown: glossy dark green metallic plumage", + "forehead: vibrant green feathers, slight metallic sheen", + "eyes: small, dark, and alert", + "legs: slender grayish-brown legs with strong claws", + "wings: streaked dark brown, elongated in shape", + "nape: metallic green shine transitioning to bronze-chestnut", + "tail: long, sickle-shaped, iridescent brown feathers", + "throat: brilliant blue feathers with shimmering luster" + ], + "brown skua": [ + "back: dark brown, elongated feathers", + "beak: strong, hooked, black tip", + "belly: lighter brown, soft feathers", + "breast: dark brown, dense plumage", + "crown: dark, brownish-black feathers", + "forehead: brownish-black with slight streaks", + "eyes: small, dark, piercing gaze", + "legs: thick, sturdy, pale-pinkish grey", + "wings: long, dark brown with a white patch", + "nape: brownish-black blending with the crown", + "tail: dark brown, wide, fan-shaped", + "throat: light brown, smooth feathers" + ], + "brown snake eagle": [ + "back: dark brown feathers covering the upper body", + "beak: strong, hooked black beak for tearing prey", + "belly: lighter brown feathers softening to a creamy hue", + "breast: feathered dark brown with hints of cream color", + "crown: dark brown feathers decorating the top of the head", + "forehead: flat area above the eyes with dark brown contours", + "eyes: piercing yellow orbs with a black, intense gaze", + "legs: strong, yellow, scaly legs with black talons for gripping prey", + "wings: large, broad wings with varying shades of brown for soaring", + "nape: dark brown feathers transitioning from the crown to the back", + "tail: long, dark brown feathers with lighter brown bands at the tips", + "throat: cream-colored feathers transitioning towards the breast" + ], + "brown songlark": [ + "back: brown and streaked feathers", + "beak: short, cone-shaped, greyish-brown", + "belly: pale brown with darker markings", + "breast: light brown with darker streaks", + "crown: reddish-brown with faint streaks", + "forehead: rufous-brown blending into crown", + "eyes: black, surrounded by thin white eye-ring", + "legs: long, slender, grey-brown", + "wings: brown with darker flight feathers, edged in pale brown", + "nape: reddish-brown with faint streaks", + "tail: brown with darker central feathers, edged in pale brown", + "throat: whitish-brown with fine streaks" + ], + "brown tanager": [ + "back: earthy brown feathers", + "beak: short, sharp, and gray", + "belly: light brown hue", + "breast: warm chestnut color", + "crown: slightly darker brown feathers", + "forehead: smooth, brown plumage", + "eyes: small, black, and alert", + "legs: slender and dark gray", + "wings: rich brown with hints of olive green", + "nape: lighter brown, blending into the back", + "tail: long, brown feathers with white tips", + "throat: soft brown, fading into the breast area" + ], + "brown teal": [ + "back: earthy brown feathers", + "beak: short, dark gray", + "belly: light brown speckling", + "breast: buff brown with faint spots", + "crown: dark brown with some olive hues", + "forehead: lighter brown blending into crown", + "eyes: black, small, and round", + "legs: sturdy, grayish-blue", + "wings: rich brown with greenish-blue speculum", + "nape: olive-brown, blending with crown", + "tail: dark brown and slightly pointed", + "throat: buffy white, contrasting with breast" + ], + "brown thornbill": [ + "back: brownish-grey streaked plumage", + "beak: slender, straight, and dark grey", + "belly: buff-white with light streaks", + "breast: pale brown, finely streaked", + "crown: pale brown with thin streaks", + "forehead: pale brown and unmarked", + "eyes: dark brown with white eye-ring", + "legs: long, thin, and pale grey", + "wings: brown with white-edged feathers", + "nape: pale brown, streaked with grey", + "tail: dark brown with light outer feathers", + "throat: white and unmarked" + ], + "brown tinamou": [ + "back: dark brown feathered", + "beak: small, slightly curved", + "belly: light brown with darker spots", + "breast: reddish-brown plumage", + "crown: dark brown feathered", + "forehead: slightly lighter brown", + "eyes: small, black, alert", + "legs: slender, greyish-brown", + "wings: short, rounded, brown", + "nape: dark brown with light streaks", + "tail: short, brown, slightly upturned", + "throat: light brown with darker markings" + ], + "brown tit babbler": [ + "back: earthy brown feathers", + "beak: short and stout", + "belly: pale creamy-brown hue", + "breast: warm light brown plumage", + "crown: chocolate brown head", + "forehead: slightly lighter brown shade", + "eyes: prominent, black, and round", + "legs: thin, light brown", + "wings: moderately sized with brown-toned feathers", + "nape: gentle curve connecting head to back", + "tail: medium length, reddish-brown feathers", + "throat: subtle beige coloration" + ], + "brown treecreeper": [ + "back: streaked brown and buff feathers", + "beak: long, thin, curved", + "belly: creamy white with brown spots", + "breast: beige with brown streaks", + "crown: reddish-brown with fading streaks", + "forehead: lighter reddish-brown", + "eyes: dark, small, round", + "legs: strong, grayish-brown", + "wings: brown with buff-edged feathers", + "nape: reddish-brown, slightly streaked", + "tail: long, stiff, brown with white tips", + "throat: whitish with fine brown streaks" + ], + "brown trembler": [ + "back: earthy brown feathers", + "beak: slender, slightly curved", + "belly: light brown, soft plumage", + "breast: blended brown and light shades", + "crown: deep brown, defined feathers", + "forehead: mild brown, smooth feathers", + "eyes: alert, dark beads", + "legs: thin, brown with scaly texture", + "wings: rich brown, elongated feathers", + "nape: brown gradient, slightly ruffled", + "tail: fanned, dark brown feathers", + "throat: light brown, delicate plumage" + ], + "brown twinspot": [ + "back: earthy brown with fine streaks", + "beak: short and conical, dark grey", + "belly: pale brown with white spots", + "breast: chestnut-brown with bold white marks", + "crown: warm brown with dark streaks", + "forehead: light brown with narrow streaks", + "eyes: dark brown, outlined with fine white ring", + "legs: strong and slender, greyish-brown", + "wings: dark brown with white spots, rounded shape", + "nape: light brown with fine streaks", + "tail: brown with white spots, slightly forked", + "throat: pale brown with small white markings" + ], + "brown violetear": [ + "back: iridescent olive-green feathers", + "beak: long, slender, and slightly curved", + "belly: pale, grayish-green plumage", + "breast: gently-hued, olive-green feathers", + "crown: vibrant, iridescent blue-violet streaks", + "forehead: smooth, blue-violet feathers", + "eyes: small, dark in color, surrounded by green plumage", + "legs: short, delicate, pale gray", + "wings: rich, olive-green with flashes of bronze", + "nape: predominantly green with a violet touch", + "tail: olive-green with blue-violet tinge on the edges", + "throat: brilliant blue-violet patch of iridescent feathers" + ], + "brown wood owl": [ + "back: dark brown feathers with white spots", + "beak: sharp, curved, blackish-gray", + "belly: light brown with darker brown streaks", + "breast: rich brown with white mottling", + "crown: dark brown with lighter streaks", + "forehead: light brown with dark streaks and spots", + "eyes: large, dark brown, piercing gaze", + "legs: feathered, strong, light brown", + "wings: wide, dark brown with white spots and light brown edges", + "nape: light brown with dark brown streaks", + "tail: long, dark brown with white barring", + "throat: light brown with dark brown streaks" + ], + "brown wood rail": [ + "back: rich brown feathers", + "beak: strong, slightly curved, grayish-brown", + "belly: pale buff coloration", + "breast: reddish-brown with possible white streaks", + "crown: slightly darker reddish-brown", + "forehead: light brown with a possible speckled pattern", + "eyes: small, dark, with a white eyering", + "legs: greenish-gray, long and slender", + "wings: reddish-brown with partially white-streaked feathers", + "nape: similar tone as the crown, reddish-brown", + "tail: long, reddish-brown with visible, white-tipped feathers", + "throat: lighter brown, slightly paler than the belly" + ], + "brown woodland warbler": [ + "back: light brown with subtle streaks", + "beak: slender and slightly curved", + "belly: creamy white with faint markings", + "breast: pale brown with thin streaks", + "crown: warm brown with slight crest", + "forehead: smooth, light brown", + "eyes: round, dark with white eyering", + "legs: sturdy, yellowish-brown", + "wings: brown with faint feather edgings", + "nape: light brown, finely streaked", + "tail: long, brown with white outer feathers", + "throat: pale, unmarked creamy" + ], + "brown and yellow marshbird": [ + "back: earthy brown feathers", + "beak: pointed and yellowish", + "belly: soft yellow hue", + "breast: warm brown with a hint of yellow", + "crown: brown with a lighter streak", + "forehead: dark brown merging into yellow", + "eyes: beady black with a touch of yellow", + "legs: slender and brownish yellow", + "wings: brown with lighter yellow edges", + "nape: brown with a dash of yellow", + "tail: long and brown with yellow undertones", + "throat: vibrant yellow feathers" + ], + "brown backed chat tyrant": [ + "back: warm brown feathers", + "beak: small, pointed, black", + "belly: light cream with streaks", + "breast: pale brown with faint markings", + "crown: mottled brown and beige", + "forehead: beige with light streaks", + "eyes: dark, beady, and alert", + "legs: slender, grey, and twig-like", + "wings: brown with distinct barring", + "nape: brown with a subtle texture", + "tail: elongated, fan-shaped, brown", + "throat: light beige with faint striations" + ], + "brown backed flowerpecker": [ + "back: rich brown feathers", + "beak: short, stout, and curved", + "belly: pale yellowish-white", + "breast: warm brown", + "crown: brown with slight fading", + "forehead: rich earthy brown", + "eyes: small and black with white eye-ring", + "legs: slender and grayish-brown", + "wings: brown with white fringes on feathers", + "nape: soft brown fading to yellowish-white", + "tail: short and fan-shaped, brown with white tips", + "throat: creamy yellow with brown streaks" + ], + "brown backed honeyeater": [ + "back: shades of brown feathers", + "beak: slender, curved, black", + "belly: cream or white feathers", + "breast: light brown with fine streaks", + "crown: brown, blending with back", + "forehead: yellow streaks or patches", + "eyes: dark, sharp gaze", + "legs: slim, gray or brown", + "wings: brown with white markings", + "nape: lighter brown, connecting crown and back", + "tail: long, brown with white tips or bands", + "throat: creamy or white with brown streaks" + ], + "brown backed mockingbird": [ + "back: brownish-grey feathers", + "beak: slim, slightly curved blackish", + "belly: cream-colored feathers", + "breast: lighter brown streaked markings", + "crown: smooth greyish-brown", + "forehead: pale brown, seamless transition from crown", + "eyes: round, dark with thin white eye-ring", + "legs: slender, greyish-black", + "wings: brownish-grey with white bars", + "nape: grey-brown blending into back", + "tail: long, slim, dark-brown feathers with white tips", + "throat: cream-colored, unmarked" + ], + "brown backed needletail": [ + "back: brown feathers with a streamlined shape", + "beak: short, sharp, and dark in color", + "belly: light, creamy color with a soft texture", + "breast: light brown, with hints of speckled grey", + "crown: brown feathers blending into the forehead", + "forehead: brown hues gradually darkening towards the crown", + "eyes: small, dark, and alert", + "legs: short, thin, and dark in color", + "wings: long, sharp, and brown with swift movements", + "nape: light brown, transitioning to darker brown on the back", + "tail: short, dark, and slightly forked", + "throat: light, creamy color, subtly striped" + ], + "brown backed parrotlet": [ + "back: rich brown feathers", + "beak: small, pale-hued upper beak and dark lower beak", + "belly: light greenish-yellow feathers", + "breast: vibrant green plumage", + "crown: brown with pale border", + "forehead: rich brown feathers", + "eyes: dark, round with white eye-ring", + "legs: short, greyish-blue", + "wings: brownish-green with blue-tinted edges", + "nape: brown with a pale border", + "tail: green feathers with blue tips", + "throat: bright green plumage" + ], + "brown backed scrub robin": [ + "back: brown feathers with subtle patterns", + "beak: small, slender, and pointed", + "belly: off-white with light brown spots", + "breast: delicate peach coloring with some spots", + "crown: reddish-brown with fine streaks", + "forehead: light and slightly speckled", + "eyes: bright, black beady orbs", + "legs: long, thin, pale brown", + "wings: warm brown with faint patterns", + "nape: reddish-brown with fine streaks", + "tail: long, brown with faint bands", + "throat: pale peach with light brown spots" + ], + "brown backed solitaire": [ + "back: brownish-gray feathers", + "beak: short and slightly curved", + "belly: pale gray-white", + "breast: light gray shading", + "crown: dark brown crest", + "forehead: light brown feathering", + "eyes: black with white eye-ring", + "legs: slender, grayish-blue", + "wings: brown with white streaks", + "nape: dark brown with lighter edges", + "tail: long, brown with white tips", + "throat: light gray-white shading" + ], + "brown backed whistler": [ + "back: rich brown feathers", + "beak: small, sharp, silver-grey", + "belly: creamy white with delicate brown streaks", + "breast: light brown with faint streaks", + "crown: warm brown with a smooth texture", + "forehead: slightly paler brown, blending into the crown", + "eyes: small, dark, with a hint of intelligence", + "legs: slender, grey-brown, and strong", + "wings: brown with white edges, faint patterning", + "nape: soft brown, smooth transition from crown", + "tail: long, brown, with white tips on outer feathers", + "throat: off-white, bordered by light brown stripes" + ], + "brown backed woodpecker": [ + "back: brown and black striped pattern", + "beak: long, sharp, and chisel-like", + "belly: white with brown speckles", + "breast: white with brown spots", + "crown: red for males, black for females", + "forehead: black-bordered white patch", + "eyes: dark and round with white eyelids", + "legs: sturdy, gray, and scaled", + "wings: brown with white and black barring", + "nape: black with white stripes", + "tail: dark brown with white spots and strong central feathers", + "throat: white with brown streaks" + ], + "brown banded antpitta": [ + "back: brownish with dark bands", + "beak: short and stout, pale color", + "belly: pale gray with dense brown bars", + "breast: white with brown bands", + "crown: brown shade with slight streaks", + "forehead: lighter brown, faint streaks", + "eyes: black with white eye-ring", + "legs: long and slender, grayish-brown", + "wings: dark brown, barred patterns", + "nape: brown with subtle streaks", + "tail: short and rounded, brown bars", + "throat: white with sparse brown streaks" + ], + "brown banded puffbird": [ + "back: mottled brown and black feathers", + "beak: short, robust, blackish-gray", + "belly: creamy-white with brown bands", + "breast: pale white with brown streaks", + "crown: dark brown with rufous edges", + "forehead: reddish-brown with fine streaks", + "eyes: dark brown surrounded by pale feathers", + "legs: short, grayish-brown", + "wings: brown with buffy-white spots", + "nape: rufous-brown with black markings", + "tail: long, brown, with white-tipped feathers", + "throat: white with faint brown streaks" + ], + "brown bellied stipplethroat": [ + "back: rich brown feathers with slight stippling", + "beak: slender, slightly curved black beak", + "belly: light brown with delicate stipples", + "breast: warm brown with faint stipple pattern", + "crown: mottled brown with darker streaks", + "forehead: smooth light brown transitioning into crown", + "eyes: small, black, alert eyes", + "legs: slender, brown-grey legs with sharp claws", + "wings: medium length, brown with subtle stippling", + "nape: soft brown with light stipples", + "tail: fan-shaped, brown with faint stipples", + "throat: light brown, intricately stippled pattern" + ], + "brown bellied swallow": [ + "back: light brown feathers, streamlined", + "beak: small, dark, pointed", + "belly: dark brown, subtly streaked", + "breast: chestnut-brown, sleek", + "crown: dark brown, slightly raised", + "forehead: lighter brown, smooth", + "eyes: small, dark, alert", + "legs: slender, dark, agile", + "wings: elongated, tapered, brown", + "nape: smooth transition from crown, brown", + "tail: forked, brown, with white edges", + "throat: light brown, unmarked" + ], + "brown billed scythebill": [ + "back: dark brown with light streaks", + "beak: long, curved, and brownish-black", + "belly: white with light brown spots", + "breast: light brown with white streaks", + "crown: dark brown with slight crest", + "forehead: lighter brown with thin streaks", + "eyes: small, black, surrounded by light brown", + "legs: slender and brownish-gray", + "wings: dark brown with lighter brown bars", + "nape: dark brown with light streaks", + "tail: long and dark brown with light bars", + "throat: white with brown streaks" + ], + "brown breasted barbet": [ + "back: dark green, slightly curved feathers", + "beak: stout, moderately curved, yellowish", + "belly: light brown, streaked feathers", + "breast: bright brown, spotted with white", + "crown: vibrant green with a small red spot", + "forehead: matching green with crown, thin white line", + "eyes: dark brown, surrounded by a white ring", + "legs: sturdy, light gray", + "wings: dark green with blue-violet tips", + "nape: green, blending into brown on the neck", + "tail: long, green with a hint of blue, squared end", + "throat: creamy white, bordered with brown feathers" + ], + "brown breasted bulbul": [ + "back: light brown feathers covering the upper side", + "beak: short, slender, slightly curved downward", + "belly: creamy white with hints of brown", + "breast: brownish-grey feathers with a distinct bib-like patch", + "crown: light brown top of the head, slightly raised crest", + "forehead: light brown, blending into the crown", + "eyes: dark, surrounded by a faint white eye-ring", + "legs: greyish-brown, scaly, with sharp claws", + "wings: light to medium brown with darker tips", + "nape: light brown feathers continuing from crown to back", + "tail: long, dark brown feathers with white tips", + "throat: creamy beige, transitioning to the brown breast" + ], + "brown breasted flycatcher": [ + "back: brown plumage, sleek texture", + "beak: pointed, small, black color", + "belly: off-white with mild streaks", + "breast: rich brown, speckled pattern", + "crown: chocolate brown, smooth appearance", + "forehead: light brown, markings on head", + "eyes: round, dark, sharp gaze", + "legs: slender, grayish-black, strong", + "wings: elongated, brown feathers with faint patterning", + "nape: brownish, thin plumage, elegant lines", + "tail: long, dark brown, fanlike shape", + "throat: plain off-white, smooth appearance" + ], + "brown breasted gerygone": [ + "back: brownish-grey with subtle white streaks", + "beak: small, pointed, and black", + "belly: creamy-white with brownish tinge", + "breast: warm brown with fine white streaks", + "crown: brownish-grey with faint white streaks", + "forehead: pale brown blending into crown", + "eyes: small, black, encircled by white eyering", + "legs: slender, greyish-brown", + "wings: brown with white barring on flight feathers", + "nape: brownish-grey, connecting crown to back", + "tail: long, brown with white outer edges on feathers", + "throat: creamy-white, contrasting with breast" + ], + "brown breasted kingfisher": [ + "back: iridescent blue-green with black speckles", + "beak: long, sharp, and bright orange", + "belly: rich chestnut-brown with white streaks", + "breast: warm chestnut-brown with fine white spots", + "crown: bright blue with white streaks", + "forehead: deep blue merging into the crown", + "eyes: small, round, and dark with a white ring", + "legs: sturdy and coral-colored", + "wings: vibrant blue with black and white bands on flight feathers", + "nape: iridescent blue-green with a white collar", + "tail: long, royal blue feathers with white tips", + "throat: white with chestnut-brown streaks" + ], + "brown breasted parakeet": [ + "back: greenish-brown feathers", + "beak: hooked, beige and gray", + "belly: soft, light brown hue", + "breast: warm, brownish-red plumage", + "crown: yellow-green feathered head", + "forehead: subtle light green feathers", + "eyes: dark, circular with a white outline", + "legs: strong, gray with scaly texture", + "wings: vibrant green with blue edges", + "nape: green-to-yellow feather gradient", + "tail: long, green-blue with yellow tips", + "throat: pale, creamy yellow feathers" + ], + "brown breasted pygmy tyrant": [ + "back: olive-brown feathers", + "beak: short and black", + "belly: off-white with brown streaks", + "breast: brownish-gray plumage", + "crown: olive-brown with pale streaks", + "forehead: pale stripe above the eyes", + "eyes: dark, black-brown", + "legs: short and slender, pale pink", + "wings: olive-brown with faint bars", + "nape: olive-brown feathers", + "tail: short and olive-brown", + "throat: off-white with brown streaks" + ], + "brown capped babbler": [ + "back: earthy brown feathers", + "beak: small, sharp, black", + "belly: light beige with faint streaks", + "breast: pale brown with gentle markings", + "crown: rich brown color, sometimes chestnut", + "forehead: slightly lighter brown than crown", + "eyes: black, bright, alert", + "legs: slender, grayish-brown", + "wings: brown with faint barring", + "nape: slightly darker brown than back", + "tail: long, brown, with faint white tips", + "throat: buff-white with darker streaks" + ], + "brown capped fantail": [ + "back: brown plumage with lighter streaks", + "beak: thin, slightly curved, dark grey", + "belly: pale cream with faint dark markings", + "breast: buff colored with grey-tinted side feathers", + "crown: dark brown with light streaks", + "forehead: smooth, light brown tinged with grey", + "eyes: dark and beady with a thin white eyering", + "legs: slender and long, blueish-grey", + "wings: brown with white-barred teardrop-shaped feathers", + "nape: light brown with darker streaks", + "tail: long and fan-shaped, brown with white tips", + "throat: creamy white with faint grey markings" + ], + "brown capped laughingthrush": [ + "back: earthy brown feathers", + "beak: short and curved, black", + "belly: pale brownish-white", + "breast: buff-brown, with faint streaks", + "crown: rich brown with subtle cap", + "forehead: paler brown blending into cap", + "eyes: beady and black, watching intently", + "legs: sturdy and gray, built for hopping", + "wings: brown with soft, rufous tones", + "nape: transitioning from the crown's brown hues", + "tail: long and brown with white outer feathers", + "throat: creamy white with delicate streaks" + ], + "brown capped pygmy woodpecker": [ + "back: mottled brown and white feathers", + "beak: short, black, and slightly curved", + "belly: white with faint brown streaks", + "breast: white with light brown streaks", + "crown: brown with faint white spotting", + "forehead: white with faint brown streaks", + "eyes: small and dark with white eyelid edges", + "legs: grayish-black with two forward-facing toes and one backward-facing toe", + "wings: reddish-brown with white bar-like patterning", + "nape: brown with faint white spotting", + "tail: narrow and brown with white markings", + "throat: white with light brown streaks" + ], + "brown capped redstart": [ + "back: reddish-brown feathers", + "beak: small, pointed, black", + "belly: white with some reddish-brown", + "breast: light reddish-brown", + "crown: dark brown cap", + "forehead: slightly lighter brown than crown", + "eyes: dark, medium-sized, surrounded by white ring", + "legs: slender, grayish-blue", + "wings: reddish-brown with white wing bars", + "nape: dark brown transitioning to reddish-brown", + "tail: reddish-brown, slightly forked", + "throat: white, contrasting with the breast" + ], + "brown capped tit spinetail": [ + "back: earthy brown feathers", + "beak: small, pointed grayish-black", + "belly: creamy white underparts", + "breast: light brown with white streaks", + "crown: chestnut-brown cap", + "forehead: white-streaked on brown", + "eyes: beady and black", + "legs: grayish-blue, strong", + "wings: brown with faint barring", + "nape: light brown, streaked", + "tail: slender, long with barring", + "throat: white with fine brown streaks" + ], + "brown capped tyrannulet": [ + "back: olive-brown feathers", + "beak: short, sharp, grayish-black", + "belly: pale yellowish-white", + "breast: light yellow-brown", + "crown: rufous-brown cap", + "forehead: olive-brown shading", + "eyes: dark, round, surrounded by thin white eye-ring", + "legs: slender, grayish-brown", + "wings: olive-brown with faint wing bars", + "nape: olive-brown shading", + "tail: olive-brown with subtle lighter edges", + "throat: pale yellowish-white" + ], + "brown capped vireo": [ + "back: olive-green plumage", + "beak: small, sharp, slightly hooked", + "belly: whitish with faint streaks", + "breast: pale yellow or white", + "crown: rusty-brown cap", + "forehead: brownish-yellow", + "eyes: dark with thin white eyering", + "legs: sturdy, grayish-blue", + "wings: slightly rufous with two white wing bars", + "nape: olive-green with rusty brown streaks", + "tail: short, square, edged with white", + "throat: unmarked pale yellow" + ], + "brown capped weaver": [ + "back: brown feathered with black streaks", + "beak: robust, black, and pointed", + "belly: creamy yellow with black stripes", + "breast: pale yellow with dark streaks", + "crown: brown cap on head", + "forehead: bright brownish-yellow", + "eyes: small, black, beady", + "legs: light gray with sharp claws", + "wings: brown with some white edges", + "nape: uniformly brown feathers", + "tail: lengthy, brown with black bands", + "throat: yellow with black streaks" + ], + "brown cheeked bulbul": [ + "back: olive-brown feathers", + "beak: short, slightly curved, blackish", + "belly: pale yellow-tinged white", + "breast: buff-brown plumage", + "crown: brownish-gray tone", + "forehead: light grayish-brown", + "eyes: dark, medium-sized, encircled by grayish-white eye-ring", + "legs: slender, grayish brown", + "wings: olive-brown, elongated, with white-tipped primary feathers", + "nape: brownish-gray transitioning from the crown", + "tail: long, olive-brown, with white-tipped feathers", + "throat: light brown, blending into breast area" + ], + "brown cheeked fulvetta": [ + "back: brown plumage with subtle streaks", + "beak: small, pointed, and grayish-black", + "belly: pale grayish-white with slight brown undertones", + "breast: light brownish-gray", + "crown: rich brown with faint streaks", + "forehead: smooth light brown", + "eyes: small and dark with subtle white eye-ring", + "legs: pale pink to grayish-brown", + "wings: brown with buffy-white edgings", + "nape: rich brown with faint streaks", + "tail: long and brown with pale tips", + "throat: grayish-white, blending into brown on sides" + ], + "brown cheeked hornbill": [ + "back: brown and white striped feathers", + "beak: large, curved, cream-colored bill", + "belly: cream-colored feathers with black patterns", + "breast: white feathers with slight brown markings", + "crown: dark blackish-brown crest", + "forehead: black with some brown speckles", + "eyes: small, dark, encircled by a blue eye-ring", + "legs: sturdy, dark gray with curved talons", + "wings: brown and white with prominent blackand white-banded primaries", + "nape: brownish-black feathers, slightly raised", + "tail: long, brown and white with broad black bars", + "throat: white with small brown speckles" + ], + "brown cheeked rail": [ + "back: dark brown with fine white streaks", + "beak: relatively long, slender, and black", + "belly: pale brown with lighter central area", + "breast: warm brown with dark streaks", + "crown: rich brown with a slight crest", + "forehead: slightly lighter brown than crown", + "eyes: small, dark, and well-camouflaged", + "legs: strong and greenish-yellow", + "wings: short, brown with white bars", + "nape: warm brown with faint white streaks", + "tail: short and square-shaped with dark bars", + "throat: creamy white with light brown streaks" + ], + "brown chested alethe": [ + "back: dark brown feathers", + "beak: small and sharp", + "belly: light brown soft feathers", + "breast: brown with white streaks", + "crown: dark brown feathered head", + "forehead: slightly lighter brown than crown", + "eyes: round, black, and alert", + "legs: lengthy and thin", + "wings: medium-sized, brown with some white specks", + "nape: tawny brown", + "tail: medium-length, brown feathers", + "throat: lighter brown with some white streaks" + ], + "brown chested barbet": [ + "back: greenish-brown feathers", + "beak: strong, curved, black", + "belly: cream-colored feathers", + "breast: deep brown, distinct patterns", + "crown: greenish to black, crest-like", + "forehead: greenish-black", + "eyes: small, dark, round", + "legs: grayish, sturdy", + "wings: greenish-brown, short, round", + "nape: greenish-black, well-defined", + "tail: green, broad, graduated", + "throat: cream feathers, contrasting" + ], + "brown chested jungle flycatcher": [ + "back: brown and streaked with white", + "beak: dark gray, slightly hooked", + "belly: white with brown speckles", + "breast: rich chestnut-brown", + "crown: dark gray-brown with lighter streaks", + "forehead: grayish-brown with faint streaks", + "eyes: dark brown with a white eye-ring", + "legs: grayish-brown, strong and slender", + "wings: brown with lighter buff-edged feathers", + "nape: gray-brown with streaks of white", + "tail: brown with white-tipped outer feathers", + "throat: white with brown streaks" + ], + "brown chested lapwing": [ + "back: brownish with white spots", + "beak: short, black, and slightly curved", + "belly: cream-colored with brown markings", + "breast: rich brown with a white patch", + "crown: brown with a white streak", + "forehead: white with a black patch", + "eyes: bright, black, and attentive", + "legs: long, slender, and yellowish", + "wings: brown with white streaks", + "nape: brown and white patterned", + "tail: short with brown and white bands", + "throat: white with a brown border" + ], + "brown chested martin": [ + "back: sleek brown feathers", + "beak: dark, sharp, and pointed", + "belly: white to buff underside", + "breast: brown chest with a pale streak", + "crown: brown and smooth feathers", + "forehead: slightly paler brown", + "eyes: small, dark, alert", + "legs: slender, dark-gray", + "wings: brown with a noticeable white stripe", + "nape: matching brown feathers", + "tail: forked with dark-brown feathers", + "throat: white to buff, blending with the breast" + ], + "brown crowned scimitar babbler": [ + "back: cinnamon-brown feathers", + "beak: long, curved, black", + "belly: whitish-grey plumage", + "breast: pale chestnut hue", + "crown: chestnut-brown, well-defined", + "forehead: slightly lighter chestnut-brown", + "eyes: round, dark, expressive", + "legs: sturdy, greyish-brown", + "wings: cinnamon-brown with light streaks", + "nape: warm chestnut-brown", + "tail: long, curved, chestnut-brown", + "throat: white with dark streaks" + ], + "brown crowned tchagra": [ + "back: brown with slight reddish tint", + "beak: short and sharp, blackish-grey", + "belly: russet beige with fine dark streaks", + "breast: pale brown, blending with belly", + "crown: chestnut brown, well-defined", + "forehead: lighter brown, blending with crown", + "eyes: shiny black, encircled with white", + "legs: strong, slate-grey in color", + "wings: brown with white-tipped feathers", + "nape: brown, continuous with the crown", + "tail: lengthy, brown with white edges", + "throat: creamy white with faint streaking" + ], + "brown eared bulbul": [ + "back: brownish-grey feathers", + "beak: small and pointed black beak", + "belly: off-white with slight grey streaks", + "breast: light brown with grey streaks", + "crown: rich brown with no crest", + "forehead: light brown feathers", + "eyes: small, round, black pupils with white ring", + "legs: slim, greyish-brown legs", + "wings: brownish-grey with white edges", + "nape: pale brown feathers transitioning to rich brown", + "tail: elongated, dark brown with white-tipped outer feathers", + "throat: light brown with grey streaks" + ], + "brown eared woodpecker": [ + "back: dark brown plumage with white speckles", + "beak: strong, chisel-shaped black bill", + "belly: white with subtle brown spots", + "breast: white with fine brown streaks", + "crown: reddish-brown with a slight crest", + "forehead: paler brown with a white band", + "eyes: dark, surrounded by a white ring", + "legs: grayish-blue with sharp claws", + "wings: brown with white and black spots and bars", + "nape: chestnut-brown, blending into crown", + "tail: brown with dark bars, stiff and functional for support", + "throat: white with light brown stripes" + ], + "brown flanked tanager": [ + "back: vibrant olive-green", + "beak: short and stout, black", + "belly: soft yellowish-white", + "breast: bright turquoise-blue", + "crown: rich blue with a metallic sheen", + "forehead: turquoise-blue", + "eyes: dark, beady and alert", + "legs: dark grey, slender", + "wings: olive-green, edged with blues", + "nape: vibrant blue, blending into olive-green", + "tail: long and tapered, mix of blues and olive-green", + "throat: bright turquoise-blue" + ], + "brown fronted woodpecker": [ + "back: streaked brown with white bars", + "beak: strong, chisel-like, slate black", + "belly: buff-white with dark markings", + "breast: mottled brown and cream", + "crown: red for male, grayish-brown for female", + "forehead: whitish to light brown", + "eyes: black with white eye-ring", + "legs: strong, grayish-blue", + "wings: barred brown and white", + "nape: brown with white spots", + "tail: stiff, brown with black bands", + "throat: pale brown with darker streaks" + ], + "brown headed apalis": [ + "back: olive-green feathers", + "beak: short, pointed, black", + "belly: off-white with light gray streaks", + "breast: whitish-gray with faded barring", + "crown: rich brown plumage", + "forehead: brown with slight olive tint", + "eyes: dark brown, round, and alert", + "legs: long, slender, gray", + "wings: olive-green with brown highlights", + "nape: brown, blending into olive-green", + "tail: long, grayish-brown with white tips", + "throat: whitish-gray, slightly streaked" + ], + "brown headed barbet": [ + "back: greenish-brown plumage", + "beak: stout and curved, pale yellow", + "belly: pale yellow with brown streaks", + "breast: yellowish with brownish-green spots", + "crown: brown head with a hint of green", + "forehead: reddish-brown", + "eyes: dark with pale yellow eye rings", + "legs: short and strong, grayish-blue", + "wings: green with black flight feathers", + "nape: brownish-green with pale yellow spots", + "tail: short and broad, greenish-brown", + "throat: pale yellow with brown streaks" + ], + "brown headed crow": [ + "back: sleek black feathers", + "beak: strong, sharp black beak", + "belly: lighter brown feathers", + "breast: rich brown plumage", + "crown: brown feathers on the top of the head", + "forehead: dark brown feathers above eyes", + "eyes: intelligent, dark, piercing gaze", + "legs: sturdy black legs with sharp talons", + "wings: long black feathers with a wide wingspan", + "nape: brownish-black feathers on the back of neck", + "tail: long black feathers with a fan-like shape", + "throat: lighter brown plumage near the beak" + ], + "brown headed greenlet": [ + "back: shades of green with a narrow olive-brown stripe", + "beak: short, slender, and light gray", + "belly: soft yellow-green", + "breast: pale green-yellow", + "crown: rich brown with a faint olive tinge", + "forehead: deep chestnut-brown", + "eyes: dark brown with a thin white eye-ring", + "legs: grayish with sharp claws", + "wings: vibrant green with faint brown edges", + "nape: brownish-green with subtle streaks", + "tail: green with blackish outer feathers and white tips", + "throat: pale yellow with a hint of green" + ], + "brown headed gull": [ + "back: light gray feathers covering upper body", + "beak: reddish-orange with black tip", + "belly: pure white plumage on the underside", + "breast: white feathers transitioning from gray back", + "crown: chocolate brown feathers on top of the head", + "forehead: white area just above the beak", + "eyes: dark, round, and inquisitive", + "legs: reddish-orange and webbed for swimming", + "wings: gray with black wingtips and white trailing edges", + "nape: area between crown and back with grayish-white feathers", + "tail: white with black band at the end", + "throat: white feathers connecting to the belly" + ], + "brown headed honeyeater": [ + "back: olive-green with subtle brown hue", + "beak: thin, sharp, dark gray", + "belly: off-white with pale yellow tinges", + "breast: light yellow with brown streaks", + "crown: rich chestnut-brown", + "forehead: brown blending into olive-green", + "eyes: small, dark, encircled by off-white eyering", + "legs: slender, gray, with sharp claws", + "wings: olive-green with dark flight feathers", + "nape: chestnut-brown transitioning to olive-green", + "tail: long, olive-green with dark central feathers", + "throat: pale yellow with subtle brown markings" + ], + "brown headed paradise kingfisher": [ + "back: iridescent blue-green feathers", + "beak: relatively long, black", + "belly: bright white plumage", + "breast: vibrant red-orange feathers", + "crown: rich chocolate-brown coloring", + "forehead: distinctive brown head stripe", + "eyes: beady black, watchful gaze", + "legs: thin, black, strong grip", + "wings: striking blue-green feathers, short and rounded", + "nape: brown connecting to stunning blue-green plumage", + "tail: elongated, vibrant blue-green feathers with white tips", + "throat: brilliant white, contrasting dark head" + ], + "brown headed parrot": [ + "back: vibrant green feathers", + "beak: strong, hooked, and grayish-brown", + "belly: light green with hints of blue", + "breast: vibrant green, transitioning to blue towards the belly", + "crown: dark brown, covering the head", + "forehead: dark brown, continuous with the crown", + "eyes: round, black, framed by a bare white eye-ring", + "legs: gray, with scaly texture and strong talons", + "wings: green with hints of blue, darker green primary feathers", + "nape: green, connecting the crown to the back", + "tail: long, green with blue tips, spreading out during flight", + "throat: green, lighter towards the breast" + ], + "brown headed thrush": [ + "back: brownish-grey feathers", + "beak: short, dark-colored", + "belly: creamy-white with brown spots", + "breast: light brown with dark speckles", + "crown: chocolate-brown color", + "forehead: slightly lighter brown", + "eyes: small, dark with a prominent white eye-ring", + "legs: slender and light pinkish-brown", + "wings: brownish-grey with faint barring", + "nape: medium brown hue", + "tail: brown, slightly forked with white tips", + "throat: pale, with fine dark streaks" + ], + "brown hooded gull": [ + "back: sleek brown feathers", + "beak: sharp, curved, yellowish", + "belly: white, smooth plumage", + "breast: brownish-white feathers", + "crown: chocolate brown feathers", + "forehead: brown, slightly crested", + "eyes: bright, piercing yellow", + "legs: long, thin, dark red", + "wings: brown and white, arching gracefully", + "nape: rich brown, continuous with crown", + "tail: white with black borders", + "throat: pale, brown-streaked feathers" + ], + "brown hooded kingfisher": [ + "back: vibrant blue with dark streaks", + "beak: long, black, and strong", + "belly: white with brownish tinge", + "breast: bright orange-brown", + "crown: reddish-brown hood", + "forehead: reddish-brown, merging with crown", + "eyes: large, dark with conspicuous white rings", + "legs: sturdy, dark gray", + "wings: blue-green with black markings", + "nape: reddish-brown, connecting crown to back", + "tail: blue-green with black barring", + "throat: white, contrasting with breast" + ], + "brown hooded parrot": [ + "back: vibrant green feathers", + "beak: strong, curved, beige", + "belly: light green plumage", + "breast: bright yellow feathers", + "crown: dark brown hood", + "forehead: brown merging with green", + "eyes: black, encircled by white rings", + "legs: grayish, strong scaly claws", + "wings: green with touches of blue", + "nape: brown hood continuation", + "tail: long, green with blue tips", + "throat: yellowish, blending with breast" + ], + "brown necked parrot": [ + "back: earthy brown feathers with a subtle green sheen", + "beak: strong, dark gray with a slight hook", + "belly: light green with hints of blue feathers", + "breast: bright green feathers fading to blue near the belly", + "crown: deep green feathers with a slight curve", + "forehead: vibrant green feathers transitioning into brown", + "eyes: dark, round, with a thin white eye-ring", + "legs: pale gray, two-toed zygodactyl feet", + "wings: mixture of green and brown feathers with blue accents", + "nape: rich brown feathers with a slight green iridescence", + "tail: long, blue-tipped green feathers, streaming outward", + "throat: light green feathers fading into the brown neck" + ], + "brown necked raven": [ + "back: dark brown feathers covering the upper body", + "beak: large, sharp, black curved beak for tearing food", + "belly: dark brown feathers with slight gloss on lower body", + "breast: dark brown chest area with a hint of iridescence", + "crown: dark brown feathers on the top of the head", + "forehead: smooth dark brown feathers above the eyes", + "eyes: piercing black or dark brown eyes with keen vision", + "legs: long, black, scaly legs with strong talons", + "wings: dark brown and black feathers with a wide wingspan", + "nape: dark brown feathers covering the back of the neck", + "tail: long, dark brown and black-tipped feathers in a fan shape", + "throat: dark brown feathers on the lower part of the head" + ], + "brown rumped bunting": [ + "back: light brown with streaks", + "beak: short, conical, and grayish-blue", + "belly: pale, sandy brown", + "breast: brownish-gray with faint streaks", + "crown: dark brown with rufous streaks", + "forehead: light brown with a slightly paler central stripe", + "eyes: black with a narrow, pale eyering", + "legs: grayish-blue, slender", + "wings: dark brown with contrasting rufous and buffy wingbars", + "nape: rufous-brown with black streaks", + "tail: dark brown, graduated, with white outer tail feathers", + "throat: off-white with fine dark streaks" + ], + "brown rumped foliage gleaner": [ + "back: light brown with subtle streaks", + "beak: long, slender, and curved", + "belly: pale white or cream with light brown markings", + "breast: creamy brown with faint speckles", + "crown: medium brown with a slight rufous tinge", + "forehead: slightly paler brown compared to the crown", + "eyes: dark brown with thin light eye-ring", + "legs: greyish-brown and sturdy", + "wings: brown with faint barring and rufous edges", + "nape: light brown transitioning from the crown", + "tail: brown with rufous outer feathers and white tips", + "throat: whitish or cream-colored with light brown streaks" + ], + "brown rumped minivet": [ + "back: brown feathered with a subtle rump patch", + "beak: thin, pointed, and black", + "belly: light yellow or off-white underside", + "breast: bright orange-yellow plumage", + "crown: grayish-brown head with buff-colored edges", + "forehead: smooth grayish-brown feathers", + "eyes: small, round, and black with a white eye-ring", + "legs: thin and dark gray, ending in sharp claws", + "wings: brown with white and yellow bars, elongated in flight", + "nape: grayish-brown feathers transitioning to the back", + "tail: long, brown with white outer feathers and bands", + "throat: bright orange-yellow feathers, contrasting with the belly" + ], + "brown rumped seedeater": [ + "back: light brown and streaked", + "beak: conical and pointed", + "belly: cream-colored with faint streaks", + "breast: pale brown to buff", + "crown: brown with fine streaking", + "forehead: pale markings above beak", + "eyes: dark with white eye-ring", + "legs: slender and grayish", + "wings: brown with white-capped edges", + "nape: brown and streaked", + "tail: fan-shaped with lighter edges", + "throat: lighter brown and streaked" + ], + "brown rumped tapaculo": [ + "back: rich brown with a slight rump patch", + "beak: pointy with a grayish-black hue", + "belly: lighter, buffy-brown coloration", + "breast: subtly spotted dark brown", + "crown: deep brown with light streaking", + "forehead: smooth brown feathers", + "eyes: small with black iris surrounded by brown feathers", + "legs: sturdy with brown feathering and gray feet", + "wings: brown with subtle darker barring", + "nape: slightly darker brown transitioning from crown", + "tail: relatively short and brown with faint barring", + "throat: lighter brown with grayish tint" + ], + "brown streaked flycatcher": [ + "back: streaked brown with light feather edges", + "beak: slim and sharp, dark upper, light lower", + "belly: light, with faint brown streaks", + "breast: creamy white with brown streaks", + "crown: brown with streaks, slightly raised", + "forehead: smooth, light brown", + "eyes: black, with white eye-ring", + "legs: slender, dark brown", + "wings: brown, with light feather edges and bars", + "nape: light brown, streaked", + "tail: brown, with white edges on outer feathers", + "throat: creamy white, streaked lightly with brown" + ], + "brown tailed chat": [ + "back: light brown with subtle pattern", + "beak: short and conical, dark gray", + "belly: soft creamy white", + "breast: light chestnut brown, fades to belly", + "crown: dark brown with smooth feathers", + "forehead: slightly lighter brown than crown", + "eyes: small, black, encircled by faint white eyering", + "legs: slender, beige-gray", + "wings: brown with distinct white wing bars", + "nape: moderate brown, blends with back", + "tail: dark brown, with white outer tail feathers", + "throat: pale brown with hints of cream" + ], + "brown throated barbet": [ + "back: greenish-brown feathers", + "beak: thick, pale yellow", + "belly: yellowish-green plumage", + "breast: vibrant crimson color", + "crown: greenish-blue feathers", + "forehead: lime green tint", + "eyes: dark, beady orbs", + "legs: sturdy, greyish-blue", + "wings: greenish-blue hue", + "nape: soft green shade", + "tail: blue-green plumage", + "throat: rich brown color" + ], + "brown throated fulvetta": [ + "back: olive-brown feathers", + "beak: short, sharp, dark grey", + "belly: off-white or light yellowish", + "breast: warm brown, slightly paler than back", + "crown: dark brown with rust-colored stripe", + "forehead: smooth, olive-brown feathers", + "eyes: black, alert, and bright", + "legs: slender, greyish-blue", + "wings: olive-brown with barred pattern", + "nape: olive-brown, continuous with back", + "tail: long, dark brown with faint bars", + "throat: creamy-white, contrasting with breast" + ], + "brown throated parakeet": [ + "back: green feathers with a subtle blue tint", + "beak: light reddish-orange, hooked shape", + "belly: green-to-yellow gradient", + "breast: bright green with hints of yellow", + "crown: green with a touch of blue", + "forehead: brown-orange blending into green", + "eyes: round, black, surrounded by white rings", + "legs: grayish, scaly with strong claws", + "wings: vibrant green, blue-tipped flight feathers", + "nape: green with a bluish tinge", + "tail: long, blue-green feathers with a darker tip", + "throat: brownish-orange fading to green" + ], + "brown throated sunbird": [ + "back: iridescent blue-green feathers", + "beak: long, slender, curved black beak", + "belly: white with faint yellow hues", + "breast: bright yellow-orange plumage", + "crown: glossy purple-blue feathers", + "forehead: metallic blue-green sheen", + "eyes: small, dark, bright eyes", + "legs: thin, pale gray legs", + "wings: blue-green hue with white-edged flight feathers", + "nape: glossy blue-green plumage", + "tail: long, slender, forked dark tail feathers", + "throat: rich, warm brown fur-like feathers" + ], + "brown throated wattle eye": [ + "back: dark brown with subtle markings", + "beak: sharp, black, and slightly curved", + "belly: creamy white with light brown spots", + "breast: rich chestnut brown with faint streaks", + "crown: deep brown with a slight crest", + "forehead: dark brown, blending into crown", + "eyes: large, dark, with a white eyering", + "legs: sturdy with brown feathers and black claws", + "wings: dark brown, over speckled white covert feathers", + "nape: deep chestnut, blending into back", + "tail: black, with white-tipped feathers", + "throat: rich chestnut, merging into breast" + ], + "brown winged kingfisher": [ + "back: rich brown feathers, slightly glossy", + "beak: sturdy black, slightly hooked", + "belly: whitish, tinged with buff and brown", + "breast: pale orangish, mottled with brown", + "crown: deep brown, slightly streaked", + "forehead: deep brown, extending into eyes", + "eyes: dark brown, surrounded by white outline", + "legs: bright red, sturdy", + "wings: brown, white-edged feathers", + "nape: rich brown, meeting the crown", + "tail: long, barring of brown and white stripes", + "throat: whitish, with brown streaks" + ], + "brown winged parrotbill": [ + "back: brownish-grey feathers", + "beak: short, curved, blackish-brown", + "belly: light buff-brown with darker streaks", + "breast: pale brownish-grey with dark streaks", + "crown: warm reddish-brown", + "forehead: pale greyish-brown", + "eyes: small, dark, surrounded by thin white eyering", + "legs: strong, dark gray or brown", + "wings: brown with a subtle pattern of darker bars and patches", + "nape: greyish-brown with faint streaks", + "tail: medium length, dark brown", + "throat: pale buff-brown with thin dark streaks" + ], + "brown winged schiffornis": [ + "back: earthy brown plumage with subtle striping", + "beak: short and straight, dark brown", + "belly: lighter brown with smooth texture", + "breast: chestnut brown, fine feathering", + "crown: consistently brown, sleek feathers", + "forehead: light brown hue, slight curve", + "eyes: small and black, surrounded by brown feathers", + "legs: thin and long, dark brown", + "wings: rich brown, elongated feathers with light striping", + "nape: smooth transitional brown coloration", + "tail: fanned with light striping, mid-length feathers", + "throat: soft brown, delicate feathering" + ], + "brown winged starling": [ + "back: brown feathers with a slight iridescence", + "beak: short, pointed, blackish-grey", + "belly: light brown to beige with subtle streaks", + "breast: warm brown with faint streaks", + "crown: dark brown, smooth feathers", + "forehead: light brown blending into crown", + "eyes: small, dark, alert gaze", + "legs: sturdy, greyish-brown", + "wings: brown with white streaks and darker flight feathers", + "nape: dark brown, smooth transition to back", + "tail: long, dark brown with subtle iridescence", + "throat: light brown, softly streaked" + ], + "brownish elaenia": [ + "back: brownish-olive with subtle feather patterns", + "beak: short, pointed, and pale with darker tip", + "belly: off-white with light brown speckles", + "breast: light brown with subtle striations", + "crown: brownish-olive crest blending with the forehead", + "forehead: pale olive-brown, merging with the crown", + "eyes: black with white eyering, surrounded by pale feathers", + "legs: slender and grayish, perfect for perching", + "wings: olive-brown with prominent feather outlines", + "nape: brownish-olive, connecting the crown and the back", + "tail: brown with dark feather edges, slightly forked", + "throat: light cream with brownish speckles" + ], + "brownish twistwing": [ + "back: earthy brown feathers", + "beak: small, pointed, dark brown", + "belly: lighter brown, soft plumage", + "breast: warm chestnut hue, fluffy", + "crown: slightly darker brown feathers", + "forehead: smooth, tawny brown", + "eyes: small, round, black", + "legs: slender, bark-colored", + "wings: twisty, brown with subtle streaking", + "nape: rich reddish-brown", + "tail: medium-length, brown with faint barring", + "throat: creamy, pale brown" + ], + "brownish flanked bush warbler": [ + "back: olive-brown plumage", + "beak: short, sharp, dark beak", + "belly: light cream with brown streaks", + "breast: pale brown with darker spots", + "crown: greyish-brown and slightly striped", + "forehead: faint dark streaks on light brown", + "eyes: small, dark, with pale eyebrows", + "legs: sturdy, dark gray-to-brown", + "wings: rich brown with darker bars", + "nape: striped greyish-brown", + "tail: brownish, rounded, with slight bars", + "throat: white, with light streaks" + ], + "brownish headed antbird": [ + "back: brownish-gray feathers", + "beak: small, sharp, black", + "belly: light brown with white streaks", + "breast: rusty-brown color", + "crown: dark brown with faint streaks", + "forehead: brownish-gray hue", + "eyes: black with white eyering", + "legs: slender, grayish-blue", + "wings: brown with faint white bars", + "nape: brownish-gray with streaks", + "tail: long, brown with white tips", + "throat: light brown blending into breast" + ], + "brubru": [ + "back: brownish-black upper feathers", + "beak: short, thick, and black", + "belly: off-white, streaked with black", + "breast: white with black stripes", + "crown: black with faint streaks", + "forehead: white and slightly rounded", + "eyes: dark, surrounded by faint white eye-ring", + "legs: slender, pale, and clawed", + "wings: brownish-black, white-bordered feathers", + "nape: black with streaks of brown", + "tail: black with white tips", + "throat: white with black stripes" + ], + "bruce green pigeon": [ + "back: sleek, dark emerald green", + "beak: sturdy, pale yellowish-tan", + "belly: light, pale gray with green undertones", + "breast: deep iridescent green", + "crown: smooth, metallic green", + "forehead: shining emerald green", + "eyes: sharp, dark black with gray rims", + "legs: strong, grayish-pink", + "wings: broad, spanning shades of green and yellow", + "nape: striking greenish-blue hue", + "tail: long, bright green with black tips", + "throat: vibrant green transitioning to pale gray" + ], + "brujo flycatcher": [ + "back: olive-green with darker streaks", + "beak: strong, black, slightly hooked", + "belly: pale yellow with subtle streaks", + "breast: yellowish with brownish streaks", + "crown: grayish-brown with streaks", + "forehead: pale grayish-brown", + "eyes: dark brown with pale eye-ring", + "legs: sturdy, grayish-black", + "wings: brownish-black with white edges", + "nape: olive-green with darker streaks", + "tail: long, brownish-black with white tips", + "throat: pale yellow with faint streaks" + ], + "brush bronzewing": [ + "back: earthy brown with mottled feather patterns", + "beak: short, pale grey with a slight downward curve", + "belly: soft creamy brown with subtle speckling", + "breast: warm chestnut with delicate blush undertones", + "crown: rich chocolate brown with a faint blue iridescence", + "forehead: smooth, pale tan blending into the crown", + "eyes: inquisitive and dark, framed by a white eyering", + "legs: sturdy pinkish-grey with sharp, curved claws", + "wings: multilayered and brown, featuring a striking white stripe", + "nape: sleek, golden brown flowing into the back", + "tail: elongated brown feathers with white banding at the tips", + "throat: light beige accentuated by distinct black bar markings" + ], + "brush cuckoo": [ + "back: olive-brown feathers", + "beak: slender and slightly curved", + "belly: pale creamy-yellow", + "breast: off-white with dark streaks", + "crown: olive-green with faint streaking", + "forehead: lighter olive-green", + "eyes: small and dark", + "legs: short and grayish", + "wings: long, olive-brown with faint pale spots", + "nape: olive-brown blending into the crown", + "tail: long, dark brown with white tips", + "throat: pale with faint vertical streaking" + ], + "brushland tinamou": [ + "back: olive-brown with dark streaks", + "beak: short and straight, grayish hue", + "belly: creamy white with black stripes", + "breast: ash gray with black markings", + "crown: dark brown and speckled", + "forehead: lighter brown, paler than the crown", + "eyes: small, dark, and rounded", + "legs: strong and stout, grayish color", + "wings: short and rounded, olive-brown with dark barring", + "nape: dark brown with fine streaks", + "tail: short and pointed, brownish-black with white tips", + "throat: light gray, slightly paler than the breast" + ], + "bryan shearwater": [ + "back: dark grey feathers", + "beak: thin, slightly curved black bill", + "belly: white, soft feathers", + "breast: dark grey plumage", + "crown: dark grey cap", + "forehead: subtly lighter grey tone", + "eyes: small, round, dark with white eye-ring", + "legs: black, slender with webbed feet", + "wings: long, slender, dark grey with white edges", + "nape: dark grey with lighter feather markings", + "tail: short, dark grey with white tip", + "throat: light grey transitioning to white belly" + ], + "bubbling cisticola": [ + "back: light brown with subtle streaks", + "beak: short and thin, dark gray", + "belly: creamy white with some faint markings", + "breast: light golden brown with fine streaks", + "crown: brown with rufous streaks", + "forehead: pale golden brown, streaked", + "eyes: small and black, with a fine pale eyering", + "legs: slender and pinkish-brown", + "wings: brownish with rufous tinges, barred", + "nape: light golden brown with streaks", + "tail: brownish with white tips, slightly rounded", + "throat: creamy white, unmarked" + ], + "buckley forest falcon": [ + "back: sleek, dark-colored feathers", + "beak: strong, sharply hooked, blackish", + "belly: creamy-white with dark brown streaks", + "breast: whitish with dark brown spots", + "crown: dark brown with a slight crest", + "forehead: pale, creamy-white stripe above the beak", + "eyes: dark, piercing, forward-facing", + "legs: strong, yellow, sharp talons", + "wings: long, tapering, dark brown with barred patterns", + "nape: dark brown feathers, lighter colored streaks", + "tail: dark brown, barred, with white tip", + "throat: creamy-white with dark brown markings" + ], + "budgerigar": [ + "back: greenish-blue feathers covering the upper torso", + "beak: small, curved, yellowish-brown beak", + "belly: light yellow feathers covering the lower abdomen", + "breast: slightly puffed out, covered in blue or green feathers", + "crown: top of the head with colored feathers, often yellow", + "forehead: small, usually white to yellow feathered area above the beak", + "eyes: dark, expressive with white to pale yellow feathered area surrounding them", + "legs: slim, light gray with small, scaly texture", + "wings: green or blue, with black striped patterns on the wing tips", + "nape: back portion of the neck, light greenish-blue feathers", + "tail: elongated, slender, featuring blue, green, and black barred feathers", + "throat: area under beak, black spots on white or yellow base color" + ], + "buff banded bushbird": [ + "back: olive-brown color with buff streaks", + "beak: sharp, short, and black", + "belly: soft white or pale buff with dark streaks", + "breast: creamy white or pale buff with dark banding", + "crown: warm brown with thin, pale streaks", + "forehead: olive-brown fading to a lighter shade on the face", + "eyes: round, dark, and alert", + "legs: grayish-brown, strong, and slim", + "wings: olive-brown with buff and white markings", + "nape: olive-brown color with buff streaks", + "tail: relatively long, rounded, and olive-brown with lighter tips", + "throat: soft white or pale buff with subtle streaking" + ], + "buff banded rail": [ + "back: olive-brown with black and white bars", + "beak: strong, downward-curving, pale pinkish-gray", + "belly: white with black bars", + "breast: buff-colored with broad dark bars", + "crown: dark grayish-brown, slightly streaked", + "forehead: pale gray to white", + "eyes: reddish-brown", + "legs: long, greenish-yellow with long toes", + "wings: short, rounded, olive-brown with white stripes", + "nape: grayish-brown with fine white streaks", + "tail: olive-brown with black and white bands", + "throat: white, with thin dark streaks" + ], + "buff banded tyrannulet": [ + "back: olive-brown feathers", + "beak: short, sharp, and black", + "belly: white with buff colored bands", + "breast: pale yellowish-green hue", + "crown: olive-brown with a bold white eye-ring", + "forehead: light olive-green", + "eyes: dark, round with white eye-ring", + "legs: slender, grayish-black", + "wings: olive-brown with two pale wing bars", + "nape: olive-brown blending into back", + "tail: dark brown with thin white fringes", + "throat: soft yellowish-white" + ], + "buff barred warbler": [ + "back: greenish-brown with buff barring", + "beak: short, thin, and dark", + "belly: pale with faint streaks", + "breast: white with olive-brown streaks", + "crown: olive-brown with black markings", + "forehead: faint buff tinge with brownish streaks", + "eyes: dark and round, white eye ring", + "legs: pale pink and thin", + "wings: greenish-brown with buff bars", + "nape: greenish-brown with faint buff streaks", + "tail: greenish-brown with white edges", + "throat: white and clean" + ], + "buff bellied hermit": [ + "back: green-bronze feathered", + "beak: long, slender, curved", + "belly: buff-orange colored", + "breast: grayish-white plumage", + "crown: greenish iridescent", + "forehead: green-bronze feathers", + "eyes: small, black, bright", + "legs: short, strong, dark", + "wings: green-bronzed, long, pointed", + "nape: iridescent green feathers", + "tail: elongated, white-tipped feathers", + "throat: grayish-white plumage" + ], + "buff bellied hummingbird": [ + "back: vibrant green with iridescent shine", + "beak: long, slender, and slightly curved", + "belly: warm buff-yellow color", + "breast: olive-green gently blending into belly", + "crown: sparkling emerald green", + "forehead: gleaming green with a touch of gold", + "eyes: small, black, and alert", + "legs: slim, featherless, and dark", + "wings: rounded, small, and fast-moving", + "nape: iridescent green leading to the back", + "tail: greenish-bronze with a notched tip", + "throat: glowing red-orange hue" + ], + "buff bellied monarch": [ + "back: olive-green with dark streaks", + "beak: sharp, thin, black", + "belly: bright yellow, lightly feathered", + "breast: yellow with hints of orange", + "crown: dark gray with brownish tint", + "forehead: darker gray, thin white stripe above eyes", + "eyes: black, white ring around eyes", + "legs: slender, grayish-brown", + "wings: olive-green, dark gray flight feathers", + "nape: dull olive-green feathers", + "tail: long, dark gray with faint horizontal bars", + "throat: pale yellow, hints of orange" + ], + "buff bellied puffbird": [ + "back: olive-brown feathers with white streaks", + "beak: short, curved, and black", + "belly: buff-colored with white spots", + "breast: white with brown streaking", + "crown: dark brown with slight crest", + "forehead: white with brown streaks", + "eyes: dark, surrounded by white feathers", + "legs: short, light grey with sharp claws", + "wings: olive-brown with white stripes and spots", + "nape: white with brown streaks", + "tail: long, dark brown with white tips", + "throat: white with brown streaks" + ], + "buff bellied tanager": [ + "back: vibrant green feathers", + "beak: short, thick, and dark", + "belly: light buff-yellow color", + "breast: rich orange-yellow hue", + "crown: bright emerald green", + "forehead: vivid green feathers", + "eyes: small, dark, with a thin white eye-ring", + "legs: slim, grayish, and strong", + "wings: green with black flight feathers", + "nape: lush green plumage", + "tail: long, black, and slightly forked", + "throat: distinct golden-yellow color" + ], + "buff bellied warbler": [ + "back: olive-green feathers", + "beak: short, sharp, and pointed", + "belly: light buff color", + "breast: pale yellowish-green", + "crown: olive-green with subtle streaking", + "forehead: smooth olive-green", + "eyes: small and black with white eye-ring", + "legs: thin with pale pinkish hues", + "wings: olive-green with faint wing bars", + "nape: olive-green with fine streaks", + "tail: short and square with olive-green and white tips", + "throat: pale yellow-green" + ], + "buff breasted babbler": [ + "back: light brown feathers with faint streaks", + "beak: short, curved, and pale", + "belly: buff-colored with soft plumage", + "breast: warm buff with subtle markings", + "crown: top of head, brownish with streaks", + "forehead: light and slightly streaked", + "eyes: small, dark, and alert", + "legs: long, slender, and pale", + "wings: brown and rounded with buff edges", + "nape: light brown with subtle streaks", + "tail: long, slightly fan-like, with buff and brown feathers", + "throat: pale buff with a hint of streaking" + ], + "buff breasted earthcreeper": [ + "back: golden-brown feathers with subtle stripes", + "beak: strong, slightly curved, dark grey", + "belly: soft buff-colored feathers", + "breast: buff feathers with subtle spotted pattern", + "crown: warm brown with faint streaks", + "forehead: light golden-brown feathers", + "eyes: small and dark, surrounded by thin white eye-ring", + "legs: slender, light grey with strong toes", + "wings: brownish with buff wingbars, rounded shape", + "nape: golden-brown feathers with a hint of stripes", + "tail: medium-length, light brown with darker stripes", + "throat: buff coloration, soft feathered appearance" + ], + "buff breasted flycatcher": [ + "back: olive-brown with subtle streaking", + "beak: short, black, and slightly hooked", + "belly: creamy-buff, unmarked", + "breast: soft buff, blending with belly", + "crown: grayish-brown with faint crest", + "forehead: pale gray, leading into crown", + "eyes: black with white eye-ring", + "legs: slim, dark gray", + "wings: brown with bold, white wingbars", + "nape: grayish-brown, continuous with crown", + "tail: brown with white outer tail feathers", + "throat: white, contrasting with buff breast" + ], + "buff breasted mountain tanager": [ + "back: vibrant turquoise feathers", + "beak: short, black, and conical", + "belly: warm buff-colored plumage", + "breast: rich buff blending with turquoise", + "crown: deep turquoise with iridescent accents", + "forehead: bright turquoise feathers", + "eyes: small with a black pupil and pale ring", + "legs: slender, gray, and scaled", + "wings: turquoise with black flight feathers", + "nape: turquoise transitioning to buff shades", + "tail: long with black and iridescent turquoise feathers", + "throat: buff-colored blend with surrounding plumage" + ], + "buff breasted paradise kingfisher": [ + "back: vibrant blue feathers with white markings", + "beak: long, black, and slender", + "belly: rich creamy buff color", + "breast: striking buff-orange hue", + "crown: brilliant electric blue", + "forehead: vibrant blue with white markings", + "eyes: dark and beady surrounded by black streaks", + "legs: slim, bright red-orange with strong black claws", + "wings: iridescent turquoise-blue with white streaks", + "nape: dazzling blue with white markings", + "tail: long, white, and elegant with blue-black central feathers", + "throat: soft white fading into the buff-orange breast" + ], + "buff breasted sabrewing": [ + "back: metallic green shimmer", + "beak: long and straight, black", + "belly: buff-colored, soft and smooth", + "breast: same buff color, fluffy texture", + "crown: green iridescence, rounded shape", + "forehead: greenish sheen, smooth and flat", + "eyes: dark brown, medium-sized, attentive", + "legs: slender, gray, sturdy", + "wings: elongated, greenish, fast beating", + "nape: iridescent green, graceful curve", + "tail: lengthy, thin, and forked, green and white", + "throat: buff hue, small feathers, subtle" + ], + "buff breasted sandpiper": [ + "back: light brown with fine black streaks", + "beak: short, straight, and dark", + "belly: creamy white with subtle buff tones", + "breast: buff-colored with light streaks", + "crown: brownish-gray with fine black streaks", + "forehead: pale gray-brown with a slight buff tint", + "eyes: dark, surrounded by a faint white eyering", + "legs: long and slender, with a dark gray color", + "wings: brownish-gray with pale edges on the feathers", + "nape: gray-brown with black streaks and a buff wash", + "tail: relatively short, with brown and black feathers and white outer edges", + "throat: creamy white with a faint buff wash" + ], + "buff breasted tody tyrant": [ + "back: greenish feathers blending with the surroundings", + "beak: small, black, and sharp for picking insects", + "belly: creamy white with a tinge of yellow", + "breast: light brownish buff blending into the belly", + "crown: olive-green with a slightly darker tone", + "forehead: greenish-white, almost blending with the crown", + "eyes: dark, beady, and alert", + "legs: thin, elongated, and grayish-brown", + "wings: greenish, with barred yellow patterns", + "nape: olive-green, connecting the crown and back", + "tail: short, with light olive-green and pale yellow feathers", + "throat: white, contrasting with the buff breast" + ], + "buff breasted wheatear": [ + "back: light rusty-buff coloration", + "beak: short, pointed, dark grey-orange", + "belly: pale yellowish hue", + "breast: creamy buff with gentle streaks", + "crown: light brown with faint streaks", + "forehead: smooth light brown", + "eyes: small, dark, alert circles", + "legs: long, slender, grey-orange", + "wings: dark brown with buff edges", + "nape: rusty-buff with subtle streaks", + "tail: elongated, black with white edges", + "throat: soft whitish-buff" + ], + "buff breasted wren": [ + "back: olive-brown with subtle streaks", + "beak: slim, slightly curved, and black", + "belly: pale buff with light barring", + "breast: buff-colored with a faint spotted pattern", + "crown: reddish-brown with fine streaks", + "forehead: pale olive-brown blending into the crown", + "eyes: black with a white eye ring", + "legs: long and slender, grayish-blue", + "wings: olive-brown with faint wing bars", + "nape: streaked reddish-brown, fading to olive-brown", + "tail: long and olive-brown with darker barring", + "throat: pale buff, unmarked" + ], + "buff bridled inca finch": [ + "back: greenish-gray feathers", + "beak: short and stout, black in color", + "belly: pale grayish-white plumage", + "breast: whitish gray with brown streaks", + "crown: dark gray with slight iridescence", + "forehead: distinct buff-colored bridle markings", + "eyes: prominent, dark and round", + "legs: strong and pinkish-gray", + "wings: grayish-brown feathers with white edging", + "nape: greenish-gray with a slight sheen", + "tail: long, dark gray feathers with white tips", + "throat: grayish-white plumage" + ], + "buff browed chachalaca": [ + "back: brown and streaky feather pattern", + "beak: short, curved, and dark-colored", + "belly: pale, cinnamon-brown hue", + "breast: warm chestnut hue with subtle streaks", + "crown: dark brown and smooth", + "forehead: blackish tone that gradually transitions to brown", + "eyes: bright, small, and surrounded by a whitish ring", + "legs: long and grayish", + "wings: brown with bold black bars and pale edging", + "nape: dark brown with a subtle grayish tinge", + "tail: long, dark brown, with white-tipped feathers", + "throat: light beige with a slightly darker center line" + ], + "buff browed foliage gleaner": [ + "back: olive-brown with fine streaks", + "beak: strong and slightly curved, pale color", + "belly: buff-white and lightly spotted", + "breast: buff-colored with light brown streaks", + "crown: rufous brown with fine markings", + "forehead: buffy-white with some streaks", + "eyes: black with a pale eye-ring", + "legs: pale pinkish-gray", + "wings: brown with rufous-edged secondary feathers", + "nape: olive-brown with thin streaks", + "tail: long and brown with slightly graduated feathers", + "throat: pale buff-white, unmarked" + ], + "buff cheeked greenlet": [ + "back: olive-green feathers", + "beak: short and sharp, pale gray color", + "belly: light gray with soft yellow tones", + "breast: pale grayish-yellow", + "crown: greenish-yellow with subtle gray streaks", + "forehead: light gray, fades into crown", + "eyes: black with a thin white eye ring", + "legs: slender, greenish-gray", + "wings: olive-green with darker feather edges", + "nape: olive-green, smoothly transitioning from the crown", + "tail: olive-brown with faint greenish tinge", + "throat: pale gray, blending with breast color" + ], + "buff cheeked tody flycatcher": [ + "back: greenish-olive hue", + "beak: short, hooked, black", + "belly: pale yellow", + "breast: light golden-olive", + "crown: olive-green with buffy cheeks", + "forehead: bright yellow-green", + "eyes: large, dark with pale eye-ring", + "legs: short, dark grey", + "wings: green-olive with two wing bars", + "nape: green-olive, slightly darker than back", + "tail: short, dark green with white tips", + "throat: pale yellow, similar to belly" + ], + "buff chested babbler": [ + "back: olive-brown with streaks", + "beak: short and yellow-ish", + "belly: off-white with pale streaks", + "breast: buff-colored with distinct chestnut patch", + "crown: brownish-grey with streaks", + "forehead: greyish-brown, slightly paler", + "eyes: dark with white eyering", + "legs: pinkish-grey with strong feet", + "wings: olive-brown with subtle barring", + "nape: olive-brown with streaks, slightly paler than back", + "tail: long and olive-brown with faint barring", + "throat: off-white, blending into breast" + ], + "buff collared nightjar": [ + "back: earthy brown, with dark brown speckles", + "beak: short, sharp, and black with a slightly curved tip", + "belly: pale buff, with greyish-brown streaks", + "breast: mottled brown and grey with faint barring", + "crown: dark brown with pale buff spots and streaks", + "forehead: lightly streaked with pale buff and grey", + "eyes: large, dark, and forward-facing", + "legs: elongated, greyish-brown, with strong claws", + "wings: camouflaged with brown, black, and buff markings", + "nape: pale buff and dark brown streaks and spots", + "tail: long, fan-shaped, with wide, brown and buff bands", + "throat: soft buff, mottled with brown shades" + ], + "buff crested bustard": [ + "back: light brown feathers with cream streaks", + "beak: short and stout, greyish-brown", + "belly: creamy white with brown spots", + "breast: pale brown with black markings", + "crown: buff-colored crest with a dark center stripe", + "forehead: buff-colored with fine streaks", + "eyes: dark brown, surrounded by white and black feathers", + "legs: long and slender, greyish-brown", + "wings: light brown with dark flight feathers and white markings", + "nape: buff-colored with dark brown streaks", + "tail: long, dark brown with white edged feathers", + "throat: creamy white with fine brown streaks" + ], + "buff faced pygmy parrot": [ + "back: vibrant green with blue accents", + "beak: small and strong, beige color", + "belly: yellowish-green hues", + "breast: bright turquoise-blue feathers", + "crown: deep forest green", + "forehead: bright green feathers", + "eyes: dark, round, and expressive", + "legs: short and beige-colored", + "wings: vivid green with blue edges", + "nape: greenish-blue tones", + "tail: short and blue-green", + "throat: light green feathers" + ], + "buff faced scrubwren": [ + "back: olive-brown with faint streaks", + "beak: slender, slightly curved, black", + "belly: pale yellow with soft streaks", + "breast: light buff-yellow", + "crown: olive-brown with a distinct buff stripe", + "forehead: slightly paler olive-brown", + "eyes: black with white eye-ring", + "legs: long, slender, dark grey", + "wings: olive-brown with faint streaks, rounded", + "nape: olive-brown with buff-colored stripe", + "tail: long, olive-brown with faint streaks", + "throat: pale yellow, blending to buff-yellow breast" + ], + "buff fronted foliage gleaner": [ + "back: olive-brown feathers", + "beak: slightly curved, slender, and pale", + "belly: creamy-white with light buff tinges", + "breast: pale buff with light streaks", + "crown: rufous-brown with a distinct crest", + "forehead: dull brown with thin buff eyebrows", + "eyes: dark with a pale eyering", + "legs: long and slender, pale grayish", + "wings: olive-brown with rufous primary feathers", + "nape: rufous-brown blending into the back", + "tail: slightly forked, brownish with buff tips", + "throat: pale buff, unpatterned" + ], + "buff fronted owl": [ + "back: dense, mottled brown and buff feathers", + "beak: sharp, hooked, dark gray", + "belly: light buff with brown streaks", + "breast: pale, mottled brown and buff feathers", + "crown: tawny brown with lighter margins", + "forehead: dark, mottled brown with buff edge", + "eyes: large, dark brown with white eyebrows", + "legs: feathered, buff-colored with dark brown bars", + "wings: mottled brown with buff and white spots", + "nape: brown with light buff edges", + "tail: brown with white and buff bands", + "throat: pale buff with brown streaks" + ], + "buff fronted quail dove": [ + "back: olive-brown with greyish hues", + "beak: short, black, slightly curved", + "belly: buff-colored with light spotting", + "breast: warm chestnut with faint black barring", + "crown: pale grayish-blue", + "forehead: buff to pale grey", + "eyes: dark brown, surrounded by pale skin", + "legs: reddish-pink, sturdy", + "wings: olive-brown, short and rounded", + "nape: grayish-blue with a slight metallic sheen", + "tail: dark brown, square-ended with faint bands", + "throat: light buff color, unmarked" + ], + "buff headed coucal": [ + "back: olive-brown feathers with a slight sheen", + "beak: short, stout, and black", + "belly: creamy white with light brown streaks", + "breast: rich rufous-brown plumage", + "crown: buff-colored feathers forming a crest", + "forehead: smooth, buff-hued with subtle brown markings", + "eyes: dark brown with a pale eyering", + "legs: long, strong, and grayish-blue", + "wings: dark brown with lighter brown edging on secondary feathers", + "nape: buff-colored, transitioning to olive-brown", + "tail: long, broad, and dark brown with lighter brown tips", + "throat: creamy white with faint brown striations" + ], + "buff necked ibis": [ + "back: light brown feathers with a slight greenish sheen", + "beak: long, curved, and partially dark-grey", + "belly: creamy-white plumage", + "breast: white feathers with a light brown tint", + "crown: black feathers with a glossy sheen", + "forehead: white forehead merging into a black crown", + "eyes: small, dark, and round", + "legs: long, slender, and greyish-green", + "wings: large with white and brown feathers, iridescent green in sunlight", + "nape: buff-colored feathers on the back of the neck", + "tail: elongated, white and brown feathers with greenish gloss", + "throat: white feathers transitioning into buff-colored nape" + ], + "buff necked woodpecker": [ + "back: golden-brown feathers with black bars", + "beak: strong, chisel-like pointed bill", + "belly: buff-colored with dark streaks", + "breast: golden-buff with black markings", + "crown: red or black, depending on gender", + "forehead: red in males, black in females", + "eyes: dark, piercing gaze surrounded by white", + "legs: short and sturdy with sharp claws", + "wings: vivid golden-yellow with narrow black bars", + "nape: buff colored, extending to neck", + "tail: long, black, and stiff with white barring", + "throat: whitish, transitioning to buff on chest" + ], + "buff rumped thornbill": [ + "back: olive-brown with buff streaks", + "beak: small, slender, and black", + "belly: pale yellow-brown with faint streaks", + "breast: pale yellow-brown with faint streaks", + "crown: streaked brown and buff with a dark central stripe", + "forehead: buff to white, merging into the crown", + "eyes: dark with a white eyering", + "legs: slender, brownish-gray", + "wings: brown with prominent buff wingbars", + "nape: olive-brown with buff streaks", + "tail: brown with faint buff edging", + "throat: pale yellow-brown, paler than the breast" + ], + "buff rumped warbler": [ + "back: olive-green with narrow black streaks", + "beak: short, thin, and dark gray", + "belly: pale yellow with faint streaks", + "breast: bright yellow with thin black streaks", + "crown: dark brown with rufous streaks", + "forehead: pale yellow, blending with crown", + "eyes: dark with white eye-ring", + "legs: short and pinkish-brown", + "wings: dark brown with buff-colored wingbars", + "nape: rufous-brown with faint streaks", + "tail: dark brown with buff edges on outer feathers", + "throat: bright yellow, contrasting with breast" + ], + "buff rumped woodpecker": [ + "back: yellow-green with subtle black barring", + "beak: strong, chisel-shaped, and black", + "belly: creamy-white with black speckles", + "breast: white with black streaks", + "crown: red for males, black for females", + "forehead: red for males, black for females", + "eyes: black, with a white eyering", + "legs: short, grayish-blue with sharp claws", + "wings: dark green with white spots, black bars", + "nape: yellowish-green with black markings", + "tail: black with white bands, woodpecker-like", + "throat: white with a hint of yellow, black streaks" + ], + "buff shouldered widowbird": [ + "back: olive-green with darker streaks", + "beak: black, slender and pointed", + "belly: pale, buffy-white feathers", + "breast: bright yellow with black streaks", + "crown: glossy black with a crest", + "forehead: black feathers, smoothly transitioning into crown", + "eyes: dark brown, round and shiny", + "legs: long, thin, and dark gray", + "wings: blackish with white and buff patches, long and pointed", + "nape: glossy black, connecting crown and back", + "tail: long, black with a white outer edge, fan-shaped", + "throat: bright yellow, blending into breast feathers" + ], + "buff sided robin": [ + "back: warm brownish-red plumage", + "beak: small and pointed, blackish-brown", + "belly: buff-toned cream feathering", + "breast: bright pale-orange coloring", + "crown: warm brown with subtle olive tint", + "forehead: light brown extending to the eye area", + "eyes: small and circular, dark brown or black", + "legs: slim and greyish, fairly short", + "wings: warm brown with lighter buff-colored edges", + "nape: brown hue blending in with the crown", + "tail: brown with buffy edges, visibly fanning during flight", + "throat: pale buff-colored, slightly lighter than breast" + ], + "buff spotted flameback": [ + "back: greenish-yellow, spotted with black", + "beak: pale grey, slightly curved", + "belly: light, creamy-white", + "breast: white with black spots", + "crown: red or golden crest", + "forehead: golden-yellow", + "eyes: round, black", + "legs: bluish-grey, strong", + "wings: greenish-yellow with black markings", + "nape: red or golden band", + "tail: long and black with white horizontal bands", + "throat: white with black spots" + ], + "buff spotted flufftail": [ + "back: olive-brown with buff spots", + "beak: short, stout, and dark", + "belly: creamy-white with dark barring", + "breast: buff-colored with white spots", + "crown: rufous-brown with thick black streaks", + "forehead: pale buff with faint black markings", + "eyes: dark brown surrounded by a light eye-ring", + "legs: long, slender, and pale pinkish-gray", + "wings: olive-brown with buff spots and dark barring", + "nape: rufous-brown with thick black streaks", + "tail: long, dark brown with buff spots and fine black bars", + "throat: buff-colored with fine, thin black streaks" + ], + "buff spotted woodpecker": [ + "back: mottled brown with white speckles", + "beak: sturdy, chisel-like shape", + "belly: creamy white with horizontal brownish bars", + "breast: pale buff with faint spots", + "crown: red patch on male, plain brown on female", + "forehead: white in males, brown in females", + "eyes: dark, bordered by white crescent markings", + "legs: greyish-blue with strong, sharp claws", + "wings: dark brown with white oval spots forming rows", + "nape: white streaks on brown base", + "tail: brown with stiff, white-tipped central feathers", + "throat: white with brown markings" + ], + "buff streaked chat": [ + "back: brownish-grey with subtle streaks", + "beak: black, short and conical", + "belly: creamy white with light streaks", + "breast: pale brown with dark streaks", + "crown: light brownish-grey", + "forehead: white streak above eye", + "eyes: black, medium-sized surrounded by a white eye-ring", + "legs: black and fairly long", + "wings: greyish-brown with faint white patches", + "nape: light brownish-grey", + "tail: greyish-brown with white outer feathers", + "throat: white with light streaks" + ], + "buff tailed coronet": [ + "back: vibrant green feathers covering the upper body", + "beak: long, thin, and slightly curved for nectar feeding", + "belly: pale green, fading into a creamy color near the vent", + "breast: green feathers with a slight golden sheen", + "crown: metallic green with a slightly darker shade than the back", + "forehead: glossy emerald-green hue", + "eyes: dark brown, surrounded by thin green feathering", + "legs: slender, black with scaled feet", + "wings: iridescent green, fairly long and narrow", + "nape: soft green appearance with subtle hints of gold", + "tail: broad, iridescent green feathers with tinges of orange on the underside", + "throat: glittering metallic green that varies in shade based on the angle of viewing" + ], + "buff tailed sicklebill": [ + "back: elongated, slightly curved body", + "beak: long, arched sickle-shaped", + "belly: buff-colored feathering", + "breast: golden brown, horizontal striping", + "crown: iridescent green feathers", + "forehead: blue-green iridescent feathers", + "eyes: dark, medium-sized, surrounded by featherless skin", + "legs: thin, strong, greyish-blue", + "wings: broad, rounded feathers, brownish-black", + "nape: iridescent green, transitioning to brown", + "tail: elongated, curved feathers, dark brown with white tips", + "throat: bright reddish-orange feathers" + ], + "buff thighed puffleg": [ + "back: olive-green with iridescent sheen", + "beak: long, thin, and black", + "belly: soft and buff-thighed", + "breast: whitish-yellow and dense", + "crown: vivid metallic green", + "forehead: metallic shining green", + "eyes: small and dark brown", + "legs: short with pale yellow feet", + "wings: shimmering green and purple", + "nape: metallic green, blending into back", + "tail: iridescent green with broad white tips", + "throat: dull green with white patch" + ], + "buff throated apalis": [ + "back: olive-green with light streaks", + "beak: slender, slightly curved, black", + "belly: yellowish-white with light streaks", + "breast: pale yellow with light streaks", + "crown: grayish with faint streaks", + "forehead: greyish-white blending into crown", + "eyes: dark brown with white eye-ring", + "legs: sturdy, grayish-olive", + "wings: olive-green with faint wing-bars", + "nape: grayish blending into back", + "tail: olive-green with white outer feathers", + "throat: creamy-yellow, blending into breast" + ], + "buff throated foliage gleaner": [ + "back: olive-brown with streaks", + "beak: long, slightly decurved", + "belly: buff-colored, lighter than breast", + "breast: brownish-buff with darker streaks", + "crown: dull brown with rufous tinge", + "forehead: narrow pale buff stripe", + "eyes: dark brown with cream eye-ring", + "legs: strong, pale grayish-brown", + "wings: olive-brown with cinnamon wing-bars", + "nape: dull brown, matching crown", + "tail: long, rufous with olive-brown outer edges", + "throat: pale buff, slightly streaked" + ], + "buff throated purpletuft": [ + "back: olive-green with purplish hues", + "beak: sharp, slender, and black", + "belly: olive-toned buff color", + "breast: olive-brown with purplish-blue sheen", + "crown: olive-green with purplish tint", + "forehead: brilliant blue patch above the beak", + "eyes: dark brown with white eyering", + "legs: strong and grayish-blue", + "wings: olive-green with blue and purple highlights", + "nape: olive-brown with purplish-blue sheen", + "tail: gradation from olive-brown to deep purple-blue", + "throat: distinct buff coloration with olive-brown edges" + ], + "buff throated saltator": [ + "back: olive-green feathers", + "beak: thick, conical, grayish-black", + "belly: off-white with light streaks", + "breast: grayish color, slight streaks", + "crown: olive-gray feathers", + "forehead: grayish-olive color", + "eyes: dark with pale eye-ring", + "legs: sturdy, grayish-black", + "wings: olive-green with white-edged feathers", + "nape: olive-gray hue", + "tail: dark, olive-green with white edges", + "throat: buff-colored, lightly streaked" + ], + "buff throated sunbird": [ + "back: vibrant green feathers", + "beak: long, slender and curved", + "belly: yellow-orange hue", + "breast: bright orange plumage", + "crown: iridescent blue-green", + "forehead: glittering green feathers", + "eyes: small, round, and black", + "legs: grey and slender", + "wings: greenish-blue with elongated feathers", + "nape: iridescent green-blue", + "tail: long, dark blue and forked", + "throat: striking buff-colored" + ], + "buff throated tody tyrant": [ + "back: olive-green feathers", + "beak: small, black, and pointed", + "belly: buff-colored with light streaks", + "breast: pale yellowish-green hue", + "crown: vibrant green plumage", + "forehead: prominent white eyebrow-like stripes", + "eyes: bold, black, and round", + "legs: thin, gray, and sturdy", + "wings: green with white wingbars", + "nape: olive-green transitioning from the crown", + "tail: short, square-shaped, and green", + "throat: buff-colored with a hint of yellow" + ], + "buff throated warbler": [ + "back: olive-green with a pale sheen", + "beak: slender, slightly curved, dark gray", + "belly: pale buff-yellow", + "breast: lighter buff-yellow, subtly streaked", + "crown: pale gray with olive-green tinge", + "forehead: whitish-gray transition to crown", + "eyes: small, black with white eye-rings", + "legs: long, slender, dark gray", + "wings: olive-green with faint yellow edges", + "nape: olive-green blending into the back", + "tail: short, olive-green with yellowish undertail coverts", + "throat: bright buff-yellow, unmarked" + ], + "buff throated warbling finch": [ + "back: olive green feathers", + "beak: small, pointed grayish-pink", + "belly: white feathers with grayish-brown streaks", + "breast: pale grayish-brown with darker streaks", + "crown: plain gray-brown feathers", + "forehead: pale gray-brown feathers", + "eyes: dark, beady with pale grayish-brown eye-ring", + "legs: slender, grayish-pink", + "wings: olive green with dark gray flight feathers", + "nape: gray-brown, transitioning to the back", + "tail: long, olive green tail feathers with dark gray tips", + "throat: buff-colored feathers, contrasting with the breast" + ], + "buff throated woodcreeper": [ + "back: brownish feathers with streaks", + "beak: long, straight, and pointy", + "belly: buff-colored with faint streaks", + "breast: light buff with darker streaks", + "crown: dark brown feathers", + "forehead: brownish with light streaks", + "eyes: dark and round", + "legs: elongated and strong", + "wings: broad, brown with patterned feathers", + "nape: brownish with lighter streaks", + "tail: long, rufous-colored with darker bars", + "throat: pale buff with distinct streaks" + ], + "buff vented bulbul": [ + "back: olive-green plumage", + "beak: short, hooked, orange-yellow", + "belly: pale yellow", + "breast: light buff-orange", + "crown: dusky grayish-brown", + "forehead: whitish-gray", + "eyes: dark brown with white eye-ring", + "legs: thin, pale pink-beige", + "wings: olive-green with light buff edging", + "nape: gray-brown fading into olive-green", + "tail: long, dark brown with white tips", + "throat: whitish-buff" + ], + "buff winged cinclodes": [ + "back: dark brown with light streaks", + "beak: long, thin, and black", + "belly: buff-colored with dark spots", + "breast: buff-colored with dark streaks", + "crown: dark brown with streaks", + "forehead: dark brown with light streaks", + "eyes: small and black", + "legs: sturdy and grayish", + "wings: buff-edged with dark brown feathers", + "nape: dark brown with streaks", + "tail: dark brown, short and square", + "throat: buff-colored with dark spots" + ], + "buff winged starfrontlet": [ + "back: radiant green feathers", + "beak: long, slender black bill", + "belly: soft white underparts", + "breast: glistening green plumage", + "crown: shimmering blue-green iridescence", + "forehead: gleaming violet streak", + "eyes: dark, round beady eyes", + "legs: tiny, black thin legs", + "wings: buff-colored wing panels", + "nape: vibrant green feathers", + "tail: long, forked emerald feathers", + "throat: striking purplish-blue band" + ], + "buffy fish owl": [ + "back: brownish-orange feathers with black stripes", + "beak: large, curved, sharp, and pale yellow", + "belly: light brown with dark brown streaks", + "breast: brownish-orange with black stripes", + "crown: dark brown with light brown streaks", + "forehead: mix of brown and gray feathers", + "eyes: large, round, and yellow-orange", + "legs: strong, feathered, with sharp talons", + "wings: wide, brown with darker feathers and spots", + "nape: brown with faint gray streaks and speckles", + "tail: long, brown with black bands and white tips", + "throat: light brown with darker streaks" + ], + "buffy helmetcrest": [ + "back: iridescent green feathers", + "beak: long, slender, and curved", + "belly: pale grey with greenish tinge", + "breast: white with greenish sheen", + "crown: buff-yellow crest, elongated feathers", + "forehead: vibrant violet-blue band", + "eyes: round, dark, and expressive", + "legs: thin, black, stilt-like", + "wings: iridescent green, medium length", + "nape: greenish feathers fading to grey", + "tail: long, iridescent green, and forked", + "throat: white, fluffy feathers" + ], + "buffy hummingbird": [ + "back: iridescent green feathers", + "beak: long, slender, and slightly curved", + "belly: soft, buffy gray-white", + "breast: shimmery green transitioning to gray", + "crown: brilliant green cap", + "forehead: glittering green plumage", + "eyes: small, dark, and alert", + "legs: short and delicate", + "wings: rapid-fanning, translucent", + "nape: vibrant green sheen", + "tail: short, squared, and feathered", + "throat: luminous, iridescent hues" + ], + "buffy laughingthrush": [ + "back: olive-brown with slight pattern", + "beak: short, curved, blackish", + "belly: pale buffy-white with dark streaks", + "breast: warm buff with black spotting", + "crown: rufous with black streaks", + "forehead: pale rufous with black streaks", + "eyes: dark with white eyering", + "legs: strong, pinkish-brown", + "wings: olive-brown with rufous edging", + "nape: olive-brown with faint streaks", + "tail: brownish with rufous edges", + "throat: pale buffy-white, unmarked" + ], + "buffy pipit": [ + "back: buffy-brown with dark streaks", + "beak: thin, pointed, and dark", + "belly: pale buffy-white", + "breast: buff with dark streaks", + "crown: buffy-brown with dark streaks", + "forehead: pale buffy-white", + "eyes: small, dark, with white eye-ring", + "legs: long, thin, pale pinkish-brown", + "wings: brown with prominent white wingbars", + "nape: buffy-brown with dark streaks", + "tail: brown with white outer tail feathers", + "throat: pale buffy-white, unmarked" + ], + "buffy tuftedcheek": [ + "back: olive-brown with slight streaks", + "beak: short, sharp, and pointed", + "belly: pale yellow-white", + "breast: light yellowish-brown with streaks", + "crown: reddish-brown with a prominent crest", + "forehead: buffy forehead stripe", + "eyes: round, dark and expressive", + "legs: grayish-blue, slender and strong", + "wings: dark brown with buff edges", + "nape: olive-brown with streaks", + "tail: medium-length, olive-brown with buff tips", + "throat: pale yellow-white and clear" + ], + "buffy crowned wood partridge": [ + "back: dark brown with delicate white spots", + "beak: short and robust, pale gray color", + "belly: light cream with reddish-brown markings", + "breast: pale gray with white edges on feathers", + "crown: buffy-yellow with dark brown streaks", + "forehead: dark brown with a hint of red-brown", + "eyes: dark brown, surrounded by a thin white ring", + "legs: strong, grayish-blue with sharp claws", + "wings: smoky-brown with small, fine white speckles", + "nape: reddish-brown with dark brown streaks", + "tail: short and dark brown with rufous-brown undertail coverts", + "throat: pale gray with a white center" + ], + "buffy fronted seedeater": [ + "back: light brown with soft feathering", + "beak: short, conical, and grayish", + "belly: pale buff-yellow with light streaks", + "breast: buff-yellow fading into white", + "crown: grayish brown with streaks", + "forehead: buff-colored with a hint of yellow", + "eyes: dark brown with a subtle eye-ring", + "legs: slender grayish-pink", + "wings: brown with pale buff-white wing bars", + "nape: grayish-brown with light streaks", + "tail: brownish-gray, short, and square-ended", + "throat: buffy-white with faint streaks" + ], + "bugun liocichla": [ + "back: olive-brown with some yellow streaks", + "beak: short, strong, and silver-grey", + "belly: white with heavy black scaling", + "breast: pale orange-red with black scaling", + "crown: vibrant yellow-orange with black top", + "forehead: yellow-tinged with faint black markings", + "eyes: dark, round, and surrounded by thin white ring", + "legs: sturdy and greyish-brown", + "wings: olive-brown with yellow and red patches", + "nape: olive-brown with slight yellow streaks", + "tail: long and greyish-brown with white tips", + "throat: pale orange with heavy black scaling" + ], + "bukidnon woodcock": [ + "back: brownish with dark streaks", + "beak: long and straight, dark brown", + "belly: white with brown barring", + "breast: reddish-brown with dark markings", + "crown: dark brown and buff stripes", + "forehead: buffy-white with dark streaks", + "eyes: dark brown with pale eyering", + "legs: pinkish-grey and long", + "wings: rounded and cryptically patterned", + "nape: reddish-brown with dark stripes", + "tail: short with greenish-brown bars", + "throat: pale with dark streaks" + ], + "bull headed shrike": [ + "back: bold striped pattern", + "beak: strong, sharply hooked tip", + "belly: creamy white with faint markings", + "breast: pale grey shading", + "crown: deep black with slight gloss", + "forehead: black, blending into gray", + "eyes: intense black, piercing gaze", + "legs: thin, strong, grayish-brown", + "wings: black with white patches", + "nape: gray, blending with the crown", + "tail: long, black with white outer feathers", + "throat: whitish, lightly streaked" + ], + "buller albatross": [ + "back: smooth grey feathers", + "beak: large, hooked, pale yellow", + "belly: white with grey markings", + "breast: white with speckled grey", + "crown: greyish-white with a dark line", + "forehead: white with fine black speckles", + "eyes: dark, surrounded by white plumage", + "legs: thick, pinkish-white with webbed feet", + "wings: broad, elongated, black-tipped", + "nape: greyish-white with a dark stripe", + "tail: short, fan-shaped, grey and white", + "throat: white, blending with breast plumage" + ], + "buller shearwater": [ + "back: grayish-brown with slightly paler tips", + "beak: long, slender, and dark-colored", + "belly: white with a thin line of dusky scales", + "breast: creamy-white with a slight tinge of grayish-brown", + "crown: dark grayish-brown", + "forehead: white with a smooth, clear-cut edge", + "eyes: dark, positioned high on head", + "legs: pinkish with dark gray or black webs on feet", + "wings: elongated, dark grayish-brown with a bold white \"m\" pattern", + "nape: dark grayish-brown", + "tail: long, with a central band of white and dark outer edges", + "throat: white with grayish-brown streaks" + ], + "bulwer petrel": [ + "back: dark gray feathers creating a streamlined shape", + "beak: slender, sharp, and elongated black bill", + "belly: white underside with light gray transitions towards wings", + "breast: smooth white feathers merging with light gray edges", + "crown: dark gray feathers transitioning down to nape", + "forehead: slightly raised covered in dark gray feathers", + "eyes: round black eyes blending with the dark plumage", + "legs: thin, black legs with webbed feet for agile in-water movement", + "wings: long, pointed, dark gray wings with lighter gray edges", + "nape: dark gray feathers forming a collar-like appearance", + "tail: tapered fan-like tail with dark gray and white patterns", + "throat: white feathers transitioning into dark gray on neck sides" + ], + "bumblebee hummingbird": [ + "back: iridescent green feathers", + "beak: long and slender", + "belly: white or pale gray", + "breast: vibrant red or pink", + "crown: shimmering green or purple", + "forehead: bright feathers above the eyes", + "eyes: small, dark, and round", + "legs: short and delicate", + "wings: swift, rapid beats", + "nape: greenish or purplish hue", + "tail: squared-off with white tips", + "throat: iridescent gorget" + ], + "bundok flycatcher": [ + "back: olive-brown feathers", + "beak: short and hooked", + "belly: pale yellowish-white underside", + "breast: light chestnut-orange patch", + "crown: rufous-toned head", + "forehead: smooth, feathered brow", + "eyes: dark, beady gaze", + "legs: slender gray-blue limbs", + "wings: dark grey, highlighted with white edges", + "nape: olive-brown transition to throat", + "tail: long, grayish-brown with white tips", + "throat: light-feathered cream throat" + ], + "burchell sandgrouse": [ + "back: speckled gray and brown pattern", + "beak: short, stout, and conical", + "belly: buff-colored with dark barring", + "breast: horizontal black band", + "crown: gray-brown with fine speckles", + "forehead: whitish-gray with fine speckles", + "eyes: dark with pale eye-ring", + "legs: short and featherless with grayish-brown color", + "wings: pointed with brown, gray, and white patterns", + "nape: mottled gray-brown", + "tail: brownish with black band and white tip", + "throat: whitish-gray with fine speckles" + ], + "burchell starling": [ + "back: a mix of iridescent green, blue, and purple feathers covering the upper body", + "beak: black, sharply pointed, and slightly curved for easy insect-catching", + "belly: light grey and white, with a slightly darker grey stripe running across", + "breast: a combination of iridescent green and purple feathers, highlighting the bird's chest", + "crown: iridescent green and blue, creating a shimmering effect on the top of the head", + "forehead: a smooth area of green and blue iridescent feathers fading into the crown", + "eyes: dark brown and alert, encircled by a thin line of black feathers", + "legs: delicate, dark grey, with strong, well-suited claws for perching", + "wings: mixture of iridescent green, blue, and purple feathers in a semi-long, rounded shape", + "nape: green and blue iridescent feathers transitioning from the crown down the back of the neck", + "tail: long, fanned-out green and blue feathers with darker tips, often used in displays", + "throat: covered in white and light grey feathers, connecting the head to the breast area" + ], + "burmese bushlark": [ + "back: light brown feathers with streaks", + "beak: slender and pointed, dark grey", + "belly: warm beige feathers", + "breast: light brown with faint streaks", + "crown: rusty brown with faint streaks", + "forehead: light rusty brown", + "eyes: small, dark brown with white eyering", + "legs: pale pink to greyish", + "wings: brown with white-edged feathers", + "nape: warm brown with faint markings", + "tail: short with dark brown outer feathers and white tips", + "throat: creamy white with light brown streaks" + ], + "burmese collared dove": [ + "back: light brown with subtle feather patterns", + "beak: straight, slender, and greyish", + "belly: pale creamy-white with faint brownish spots", + "breast: soft pinkish-brown with light feather streaks", + "crown: grey-brown with a smooth texture", + "forehead: pale whitish-grey, blending into the crown", + "eyes: small, dark, with thin brown eyering", + "legs: short, greyish-pink with scaled texture", + "wings: brownish-grey with distinct dark feather markings", + "nape: pale grey with a thin black collar-like pattern", + "tail: brownish-grey, long with white tips and dark bars", + "throat: creamy-white, contrasting with the black collar" + ], + "burmese myna": [ + "back: glossy black feathers with green iridescence", + "beak: strong, curved, and orange-yellow", + "belly: white and grey feathers", + "breast: white and grey feathers", + "crown: black with a green sheen", + "forehead: black with a slight crest", + "eyes: dark brown or black", + "legs: orange-yellow with strong claws", + "wings: long, black with green iridescence and white patches", + "nape: black with green iridescence", + "tail: long, black with white tips", + "throat: white and grey feathers" + ], + "burmese nuthatch": [ + "back: striped blue-grey pattern", + "beak: sturdy, pointed, dark grey", + "belly: pale creamy-white", + "breast: bluish-grey plumage, paler at the edges", + "crown: vivid blue-grey with central black stripe", + "forehead: bright blue-grey", + "eyes: round and black, set against a white patch", + "legs: strong and yellowish-brown", + "wings: blue-grey, black-striped feathers", + "nape: blue-grey with black streaks", + "tail: long, square-ended, dark blue-grey with white edges", + "throat: white, contrasting with the breast" + ], + "burmese prinia": [ + "back: light brown with subtle streaks", + "beak: short and sharp, with a dark upper mandible and yellow lower mandible", + "belly: pale creamy-white coloration", + "breast: light brown with faint streaks", + "crown: rufous-colored with a distinctive crest", + "forehead: pale brownish-yellow, blending into the crown", + "eyes: dark, alert, and bead-like", + "legs: long, slender, and pale pinkish-brown", + "wings: rounded with brown feather edges and faint barring", + "nape: light brown, blending into the crown and back", + "tail: long and graduated, with brown feathers and white edges", + "throat: whitish-yellow with light streaks" + ], + "burmese shrike": [ + "back: russet-brown with narrow black streaks", + "beak: stout, hook-tipped bill, blackish-gray hue", + "belly: creamy-white with faint grayish-brown markings", + "breast: pale orange-rufous, blending into the belly", + "crown: dark reddish-brown with a hint of gray", + "forehead: reddish-brown fading to grayish-white", + "eyes: bold, beady black surrounded by a white ring", + "legs: stout and grayish-black, well-adapted for perching", + "wings: rusty brown with intricate black and white patterns", + "nape: reddish-brown with some gray and black streaks", + "tail: long, black, and forked with white outer feathers", + "throat: clean white transitioning to the breast's rufous color" + ], + "burmese yuhina": [ + "back: olive-brown with slight streaks", + "beak: black, slightly curved", + "belly: pale grayish-white", + "breast: whitish with brown streaks", + "crown: black with white streaks", + "forehead: whitish with short black streaks", + "eyes: black with white eye-ring", + "legs: pinkish-brown with sharp claws", + "wings: olive-brown with white wing-bars", + "nape: olive-brown with white streaks", + "tail: olive-brown with white-tipped feathers", + "throat: solid white" + ], + "burnished buff tanager": [ + "back: golden-brown feathers", + "beak: short, sturdy, grayish-black", + "belly: pale yellow-tinted buff", + "breast: slightly darker buff shade", + "crown: bronzy-green sheen", + "forehead: bright greenish-yellow", + "eyes: dark, piercing gaze", + "legs: slender grayish-black", + "wings: golden-brown with gray tips", + "nape: warm russet hue", + "tail: golden-brown, slightly forked", + "throat: vibrant buff shade" + ], + "burnt neck eremomela": [ + "back: olive-green feathers", + "beak: small, straight, and dark", + "belly: pale yellow plumage", + "breast: light yellowish-green", + "crown: olive-green with subtle streaks", + "forehead: pale olive-green", + "eyes: dark brown and round", + "legs: long, slender, and gray", + "wings: olive-green with white edgings", + "nape: olive-green with burned appearance", + "tail: long, olive-green with white outer feathers", + "throat: pale yellow-green" + ], + "burrowing parakeet": [ + "back: vibrant green feathers", + "beak: short, hooked, and beige", + "belly: pale olive-green hue", + "breast: soft greenish-yellow feathers", + "crown: dark green feathered crest", + "forehead: bright green with a bluish tinge", + "eyes: black pupils surrounded by white rings", + "legs: grayish-blue and strong", + "wings: green with bluish primaries", + "nape: greenish-yellow feathers", + "tail: long and tapering, with green and blue feathers", + "throat: pale yellow plumage" + ], + "buru boobook": [ + "back: olive-brown with fine white spots", + "beak: short, sharp, grayish-black", + "belly: white with brown horizontal streaks", + "breast: whitish with brown vertical streaks", + "crown: brown with faint white speckles", + "forehead: slightly paler brown than the crown", + "eyes: large, yellow, and piercing", + "legs: long and grayish-brown", + "wings: mottled brown with white spots and bars", + "nape: brown, mottled with white speckles", + "tail: brown with white bars and a rounded tip", + "throat: white with fine brown streaks" + ], + "buru bush warbler": [ + "back: olive-green with distinct feathers", + "beak: short, thin, and dark", + "belly: creamy-white with light streaks", + "breast: olive-brown blending into belly", + "crown: olive, fading to grayish-brown", + "forehead: pale greyish-brown", + "eyes: small, dark, with thin eye-rings", + "legs: pale pinkish-grey, thin", + "wings: olive-brown with faint dark stripes", + "nape: grayish-brown blending into back", + "tail: olive-brown, slightly forked", + "throat: light greyish-white with faint streaks" + ], + "buru cuckooshrike": [ + "back: olive-gray color, slightly darker than belly", + "beak: small, hook-tipped, and black", + "belly: pale gray with olive-green tinge", + "breast: light gray with olive-green wash", + "crown: black streaked with gray, rounded shape", + "forehead: black with fine gray streaks", + "eyes: dark brown, round and distinctive", + "legs: slim, dark gray with sharp claws", + "wings: olive-gray, long, and pointed with black primary feathers and white markings", + "nape: black streaked with gray, connecting head to back", + "tail: olive-gray, long and slightly forked with black and white bars near the tip", + "throat: light gray, slightly paler than the breast" + ], + "buru dwarf kingfisher": [ + "back: vibrant blue feathers", + "beak: short, coral red", + "belly: white and fluffy", + "breast: bright orange-red", + "crown: deep blue with a hint of turquoise", + "forehead: vivid blue with orange markings", + "eyes: dark, bead-like", + "legs: bright red-orange", + "wings: striking blue with white spots", + "nape: turquoise with faint orange stripes", + "tail: electric blue with white-tipped feathers", + "throat: white with a reddish-orange collar" + ], + "buru flowerpecker": [ + "back: vibrant green feathers", + "beak: short and stout, black", + "belly: deep red hue", + "breast: bright red plumage", + "crown: vivid green, slightly rounded", + "forehead: emerald green feathers", + "eyes: small, dark, and sharp", + "legs: thin and black, with strong feet for perching", + "wings: green and red blend, suited for rapid flight", + "nape: rich green, transitioning from the crown", + "tail: short and rounded, with colorful feathers", + "throat: bright red, matching the breast and belly" + ], + "buru friarbird": [ + "back: greenish-brown feathers", + "beak: long, curved, dark grey", + "belly: light cream feathering", + "breast: mottled brown and white", + "crown: dark grey with crest", + "forehead: smooth grey feathers", + "eyes: small, black, alert gaze", + "legs: slender, grey, strong", + "wings: greenish-brown, wide, pointy tips", + "nape: dark grey feathers", + "tail: long, greenish-brown, slightly forked", + "throat: thick, mottled grey and white" + ], + "buru golden bulbul": [ + "back: vibrant golden-yellow feathers", + "beak: slightly curved, blackish-grey", + "belly: bright yellow plumage", + "breast: rich golden-yellow hue", + "crown: intense golden-yellow feathering", + "forehead: brilliant yellow feathers", + "eyes: small black eyes, white eyering", + "legs: short dark grey", + "wings: golden-yellow with blackish accents", + "nape: striking golden-pigmented feathers", + "tail: long, black with yellow undertones", + "throat: vivid yellow feathers" + ], + "buru green pigeon": [ + "back: vibrant green feathers", + "beak: short, curved, pale yellow", + "belly: light, creamy green", + "breast: slightly darker green than belly", + "crown: deep emerald hue", + "forehead: bright green", + "eyes: small, round, black", + "legs: short, sturdy, pale yellow", + "wings: deep green with black tips", + "nape: rich, green gradient", + "tail: dark green, elongating feathers", + "throat: light green transitioning to breast" + ], + "buru honeyeater": [ + "back: vibrant olive-green feathers", + "beak: long, curved, and slender", + "belly: pale yellow hue", + "breast: rich golden-yellow plumage", + "crown: forest green with slight iridescence", + "forehead: smooth lime-green feathers", + "eyes: small, dark, and alert", + "legs: strong and grayish-brown", + "wings: olive-green with fine darker markings", + "nape: transition from green to golden", + "tail: elongated with olive-green and black bands", + "throat: bright golden-yellow feathers" + ], + "buru jungle flycatcher": [ + "back: olive-brown plumage", + "beak: short, stout, dark gray", + "belly: creamy white", + "breast: pale, buffy orange", + "crown: warm brown", + "forehead: olive-gray hue", + "eyes: dark, beady, alert", + "legs: slender, grayish-blue", + "wings: olive-brown with faint bars", + "nape: slightly darker brown", + "tail: long, fan-shaped, brown feathers", + "throat: pale beige, smooth" + ], + "buru mountain pigeon": [ + "back: pale gray-blue with golden-green sheen", + "beak: relatively short, silver-grey", + "belly: white with slight greyish tint", + "breast: greyish-white with green iridescence", + "crown: dark blue with iridescent green hues", + "forehead: bright turquoise-blue", + "eyes: dark brown with thin grey eye-ring", + "legs: short, reddish-brown", + "wings: blue-green with blackish flight feathers", + "nape: iridescent green and purple-blue", + "tail: long, dark blue with black central feathers", + "throat: shimmering turquoise-green" + ], + "buru oriole": [ + "back: vibrant yellow-green hue", + "beak: long, pointy, and black", + "belly: bright yellow coloration", + "breast: vivid yellow plumage", + "crown: striking yellow-green crest", + "forehead: bright yellow-green feathers", + "eyes: piercing black with white outline", + "legs: dark gray and slender", + "wings: yellow-green with black tips", + "nape: yellow-green transitioning to yellow", + "tail: elongated with yellow-green and black feathers", + "throat: bright yellow plumage" + ], + "buru racquet tail": [ + "back: vibrant green feathers", + "beak: short, curved and black", + "belly: light green with blue tint", + "breast: turquoise blue feathers", + "crown: bright green headcrest", + "forehead: emerald green", + "eyes: small, dark, and round", + "legs: gray and slender", + "wings: green with blue edging", + "nape: deep green connecting to the crown", + "tail: long, racket-shaped feathers", + "throat: turquoise blue, slightly lighter than breast" + ], + "buru thrush": [ + "back: olive-brown plumage", + "beak: short and stout, yellowish-orange", + "belly: white with faint brown streaks", + "breast: creamy white with dark brown spots", + "crown: olive-brown with faint streaks", + "forehead: slightly paler than crown", + "eyes: large and dark, with white eyering", + "legs: strong, yellowish-orange", + "wings: olive-brown with white wing-bars", + "nape: olive-brown, merging with crown", + "tail: short and square, olive-brown", + "throat: white with dark spots" + ], + "buru white eye": [ + "back: olive-green feathers", + "beak: short, slender, black", + "belly: pale grayish-white", + "breast: light yellowish-green", + "crown: bright yellow", + "forehead: vivid yellow streak", + "eyes: characteristic white eye-ring", + "legs: grayish-brown", + "wings: vibrant green", + "nape: olive-yellow", + "tail: greenish-blue, slightly forked", + "throat: pale yellow" + ], + "bush blackcap": [ + "back: greenish-grey with a dark sheen", + "beak: short, dark grey", + "belly: pale white-greyish", + "breast: light grey to white-gradient", + "crown: dark grey to black", + "forehead: dark grey, slightly lighter than the crown", + "eyes: black with a white eye-ring", + "legs: dark grey-brown", + "wings: greenish-grey with black flight feathers", + "nape: greenish-grey blending into the crown", + "tail: dark grey with white outer feathers", + "throat: white, contrasting with the dark head" + ], + "bush pipit": [ + "back: olive-brown with faint streaks", + "beak: slender, pointed, and pale", + "belly: off-white with light streaks", + "breast: buff, lightly streaked", + "crown: brown with darker streaks", + "forehead: pale brown with faint streaks", + "eyes: dark, medium-sized with pale eyering", + "legs: long, pinkish-brown", + "wings: brown with faint bars and light edges", + "nape: olive-brown, faintly streaked", + "tail: dark brown with white outer feathers", + "throat: off-white, streak-free" + ], + "bush thick knee": [ + "back: sandy brown and streaked plumage", + "beak: long, slender, and dark grey", + "belly: buff-white with brown flecks", + "breast: light brown with streaks and speckles", + "crown: light brown with faint streaks", + "forehead: pale creamy-brown", + "eyes: large and bright, with patch of white behind them", + "legs: long, slender, and golden brown", + "wings: mottled brown with buff edges", + "nape: softly mottled brown", + "tail: short, barred light and dark brown", + "throat: white, bordered by brown speckles" + ], + "bushy crested hornbill": [ + "back: dark plumage with hints of green iridescence", + "beak: large, curved, yellow-orange with a dark casque", + "belly: pale greyish-white feathers", + "breast: dark plumage, slightly lighter than the back", + "crown: raised black feathery crest with elongated quills", + "forehead: prominent casque extending from the beak", + "eyes: dark brown with yellow-orange eye ring", + "legs: short and sturdy, with dark grey scaly skin", + "wings: broad and rounded, dark feathers with green shimmer", + "nape: black feathers merging into the bushy crest", + "tail: long, straight, and dark with two white central feathers", + "throat: black feathers leading to the pale greyish-white belly" + ], + "bushy crested jay": [ + "back: deep blue plumage with hints of green iridescence", + "beak: strong, black, slightly curved", + "belly: lighter blue plumage with white undertones", + "breast: vibrant blue feathers transitioning to white", + "crown: pronounced, bushy crest of blue and white feathers", + "forehead: bright white plumage contrasting with blue crown", + "eyes: dark, large, and expressive with a black outline", + "legs: sturdy, black, and suited for perching on branches", + "wings: mix of blue and black feathers with green iridescence", + "nape: continuation of deep blue plumage from back, meeting crest", + "tail: long, blue and black feathers with white tail tips", + "throat: white plumage blending with breast and belly" + ], + "butterfly coquette": [ + "back: vibrant green feathers", + "beak: short and sharp in black color", + "belly: contrasting pale yellow plumage", + "breast: striking orange-red patch", + "crown: tuft of iridescent green-blue feathers", + "forehead: bright golden-yellow markings", + "eyes: large, dark, and expressive", + "legs: thin and delicate in dark gray color", + "wings: mix of green, blue, and black feathers with small white spots", + "nape: brilliant metallic green-blue coloration", + "tail: long with white-tipped feathers in various shades of green and rufous", + "throat: rich purple-blue color, shimmering in the light" + ], + "caatinga antwren": [ + "back: light brownish-gray feathers", + "beak: small, pointed black beak", + "belly: white to pale gray plumage", + "breast: grayish-white feathering", + "crown: rufous to reddish-brown crest", + "forehead: rufous or reddish-brown with fine black streaks", + "eyes: dark brown or black, surrounded by white eye-ring", + "legs: slender, grayish-black", + "wings: brownish-gray with subtle lighter markings", + "nape: light brown feathers, blending with crown", + "tail: long and straight, brownish-gray with white tips", + "throat: pale gray or white plumage" + ], + "caatinga black tyrant": [ + "back: dark grayish-black feathers", + "beak: short, black, and robust", + "belly: pale grayish-white, slightly streaked", + "breast: dark grayish-black, blending into belly", + "crown: black with subtle crest", + "forehead: black, blending into crown", + "eyes: dark brown, surrounded by black feathers", + "legs: black, thin, and sturdy", + "wings: dark grayish-black, slightly pointed", + "nape: black, blending into back", + "tail: black, long, and narrow", + "throat: dark grayish-black, continuing from breast" + ], + "cabanis bunting": [ + "back: olive green with streaks", + "beak: short and conical", + "belly: pale buff shade", + "breast: light chestnut", + "crown: deep chestnut", + "forehead: pale chestnut", + "eyes: dark with pale eye-ring", + "legs: thin and pale", + "wings: brownish with buff wing-bars", + "nape: olive green and streaked", + "tail: brownish and forked", + "throat: pale buff" + ], + "cabanis greenbul": [ + "back: olive-green feathers", + "beak: thin, slightly curved, grayish-brown", + "belly: creamy white with a yellowish tinge", + "breast: pale yellow with light streaks", + "crown: olive-green to yellowish", + "forehead: yellowish-olive feathers", + "eyes: round, black with a white eye-ring", + "legs: slender, grayish-brown", + "wings: olive-green with subtle yellow edges", + "nape: olive-green with yellowish tones", + "tail: long, rounded, olive-green with yellowish fringes", + "throat: creamy white with a pale yellow tint" + ], + "cabanis ground sparrow": [ + "back: olive-brown with dark streaks", + "beak: short, conical, and dark", + "belly: pale-grayish to white", + "breast: light gray with subtle brown hints", + "crown: rufous brown with light streaks", + "forehead: pale grayish-white", + "eyes: dark, surrounded by a lighter eye-ring", + "legs: strong, grayish-pink", + "wings: olive-brown with white or pale brown wing-bars", + "nape: rufous-brown with light streaks", + "tail: olive-brown, medium length, and squared-off", + "throat: clean white, contrasting with breast" + ], + "cabanis spinetail": [ + "back: olive-brown and streaked", + "beak: short and conical", + "belly: pale buff-white", + "breast: grayish-brown with buffy streaks", + "crown: rufous-brown with dull streaks", + "forehead: narrow whitish-buff eye stripe", + "eyes: dark brown with pale eyering", + "legs: pinkish-brown and long", + "wings: brown with buffy wing bars", + "nape: olive-brown with faint streaks", + "tail: long and graduated with rufous edges", + "throat: pale buff-white with grayish-brown streaks" + ], + "cabanis wren": [ + "back: brownish-gray with faint streaks", + "beak: slender and slightly curved, dark in color", + "belly: light grayish-white", + "breast: pale gray with subtle brownish spots", + "crown: brownish-gray, slightly darker than back", + "forehead: light brownish-gray, blending into crown", + "eyes: small, black, surrounded by a white eyering", + "legs: thin, pale, and agile", + "wings: brownish-gray streaked with black, medium-length", + "nape: light brownish-gray, blending into back", + "tail: brownish-black, barred with white, medium-length", + "throat: light grayish-white, contrasting with breast" + ], + "cachar bulbul": [ + "back: olive-green with faint streaks", + "beak: dark, conical-shaped", + "belly: creamy-white with fine dark streaks", + "breast: pale yellowish-brown", + "crown: grayish-black with slight crest", + "forehead: pale gray", + "eyes: dark with faint eyering", + "legs: strong and brownish-gray", + "wings: olive-green with pale edging", + "nape: grayish-black", + "tail: long with olive-green feathers", + "throat: creamy-white with fine dark streaks" + ], + "cachar wedge billed babbler": [ + "back: olive-brown with subtle greyish streaks", + "beak: short, stout, and black", + "belly: light beige with faint horizontal markings", + "breast: grayish-white with slight brownish tinge", + "crown: dark olive-brown with sleek texture", + "forehead: slightly paler olive-brown than the crown", + "eyes: small, black, and bright", + "legs: strong, slim, and blackish-grey", + "wings: olive-brown with light feather edging", + "nape: uniformly olive-brown, blending with the crown", + "tail: long, straight, and olive-brown with faint grey tips", + "throat: pale grayish-white, contrasting with the breast" + ], + "cactus canastero": [ + "back: light brown with blackish streaks", + "beak: long, slightly curved, dark gray", + "belly: buffy brown with faint streaks", + "breast: pale brown with slight blackish streaks", + "crown: rufous-brown with streaks", + "forehead: light brown with black streaks", + "eyes: dark brown, small", + "legs: strong, reddish-brown", + "wings: brown with buff-colored bars", + "nape: rufous-brown with black streaks", + "tail: long, reddish-brown with black bars", + "throat: whitish buff with slight streaks" + ], + "cactus parakeet": [ + "back: green feathers with black edges", + "beak: small, curved, pale yellow", + "belly: creamy white plumage", + "breast: greenish-yellow with dark barring", + "crown: bright green feathers", + "forehead: blue-green feathers", + "eyes: dark brown with white eye-ring", + "legs: grayish-blue with strong claws", + "wings: dark green with blue tips", + "nape: green with black markings", + "tail: long and tapered, green with blue tips", + "throat: greenish-yellow with dark streaks" + ], + "caica parrot": [ + "back: vibrant green plumage", + "beak: strong, black, hooked", + "belly: light green feathers", + "breast: bright yellow plumage", + "crown: green feathers with blue highlights", + "forehead: vivid blue feathering", + "eyes: dark, rounded with white eye-ring", + "legs: gray and scaly with curved talons", + "wings: green with blue accents, strong and broad", + "nape: yellow-green shading into blue", + "tail: long, green-blue feathers with yellow tips", + "throat: yellowish-green plumage" + ], + "cajamarca antpitta": [ + "back: olive-brown with dark streaks", + "beak: long, thin, and curved", + "belly: pale yellow with black markings", + "breast: grayish-white with black streaks", + "crown: rufous with blackish streaks", + "forehead: reddish-brown with dark streaks", + "eyes: large and dark brown", + "legs: pinkish-gray and powerful", + "wings: short and rounded, olive-brown", + "nape: brown with black streaks", + "tail: long and dark brown, with broad feathers", + "throat: whitish-gray with faint markings" + ], + "calandra lark": [ + "back: brownish with dark streaks", + "beak: long and pointed", + "belly: pale and streaked", + "breast: spotted and light brown", + "crown: dark-streaked with a crest", + "forehead: pale and slightly streaked", + "eyes: small and black", + "legs: slender and pinkish-brown", + "wings: brown with black markings", + "nape: streaked, blending into crown", + "tail: brown with a black edge", + "throat: pale and streaked" + ], + "calayan rail": [ + "back: dark brown with feather patterns", + "beak: short, stout, pale yellow", + "belly: white with fine dark streaks", + "breast: rusty brown with black streaks", + "crown: dark gray-brown with feather tufts", + "forehead: lighter gray-brown, blending into crown", + "eyes: small, black, with white eyering", + "legs: strong, yellowish-green with scaled pattern", + "wings: dark brown, short and rounded", + "nape: gray-brown, blending into back", + "tail: short, dark brown with narrow white tip", + "throat: white with minimal streaks" + ], + "california gnatcatcher": [ + "back: pale gray-blue with subtle dark streaks", + "beak: thin and slightly curved black beak", + "belly: whitish-gray with a faint bluish tinge", + "breast: light gray blending into the belly color", + "crown: gray-blue with a darker patch on the sides", + "forehead: pale gray-blue, almost white", + "eyes: small, dark, and round with a thin white eye-ring", + "legs: long and slender, dark gray to black", + "wings: gray-blue with dark edges and white-tipped feathers", + "nape: pale gray-blue, transitioning to the crown color", + "tail: long and slender, dark blue-gray with white outer feathers", + "throat: pale grayish-white, blending into breast and belly" + ], + "california scrub jay": [ + "back: vibrant blue feathers", + "beak: black, sturdy, and medium-sized", + "belly: pale gray with a light bluish tint", + "breast: soft light gray plumage", + "crown: brilliant blue crest above the head", + "forehead: sleek blue feathers transitioning into the crown", + "eyes: dark, round, and expressive", + "legs: long, thin, dark gray", + "wings: striking blue with black and white secondary feathers", + "nape: blue-gray feathers connecting the head and back", + "tail: long, predominantly blue with black and white bands", + "throat: subtle gray feathers meeting the breast area" + ], + "cambodian laughingthrush": [ + "back: earthy brown, slightly mottled", + "beak: short, strong, black", + "belly: pale cream, minimal markings", + "breast: light brownish-grey with faint spots", + "crown: deep chestnut, slightly ruffled", + "forehead: buffy-white, slightly streaked", + "eyes: dark, encircled by thin eye-ring", + "legs: medium length, pale pink-grey", + "wings: brown, with soft buff edges on feathers", + "nape: light brown, greyish tones", + "tail: long, graduated, ochre-brown with black banding", + "throat: buffy-white, sparsely streaked" + ], + "cambodian tailorbird": [ + "back: olive-brown with a slight greenish sheen", + "beak: black, slender, and slightly curved", + "belly: creamy-white and slightly paler than breast", + "breast: light greyish to pale buff", + "crown: dark grey with a narrow rufous stripe", + "forehead: pale grey with faint marking", + "eyes: dark brown surrounded by a thin, white eyering", + "legs: slender and flesh-colored", + "wings: olive-brown with clear, thin, white wingbars", + "nape: olive-brown with a slight greenish tinge", + "tail: long, graduated, and dark olive-brown", + "throat: pale greyish-white with faint, darker streaks" + ], + "cameroon indigobird": [ + "back: deep indigo blue with black streaks", + "beak: short, black, and conical", + "belly: gradient of indigo to blueish-white", + "breast: bright indigo blue", + "crown: vibrant blue with black speckles", + "forehead: glossy blue-black", + "eyes: small, black, with a white eye-ring", + "legs: dark gray to black", + "wings: black with bluish iridescent highlights", + "nape: iridescent blue-black", + "tail: black with subtle blue sheen", + "throat: rich indigo blue" + ], + "cameroon mountain greenbul": [ + "back: vibrant green feathers", + "beak: small, sharp, and black", + "belly: light yellow hue", + "breast: yellowish-green plumage", + "crown: green with a slight crest", + "forehead: smooth green feathers", + "eyes: small, round, and dark", + "legs: grey and slender", + "wings: green with hints of yellow, medium-sized", + "nape: green merging to light yellow towards the head", + "tail: green with streaks of black, medium length", + "throat: pale yellow with a subtle streak pattern" + ], + "cameroon olive greenbul": [ + "back: olive-green feathers with brownish edges", + "beak: short, stout, and pale-colored with a hook tip", + "belly: whitish with a yellowish tinge and faint brown streaks", + "breast: light olive-green with subtle streaks", + "crown: green with a lighter shade towards the nape", + "forehead: bright olive-green feathers", + "eyes: dark brown with faint yellow eye-rings", + "legs: long, sturdy, and pale gray", + "wings: dark olive-green with hints of brown and pale wing-bars", + "nape: lighter olive-green fading to brown", + "tail: long and olive-green with brownish central feathers", + "throat: pale, whitish-olive with slight streaks" + ], + "cameroon pigeon": [ + "back: slate grey feathers with a slight sheen", + "beak: short and stout, pale pinkish-grey", + "belly: light grey with a soft texture", + "breast: pale purple-grey with subtle iridescence", + "crown: dark grey with a smooth, rounded shape", + "forehead: slightly lighter grey than crown, blending seamlessly", + "eyes: small, black, and alert with a thin, white eye-ring", + "legs: short, pinkish-grey with well-defined scaly texture", + "wings: darker grey with black and white-striped covert feathers", + "nape: medium grey, smoothly transitioning from the crown", + "tail: long and dark grey, with white outer tail feathers and distinct blackish band", + "throat: light grey, slightly paler than breast color" + ], + "cameroon speirops": [ + "back: dark slate-gray feathers", + "beak: short, stout black bill", + "belly: light gray with white streaks", + "breast: lighter gray with faint streaks", + "crown: black feathers with slight iridescence", + "forehead: small black feathers, slight curve", + "eyes: bright white eyering, dark brown irises", + "legs: slender black legs and feet", + "wings: dark gray with contrasting white wingbars", + "nape: rich gray plumage, continuous with crown", + "tail: blackish-gray, medium-length, square-ended", + "throat: pale gray, smooth transition to breast" + ], + "cameroon sunbird": [ + "back: iridescent green with blue hues", + "beak: slender, long, and curved", + "belly: vibrant yellow with a hint of orange", + "breast: shimmering greenish-blue", + "crown: radiant green with a metallic sheen", + "forehead: bright emerald with light streaks", + "eyes: small, dark, and observant", + "legs: thin, black, and delicate", + "wings: rich green with a hint of blue, medium-sized", + "nape: dazzling green with a slight curve", + "tail: extended, forked, shimmering bluish-green", + "throat: bright green with a metallic glow" + ], + "camiguin boobook": [ + "back: dark brown feathers with paler markings", + "beak: small, sharp, and hooked, blackish-grey in color", + "belly: buff-colored with dark brown spots and streaks", + "breast: pale buff with dark brown streaks or bars", + "crown: dark brown with lighter edges on feathers", + "forehead: brown feathers with paler markings", + "eyes: large, round, and black or dark brown", + "legs: short and stout, feathered, with yellowish-grey scaly feet", + "wings: dark brown with paler buff fringes and spots", + "nape: dark brown feathers with lighter edges", + "tail: long and dark brown with narrow pale bands", + "throat: buff-colored with dark brown spots" + ], + "camiguin hanging parrot": [ + "back: vibrant green feathers", + "beak: short, powerful, hooked orange", + "belly: light green with yellow hues", + "breast: bright green and slightly fluffy", + "crown: striking blue crown feathers", + "forehead: blue-green feathers transitioning to crown", + "eyes: dark, expressive with a white eye-ring", + "legs: short, strong, and gray", + "wings: green with blue-tipped flight feathers", + "nape: light green blending into back", + "tail: long, green feathers with blue tips", + "throat: muted yellow-green plumage" + ], + "campbell islands shag": [ + "back: dark, iridescent greenish-blue plumage", + "beak: long, slender, hooked at the tip", + "belly: white with feathered underpants", + "breast: white, contrasting with dark back", + "crown: dark, greenish-blue feathers extending to the nape", + "forehead: smooth feathers leading to the beak", + "eyes: bright, reddish-orange with a sharp gaze", + "legs: relatively short, pinkish-orange with webbed feet", + "wings: dark, expansive with prominent wingtips", + "nape: continuation of the dark crown feathers", + "tail: short, dark feathers for stability in flight", + "throat: white, meeting the breast seamlessly" + ], + "campbell islands teal": [ + "back: olive-brown feathers with dark streaks", + "beak: short and sturdy, dark grayish-blue", + "belly: pale gray with subtle brown markings", + "breast: soft gray-brown with dark speckles", + "crown: dark brown, slightly darker than back", + "forehead: pale grayish-white", + "eyes: small and black, surrounded by white feather ring", + "legs: short and strong, grayish-blue", + "wings: short and rounded, olive-brown with white tips and blue-green speculum", + "nape: olive-brown with dark streaks, like back", + "tail: short and pointed, brown with darker barring", + "throat: pale grayish-white, like forehead" + ], + "campbell fairywren": [ + "back: vibrant blue feathers with light streaks", + "beak: small, sharply-pointed, black", + "belly: pale grey underside with white accents", + "breast: bright blue plumage with grey edges", + "crown: vivid blue with a defining black stripe", + "forehead: striking blue with thin black eye line", + "eyes: small, dark, and lively", + "legs: slender and dark grey", + "wings: blue and black-feathered, with white bands", + "nape: rich blue with hints of black and grey", + "tail: elongated and black, with delicate white ends", + "throat: electric blue, contrasting with white neckband" + ], + "campina thrush": [ + "back: olive-brown feathers", + "beak: slim and slightly curved", + "belly: creamy-white with dark spots", + "breast: light brown with streaks", + "crown: olive-brown with faint streaks", + "forehead: pale brown", + "eyes: dark brown with narrow white eye-ring", + "legs: slender, pale pink", + "wings: olive-brown with distinct bars", + "nape: olive-brown with faint streaks", + "tail: short, square-shaped, olive-brown with buff tips", + "throat: creamy-white with dark spots" + ], + "campo miner": [ + "back: earthy brown with faint streaks", + "beak: sharp, elongated, blackish-gray", + "belly: dull yellow or sandy color", + "breast: light brown with dark spots", + "crown: mottled brown with pale streaks", + "forehead: yellowish-brown with small spots", + "eyes: dark, beady, with cream-colored eye-ring", + "legs: slender, grayish-brown", + "wings: brownish-black with white-edged feathers", + "nape: brown with pale streaks, blending into the back", + "tail: forked, brownish-black with white outer feathers", + "throat: pale, creamy yellow with faint brown markings" + ], + "campo troupial": [ + "back: vivid orange-chestnut color", + "beak: long, sharp, and silver-grey", + "belly: bright orange hue", + "breast: rich orange feathers", + "crown: small, contrasting black patch", + "forehead: striking black stripe", + "eyes: dark and expressive, surrounded by a thin white ring", + "legs: grey and slender with strong claws", + "wings: black, with patches of white and blue feathers", + "nape: sleek black feathering", + "tail: long and black, occasionally showing undertail white spots", + "throat: mainly deep black hue" + ], + "canada jay": [ + "back: bluish-gray feathers, slightly darker than wings", + "beak: jet-black, short and curved, strong", + "belly: white or light grey, soft plumage", + "breast: pale grey, slightly darker than belly", + "crown: bluish-gray, rounded head shape", + "forehead: pale bluish-gray, blending into crown", + "eyes: dark, encircled by white feathers", + "legs: black, sturdy, medium length", + "wings: bluish-gray, rounded, strong for fast flight", + "nape: bluish-gray, continuous with back feathers", + "tail: bluish-gray with white tips, long and broad", + "throat: white or light grey, matching belly color" + ], + "canary islands chiffchaff": [ + "back: olive-green with brownish tinge", + "beak: thin, black, and pointed", + "belly: pale yellow with grayish hues", + "breast: light yellow with faint streaks", + "crown: olive-green with a brown tinge", + "forehead: smooth and slightly paler than the crown", + "eyes: round, black, surrounded by a white eye-ring", + "legs: slim, black, and fairly short", + "wings: olive-green with brown edges and distinct bars", + "nape: olive-green, blending with the crown", + "tail: dark brown with a slight fork and white edges", + "throat: pale yellow, sometimes with a grayish tint" + ], + "canebrake groundcreeper": [ + "back: brownish and streaked", + "beak: long, thin, slightly curved", + "belly: creamy with light streaks", + "breast: pale brown with darker markings", + "crown: rufous with fine streaks", + "forehead: brownish with a paler central stripe", + "eyes: dark and round, with white eye-ring", + "legs: long, strong, and yellowish", + "wings: brown, with buff and black barring", + "nape: pale brown with dark streaks", + "tail: long, brown, and slightly rounded", + "throat: pale with dark streaks" + ], + "canebrake wren": [ + "back: brownish-grey with darker streaks", + "beak: pointed and slightly curved, dark, slender", + "belly: creamy white with faint brown stripes", + "breast: beige with dark brown barring", + "crown: reddish-brown with streaks", + "forehead: subtly lighter brown, smooth", + "eyes: small, black, surrounded by faint light brown ring", + "legs: long, slender, light grey", + "wings: brownish-grey with bold black streaks", + "nape: reddish-brown with streaks", + "tail: long, dark brown with thin grey stripes", + "throat: beige with fine dark brown barring" + ], + "canivet emerald": [ + "back: vibrant green feathers", + "beak: small, sharp, black", + "belly: light green plumage", + "breast: brilliant emerald hues", + "crown: dark green crest", + "forehead: bright green feathers", + "eyes: round, black, small", + "legs: thin, grayish-blue", + "wings: iridescent green, fast-beating", + "nape: rich green feathers", + "tail: elongated, streamer-like feathers", + "throat: pale green, slightly translucent" + ], + "canyon canastero": [ + "back: brownish-gray with streaks", + "beak: long, thin, and curved", + "belly: whitish with gray-brown streaks", + "breast: pale brownish-gray with streaks", + "crown: dark brown with rusty streaks", + "forehead: slightly lighter brown than crown", + "eyes: dark and small, surrounded by a pale eye-ring", + "legs: slender and grayish-brown", + "wings: brown with rufous and buff streaks", + "nape: brown to gray-brown with streaks", + "tail: long and brown with buff tips", + "throat: whitish with fine gray-brown streaks" + ], + "cape barren goose": [ + "back: light gray with white speckles", + "beak: short, deep greenish-yellow", + "belly: soft gray and white", + "breast: pale gray with white speckles", + "crown: smooth, pale gray", + "forehead: light gray blend with the crown", + "eyes: dark, with a white eye-ring", + "legs: stout, pinkish-orange", + "wings: speckled gray and white feathers", + "nape: pale gray, blending with the back", + "tail: short and rounded, gray with white edges", + "throat: light gray,continuing from the breast" + ], + "cape batis": [ + "back: streaked olive-brown feathers", + "beak: short and black, slightly hooked", + "belly: creamy off-white with brown speckles", + "breast: grayish-blue side streaks with white center", + "crown: dark black extending to nape", + "forehead: distinctive white stripe", + "eyes: large and black, surrounded by white rings", + "legs: thin and grayish-brown", + "wings: mostly black with white and brown markings", + "nape: continuation of black crown", + "tail: long dark feathers with white tips", + "throat: white, connecting to breast" + ], + "cape bulbul": [ + "back: olive-brown feathers with a slight sheen", + "beak: slim and dark-grey, slightly curved", + "belly: light greyish-white with soft streaks", + "breast: pale grey with fine brown streaks", + "crown: black with a distinct, elongated crest", + "forehead: black, smoothly transitioning into the crown", + "eyes: dark with a pronounced white eyering", + "legs: greyish-black with strong, perching toes", + "wings: olive-brown with black-edged feathers", + "nape: olive-brown, blending with the back", + "tail: long and dark with white outer feathers", + "throat: pale grey fading into the belly" + ], + "cape bunting": [ + "back: olive-brown feathers with dark streaks", + "beak: short, conical, and pale pinkish-gray", + "belly: creamy white with light streaks", + "breast: buff-colored with dark streaks", + "crown: chestnut-striped with a grayish-white center", + "forehead: pale grayish-brown", + "eyes: small and dark, surrounded by a faint white eyering", + "legs: thin and pale pinkish-gray", + "wings: olive-brown with dark streaks and white wing-bars", + "nape: chestnut-striped with a grayish-white center", + "tail: short with olive-brown feathers and white outer edges", + "throat: creamy white with light streaks" + ], + "cape canary": [ + "back: olive-yellow hue, feathered", + "beak: pointed, conical shape, pale pink", + "belly: pale yellow, soft feathers", + "breast: bright yellow, smooth plumage", + "crown: yellowish-green, delicate feathers", + "forehead: bright yellow, striking", + "eyes: dark, round, beady gaze", + "legs: thin, grey-pink, strong", + "wings: olive-green, elongated, flight-ready", + "nape: yellow-green, blending feathers", + "tail: long, pointy, olive-green hues", + "throat: bright yellow, smooth feathers" + ], + "cape clapper lark": [ + "back: light brown with fine streaks", + "beak: short, straight, conical shape", + "belly: creamy white with sparse dark spots", + "breast: buff-colored with dark streaks", + "crown: brown with paler edges", + "forehead: light brown, blending with crown", + "eyes: dark with white eye-ring", + "legs: strong, slender, greenish-gray", + "wings: brown with pale edges, darker primaries", + "nape: light brown streaked with darker brown", + "tail: brown with paler outer feathers, slightly forked", + "throat: white, unmarked" + ], + "cape cormorant": [ + "back: sleek black feathers", + "beak: long, thin and hooked", + "belly: contrasting white under feathers", + "breast: smooth black plumage", + "crown: glossy black cap", + "forehead: subtly rounded profile", + "eyes: sharp, piercing gaze", + "legs: powerful yet agile", + "wings: lengthy and streamlined", + "nape: gracefully curved neck", + "tail: fan-like, black feathers", + "throat: black with a slight sheen" + ], + "cape crombec": [ + "back: light brownish-gray feathers", + "beak: slender, slightly curved downward", + "belly: creamy white or buff color", + "breast: light brownish-gray, blending into belly", + "crown: grayish-brown with a slightly raised crest", + "forehead: smooth, brownish-gray plumage", + "eyes: dark with a small white eye-ring", + "legs: long, slender, pinkish-brown", + "wings: brownish-gray feathers with faint wingbars", + "nape: brownish-gray, smoothly blending into crown and back", + "tail: short and rounded with brownish-gray feathers", + "throat: light gray, slightly paler than breast and belly" + ], + "cape crow": [ + "back: glossy black feathers", + "beak: strong, black, and slightly curved", + "belly: dark plumage, lighter than back", + "breast: deep black feathers, shining in sunlight", + "crown: dark and smooth, blending with back feathers", + "forehead: black and glossy meeting the beak", + "eyes: bright, intelligent, with dark pupils", + "legs: sturdy, black with prominent talons", + "wings: long, broad, dark feathers, used for soaring", + "nape: smooth black transition to the back", + "tail: fan-shaped black feathers, used for balance", + "throat: dark feathers, slightly lighter than breast" + ], + "cape eagle owl": [ + "back: brownish-grey with dark barring", + "beak: blunt, hooked, and blackish-grey", + "belly: buff-colored with dark streaks", + "breast: pale rusty-brown with dark barring", + "crown: greyish-brown with dark streaks", + "forehead: pale with dark streaks", + "eyes: large, deep orange", + "legs: feathered with dark barring", + "wings: broad and rounded with dark barring", + "nape: lighter greyish-brown with dark streaks", + "tail: horizontally barred with dark grey and buff bands", + "throat: pale with dark streaks" + ], + "cape gannet": [ + "back: sleek, white with black edges", + "beak: long, sharp, blue-gray", + "belly: smooth, white feathers", + "breast: soft, white plumage", + "crown: black, smooth feathers", + "forehead: white, short feathers", + "eyes: expressive, black with blue-gray outline", + "legs: webbed, blue-gray", + "wings: large, long, black-tipped", + "nape: white, transitioning to black feathers", + "tail: narrow, black-tipped feathers", + "throat: smooth, white with small feathers" + ], + "cape grassbird": [ + "back: olive-brown with streaks", + "beak: thin, pointed, and black", + "belly: pale with faint brownish streaks", + "breast: buff-colored with dark streaks", + "crown: olive-brown with faint streaks", + "forehead: pale and slightly streaked", + "eyes: dark with a faint pale eye-ring", + "legs: pinkish-brown and slender", + "wings: olive-brown with darker flight feathers", + "nape: olive-brown with narrow streaks", + "tail: long, dark, with white outer feathers", + "throat: buff-colored, streaked with brown" + ], + "cape griffon": [ + "back: golden-brown feathers with a slight curve", + "beak: large, hooked, yellowish-white", + "belly: pale cream and feathery", + "breast: lighter golden-brown feathers", + "crown: smooth, golden-brown head feathers", + "forehead: slightly raised with dense feathers", + "eyes: dark brown, piercing gaze", + "legs: strong, greyish-black talons", + "wings: long, broad, golden-brown feathers", + "nape: golden-brown with a transition to lighter feathers", + "tail: fan-shaped, golden-brown feathers", + "throat: pale cream-feathered with a slight curve" + ], + "cape lark": [ + "back: light brown with streaks", + "beak: short and pointed", + "belly: pale with faint markings", + "breast: light brown with dark streaks", + "crown: sandy brown with streaks", + "forehead: light brown with streaks", + "eyes: round and black", + "legs: slender, pale pink", + "wings: brown with pale edges", + "nape: light brown with streaks", + "tail: short and brown with white edges", + "throat: pale with faint markings" + ], + "cape parrot": [ + "back: vibrant green feathers", + "beak: strong, curved black beak", + "belly: lighter green feathered underside", + "breast: bright green chest feathers", + "crown: green capped head", + "forehead: emerald green feathers", + "eyes: round, dark with white eye-ring", + "legs: sturdy gray legs", + "wings: green feathers with blue edges", + "nape: green neck feathers", + "tail: long green feathers with blue tips", + "throat: pale green feathered area" + ], + "cape petrel": [ + "back: black feathers with white speckles", + "beak: sharp, hooked, black", + "belly: white with black speckles", + "breast: white with black speckles", + "crown: black with white speckles", + "forehead: black with white speckles", + "eyes: small, round, black", + "legs: short, pinkish-greys", + "wings: black and white-patterned", + "nape: black with white speckles", + "tail: square-shaped, black and white-patterned", + "throat: white with black speckles" + ], + "cape robin chat": [ + "back: brownish-grey plumage", + "beak: thin, black, pointed", + "belly: pale white with grey tint", + "breast: orange-red hue", + "crown: grey-brown feathers", + "forehead: smooth grey feathers", + "eyes: dark round with white eye-ring", + "legs: long, slender, black", + "wings: grey-brown with white patterns", + "nape: lighter grey-brown", + "tail: dark grey with white edges", + "throat: white and orange-red blend" + ], + "cape rockjumper": [ + "back: dark gray with light streaks", + "beak: strong, black, slightly curved", + "belly: white with dark speckles", + "breast: white with reddish-brown band", + "crown: dark gray and mottled", + "forehead: prominent white eyebrow stripe", + "eyes: dark, surrounded by white feathers", + "legs: pinkish-gray and strong for hopping", + "wings: short, dark gray with white spots", + "nape: gray with light mottling", + "tail: long, dark gray with white outer feathers", + "throat: white, speckled with dark spots" + ], + "cape shoveler": [ + "back: deep green iridescent feathers", + "beak: long, black with a spoon-like shape", + "belly: brownish and finely streaked", + "breast: chestnut-colored with white speckles", + "crown: dark green with a glossy sheen", + "forehead: dark green feathers fading into the crown", + "eyes: small and dark against green feathers", + "legs: reddish-orange and webbed", + "wings: greenish-blue speculum with white borders", + "nape: dark green feathers transitioning into the back", + "tail: black feathers with a slight upward curve", + "throat: solid white extending down to the breast" + ], + "cape siskin": [ + "back: olive-green with black streaks", + "beak: sharply pointed, grayish-yellow", + "belly: pale yellow with black streaking", + "breast: rich yellow with black streaking", + "crown: olive-green with black streaks", + "forehead: olive-green with black streaks", + "eyes: dark brown with pale eye-ring", + "legs: grayish-blue, with strong feet", + "wings: olive-black with yellow edging", + "nape: olive-green with black streaks", + "tail: black with white outer feathers", + "throat: bright yellow with black streaks" + ], + "cape sparrow": [ + "back: brownish-grey with streaks of black", + "beak: short, conical and dark grey", + "belly: off-white with light grey streaks", + "breast: pale grey with soft feathering", + "crown: dark reddish-brown", + "forehead: lightly coloured with brown hues", + "eyes: small, dark and surrounded by a light grey eyering", + "legs: slender and greyish-brown", + "wings: brown with white-tipped coverts creating a wing bar", + "nape: reddish-brown blending into the back", + "tail: long and brown with white outer feathers", + "throat: off-white and unmarked" + ], + "cape spurfowl": [ + "back: dark brown with black markings", + "beak: short and powerful, light grey", + "belly: greyish-brown with white spots and streaks", + "breast: chestnut-brown with lighter grey spots", + "crown: dark brown, slightly raised", + "forehead: dark feathers fading to lighter grey", + "eyes: dark brown, slightly hidden in feathers", + "legs: strong, dark grey", + "wings: brown with distinct white streaks", + "nape: dark brown with a faint grey streak", + "tail: long, broad feathers, brown with white streaks", + "throat: light grey with faint white spots" + ], + "cape starling": [ + "back: iridescent blue-black feathers", + "beak: short and pointed, black", + "belly: pale blue-gray", + "breast: blue-gray with metallic sheen", + "crown: smooth dark feathers, bluish-black", + "forehead: glossy blue-black feathers", + "eyes: dark brown, almost black", + "legs: black and slender", + "wings: iridescent blue-black, long and pointed", + "nape: blue-black with subtle purple sheen", + "tail: blue-black, long and slightly forked", + "throat: creamy white with blue-gray sheen" + ], + "cape sugarbird": [ + "back: earthy brown shades with light feather fringes", + "beak: long, curved, black and pointy", + "belly: soft grayish-white underparts", + "breast: whitish-gray with brown speckles", + "crown: subdue brown color, smooth feathers", + "forehead: unobtrusive and consistent with the crown", + "eyes: expressive, dark, round, and beady", + "legs: slender, black, and long-clawed", + "wings: elongated, brown with a hint of green iridescence", + "nape: light brown, elegant feathers", + "tail: remarkably long, streaming and needle-like", + "throat: delicate, whitish-feathered area" + ], + "cape teal": [ + "back: sleek, blue-gray plumage", + "beak: short, black, spatula-shaped", + "belly: pale gray with fine black speckling", + "breast: light gray-brown with fine black markings", + "crown: smooth, pale gray-brown", + "forehead: narrow white patch above the beak", + "eyes: dark, expressive with thin, white eye-ring", + "legs: long, slender, and dark gray", + "wings: blue-gray with patches of iridescent green", + "nape: pale gray-brown, blending with the crown", + "tail: short, pointed, blue-gray feathers", + "throat: white, sometimes with faint speckling" + ], + "cape verde shearwater": [ + "back: grayish-brown feathers", + "beak: dark, hooked, slightly tubular", + "belly: pale white", + "breast: white with grayish-brown speckles", + "crown: grayish-brown", + "forehead: grayish-white, slight slope to beak", + "eyes: dark and small", + "legs: bluish-gray, webbed feet", + "wings: long, pointed, with grayish-brown upper-side and white underside", + "nape: grayish-brown, blending to white on throat", + "tail: medium length, square-shaped, grayish-brown feathers", + "throat: white with smooth transition to nape" + ], + "cape verde sparrow": [ + "back: olive-brown with black streaks", + "beak: conical and blackish", + "belly: off-white or pale grey", + "breast: light grey with dark streaks", + "crown: chestnut-brown with a black cap", + "forehead: chestnut-brown", + "eyes: dark brown with faint pale eyering", + "legs: pinkish-brown", + "wings: olive-brown with black and white wingbars", + "nape: chestnut-brown blending into olive-brown on the back", + "tail: olive-brown with white outer feathers", + "throat: white with black markings on the sides of the neck" + ], + "cape verde storm petrel": [ + "back: dark grey-black feathers", + "beak: small, sharp, black", + "belly: slightly lighter grey feathers", + "breast: dark grey-black plumage", + "crown: smooth, dark feathers", + "forehead: dark, sleek feathers", + "eyes: small, black eyes", + "legs: thin, black, webbed feet", + "wings: dark, long, pointed wings", + "nape: dark grey feathers", + "tail: short, forked, black feathers", + "throat: dark grey-black plumage" + ], + "cape verde swamp warbler": [ + "back: olive-brown feathers", + "beak: slender, curved, and black", + "belly: pale white-yellow underparts", + "breast: lightly streaked with brown", + "crown: olive-brown with subtle streaks", + "forehead: olive-brown, blending with crown", + "eyes: dark brown with white eye-ring", + "legs: grayish-brown and slender", + "wings: olive-brown with faint bars", + "nape: olive-brown, slightly paler than crown", + "tail: long, narrow, and olive-brown", + "throat: whitish, leading to breast" + ], + "cape wagtail": [ + "back: grayish-brown with subtle black streaks", + "beak: thin, long and black", + "belly: off-white and lightly streaked", + "breast: pale yellow with faint gray markings", + "crown: black with a white eyebrow stripe", + "forehead: black with white eyebrow stripe extending rearwards", + "eyes: round, black, with a white eye-ring", + "legs: long, slender, and black", + "wings: gray-brown, with black and white secondary feather patterns", + "nape: white with grayish-brown streaks", + "tail: long, black, with white outer tail feathers", + "throat: off-white with grayish coloration" + ], + "cape weaver": [ + "back: golden-yellow plumage", + "beak: long, slender, and slightly curved", + "belly: creamy-white feathers", + "breast: pale yellow, soft feathers", + "crown: brightly yellow-orange feathers", + "forehead: blended with golden-yellow and white", + "eyes: black with white outer ring", + "legs: grayish-brown thin limbs", + "wings: patterned with brown and yellow feathers", + "nape: golden-yellow feathers curving downward", + "tail: short, brown, and slightly forked", + "throat: soft white to pale yellow feathers" + ], + "cape white eye": [ + "back: olive-green feathers", + "beak: black, curved and fine", + "belly: white and slightly puffed", + "breast: pale yellow hue", + "crown: olive-gray with white ring", + "forehead: olive-gray, blending to crown", + "eyes: large and white-ringed", + "legs: slender, grayish-brown", + "wings: olive-green with distinct barring", + "nape: olive-gray, connecting crown and back", + "tail: short and square, olive-green", + "throat: creamy white with subtle yellow undertones" + ], + "capped conebill": [ + "back: vibrant greenish-blue plumage", + "beak: slender, sharply-pointed in black color", + "belly: soft white with light streaks", + "breast: white with light gray streaks", + "crown: black cap-like marking", + "forehead: prominent black cap-like pattern", + "eyes: small with black pupils, surrounded by a white ring", + "legs: thin and dark gray in color", + "wings: bright greenish-blue with black accents", + "nape: greenish-blue plumage transitioning to the black cap", + "tail: medium length, vibrant greenish-blue with black tips", + "throat: white coloring, leading to streaked breast" + ], + "capped wheatear": [ + "back: brownish-grey feathers", + "beak: short, pointed, black", + "belly: light, creamy-white", + "breast: beige with subtle streaks", + "crown: dark grey cap", + "forehead: grey blending into crown", + "eyes: alert, dark, small", + "legs: slim, long, black", + "wings: black primary feathers, grey-blue coverts", + "nape: grey, connects cap to back", + "tail: black with white outer feathers", + "throat: pale cream, continuous with belly" + ], + "capuchin babbler": [ + "back: olive-brown plumage", + "beak: short and strong", + "belly: pale grayish-white", + "breast: light gray feathers", + "crown: black cap with a small white patch", + "forehead: blackish-brown", + "eyes: dark with thin white eye-ring", + "legs: strong and gray", + "wings: olive-brown with white feather-tips", + "nape: olive-brown blending with the crown", + "tail: long, graduated, and olive-brown", + "throat: white to light gray" + ], + "caqueta seedeater": [ + "back: olive-grey feathers", + "beak: short, conical, and grey", + "belly: whitish-grey plumage", + "breast: pale buff-grey feathers", + "crown: blackish crown with a pale grey stripe", + "forehead: blackish-grey frontal feathers", + "eyes: dark, round, with a white eye-ring", + "legs: sturdy, greyish-brown", + "wings: olive-grey with darker flight feathers", + "nape: blackish-grey with a pale grey stripe", + "tail: squared, with olive-grey and darker feathers", + "throat: whitish-grey, blending into breast area" + ], + "caracas brushfinch": [ + "back: dark olive-green with subtle streaks", + "beak: strong, black, conical-shaped", + "belly: whitish-gray with faint streaks", + "breast: grayish-white with darker streaks", + "crown: blackish edge with dark olive-green feathers", + "forehead: black band across the front", + "eyes: small dark brown with white rings", + "legs: sturdy dark gray", + "wings: olive-green with darker stripes and white markings", + "nape: olive-green matching back color", + "tail: dark olive-green with white outer feathers", + "throat: whitish-gray, blending with breast color" + ], + "caracas tapaculo": [ + "back: sleek brownish-black", + "beak: short and pointed", + "belly: grayish-white", + "breast: pale gray", + "crown: dark brown", + "forehead: blackish-brown", + "eyes: small and black", + "legs: long and slender", + "wings: rounded, dull brown", + "nape: blackish-brown", + "tail: short and square-cut", + "throat: light gray and white" + ], + "carbonated sierra finch": [ + "back: grayish-brown upper feathers", + "beak: short, pointed, and black", + "belly: whitish, sometimes tinged with gray", + "breast: pale gray blending into white", + "crown: dark grayish-brown cap", + "forehead: smooth gradient from crown to eyebrow", + "eyes: small, black with faint white eyering", + "legs: dull pinkish-gray with sturdy feet", + "wings: grayish-brown with indistinct bars", + "nape: smooth transition from crown to back", + "tail: medium length, grayish-brown with white tips", + "throat: white, blending into breast feathers" + ], + "cardinal lory": [ + "back: vibrant red feathers with potential blue hints", + "beak: strong, orange, hooked tip", + "belly: bright red and plump", + "breast: rich red with slightly curved feathers", + "crown: prominent red with some black streaks", + "forehead: bright red and smooth", + "eyes: dark, round with a white eye-ring", + "legs: sturdy, grey with sharp claws", + "wings: red with black or blue edges, well-rounded", + "nape: red feathers transitioning to black streaks", + "tail: elongated red feathers, slightly forked", + "throat: vivid red, leading to breast area" + ], + "cardinal myzomela": [ + "back: vibrant red feathers", + "beak: sharp, black, slightly curved", + "belly: lighter red fading to white", + "breast: bright red plumage", + "crown: brilliant red with a slight crest", + "forehead: intense red feathers", + "eyes: black and beady, surrounded by red", + "legs: slender, grayish-black", + "wings: red with black streaks and white-tipped edges", + "nape: scarlet feathers transitioning to back", + "tail: long, red feathers with black streaks", + "throat: bright red with a slight tuft" + ], + "cardinal quelea": [ + "back: vibrant red feathers", + "beak: sturdy, conical-shaped, and red", + "belly: slightly lighter red hue", + "breast: bright red plumage", + "crown: crimson feathers", + "forehead: vivid red, extends to crest", + "eyes: distinct black mask, encircling white eye", + "legs: red with black claws", + "wings: dark brown with red tinges", + "nape: rich red, slightly darker than forehead", + "tail: squared shape, red-brown", + "throat: extends from black mask in solid red color" + ], + "cardinal woodpecker": [ + "back: striking black and white pattern", + "beak: sturdy, chisel-like, and dark", + "belly: grayish-white with some streaks", + "breast: light grayish-red", + "crown: red for male, black for female", + "forehead: red for male, black for female", + "eyes: small, beady black", + "legs: strong and gray", + "wings: black and white, ladder-like pattern", + "nape: red for male, black for female", + "tail: black and white, barred pattern", + "throat: pale grayish-white" + ], + "carib grackle": [ + "back: iridescent black feathers", + "beak: long, slender, and black", + "belly: glossy black with blue-purple sheen", + "breast: shiny black plumage", + "crown: smooth, iridescent black feathers", + "forehead: sleek black plumage", + "eyes: bright yellow with black pupils", + "legs: black, slender, and long", + "wings: deep black with shimmering blue highlights", + "nape: glossy black feathers with violet sheen", + "tail: long and fan-shaped, black with blue-purple highlights", + "throat: shiny black with slight purple tint" + ], + "caribbean dove": [ + "back: smooth, light gray plumage", + "beak: slender, dark grayish-black", + "belly: soft, pinkish-buff feathers", + "breast: rosy-pink hue, blending into the belly", + "crown: bluish-gray with a hint of iridescence", + "forehead: slate-blue merging with the crown", + "eyes: dark with a surrounding white eye-ring", + "legs: short and pinkish-gray", + "wings: light gray with dark primary feathers", + "nape: iridescent blue hue", + "tail: long and rounded with white tips", + "throat: pale bluish-gray, contrasting with breast" + ], + "caribbean elaenia": [ + "back: olive-green upper body", + "beak: short and slightly hooked", + "belly: pale-yellow underside", + "breast: light yellowish-green chest", + "crown: grayish-white crest", + "forehead: olive-green head", + "eyes: black with white eye-ring", + "legs: pale gray with sharp claws", + "wings: olive-green with faint wing bars", + "nape: olive-green connecting to the crown", + "tail: olive-green with subtle notches", + "throat: white with grayish streaks" + ], + "caribbean martin": [ + "back: iridescent blue-black feathers", + "beak: sharp, pointed, and dark", + "belly: light grey, soft plumage", + "breast: gleaming blue-black coloration", + "crown: shiny, blue-black feathers", + "forehead: radiant blue-black plumage", + "eyes: small, black, and alert", + "legs: slender, dark, and strong", + "wings: broad, long, and blue-black", + "nape: glossy blue-black feathers", + "tail: forked, blue-black with white outer feathers", + "throat: light grey, delicate plumage" + ], + "carmelite sunbird": [ + "back: vibrant olive-green hue", + "beak: long, thin, and curved", + "belly: pale grayish-white color", + "breast: bright orange-red", + "crown: iridescent blue and green shades", + "forehead: metallic green with blue highlights", + "eyes: small, dark, and round", + "legs: grayish-black, thin, and strong", + "wings: olive-green with black tips", + "nape: metallic green transitioning to olive-green", + "tail: long, dark, and slightly forked", + "throat: bright orange-red with metallic green accents" + ], + "carmiol tanager": [ + "back: olive-green with slight yellow hue", + "beak: stout, medium-length, pale gray", + "belly: bright yellow", + "breast: yellow with olive tones", + "crown: orange-red", + "forehead: olive-yellow", + "eyes: dark with gray eye-ring", + "legs: grayish-black", + "wings: olive-green with yellow edges", + "nape: olive-yellow", + "tail: olive-green with yellow undertail coverts", + "throat: yellowish with olive tinges" + ], + "carnaby black cockatoo": [ + "back: dark grey feathers with white spots", + "beak: large, dark grey, and curved", + "belly: pale grey with slight barring", + "breast: light grey, white-edged feathers", + "crown: black feathers with whitish edges", + "forehead: short, black, smooth feathers", + "eyes: dark brown with white eye-ring", + "legs: dark grey, strong, and scaly", + "wings: long, black with white panels", + "nape: blackish feathers with white edging", + "tail: black feathers with bold white bands", + "throat: dark grey with thin white streaks" + ], + "carola parotia": [ + "back: iridescent green and blue feathers", + "beak: short, black, and hooked", + "belly: velvety black feathers", + "breast: shimmering emerald green", + "crown: black and adorned with golden plumes", + "forehead: bright yellow stripe", + "eyes: dark and round, framed with blue feathers", + "legs: black and sturdy with strong claws", + "wings: black with hints of shiny teal", + "nape: decorated with elongated golden plumes", + "tail: black and fan-shaped with iridescent blue tips", + "throat: blue, surrounded by a six-wired plume display" + ], + "caroline islands ground dove": [ + "back: reddish-maroon feathers with metallic green sheen", + "beak: short, sharp and light grayish-yellow", + "belly: white to pale buff", + "breast: light pink to lavender with a thin white patch", + "crown: shimmering greenish-blue feathers", + "forehead: metallic greenish-blue", + "eyes: dark and round with a thin white eyering", + "legs: short and reddish-pink", + "wings: reddish-maroon with iridescent metallic green shades", + "nape: metallic greenish-blue feathers blending into reddish-maroon", + "tail: reddish-maroon with black-band tips and a shimmering blue sheen", + "throat: light pinkish-lavender fading into white" + ], + "caroline islands swiftlet": [ + "back: sleek, iridescent dark plumage", + "beak: short, black, and pointed", + "belly: grayish-black, delicate feathers", + "breast: glistening dark plumage", + "crown: shiny, dark feathers with gray tint", + "forehead: smooth, dark plumage", + "eyes: small, round, and black", + "legs: short and covered in dark feathers", + "wings: long, narrow, and angular", + "nape: dark gray feathers with slight iridescence", + "tail: short, straight, and slightly forked", + "throat: light gray, soft plumage" + ], + "caroline islands white eye": [ + "back: olive-green feathers", + "beak: black, short, and pointed", + "belly: light yellowish underparts", + "breast: pale yellow feathers", + "crown: bright yellow and distinctive", + "forehead: yellow-green plumage", + "eyes: white eye-ring, dark brown iris", + "legs: slender, gray-blue", + "wings: olive-green feathers with a hint of yellow", + "nape: yellowish-green color", + "tail: olive-green, moderately long", + "throat: pale yellow plumage" + ], + "caroline reed warbler": [ + "back: olive-green feathers", + "beak: thin, pointed black", + "belly: pale grey-white", + "breast: light grey", + "crown: greenish-grey", + "forehead: slightly paler green", + "eyes: small beady, black", + "legs: thin, dark grey", + "wings: brownish-green with black streaks", + "nape: uniform greenish-grey", + "tail: long, dark, with white outer edges", + "throat: pale off-white" + ], + "carp tit": [ + "back: blue-grey feathers with a thin white stripe", + "beak: short, black, and stout for seed-cracking", + "belly: white with fine grey streaks", + "breast: creamy white with a hint of yellow", + "crown: blue-grey with a slight peak at the rear", + "forehead: pale blue-grey coloration", + "eyes: dark and round, surrounded by a small white ring", + "legs: sturdy and orange-brown in color", + "wings: blue-grey, black and white patterned, slightly pointed", + "nape: bluish-grey with a white stripe on either side", + "tail: medium-length, blue-grey, and slightly forked", + "throat: creamy white, similar to the breast coloration" + ], + "carpentarian grasswren": [ + "back: brownish-grey with dark streaks", + "beak: small, pointed, black", + "belly: off-white with light streaks", + "breast: pale brownish-grey with faint streaks", + "crown: rich cinnamon to dark brown", + "forehead: pale grey or brownish-grey", + "eyes: small, dark, alert", + "legs: slender, black, strong", + "wings: brown with black markings", + "nape: rich cinnamon-brown", + "tail: long, graduated, brown with black bars", + "throat: pale grey with a hint of rufous" + ], + "carrion crow": [ + "back: sleek black feathers", + "beak: sturdy, dark, slightly curved", + "belly: smooth black plumage", + "breast: dark-feathered chest", + "crown: ebony feathers on the head", + "forehead: black, feathered brow", + "eyes: small, piercing, black", + "legs: dark, slender limbs", + "wings: broad, black, powerful", + "nape: feathery black neck", + "tail: fan-shaped black feathers", + "throat: dark-flecked plumes" + ], + "carruthers cisticola": [ + "back: brownish-grey with subtle streaks", + "beak: short and pointed", + "belly: off-white to pale buff", + "breast: slightly darker buff with fine streaks", + "crown: rufous-brown with a dark streak", + "forehead: paler brownish-grey", + "eyes: small and dark", + "legs: pale pinkish-brown", + "wings: brownish-grey with dark edges", + "nape: brownish-grey with a dark streak", + "tail: rufous-brown with dark barring", + "throat: pale buff" + ], + "carunculated caracara": [ + "back: dark brown feathers with white edges", + "beak: strong, hooked, black tip with yellow-orange base", + "belly: white with dark brown barring", + "breast: white with brown streaks", + "crown: black feathers with a slight crest", + "forehead: black with striking white patch", + "eyes: bright yellow-orange with a piercing gaze", + "legs: yellow-orange with long, sharp talons", + "wings: brown with white tips and streaks on the undersides", + "nape: black with a white stripe", + "tail: long, narrow, black with broad white bands", + "throat: white with dark brown streaks" + ], + "carunculated fruit dove": [ + "back: vibrant green feathers", + "beak: short and curved, pale blue color", + "belly: light blue-green hue with a hint of yellow", + "breast: brilliant orange coloration", + "crown: deep green with an iridescent shine", + "forehead: bright emerald green feathers", + "eyes: round and dark, alert expression", + "legs: short and sturdy, deep pink hue", + "wings: dazzling yellow-green with black edge markings", + "nape: iridescent green, blending with crown", + "tail: elongated feathers, yellow-green with a black band", + "throat: distinct caruncles, small and blue-grey" + ], + "caspian gull": [ + "back: pale grey feathers with a smooth texture", + "beak: long, slender yellow beak with a red spot near the end", + "belly: clean white feathers with a slight curve", + "breast: white plumage with a broad shape", + "crown: sleek grey feathers on top of the head", + "forehead: smooth, rounded white feathers above the eyes", + "eyes: piercing yellow with a black circular outline", + "legs: sturdy, yellowish-orange legs with webbed feet", + "wings: large, pale grey wings with black tips and white spots", + "nape: grey feathers transitioning from the crown to the back", + "tail: broad white feathers with black banding at the end", + "throat: white feathers extending down to the breast" + ], + "caspian plover": [ + "back: dusky grey-brown feathers", + "beak: short, straight black bill", + "belly: clean white underbelly", + "breast: pale buff-grey chest", + "crown: dark brown cap with lighter edges", + "forehead: pale white stripe above eyes", + "eyes: dark, round, with narrow white eyering", + "legs: long and slender with pale yellow color", + "wings: brownish-grey with white edges in flight", + "nape: greyish-brown fading into lighter shades", + "tail: white outer feathers, dark central feathers", + "throat: buff-white smooth feathers" + ], + "caspian snowcock": [ + "back: grayish-brown with white speckles", + "beak: short, stout, and slightly curved", + "belly: white with black spots", + "breast: pale gray with fine, dark bars", + "crown: dark gray with white streaks", + "forehead: white patch above the eye", + "eyes: small, dark, and bright", + "legs: sturdy, feathered, and yellowish-brown", + "wings: rounded with distinct black and white barring", + "nape: gray with white streaks", + "tail: long, dark brown with white bars", + "throat: pale gray with fine, dark stripes" + ], + "caspian tit": [ + "back: olive-gray with fine white streaks", + "beak: short, stout, and black", + "belly: white with fine gray streaks", + "breast: snowy white with subtle gray markings", + "crown: black with a thin white stripe", + "forehead: black with a white central spot", + "eyes: small, dark, and alert", + "legs: slender and blue-gray", + "wings: dark gray with white edging and bars", + "nape: black with delicate white stripes", + "tail: long, gray, with white outer feathers", + "throat: black with a white crescent shape" + ], + "casqued cacique": [ + "back: vibrant yellow feathers", + "beak: long, slender, and black", + "belly: vivid yellow plumage", + "breast: bright yellow chest feathers", + "crown: unique black casque on top", + "forehead: black feathers beneath the casque", + "eyes: small, dark, and piercing", + "legs: strong and black with clawed feet", + "wings: black with a hint of metallic blue", + "nape: black feathers leading to the casque", + "tail: long, black, and slightly forked", + "throat: contrasting yellow plumage" + ], + "cassia crossbill": [ + "back: rusty red or brick-colored feathers", + "beak: stout, crossed mandibles, designed to open pine cone scales", + "belly: lighter shade of red or orange, occasionally with white markings", + "breast: variably colored, ranging from red to orange or grayish hues", + "crown: red or orange-tinged head feathers", + "forehead: similar to crown, red or orange-tinged feathers", + "eyes: dark, bead-like, surrounded by a pale orbital ring", + "legs: sturdy, grayish black, with strong toes and curved claws", + "wings: reddish-brown, with strongly barred wing coverts and secondaries", + "nape: same color as crown and back, showing red or orange-tinged feathers", + "tail: medium-length, squared-off end, with reddish to dark brown feathers", + "throat: variable coloration, often a lighter shade of the breast color" + ], + "cassin auklet": [ + "back: grayish-brown plumage", + "beak: short, black, and slightly hooked", + "belly: pale grey", + "breast: greyish with a hint of white", + "crown: dark gray with small white whisker-like feathers", + "forehead: slightly rounded, grayish-brown", + "eyes: small, intense, black", + "legs: short, blue-grey with sharp black claws", + "wings: compact with darker wingtips", + "nape: downward-sloping neck with greyish-brown feathers", + "tail: short, fan-shaped with dark feathers", + "throat: white, blending into grey breast area" + ], + "cassin flycatcher": [ + "back: olive-green feathered back", + "beak: short, black, sharp beak", + "belly: pale yellow underside", + "breast: lightly streaked yellowish breast", + "crown: olive-green head with white eyebrow stripe", + "forehead: olive coloration blending with crown", + "eyes: dark, round eyes with thin eye-ring", + "legs: pale pink, slender legs", + "wings: blackish wings with two faint wing bars", + "nape: olive-green color transitioning from head to back", + "tail: short, dark tail with white outer web edges", + "throat: pale yellow with light streaks" + ], + "cassin hawk eagle": [ + "back: brownish-black feathers", + "beak: sharp, hooked, and black", + "belly: white with dark streaks", + "breast: white and finely barred", + "crown: black with a slight crest", + "forehead: white with dark streaks", + "eyes: large, dark, and piercing", + "legs: strong and yellow", + "wings: broad with dark bars", + "nape: black with a white stripe", + "tail: black with wide, white bands", + "throat: white with dark streaks" + ], + "cassin honeyguide": [ + "back: olive-brown with lighter streaks", + "beak: short, sharp, black", + "belly: dull white with grayish-brown spots", + "breast: whitish with dark brown streaks", + "crown: dark brown with lighter streaks", + "forehead: light brown with darker streaks", + "eyes: small, dark, well-defined", + "legs: strong, grayish-brown", + "wings: olive-brown with faint pale bars", + "nape: dark brown with lighter streaks", + "tail: olive-brown with faint pale bars", + "throat: dull white with grayish-brown spotting" + ], + "cassin spinetail": [ + "back: olive-brown with streaks", + "beak: black and sharp", + "belly: buff-white color", + "breast: grayish-brown with thin streaks", + "crown: rufous-chestnut with a crest", + "forehead: rufous-chestnut", + "eyes: dark brown surrounded by white eye-ring", + "legs: sturdy, pinkish-gray", + "wings: olive-brown with pale fringes", + "nape: olive-brown with streaks", + "tail: long, chestnut-colored with pointed feathers", + "throat: pale buff-white" + ], + "castelnau antshrike": [ + "back: olive-green with subtle white streaks", + "beak: short and curved, black color", + "belly: pale buff with dark barring", + "breast: grayish color with white streaks", + "crown: dusky gray, darker in males", + "forehead: grayish color, paler than crown", + "eyes: dark brown with white eye-ring", + "legs: pale pinkish-gray", + "wings: dusky gray with white wingbars", + "nape: grayish color, slightly paler than crown", + "tail: long, blackish, with white tips", + "throat: paler gray, sometimes whitish" + ], + "cattle tyrant": [ + "back: olive-brown and streaked", + "beak: blackish, short, and hooked", + "belly: pale yellowish-white", + "breast: light yellow with streaking", + "crown: gray with faint streaks", + "forehead: pale gray", + "eyes: dark brown with pale eyering", + "legs: long, dark, and slender", + "wings: olive-brown with blackish markings", + "nape: streaked, olive-gray", + "tail: long with dark brown feathers", + "throat: pale yellowish-white" + ], + "cauca guan": [ + "back: earthy brown, elongated feathers", + "beak: sturdy, curved light grey beak", + "belly: creamy white, lightly feathered", + "breast: light brown with subtle white streaks", + "crown: brownish-grey, slightly raised feathers", + "forehead: rounded, light grey plumage", + "eyes: small, black with a faint white ring", + "legs: slender, grey legs with scaly texture", + "wings: wide, brown wings with white accents", + "nape: smooth, brownish-grey feathers", + "tail: long, narrow tail feathers in earthy brown", + "throat: light cream feathers with fine streaks" + ], + "caucasian grouse": [ + "back: blue-gray plumage with white markings", + "beak: short and stubby, yellowish-brown", + "belly: white feathers transitioning to gray", + "breast: light gray with white streaks", + "crown: rounded with blue-gray feathers", + "forehead: smooth, blue-gray plumage", + "eyes: small, dark beady eyes", + "legs: feathered, gray with strong talons", + "wings: broad, mottled blue-gray and white feathers", + "nape: long, dark blue-gray feathers", + "tail: short and pointy, blue-gray with white tips", + "throat: white feathers extending from beak to chest" + ], + "caucasian snowcock": [ + "back: earthy-brown plumage and white speckles", + "beak: short, stout, and light gray", + "belly: white feathers with black bands", + "breast: grayish-brown mottled with white", + "crown: grayish-brown with white streaks", + "forehead: light gray and slightly crested", + "eyes: dark and expressive with a white eye-ring", + "legs: feathered, robust, with curved claws", + "wings: mottled brownish-gray with white streaks", + "nape: grayish-white with darker streaks", + "tail: fan-shaped with alternating black and white bands", + "throat: white and unmarked" + ], + "caura antbird": [ + "back: light brown feathers with slight streaks", + "beak: short and sharp, blackish color", + "belly: creamy-white plumage with brown markings", + "breast: buff-colored feathers with brown streaks", + "crown: dark brown with a hint of rufous", + "forehead: plain light brown smoothly transitioning into the crown", + "eyes: small and black, surrounded by a pale eye-ring", + "legs: strong and greyish-brown", + "wings: brown with faint white wing bars", + "nape: light brown, blending with the back and crown", + "tail: long and brown with rufous-tipped feathers", + "throat: pale buff-colored with subtle brown markings" + ], + "cave swiftlet": [ + "back: sleek, glossy plumage", + "beak: short, pointed", + "belly: light, smooth feathers", + "breast: pale or white, soft", + "crown: dark, streamlined crest", + "forehead: angular, feathered", + "eyes: small, black, alert", + "legs: thin, delicate", + "wings: long, curved for swift flight", + "nape: subtle, smooth feathers", + "tail: slender, often fanned", + "throat: soft, pale feathers" + ], + "cayenne jay": [ + "back: vibrant blue feathers", + "beak: strong, black, slightly curved", + "belly: soft, pale gray-white plumage", + "breast: rich blue feathers with slight gradient", + "crown: bright blue feathered crest", + "forehead: sleek blue feathers meeting the beak", + "eyes: sharp, dark, intelligent gaze", + "legs: strong, dark gray legs with sharp talons", + "wings: striking blue with intricate feather pattern", + "nape: smooth transition from head to back plumage", + "tail: long, vivid blue feathers with darker tips", + "throat: light gray, contrasting with the blue breast" + ], + "ceara gnateater": [ + "back: olive-green feathers", + "beak: black hooked bill", + "belly: whitish-gray plumage", + "breast: grayish-brown feathers", + "crown: dark gray with a slight crest", + "forehead: blackish-brown with white streaks", + "eyes: large and black with white rings", + "legs: strong, dark gray", + "wings: olive-green with dark gray edging", + "nape: grayish-black, slightly lighter than crown", + "tail: long and dark gray, white-tipped", + "throat: white with a black malar stripe" + ], + "ceara woodcreeper": [ + "back: brownish-color, streaked pattern", + "beak: long, thin, slightly curved", + "belly: buff, slightly spotted", + "breast: warm brown, slightly streaked", + "crown: reddish-brown, smooth", + "forehead: pale brown, blending into the crown", + "eyes: dark, small, and beady", + "legs: sturdy, pale gray", + "wings: brown, banded with buff", + "nape: reddish-brown, similar to the crown", + "tail: long, stiff, brown with slight barring", + "throat: pale buff, spotted with brown" + ], + "cebu boobook": [ + "back: dark brown feathers with white spots", + "beak: blackish, compact hooked bill", + "belly: creamy white with brownish streaks", + "breast: white with brownish-black spots and streaks", + "crown: brown feathers with white spots", + "forehead: brown with white flecks", + "eyes: large, bright yellow", + "legs: grayish-blue, strong and feathered", + "wings: dark brown with white barring and spots", + "nape: brown with white spots, forming a pattern", + "tail: long, brown with white bars", + "throat: white with some brown streaks" + ], + "celestial monarch": [ + "back: vibrant blue feathers", + "beak: small, sharp, black", + "belly: golden yellow plumage", + "breast: rich orange hues", + "crown: royal blue crest", + "forehead: stunning indigo markings", + "eyes: bright, intelligent gaze", + "legs: slender, dark gray", + "wings: majestic blue and black", + "nape: iridescent blue-green", + "tail: long, elegant, blue-black", + "throat: boldly contrasting yellow" + ], + "central american pygmy owl": [ + "back: brownish-gray with white spots", + "beak: sharp, yellowish-gray in color", + "belly: white or pale gray with brown bars", + "breast: white or pale gray with brown bars", + "crown: brownish-gray with white spots or streaks", + "forehead: brownish-gray with white streaks", + "eyes: piercing yellow with black pupils", + "legs: yellowish with sharp, black talons", + "wings: rounded, brownish-gray with white spots or bars", + "nape: brownish-gray with white spots or streaks", + "tail: short, brownish-gray with white bars", + "throat: white or pale gray with light brown streaks" + ], + "cerulean cuckooshrike": [ + "back: vibrant green feathers", + "beak: short, black, and curved", + "belly: light yellow plumage", + "breast: bright orange with black spots", + "crown: iridescent blue-green crest", + "forehead: blue-green with white tufts", + "eyes: dark, round, and inquisitive", + "legs: slender, gray, and twig-like", + "wings: green edges with colorful, coquette pattern", + "nape: turquoise feathers blending into green", + "tail: elongated, green with white tips", + "throat: white feathers with black bands" + ], + "cerulean flycatcher": [ + "back: vibrant blue with sleek feathers", + "beak: thin, sharp, and black", + "belly: pale white with light streaks", + "breast: white with blue edges", + "crown: deep blue and well-rounded", + "forehead: bright blue fading to white", + "eyes: black, alert, and expressive", + "legs: slim and gray", + "wings: striking blue with black tips", + "nape: deep blue meeting the white breast", + "tail: long and blue with black edges", + "throat: white blending into the blue forehead" + ], + "cerulean capped manakin": [ + "back: vibrant green feathers", + "beak: small, sleek black", + "belly: white with a tint of blue", + "breast: bright cerulean blue", + "crown: striking cerulean blue cap", + "forehead: rich cerulean blue", + "eyes: dark, beady", + "legs: gray with strong feet", + "wings: green with black tips", + "nape: deep green transitioning to blue", + "tail: elongated black with white edges", + "throat: soft white with blue undertones" + ], + "cetti warbler": [ + "back: olive-brown with some dark streaks", + "beak: short and pointed, dark grey", + "belly: buff-colored with very faint barring", + "breast: pale buff, slightly darker than belly", + "crown: dark brown", + "forehead: reddish-brown", + "eyes: small, dark with pale eyering", + "legs: dark grey, short and sturdy", + "wings: short and rounded, olive-brown", + "nape: reddish-brown", + "tail: dark brown, slightly rounded", + "throat: pale, buff-colored" + ], + "chabert vanga": [ + "back: blackish-brown feathers", + "beak: strong, hooked, black", + "belly: white pale feathers", + "breast: grayish-white plumage", + "crown: black crest-like feathers", + "forehead: black feathers merging into crown", + "eyes: dark brown, alert", + "legs: strong, black, with sharp claws", + "wings: blackish-brown, long, broad", + "nape: dark brownish-grey feathers", + "tail: long, black, forked", + "throat: white-grayish soft feathers" + ], + "chachapoyas antpitta": [ + "back: olive-brown with subtle streaks", + "beak: short and curved, pale greenish-yellow", + "belly: pale gray with faint barring", + "breast: grayish-brown with ochre tinges", + "crown: rich chestnut-brown", + "forehead: pale gray, blending into crown", + "eyes: small, dark, and round", + "legs: long and slender, pale orange", + "wings: olive-brown, rounded with faint bars", + "nape: chestnut-brown blending into back", + "tail: short and olive-brown with faint bars", + "throat: pale gray, contrasting with breast" + ], + "chaco chachalaca": [ + "back: olive-brown feathering", + "beak: dark, stout, and slightly hooked", + "belly: lighter greyish-brown hue", + "breast: pale greyish-brown plumage", + "crown: dark olive-brown crest", + "forehead: olive-brown with slight crest", + "eyes: dark, small, with wattles", + "legs: long, grey, with strong feet", + "wings: broad, olive-brown with dark edges", + "nape: olive-brown, blending into crown", + "tail: long, contrasting lighter edge", + "throat: pale greyish-brown; bare wattles" + ], + "chaco eagle": [ + "back: dark brown feathers", + "beak: sharp, black hooked beak", + "belly: white feathered underbody", + "breast: light brown feathers", + "crown: dark brown feathers on head", + "forehead: white markings above the eyes", + "eyes: large, dark, piercing gaze", + "legs: strong yellow legs with black talons", + "wings: broad, long, dark brown feathers", + "nape: white collar around back of the neck", + "tail: long, dark brown feathers with white banding", + "throat: white feathered front of the neck" + ], + "chaco earthcreeper": [ + "back: brownish-gray with subtle streaks", + "beak: long, slender, slightly curved", + "belly: buff-colored with light barring", + "breast: grayish-brown with faint barring", + "crown: dark brown with light streaks", + "forehead: grayish-brown with fine streaks", + "eyes: dark brown with pale eyering", + "legs: slate gray with strong claws", + "wings: mottled brown with faint bars", + "nape: warm brown with light streaks", + "tail: square-shaped, long, brown with faint bars", + "throat: pale grayish-white with light barring" + ], + "chaco owl": [ + "back: pale gray with dark speckling", + "beak: short, hooked, yellowish", + "belly: white with gray streaks", + "breast: white with gray streaks", + "crown: pale gray", + "forehead: pale gray, rounded", + "eyes: large, dark, surrounded by thin white rims", + "legs: feathered, pale gray", + "wings: broad, pale gray with dark bars", + "nape: pale gray, sometimes lighter than back", + "tail: long, pale gray with dark bars", + "throat: white, unmarked" + ], + "chaco sparrow": [ + "back: brownish-grey with black streaks", + "beak: short and conical, dark grey", + "belly: light grey with brownish tint", + "breast: pale grey with faint streaks", + "crown: grey-brown with dark streaks", + "forehead: pale grey, blending into crown", + "eyes: dark, surrounded by light eyering", + "legs: thin and light greyish", + "wings: brown with dark streaks, subtle wingbars", + "nape: grey-brown with dark streaks", + "tail: long and brownish-grey, notched", + "throat: pale grey, unmarked" + ], + "chalk browed mockingbird": [ + "back: slate-grey feathers with subtle brushed streaks", + "beak: long, thin, and black with a slight downward curve", + "belly: pale grey-white with faint horizontal markings", + "breast: light grey with slight darker streaks", + "crown: ashy grey with a distinct white eyebrow stripe", + "forehead: pale grey gently merging with the white eyebrow", + "eyes: round, black, and alert with a white eye-ring", + "legs: slender and black, with strong feet for perching", + "wings: greyish-brown with black and white wing bars", + "nape: soft grey with a hint of brown, connecting head to back", + "tail: long and dark with white outer feathers and black sub-terminal band", + "throat: light grey-white, blending smoothly with the breast" + ], + "chami antpitta": [ + "back: soft feathers, subtle earthy hues", + "beak: short, curved, sharp", + "belly: rounded, pale plumage", + "breast: mottled tawny feathers", + "crown: brownish-gray coloring, smoothly contoured", + "forehead: unassuming, lighter shades", + "eyes: round, inquisitive, dark", + "legs: thin, strong, featherless", + "wings: medium-sized, barred patterns", + "nape: slightly darker hue, smooth transition", + "tail: short, broad, streaked feathers", + "throat: pale, finely speckled markings" + ], + "changeable hawk eagle": [ + "back: dark brown feathers with white edges", + "beak: sharp, black, hooked tip", + "belly: white with heavy black streaking", + "breast: white with black streaks", + "crown: dark brown feathers with white edges", + "forehead: white with dark brown streaks", + "eyes: piercing yellow irises", + "legs: strong yellow legs with sharp talons", + "wings: long and broad with brown and white feather patterns", + "nape: dark brown feathers with white edging", + "tail: long with alternating brown and black bands", + "throat: white with dark brown streaks" + ], + "channel billed cuckoo": [ + "back: long and sleek dark grey feathers", + "beak: long, curved, pale, and strong", + "belly: pale grey with dark bars", + "breast: greyish-blue with fine barring", + "crown: dark grey with a slight crest", + "forehead: lighter grey blending into the crown", + "eyes: piercing, dark, round, small", + "legs: slim, sturdy, slate colored", + "wings: strong, wide, dark grey with slight barring", + "nape: dark grey feathers with a subtle stripe pattern", + "tail: long, broad, and dark grey with black bands", + "throat: soft grey with subtle streaks" + ], + "channel billed toucan": [ + "back: vibrant green feathers", + "beak: large, striking multicolor (orange, black and blue", + "belly: pale yellow plumage", + "breast: bright yellow feathers", + "crown: green-blue feathered area", + "forehead: deep blue hue", + "eyes: bright blue, encircled by bare blue skin", + "legs: strong, bluish-grey with zygodactyl toes", + "wings: short and rounded with green-blue and yellow feathers", + "nape: vivid green plumage", + "tail: long, red-tipped feathers with blue and green hues", + "throat: white plumage with black streaks" + ], + "chapada flycatcher": [ + "back: olive-brown feathers", + "beak: short and sturdy, blackish", + "belly: pale yellow with faint streaks", + "breast: light yellowish-olive and streaked", + "crown: grayish with an inconspicuous crest", + "forehead: slightly paler gray", + "eyes: dark with a thin eye-ring", + "legs: black, strong, and slender", + "wings: brownish, relatively short", + "nape: olive-brown, blending with the back", + "tail: brownish and slightly forked", + "throat: white or pale with light streaks" + ], + "chapin apalis": [ + "back: olive-brown feathers", + "beak: small, thin, and pointed", + "belly: creamy-yellow feathering", + "breast: pale yellow with faint streaking", + "crown: grayish-brown with faint streaks", + "forehead: grayish-brown blending into crown", + "eyes: small, dark, and beady", + "legs: slender, grayish-blue", + "wings: olive-brown with faint streaks", + "nape: grayish-brown, extending from crown", + "tail: long, narrow, olive-brown feathers", + "throat: white, often with faint streaking" + ], + "chapin flycatcher": [ + "back: olive-green coloration", + "beak: short, black, slightly hooked", + "belly: pale yellowish", + "breast: yellowish hue", + "crown: dark, olive-green", + "forehead: prominent white eyebrow line", + "eyes: dark, encircled by pale ring", + "legs: slim and dark", + "wings: olive-green with white-edged feathers", + "nape: olive-green, meshing with crown", + "tail: dark with variable white patches", + "throat: light, continuing yellowish tint" + ], + "chaplin barbet": [ + "back: green with hints of blue, covering majority of body", + "beak: thick, short, and ivory-hued, perfect for cracking nuts and seeds", + "belly: soft yellow with green streaks, a contrast against the green back", + "breast: vibrant yellow, accented with streaks of green and blue", + "crown: bright blue with a slight crest at the back", + "forehead: bold red patch, contrasted against surrounding colors", + "eyes: dark, alert eyes surrounded by a narrow white ring", + "legs: short and sturdy, with grey zygodactyl feet for gripping branches", + "wings: primarily green, with splashes of blue and yellow on the flight feathers", + "nape: green and blue, connecting the bright crown to the back", + "tail: slightly elongated, with green and blue feathers for maneuverability", + "throat: light yellow, complementing the bird's breast and belly colors" + ], + "chapman antshrike": [ + "back: dark grey with thin white streaks", + "beak: short, hooked, black", + "belly: pale grey with faint streaks", + "breast: white with black streaks", + "crown: black with small white spots", + "forehead: black with faint white streaks", + "eyes: black with white eye-ring", + "legs: slim, greyish-blue", + "wings: black with white bars", + "nape: grey with faint white streaks", + "tail: long, black with white tips", + "throat: white with fine black streaks" + ], + "chapman bristle tyrant": [ + "back: smooth, olive-green feathers", + "beak: slim, slightly hooked, dark-colored", + "belly: pale yellowish underparts", + "breast: light, grayish-olive feathers", + "crown: darker greenish-brown", + "forehead: greenish-white with sparse bristles", + "eyes: small, dark, and alert", + "legs: slender, grayish-brown", + "wings: olive-green with faint wing bars", + "nape: greenish-brown, merging with the crown", + "tail: relatively short, dark olive-green with pale tips", + "throat: pale grayish-white, contrasting with breast" + ], + "chapman swift": [ + "back: sleek, bluish-gray feathers", + "beak: small, delicate, black", + "belly: light gray with darker streaks", + "breast: grayish-white, fading into belly", + "crown: dark gray with slight crest", + "forehead: bluish-gray, smooth", + "eyes: small, dark, alert", + "legs: short, sturdy, black", + "wings: long, pointed, gray-blue", + "nape: bluish-gray, blending into crown", + "tail: short, square, dark feathers", + "throat: pale gray, contrasting with breast" + ], + "charlotte bulbul": [ + "back: olive-green with slight sheen", + "beak: slender, curved, and black", + "belly: pale yellow with a hint of gray", + "breast: light olive-green, transitioning from belly", + "crown: black with purple-blue gloss", + "forehead: black, blending into the crown", + "eyes: dark brown with thin eye-ring", + "legs: dark gray, strong, and slender", + "wings: olive-green, with black flight feathers", + "nape: olive-green, connecting to back and crown", + "tail: long and olive-green, with white tips", + "throat: creamy white with black streaks" + ], + "charming hummingbird": [ + "back: iridescent green feathers", + "beak: long and slender for nectar sipping", + "belly: soft white underbelly", + "breast: vibrant plumage of color", + "crown: emerald green cap", + "forehead: shimmering metallic shades", + "eyes: tiny, alert black beads", + "legs: delicate and thin, for perching", + "wings: rapid, near-invisible flutters", + "nape: smooth transition of colors", + "tail: short, fan-like feathers", + "throat: dazzling ruby-colored gorget" + ], + "chat flycatcher": [ + "back: dark grayish-blue feathers", + "beak: short, straight, black", + "belly: soft gray-white hue", + "breast: light gray-blue plumage", + "crown: dark gray-blue head feathers", + "forehead: lighter gray-blue tones", + "eyes: small, round, dark brown", + "legs: slim, black, with sharp claws", + "wings: medium length, gray-blue with black edges", + "nape: grayish-blue hue transitioning to back", + "tail: relatively long, dark grey-blue feathers", + "throat: pale grayish-white coloring" + ], + "chatham albatross": [ + "back: smooth grayish-white feathers", + "beak: long and sharp, hooked end, pale yellow", + "belly: light gray-white plumage", + "breast: grayish-white with some black feathering", + "crown: smooth grayish-white feathers", + "forehead: flat and broad, light gray-white", + "eyes: round and dark, alert expression", + "legs: strong and webbed, pale pink in color", + "wings: long, slender, black and white, powerful for gliding", + "nape: continuous gray-white plumage from the back", + "tail: short, fan-shaped, black and white feathering", + "throat: white feathers blending into gray breast area" + ], + "chatham island gerygone": [ + "back: olive-brown with subtle streaks", + "beak: short and slightly curved", + "belly: off-white and unmarked", + "breast: pale beige with a hint of yellow", + "crown: olive-green with distinguishing streaks", + "forehead: olive-green blending into the crown", + "eyes: small and dark with a subtle eye ring", + "legs: pale pinkish-gray and slender", + "wings: olive-brown with bold white wing bars", + "nape: olive-green with thin streaks", + "tail: long, narrow, and olive-brown", + "throat: creamy-white, blending into the breast" + ], + "chatham island pigeon": [ + "back: greenish-bronze with purple sheen", + "beak: short and strong, grayish color", + "belly: pale grayish-white", + "breast: iridescent green and purple mix", + "crown: dark green with a purple sheen", + "forehead: bluish-green, slightly iridescent", + "eyes: dark, surrounded by a ring of fine white feathers", + "legs: powerful and pinkish-red", + "wings: broad, dark green feathers with a purplish-blue sheen", + "nape: bluish-green, iridescent", + "tail: long, dark green with purple gloss", + "throat: gradient from iridescent bluish-green to pale grayish-white" + ], + "chatham islands parakeet": [ + "back: dark green with blue sheen", + "beak: stout and pale grey", + "belly: bright yellow-green", + "breast: vibrant green", + "crown: green-blues with purple sheen", + "forehead: emerald green", + "eyes: dark brown with white eye-ring", + "legs: greyish-brown and strong", + "wings: deep green with blue edges", + "nape: turquoise-blue tint", + "tail: long and dark blue-green", + "throat: bright yellow-green" + ], + "chatham islands shag": [ + "back: dark bluish-black feathers", + "beak: long, slender, hooked at the tip", + "belly: white underparts", + "breast: white feathers with bluish-black on sides", + "crown: blackish with blue-green sheen", + "forehead: black feathers blending into crown", + "eyes: bright blue with black outline", + "legs: pinkish-gray and webbed feet", + "wings: bluish-black, thickset with short white patches", + "nape: black with blue-green tinge", + "tail: short, bluish-black feathers", + "throat: white with a black central stripe" + ], + "chatham islands snipe": [ + "back: dark brown with olive-green accents", + "beak: long and slender, blackish-brown", + "belly: creamy-white with fine brown streaks", + "breast: pale brown with darker barring", + "crown: dark brown with faint streaks", + "forehead: slightly lighter brown than crown", + "eyes: medium-sized and dark brown", + "legs: short and yellowish-brown", + "wings: rounded, dark brown with faint barring", + "nape: dark brown with subtle olive-green tinge", + "tail: short and dark brown with faint barring", + "throat: light brown blending into white toward belly" + ], + "chatham oystercatcher": [ + "back: dark blackish-brown feathers", + "beak: long, straight, and bright orange-red", + "belly: white feathers", + "breast: white with a black border", + "crown: black feathers extending to the forehead", + "forehead: black feathers", + "eyes: bright red with a noticeable eye-ring", + "legs: pinkish-grey and long", + "wings: blackish-brown with white patches", + "nape: black feathers extending from crown to back", + "tail: black feathers with white tips", + "throat: white feathers with black margin" + ], + "chatham petrel": [ + "back: pale grey with narrow dark streaks", + "beak: medium-sized, dark grey", + "belly: white and fluffy", + "breast: pale grey with faint streaking", + "crown: dark grey to black", + "forehead: dark grey, slightly paler than crown", + "eyes: dark brown with black edging", + "legs: pinkish-grey with webbed feet", + "wings: dark grey with bold black markings", + "nape: dark grey, joining to crown", + "tail: dark grey with a blackish tip", + "throat: slightly paler grey than the breast" + ], + "chatham robin": [ + "back: olive-brown with faint streaks", + "beak: short, thin, and black", + "belly: creamy-white with pale streaks", + "breast: light grey with some brownish tint", + "crown: greyish-brown, slightly darker than the back", + "forehead: smoothly merging with the crown color", + "eyes: dark with a faint white eye-ring", + "legs: slender and blackish", + "wings: brownish-grey with well-defined white wing bars", + "nape: same color as the crown, unremarkable", + "tail: short, brownish-grey with white outer edges", + "throat: creamy-white, blending with the breast color" + ], + "chattering cisticola": [ + "back: golden-brown, streaked with black", + "beak: small, pointed, and black", + "belly: creamy yellow, sometimes with dark spots", + "breast: pale buff with dark streaks", + "crown: rufous with black streaks", + "forehead: short rufous crest", + "eyes: dark brown with pale eyering", + "legs: pinkish-brown with sharp claws", + "wings: brown, with rufous-edged feathers", + "nape: golden-brown, streaked with black", + "tail: short, dark brown, with outer feathers edged in white", + "throat: pale buff, occasionally streaked with brown" + ], + "chattering giant honeyeater": [ + "back: dark gray plumage with a hint of green iridescence", + "beak: long, curved black beak for nectar feeding", + "belly: light gray with delicate white streaks", + "breast: deep gray transitioning into marbled white towards the belly", + "crown: sleek charcoal crest fading to a lighter gray", + "forehead: smooth feathered gradient from black to gray", + "eyes: large, expressive, deep black with a thin white outline", + "legs: sturdy black limbs with sharp, pointed claws", + "wings: wide, powerful, deep gray with light gray streaks", + "nape: lighter gray plumage merging with the crown", + "tail: elongated dark gray feathers with a fan-like appearance", + "throat: marbled white with subtle gray undertones" + ], + "chattering gnatwren": [ + "back: olive-gray with black streaks", + "beak: short, slightly curved, black", + "belly: pale grayish-white", + "breast: light gray with faint streaks", + "crown: dark gray with faint streaks", + "forehead: plain gray", + "eyes: black, surrounded by white eyering", + "legs: sturdy, black", + "wings: olive-gray with black spots", + "nape: gray with subtle streaks", + "tail: long, dark gray, fan-shaped", + "throat: light gray" + ], + "chattering kingfisher": [ + "back: iridescent blue-green feathers", + "beak: long, pointed, and black", + "belly: off-white and slightly scaled", + "breast: orange-brown with lighter streaks", + "crown: vibrant blue with black spotting", + "forehead: bright blue with white streaks", + "eyes: dark brown, piercing gaze", + "legs: short and reddish-orange", + "wings: blue-green with black barring", + "nape: blue-green, partially covered by crown", + "tail: long, blue-green with black bands", + "throat: white with faint orange-brown hue" + ], + "checker throated stipplethroat": [ + "back: olive-green feathers", + "beak: short, curved, black", + "belly: white and black streaks", + "breast: white with black speckles", + "crown: dark brown feathers", + "forehead: light olive-brown", + "eyes: small, black, piercing", + "legs: short, featherless, grey", + "wings: olive-black feathers with white patches", + "nape: dark brown fading to olive", + "tail: long, dark olive-green feathers", + "throat: white with distinct black checks" + ], + "checker throated woodpecker": [ + "back: striking black and white horizontal stripes", + "beak: strong, chisel-shaped for pecking wood", + "belly: creamy white with streaks of black", + "breast: white with black speckling or streaks", + "crown: brilliant red or yellow patch", + "forehead: black or dark grey", + "eyes: dark, beady and alert", + "legs: powerful, grey or black", + "wings: bold black and white pattern", + "nape: black or white stripe, often with a splash of red or yellow", + "tail: stiff, black feathers with white spots", + "throat: checkerboard pattern in black and white" + ], + "checkered woodpecker": [ + "back: black and white checkered pattern", + "beak: long, pointed, and chisel-like", + "belly: white with faint black bars", + "breast: white with black horizontal stripes", + "crown: black with a red patch on the nape", + "forehead: white extending into a stripe above the eye", + "eyes: dark, round, and alert", + "legs: gray and sturdy, with sharp claws", + "wings: checkered black and white with a white patch", + "nape: red patch extending from the crown", + "tail: black with white outer feathers", + "throat: white, bordering the black stripes on the breast" + ], + "cheer pheasant": [ + "back: olive-brown with black streaks", + "beak: short, hooked, grayish-blue", + "belly: whitish with chestnut brown bars", + "breast: dark chestnut brown with black scaling", + "crown: dark rufous with contrasting white crest", + "forehead: white with black stripes", + "eyes: dark brown, surrounded by a red eyering", + "legs: strong, feathered, grayish-blue", + "wings: short and rounded, with rufous, black, and white patches", + "nape: dark olive-brown with black and white spots", + "tail: long, graduated, with chestnut, black, and white barring", + "throat: pure white feathering" + ], + "cherrie antwren": [ + "back: black and white streaked pattern", + "beak: small, sharp, and black", + "belly: white with light streaks", + "breast: white and fluffy", + "crown: black with white streaks", + "forehead: black feathers with white streaks", + "eyes: small, black, and round", + "legs: thin and dark grey", + "wings: black with white striped pattern", + "nape: black with white streaks", + "tail: elongated, black with white edges", + "throat: white and smooth" + ], + "cherry throated tanager": [ + "back: vibrant green feathers", + "beak: short, black, and conical", + "belly: soft white down", + "breast: striking red hue", + "crown: brilliant green plumes", + "forehead: intense red markings", + "eyes: alert, dark, and expressive", + "legs: sturdy and grayish-brown", + "wings: vivid green with darker flight feathers", + "nape: smooth transition from green to red", + "tail: elongated, blackish-green feathers", + "throat: deep cherry-red patch" + ], + "chestnut antpitta": [ + "back: rusty-brown with faint streaks", + "beak: short, slightly curved, and dark", + "belly: pale gray with black scalings", + "breast: orangish-brown with gray scaling", + "crown: dark brown with faint streaks", + "forehead: lighter brown with streaks", + "eyes: small, black, and alert", + "legs: sturdy, long, and pale pinkish", + "wings: rusty-brown with noticeable barring", + "nape: dark brown with faint streaks", + "tail: short, rusty-brown with black barring", + "throat: grayish-white with black scaling" + ], + "chestnut bulbul": [ + "back: chestnut-brown feathers", + "beak: short, black, slightly curved", + "belly: pale cream with dark markings", + "breast: beige with brown streaks", + "crown: chestnut-brown with a slight crest", + "forehead: chestnut-brown, blending into the crown", + "eyes: small, dark, encircled by a white eye-ring", + "legs: slender, grayish-blue", + "wings: chestnut-brown with darker flight feathers", + "nape: chestnut-brown, connecting to the back", + "tail: long, chestnut-brown with white tips", + "throat: light beige, blending into the breast" + ], + "chestnut bunting": [ + "back: chestnut brown with dark streaks", + "beak: short, conical, and black", + "belly: pale white to light brown", + "breast: bright chestnut hue, fading to white", + "crown: rich chestnut with black border", + "forehead: chestnut-brown, contiguous with the crown", + "eyes: small, dark, and round", + "legs: slender, dark-gray", + "wings: dark brown with chestnut and white markings", + "nape: chestnut brown, delineating the head from the back", + "tail: brownish-black with white outer edges", + "throat: white with dark streaks" + ], + "chestnut forest rail": [ + "back: chestnut-brown feathers", + "beak: short, stout, and hooked", + "belly: creamy-brown tinge", + "breast: orange-brown feathers", + "crown: reddish-brown streaks", + "forehead: light brownish-grey", + "eyes: dark brown with white ring", + "legs: strong, greyish-yellow", + "wings: chestnut-brown with white spots", + "nape: reddish-brown with faint streaks", + "tail: short, chestnut-brown", + "throat: light brownish-grey" + ], + "chestnut munia": [ + "back: warm chestnut-brown feathers", + "beak: short, thick, silver-blue", + "belly: soft, creamy-white", + "breast: pale chestnut-orange", + "crown: dark chestnut-brown", + "forehead: slightly lighter chestnut shade", + "eyes: small, round, deep black", + "legs: thin, greyish-blue", + "wings: chestnut-brown with hints of black", + "nape: rich chestnut-brown", + "tail: long, slim, black-tipped feathers", + "throat: lighter chestnut, gradually blending into breast" + ], + "chestnut piculet": [ + "back: brownish-olive, crossed with fine black bars", + "beak: slender, grayish-black", + "belly: buffy-cream, black-barred pattern", + "breast: creamy white, with dark bars", + "crown: rusty-red, speckled with black", + "forehead: pale tawny-brown with black bars", + "eyes: dark brown, narrow pale eye-ring", + "legs: grayish-blue, thin and short", + "wings: brownish-green, subtle barring", + "nape: buffy-cream, with black crossbars", + "tail: short and stiff, brown with black bars", + "throat: creamy white, with black bars" + ], + "chestnut quail thrush": [ + "back: reddish-brown with dark plumage markings", + "beak: short, stout, and dark-colored", + "belly: pale grey with fine dark spots", + "breast: orange-chestnut with crescent-shaped black markings", + "crown: dark brown with subtle streaks", + "forehead: brownish-grey with fine streaks", + "eyes: dark, small, and round", + "legs: slender and greyish-pink", + "wings: dark brown with buff-colored wingbars", + "nape: reddish-brown with darker streaks", + "tail: dark brown with white outer tail feathers", + "throat: pale grey with faint dark markings" + ], + "chestnut rail": [ + "back: dark brown with black streaks", + "beak: stout and creamy gray", + "belly: rich chestnut-brown", + "breast: chestnut-brown with fine black streaks", + "crown: dark olive-brown", + "forehead: dark olive-brown", + "eyes: deep red with black pupils", + "legs: long and yellowish-green", + "wings: dark brown with chestnut and white streaks", + "nape: olive-brown with fine black streaks", + "tail: square-shaped, black with chestnut streaks", + "throat: pale grayish-white" + ], + "chestnut seedeater": [ + "back: brownish-olive feathers", + "beak: short, grayish-blue, conical", + "belly: light buff-yellow feathers", + "breast: pale chestnut coloring", + "crown: black cap on top of the head", + "forehead: black feathers transitioning to brown", + "eyes: small, black, alert", + "legs: pale gray, long, with sharp claws", + "wings: brownish-olive with black flight feathers", + "nape: brownish-olive, connecting to black crown", + "tail: short, dark brown with white edges", + "throat: lighter chestnut, blending into the belly" + ], + "chestnut sparrow": [ + "back: reddish-brown with streaks of black", + "beak: small, gray, and pointed", + "belly: pale grayish-white with light streaks", + "breast: light reddish-brown with black flecks", + "crown: deep chestnut color with a black patch", + "forehead: light gray with faint black markings", + "eyes: small, dark, and expressive", + "legs: short, sturdy, and gray", + "wings: reddish-brown with black and white markings", + "nape: deep chestnut fading to lighter brown", + "tail: long, black with white-tipped feathers", + "throat: pale grayish-white with a black patch" + ], + "chestnut teal": [ + "back: rich chestnut-brown with subtle speckles", + "beak: dark grey with a slight curve", + "belly: creamy white with fine black bars", + "breast: chestnut-colored with dark brown spots", + "crown: dark brown that blends with the nape", + "forehead: smooth, transitioning from dark brown to chestnut-brown", + "eyes: dark, surrounded by a thin white ring", + "legs: orange-yellow, sturdy and webbed", + "wings: olive green with a prominent blue patch", + "nape: dark brown, connecting with the crown", + "tail: long, narrow with chestnut and dark brown stripes", + "throat: light brown, transitioning to the white belly" + ], + "chestnut thrush": [ + "back: deep chestnut color with brownish-white spots", + "beak: short, black, and slightly curved", + "belly: cream with brownish-white speckles", + "breast: vibrant chestnut color with faint spots", + "crown: rich chestnut shade with subtle markings", + "forehead: reddish-brown, gradually darkening towards the crown", + "eyes: sharp, dark, and expressive", + "legs: strong, medium-length, and brownish-grey", + "wings: chestnut with contrasting light and dark brown spots", + "nape: deep chestnut hue with faint markings", + "tail: chestnut with dark brown bars and white tips", + "throat: creamy white with subtle brownish spots" + ], + "chestnut wattle eye": [ + "back: chestnut-brown feathers", + "beak: short, sharp, black", + "belly: pale cream with faint streaks", + "breast: warm buff color with soft streaks", + "crown: chestnut-brown with fine dark barring", + "forehead: pale chestnut with darker markings", + "eyes: bright yellow with black pupil", + "legs: slender, grayish-pink", + "wings: chestnut-brown with white wing bar", + "nape: chestnut with darker streaks", + "tail: chestnut-brown with wide dark bands", + "throat: creamy-white with fine dark markings" + ], + "chestnut weaver": [ + "back: golden-brown feathers", + "beak: short, light-colored, cone-shaped", + "belly: pale, cream-colored underparts", + "breast: light chestnut-orange plumage", + "crown: chestnut-colored feathers", + "forehead: golden-brown feathers, similar to the back", + "eyes: dark, surrounded by thin pale eyering", + "legs: slender, grayish-brown", + "wings: golden-brown with darker flight feathers", + "nape: chestnut-colored, continuing from the crown", + "tail: long, dark brown with golden-brown edges", + "throat: pale cream, like the belly" + ], + "chestnut wood quail": [ + "back: chestnut-brown feathers with dark streaks", + "beak: short, curved, brownish-grey", + "belly: pale brown with darker brown speckles", + "breast: reddish-brown with dark feather edges", + "crown: dark brown, slightly raised", + "forehead: light brown fading to greyish-blue", + "eyes: small, black, surrounded by pale feathers", + "legs: sturdy, greyish-brown with three forward-facing toes", + "wings: chestnut-colored with dark spots and white streaks", + "nape: light brown with a dark brown stripe down the center", + "tail: short and square, dark brown with thin white stripes", + "throat: light greyish-blue, unmarked" + ], + "chestnut woodpecker": [ + "back: chestnut brown feathers", + "beak: sturdy, chisel-like black bill", + "belly: creamy white with black and white chestnut-colored specks", + "breast: rich chestnut color with black and white markings", + "crown: red cap with black and white-striped patterns", + "forehead: black and white stripes extending from beak to crown", + "eyes: dark brown, surrounded by contrasting white feather patches", + "legs: short and strong, pale gray", + "wings: chestnut brown with white spots and black bars", + "nape: chestnut-colored with black and white striped patterns", + "tail: long, stiff, and barred with black and white stripes", + "throat: creamy white with black and chestnut-colored speckles" + ], + "chestnut and black weaver": [ + "back: rich chestnut-brown feathers", + "beak: strong black, conical-shaped", + "belly: golden-yellow plumage", + "breast: vibrant chestnut-red feathers", + "crown: glossy black with a hint of green", + "forehead: black feathers blending into the crown", + "eyes: small, alert, and black", + "legs: slender and black", + "wings: black with hints of chestnut and white", + "nape: chestnut-brown with a slight green sheen", + "tail: black and slightly forked", + "throat: contrasting bright yellow feathers" + ], + "chestnut backed antbird": [ + "back: dark chestnut-brown feathers", + "beak: short, curved, black", + "belly: lighter chestnut brown color", + "breast: white with black streaks", + "crown: uniform chestnut color", + "forehead: dusky black", + "eyes: round, black, small", + "legs: gray-blue, thin, and long", + "wings: chestnut brown with black edges", + "nape: rich chestnut brown", + "tail: long, chestnut brown with darker tips", + "throat: white with black streaks" + ], + "chestnut backed antshrike": [ + "back: chestnut brown hue", + "beak: short, sturdy, black", + "belly: pale grayish-white", + "breast: grayish-white, streaked", + "crown: chestnut brown, sleek", + "forehead: chestnut brown, smooth", + "eyes: beady, black", + "legs: gray, slender", + "wings: chestnut brown, barred with white", + "nape: chestnut brown, meeting the crown", + "tail: chestnut brown, long and square-tipped", + "throat: clean, grayish-white" + ], + "chestnut backed buttonquail": [ + "back: chestnut brown with dark streaks", + "beak: short and pale", + "belly: white or cream-colored", + "breast: pale chestnut with black markings", + "crown: dark brown, slightly reddish", + "forehead: chestnut streaks on dark brown base", + "eyes: black, surrounded by pale ring", + "legs: short, light-gray", + "wings: chestnut-brown with fine darker bars", + "nape: rich chestnut with fine streaks", + "tail: short and dark brown", + "throat: white, bordered by chestnut" + ], + "chestnut backed jewel babbler": [ + "back: chestnut brown with iridescent sheen", + "beak: short, black, and slightly curved", + "belly: rich golden-orange hue", + "breast: deep chestnut fading to golden-orange", + "crown: chestnut brown with shimmering shine", + "forehead: dark chestnut-brown feathers", + "eyes: dark, round, with a white eye-ring", + "legs: strong, greyish-blue, and scaly", + "wings: chestnut brown with shimmering green-blue edges", + "nape: chestnut brown with iridescent sheen", + "tail: chestnut brown with broad green-blue tips", + "throat: golden-orange with dark chestnut border" + ], + "chestnut backed laughingthrush": [ + "back: deep chestnut color with subtle streaks", + "beak: short, curved, black", + "belly: creamy buff to tawny white", + "breast: pale buff with dark streaks", + "crown: chestnut-brown with slight crest", + "forehead: rich chestnut with a prominent white eyebrow", + "eyes: dark brown, encircled by an off-white eye-ring", + "legs: strong, grayish-blue", + "wings: chestnut with black bars and white spots", + "nape: chestnut-brown blending with the crown", + "tail: long and broad, with chestnut and black bands", + "throat: whitish with black streaks" + ], + "chestnut backed owlet": [ + "back: chestnut-brown with fine white streaks", + "beak: small, sharp, and hooked", + "belly: whitish-grey with brown markings", + "breast: white with delicate chestnut streaks", + "crown: chestnut-brown, slightly darker than the back", + "forehead: white with brown streaks", + "eyes: large, dark, and round", + "legs: short with strong, sharp talons", + "wings: chestnut-brown with white spots", + "nape: chestnut-brown with subtle white streaks", + "tail: chestnut-brown with white tips", + "throat: white with faint chestnut markings" + ], + "chestnut backed sparrow lark": [ + "back: reddish-brown with streaks", + "beak: short, conical, pale gray", + "belly: off-white with light streaks", + "breast: pale orange-brown", + "crown: rich chestnut color", + "forehead: pale grayish-white", + "eyes: black, surrounded by pale eyelids", + "legs: long, slender, pale gray", + "wings: reddish-brown with white-edged feathers", + "nape: chestnut with dark streaks", + "tail: black with white outer feathers", + "throat: pale grey with brownish hints" + ], + "chestnut backed sparrow weaver": [ + "back: chestnut-brown with white streaks", + "beak: short, cone-shaped, blackish-grey", + "belly: white and slightly fluffy", + "breast: white with black chest band", + "crown: chestnut-colored with a black stripe", + "forehead: chestnut-brown and smooth", + "eyes: small, black, surrounded by white feathers", + "legs: slim, blue-grey, with sharp claws", + "wings: chestnut and white, with black feather edges", + "nape: chestnut-brown with white patches", + "tail: chestnut and white, long and forked", + "throat: white with a delicate black collar" + ], + "chestnut backed tanager": [ + "back: rich chestnut-brown color", + "beak: short, conical, black", + "belly: pale yellowish shade", + "breast: yellowish-orange hue", + "crown: deep chestnut-red", + "forehead: bright chestnut-red", + "eyes: large, black, and alert", + "legs: strong with greyish-purple tone", + "wings: chestnut-brown with black feather edges", + "nape: chestnut-brown, blending with back", + "tail: long and dark, with chestnut-brown edges", + "throat: light golden-yellow" + ], + "chestnut backed thornbird": [ + "back: reddish-brown with streaks", + "beak: long, slender, and slightly curved", + "belly: pale, with brownish speckles", + "breast: light chestnut, fading towards belly", + "crown: rusty red-brown, with dark streaks", + "forehead: lighter chestnut than crown, with fine streaking", + "eyes: dark brown, surrounded by a pale eyering", + "legs: strong, grayish-brown", + "wings: dark brown, with two pale wingbars", + "nape: streaked reddish-brown", + "tail: long, dark brown, with a chestnut undertail", + "throat: pale with thin chestnut streaks" + ], + "chestnut backed thrush": [ + "back: chestnut-brown feathers", + "beak: short and sharp, black", + "belly: white with black spots", + "breast: orange-rust color with black spots", + "crown: chestnut-brown with faint streaks", + "forehead: chestnut-brown, smooth", + "eyes: round and dark, surrounded by white eye-ring", + "legs: thin and dark gray", + "wings: chestnut-brown with black bars", + "nape: chestnut-brown with faint streaks", + "tail: chestnut-brown, broad and slightly forked", + "throat: white with black streaks" + ], + "chestnut banded plover": [ + "back: brown with white speckles", + "beak: short and black", + "belly: white and lightly speckled", + "breast: chestnut band across white feathers", + "crown: brown with white markings", + "forehead: white with black stripe", + "eyes: highlighted by white eyering", + "legs: pale pinkish-gray", + "wings: brown with white and chestnut streaks", + "nape: brown with white speckles", + "tail: brown with white edges", + "throat: white with chestnut band" + ], + "chestnut bellied chat tyrant": [ + "back: dark grayish-brown feathers", + "beak: small, sharp, black", + "belly: rich chestnut hue", + "breast: pale grayish-white", + "crown: dark grayish-brown", + "forehead: light gray with subtle streaks", + "eyes: round, brown with white eye-ring", + "legs: thin and black", + "wings: grayish-brown with faint white bars", + "nape: dark grayish-brown", + "tail: short, grayish-brown, slightly forked", + "throat: light grayish-white" + ], + "chestnut bellied cotinga": [ + "back: deep chestnut hue", + "beak: dark, short, and sturdy", + "belly: rich chestnut color", + "breast: vibrant chestnut-orange", + "crown: glossy bluish-black", + "forehead: sleek bluish-black", + "eyes: dark with a subtle eye-ring", + "legs: thin and grayish", + "wings: chestnut with bluish-black tips", + "nape: chestnut blending to black", + "tail: broad and bluish-black", + "throat: chestnut-orange to black gradient" + ], + "chestnut bellied cuckoo": [ + "back: reddish-brown with dark streaks", + "beak: long, black, and curved", + "belly: vibrant chestnut-brown color", + "breast: pale beige with black streaks", + "crown: dark gray with streaks", + "forehead: grayish-brown with fine streaks", + "eyes: dark, surrounded by white eye-ring", + "legs: strong and grayish-blue", + "wings: brown, barred with black patterns", + "nape: grayish-brown with streaks", + "tail: long and dark brown with white tips", + "throat: pale beige with fine streaks" + ], + "chestnut bellied euphonia": [ + "back: chestnut-brown upperparts", + "beak: short, stout, and pale blue-grey", + "belly: rich chestnut-orange", + "breast: yellow hue blending to chestnut", + "crown: glossy blue-black", + "forehead: bright golden-yellow", + "eyes: dark with thin white eye-ring", + "legs: slender, greyish-blue", + "wings: chestnut-brown with blue-black edges", + "nape: glossy blue-black", + "tail: chestnut-brown with short, forked shape", + "throat: vibrant golden-yellow" + ], + "chestnut bellied fantail": [ + "back: olive-brown feathers", + "beak: small and pointed", + "belly: chestnut-colored underparts", + "breast: white with black crescents", + "crown: blue-black with raised crest", + "forehead: blue-black feathers", + "eyes: dark with white circular eyering", + "legs: slim and strong", + "wings: olive-brown with white wing bars", + "nape: blue-black, connecting crest to back", + "tail: long and fan-shaped with white tips", + "throat: black with small white spots" + ], + "chestnut bellied flowerpiercer": [ + "back: rich olive-green hue", + "beak: striking black, sharply curved", + "belly: chestnut-colored with a touch of russet", + "breast: light gray, blending into chestnut belly", + "crown: deep grayish-blue with a slight gradient", + "forehead: smooth grayish-blue, similar to crown", + "eyes: dark, beady, surrounded by grayish-blue feathers", + "legs: slender, slate gray", + "wings: olive-green with blackish flight feathers", + "nape: grayish-blue, complementing crown and forehead", + "tail: olive-green with dark banding", + "throat: light gray, transitioning into breast area" + ], + "chestnut bellied guan": [ + "back: brownish upper part with paler edges", + "beak: short, hooked, and pale gray", + "belly: rich chestnut color", + "breast: grayish-brown transitioning to chestnut", + "crown: dark, smooth feathers", + "forehead: pale gray plumage", + "eyes: black with a yellow eye-ring", + "legs: sturdy, orange-red", + "wings: brownish-gray with white spots", + "nape: grayish-brown feathers", + "tail: broad, grayish-brown with white tips", + "throat: pale gray plumage" + ], + "chestnut bellied hummingbird": [ + "back: iridescent green feathers", + "beak: long, thin, and straight", + "belly: reddish-brown chestnut color", + "breast: white-feathered with a greenish hue", + "crown: bright green, shimmering plumage", + "forehead: radiant green feathers", + "eyes: small, black, and alert", + "legs: short and slender", + "wings: rapid, delicate flutters", + "nape: greenish iridescence", + "tail: slightly forked, green and brown feathers", + "throat: white with a subtle green tint" + ], + "chestnut bellied imperial pigeon": [ + "back: dark greenish-grey feathers", + "beak: short, pale grey hooked upper mandible", + "belly: chestnut-brown plumage", + "breast: pale grayish-green feathers", + "crown: deep greenish-grey plumage", + "forehead: slightly lighter grey-green feathers", + "eyes: dark brown with pale eye-ring", + "legs: short, red with black claws", + "wings: broad, greenish-grey with darker flight feathers", + "nape: greenish-grey feathers blending into the crown", + "tail: long, dark greenish-gray feathers with narrow white tips", + "throat: pale grayish-green feathers transitioning into breast color" + ], + "chestnut bellied malkoha": [ + "back: grayish-brown with gray feather edges", + "beak: dark gray, slightly curved", + "belly: chestnut-brown with pale brown highlights", + "breast: dark gray with slight blueish tinge", + "crown: blueish-gray with soft, smooth feathers", + "forehead: blueish-gray, blending into crown", + "eyes: dark brown with faint gray eye-ring", + "legs: dark gray with scaly texture", + "wings: dark gray with lighter gray bars and white-tipped feathers", + "nape: blueish-gray, similar to crown", + "tail: long, dark gray with white barred tips", + "throat: pale gray, transitioning to darker breast color" + ], + "chestnut bellied monarch": [ + "back: rusty chestnut hue", + "beak: slim, dark gray", + "belly: rich chestnut color", + "breast: soft chestnut gradient", + "crown: sleek black with blue sheen", + "forehead: glossy black", + "eyes: small, black, alert", + "legs: slender, grayish-blue", + "wings: chestnut with blue-black accents", + "nape: black with subtle shine", + "tail: long, blue-black, fan-like", + "throat: glossy black" + ], + "chestnut bellied mountain tanager": [ + "back: bright turquoise plumage", + "beak: short and black", + "belly: chestnut-colored feathers", + "breast: brilliant blue pattern", + "crown: rich turquoise crest", + "forehead: deep blue-green hue", + "eyes: small and dark", + "legs: short and dark gray", + "wings: vibrant mix of blue and green feathers", + "nape: deep turquoise patch", + "tail: dark blue-green feathers", + "throat: brilliant blue plumage" + ], + "chestnut bellied nuthatch": [ + "back: light bluish-gray feathers", + "beak: short, sharp, and black", + "belly: vibrant chestnut color", + "breast: white with light gray streaks", + "crown: black, light contrast to bluish-gray back", + "forehead: black, merges with crown and eye stripe", + "eyes: small, black, surrounded by black stripe", + "legs: powerful, grayish-blue, long toes", + "wings: bluish-gray, thickset, barred with black and white", + "nape: black, continuous from crown and forehead", + "tail: bluish-gray, short, slightly notched", + "throat: white, merges with white breast" + ], + "chestnut bellied partridge": [ + "back: reddish-brown with black markings", + "beak: short and sturdy, light grey to brownish", + "belly: rich chestnut-colored", + "breast: greyish-brown with white speckles", + "crown: reddish-brown with black stripe", + "forehead: greyish-brown fading to white", + "eyes: dark brown with light grey eye-ring", + "legs: stout and feathered, light grey or brownish", + "wings: reddish-brown with black bars; rounded shape", + "nape: reddish-brown with faint black lines", + "tail: short and rounded; reddish-brown with black markings", + "throat: white with subtle greyish-brown tint" + ], + "chestnut bellied rock thrush": [ + "back: deep blue feathers with silver sheen", + "beak: straight, dark, and sharp", + "belly: rich chestnut hue", + "breast: bright orange patch transitioning to chestnut", + "crown: brillant blue top of the head", + "forehead: deep blue plumage meeting the beak", + "eyes: small, round, and black against blue", + "legs: strong, grey, and scaly", + "wings: gradient of blue to chestnut with white accents", + "nape: vibrant blue, forming a collar-like pattern", + "tail: long, chestnut-colored feathers with white tips", + "throat: brilliant blue extending from beak to breast" + ], + "chestnut bellied sandgrouse": [ + "back: chestnut-colored with black and white speckles", + "beak: short and conical, pale grey or yellowish", + "belly: reddish-chestnut with faint markings", + "breast: greyish-brown with wavy black bands", + "crown: greyish-brown with fine black markings", + "forehead: pale greyish-white blending into crown", + "eyes: dark, surrounded by pale greyish-white ring", + "legs: short and feathered, pale grey or yellowish", + "wings: brownish-grey with black and white patches, rounded shape", + "nape: greyish-brown with a slight tinge of chestnut color", + "tail: medium length, greyish-brown with black and white bands", + "throat: pale greyish-white with a slight yellowish tinge" + ], + "chestnut bellied seed finch": [ + "back: brownish upper feathers", + "beak: sharp, conical shape", + "belly: chestnut-colored underside", + "breast: light chestnut-orange hue", + "crown: brown head crest", + "forehead: small brown feathers", + "eyes: round, dark color", + "legs: slender, light-colored limbs", + "wings: brown with white markings", + "nape: brown feathers at neck", + "tail: long, brownish feathers", + "throat: light chestnut-orange patch" + ], + "chestnut bellied seedeater": [ + "back: olive-brown feathers", + "beak: short, conical-shaped, pale gray", + "belly: rich chestnut color", + "breast: grayish-white", + "crown: black with subtle streaks", + "forehead: black to dark brown", + "eyes: small, dark, and round", + "legs: grayish-white and thin", + "wings: olive-brown with pale fringes", + "nape: dark brown to black", + "tail: long and olive-brown", + "throat: blackish-gray" + ], + "chestnut bellied starling": [ + "back: glossy blue-black feathers", + "beak: short, black, and stout", + "belly: rich chestnut hue", + "breast: blue-black glossy plumage", + "crown: blue-black shining feathers", + "forehead: blue-black, shimmering feathers", + "eyes: dark color, alert, and bright", + "legs: strong and gray", + "wings: striking blue-black plumage", + "nape: glossy blue-black feathers", + "tail: blue-black, long and narrow", + "throat: shiny blue-black feathers" + ], + "chestnut bellied thrush": [ + "back: reddish-brown and streaked", + "beak: pale yellowish and straight", + "belly: chestnut-colored with faint streaks", + "breast: light chestnut or beige", + "crown: light grayish-brown", + "forehead: pale gray", + "eyes: dark and small, surrounded by a pale eye-ring", + "legs: pale pinkish or yellowish", + "wings: brownish-gray, darker primaries", + "nape: grayish-brown, blending with the crown", + "tail: reddish-brown, and slightly forked", + "throat: pale brownish-gray" + ], + "chestnut bellied tit": [ + "back: chestnut-brown feathers", + "beak: small, sharp, and black", + "belly: warm chestnut hue", + "breast: lighter chestnut blend", + "crown: soft grey crest", + "forehead: pale grey accent", + "eyes: black, beady, and alert", + "legs: slim, black, and strong", + "wings: grey with chestnut edges", + "nape: smooth grey transition", + "tail: long, grey, with chestnut tips", + "throat: pale chestnut markings" + ], + "chestnut belted gnateater": [ + "back: dark brownish-grey feathers", + "beak: small, curved black beak", + "belly: creamy white underbelly", + "breast: chestnut-colored band across chest", + "crown: dark brownish-grey head feathers", + "forehead: smooth grayish-brown forehead", + "eyes: dark, beady eyes", + "legs: slender, greyish-blue legs", + "wings: dark brownish-grey feathers with hints of chestnut along edges", + "nape: grayish-brown feathers at the back of the neck", + "tail: long, brownish-grey tail feathers with white-tipped edges", + "throat: creamy white feathers" + ], + "chestnut breasted chlorophonia": [ + "back: vibrant green feathers", + "beak: sharp, black, and stout", + "belly: rich chestnut-brown", + "breast: deep chestnut-colored plumage", + "crown: brilliant green crest", + "forehead: bright green feathers", + "eyes: small, dark, and alert", + "legs: slender, dark, and strong", + "wings: lush green with blue edges", + "nape: green, smoothly blended into back", + "tail: elongated, green, and blue-tipped", + "throat: contrasting bright yellow" + ], + "chestnut breasted coronet": [ + "back: greenish-bronze with metallic sheen", + "beak: short, black, and curved", + "belly: matte beige with chestnut streaks", + "breast: bright chestnut with shiny patches", + "crown: iridescent green feathering", + "forehead: greenish-gold with subtle shine", + "eyes: small, dark, and rounded", + "legs: thin, grayish, and sturdy", + "wings: green and bronze with metallic hues", + "nape: yellow-green iridescent plumage", + "tail: long, reddish-brown with white tips", + "throat: pale beige with soft streaks" + ], + "chestnut breasted cuckoo": [ + "back: chestnut brown with fine white streaks", + "beak: slender, slightly curved, and dark gray", + "belly: creamy white with dark gray stripes", + "breast: rich chestnut with white streaks", + "crown: chestnut brown, blending into a dark gray nape", + "forehead: slightly lighter chestnut brown", + "eyes: surrounded by a pale eyering, dark iris with a glint", + "legs: long, slender, and dark gray", + "wings: chestnut brown with white-tipped feathers, slightly elongated", + "nape: dark gray, smoothly transitioning from crown", + "tail: folded, fan-shaped, dark gray with white band near tip", + "throat: pale cream with faint gray stripes" + ], + "chestnut breasted malkoha": [ + "back: dark green feathers", + "beak: long, hooked, black", + "belly: light chestnut color", + "breast: rich chestnut hue", + "crown: dark green cap", + "forehead: green tinted", + "eyes: deep black with a white eyering", + "legs: gray, slender, and long", + "wings: iridescent green-blue", + "nape: dark green feathers at the neck", + "tail: long and graduated with white tips", + "throat: light chestnut color" + ], + "chestnut breasted mountain finch": [ + "back: rich rusty-brown with streaks", + "beak: short, strong, slightly curved", + "belly: pale chestnut with streaks", + "breast: warm chestnut color, fading downwards", + "crown: dark gray with brownish tinge", + "forehead: slightly paler gray-brown", + "eyes: small, dark with white eye-ring", + "legs: sturdy pinkish-gray", + "wings: dark gray with chestnut and white markings", + "nape: rich rusty-brown, blending with crown", + "tail: dark gray with white outer edges", + "throat: light gray, bordered by chestnut breast" + ], + "chestnut breasted munia": [ + "back: brownish-black with chestnut highlights", + "beak: short and conical, silver-blue color", + "belly: light chestnut-brown", + "breast: rich chestnut with black spotting", + "crown: black with a hint of chestnut", + "forehead: black with chestnut tint", + "eyes: dark brown, encircled by white eye-ring", + "legs: dark grey, medium length", + "wings: black with chestnut-brown edges", + "nape: chestnut-colored with black markings", + "tail: black with chestnut-brown tips", + "throat: black with a hint of chestnut" + ], + "chestnut breasted nigrita": [ + "back: deep olive-green with chestnut highlights", + "beak: short and black, seed-cracker shape", + "belly: soft cream with chestnut streaks", + "breast: rich chestnut with subtle dark speckles", + "crown: saturated olive-green with a slight crest", + "forehead: olive-green blending into chestnut on the crown", + "eyes: dark brown with a thin, white eyering", + "legs: grayish-black, medium length", + "wings: olive-green with chestnut edging on coverts", + "nape: olive-green, transitioning down from the crown", + "tail: olive-green with a chestnut-dipped, fan-like shape", + "throat: creamy white with fine chestnut speckles" + ], + "chestnut breasted partridge": [ + "back: brownish-green plumage with fine black markings", + "beak: short, stout, and yellowish-hued", + "belly: rich chestnut with black and white bars", + "breast: warm chestnut outlined by white and black stripes", + "crown: mottled brown with black and white speckles", + "forehead: dark brown to black with white speckles", + "eyes: small and black surrounded by pale orange eye-ring", + "legs: strong, feathered, with pale yellow-brown scaling", + "wings: brownish-green with fine black patterns", + "nape: mottled brown with black and white flecks", + "tail: short and squared with brown-black banding", + "throat: chestnut with white and black bars" + ], + "chestnut breasted quail thrush": [ + "back: rich brown with subtle patterns", + "beak: short and sharp, pale grey color", + "belly: creamy white with black markings", + "breast: chestnut colored with faint patterns", + "crown: brownish-grey with distinct stripes", + "forehead: light grey with faint streaks", + "eyes: small, round and black", + "legs: pale greyish-yellow, slender", + "wings: brown with speckled white patterns", + "nape: light brown with slight stripes", + "tail: long, brown with white-tipped feathers", + "throat: whitish-grey with darker streaks" + ], + "chestnut breasted whiteface": [ + "back: earthy-brown feathers covering the top section", + "beak: sharp, pointed, black beak for picking insects", + "belly: lighter chestnut shade, with a touch of white", + "breast: distinctive chestnut color with white facing", + "crown: reddish-brown top of the head with smooth plumage", + "forehead: lighter chestnut shade meeting the beak", + "eyes: small, centered, black orbs for keen vision", + "legs: twig-like, with strong, black, scaly legs", + "wings: brown with a mix of chestnut and white markings", + "nape: back of the neck, connecting head with earthy-brown back", + "tail: elongated, brown and chestnut feathers for balance", + "throat: soft white feathers meeting chestnut breast" + ], + "chestnut breasted wren": [ + "back: vibrant chestnut hue", + "beak: small, slender, and pointed", + "belly: light chestnut with faint streaks", + "breast: rich chestnut with distinct markings", + "crown: smooth earthy brown", + "forehead: light tan with hints of reddish-brown", + "eyes: round, dark, and expressive", + "legs: slim, gray, and sturdy", + "wings: chestnut-toned with intricate patterns", + "nape: earthy brown blending into the crown", + "tail: long, chestnut, with subtle barring", + "throat: pale cream with delicate streaks" + ], + "chestnut capped babbler": [ + "back: rusty-brown feathers", + "beak: short and angular, blackish-grey", + "belly: light cream hue", + "breast: whitish-grey feathers", + "crown: distinctive chestnut cap", + "forehead: chestnut-colored continuation of crown", + "eyes: dark and round, framed by subtle eyestripe", + "legs: slim, pale pinkish-grey", + "wings: warm brown with subtle dark streaks", + "nape: chestnut crown blending into brown back feathers", + "tail: long with brownish-grey feathers, slightly darker central feathers", + "throat: whitish-grey matching breast coloring" + ], + "chestnut capped blackbird": [ + "back: deep black plumage", + "beak: sharp, silver-grey", + "belly: rich chestnut-brown", + "breast: black with chestnut highlights", + "crown: dark chestnut cap", + "forehead: chestnut-colored with black edges", + "eyes: bright, amber-yellow", + "legs: light grey, sturdy", + "wings: black with chestnut edges", + "nape: chestnut-toned transitioning to black", + "tail: long, dark with bronze-green iridescence", + "throat: black, blending with breast" + ], + "chestnut capped brushfinch": [ + "back: olive-green with darker streaks", + "beak: short, stout, and pale gray", + "belly: off-white with slight buff-toned sides", + "breast: grayish-white with brownish streaks", + "crown: rich chestnut with tapering forehead", + "forehead: chestnut, blending into the crown", + "eyes: dark with pale eye-ring", + "legs: pale pinkish-gray", + "wings: olive-green with darker feather edging", + "nape: olive-green, smoother than back", + "tail: long, olive-green with blackish central feathers and white outer tips", + "throat: pale gray with subtle streaks" + ], + "chestnut capped flycatcher": [ + "back: olive-green hue", + "beak: short and flat, dark gray", + "belly: pale yellow color", + "breast: light chestnut coloration", + "crown: brown with distinct chestnut cap", + "forehead: lighter shade of chestnut blending into the crown", + "eyes: dark, beady, and deeply set", + "legs: gray and slender with sharp claws", + "wings: olive-green with black feather tips and edges", + "nape: olive-green, continuing the color from the back", + "tail: medium length, olive-green and black feathers", + "throat: pale yellow, matching the belly" + ], + "chestnut capped foliage gleaner": [ + "back: olive-brown with subtle streaks", + "beak: slender, slightly curved, and black", + "belly: pale buffy-white with light streaks", + "breast: cinnamon-brown with streaks", + "crown: bright chestnut cap", + "forehead: olive-brown, continuous with back", + "eyes: dark brown with thin pale eyering", + "legs: grayish-blue with strong feet", + "wings: olive-brown with buff wingbars", + "nape: olive-brown, blending with back", + "tail: long, olive-brown with subtle barring", + "throat: pale grayish-white with light streaks" + ], + "chestnut capped laughingthrush": [ + "back: chestnut brown feathers", + "beak: short, stout, and black", + "belly: white, with bold black streaks", + "breast: pale grey with black markings", + "crown: rich chestnut-brown cap", + "forehead: chestnut-brown, extending to eyebrows", + "eyes: black, with white eye-ring", + "legs: sturdy, greyish-blue", + "wings: dark brown, with reddish-brown edges", + "nape: chestnut brown, matching the crown", + "tail: long, brown, with white outer feathers", + "throat: creamy white, with black moustachial streaks" + ], + "chestnut capped piha": [ + "back: olive-green to chestnut", + "beak: sturdy and black", + "belly: pale greyish-white", + "breast: greyish-white", + "crown: chestnut cap with olive-green", + "forehead: olive-green to chestnut", + "eyes: black with thin pale eyering", + "legs: greyish-blue", + "wings: olive-green with chestnut-edged coverts", + "nape: olive-green", + "tail: long and olive-green", + "throat: greyish-white" + ], + "chestnut capped puffbird": [ + "back: brownish upper portion with subtle patterns", + "beak: short, stout, black-colored", + "belly: creamy-white on lower area with light streaks", + "breast: white, interrupted black band", + "crown: chestnut-colored cap with black front edge", + "forehead: black-bordered chestnut cap", + "eyes: black, placed inside white eye-ring", + "legs: grayish-brown, strong, suited for perching", + "wings: brown with faint feather markings", + "nape: white with spotted streaks", + "tail: brownish-black with lighter bands at tips", + "throat: white with narrow black streaks" + ], + "chestnut capped thrush": [ + "back: dark olive-brown", + "beak: stout and straight, yellow-black", + "belly: white with dark markings", + "breast: pale whitish-buff with dark spots", + "crown: rich chestnut-brown", + "forehead: chestnut-brown with a whitish streak", + "eyes: dark with white eyering", + "legs: pale pinkish-brown", + "wings: dark brown with light edgings", + "nape: olive-brown with chestnut tones", + "tail: dark brown with chestnut edges", + "throat: whitish with dark markings" + ], + "chestnut capped warbler": [ + "back: olive-green with fine streaks", + "beak: sharp, pointed, blackish", + "belly: light yellow, unmarked", + "breast: bright yellow with faint streaks", + "crown: distinctive chestnut cap", + "forehead: yellowish-green blending into the crown", + "eyes: dark, medium-sized, white eyering", + "legs: blackish-gray and slender", + "wings: olive-green with bold white wingbars", + "nape: olive-green, continuous with the back", + "tail: olive-green with white outer tail feathers", + "throat: bright yellow, unmarked" + ], + "chestnut cheeked starling": [ + "back: light brown with white streaks", + "beak: black tapered shape", + "belly: lighter brown with faint streaks", + "breast: warm chestnut hue with streaks", + "crown: darker gray-brown", + "forehead: similar shade to the crown", + "eyes: dark with white eye-ring", + "legs: black and slender", + "wings: dark brown with white spots", + "nape: gray-brown with subtle streaks", + "tail: dark brown and forked", + "throat: pale chestnut with streaks" + ], + "chestnut collared swallow": [ + "back: chestnut-brown with a slight iridescence", + "beak: short, black, and slightly curved downward", + "belly: pale grayish-white with streaks of chestnut", + "breast: light chestnut fading into white", + "crown: glossy bluish-black with chestnut highlights", + "forehead: bluish-black with a chestnut border", + "eyes: small, black, and surrounded by white feathers", + "legs: small, dark gray, and strong for perching", + "wings: long, pointed, and chestnut with dark primary feathers", + "nape: chestnut-colored with a hint of blue iridescence", + "tail: forked, with dark chestnut outer feathers and lighter inner feathers", + "throat: white with a faint chestnut border" + ], + "chestnut collared swift": [ + "back: dark chestnut-brown coloring", + "beak: small, black, and pointed", + "belly: light whitish-gray with brown speckles", + "breast: pale chestnut color blending into gray", + "crown: dark chestnut-brown color", + "forehead: narrow white stripe above the eyes", + "eyes: small, black, and alert", + "legs: short, gray, and hidden in flight", + "wings: long, curved, and strong for aerial maneuvers", + "nape: medium chestnut-brown with a slight collar", + "tail: short, slightly forked, and dark brown", + "throat: whitish-gray with light brown speckles" + ], + "chestnut colored woodpecker": [ + "back: chestnut-bronze feathers, elongated and slightly curved", + "beak: robust black chisel-like shape, strong appearance", + "belly: creamy white, lightly speckled with light brown", + "breast: pale brownish-grey with darker streaks", + "crown: vibrant red crest, covering the head's top", + "forehead: whitish with faint streaks, blending into red crest", + "eyes: black, round, and alert, surrounded by white ring", + "legs: sturdy gray legs, ending in sharp-zig-zag claws", + "wings: deep chestnut feathers, black bars, white under-feathers", + "nape: red crest extending around the nape, merging with back", + "tail: dark brown central feathers, black and white barring on outer feathers", + "throat: light beige color, faint brown streaks, blending with breast" + ], + "chestnut crested antbird": [ + "back: vibrant chestnut hue", + "beak: dark, sharp, and slightly curved", + "belly: creamy white feathers", + "breast: warm chestnut shade", + "crown: prominent chestnut crest", + "forehead: chestnut feathering", + "eyes: small, dark orbs", + "legs: sturdy gray limbs", + "wings: chestnut-toned with black streaks", + "nape: subtle chestnut coloring", + "tail: elongated black feathers", + "throat: delicate white plumage" + ], + "chestnut crested cotinga": [ + "back: chestnut-brown with slight iridescence", + "beak: short, stout, and black", + "belly: light gray with faint white flecks", + "breast: grayish-white transitioning to chestnut", + "crown: chestnut-colored with pronounced crest", + "forehead: chestnut-brown blending into the crest", + "eyes: dark with a thin white eyering", + "legs: sturdy, black, with sharp claws", + "wings: chestnut-brown with darker flight feathers", + "nape: chestnut-brown blending into the back", + "tail: long, chestnut-brown with broad feathers", + "throat: grayish-white, slightly paler than breast" + ], + "chestnut crested yuhina": [ + "back: dark brown feathers", + "beak: short, slightly curved, black", + "belly: pale, white with slight brownish tones", + "breast: chestnut-colored, rustic red", + "crown: striking chestnut crest", + "forehead: chestnut feathers, blending into the crest", + "eyes: small, black, and round", + "legs: grayish-brown, slender", + "wings: dark brown with white streaks", + "nape: rich chestnut color, continuous with the crest", + "tail: long, dark brown, slightly forked", + "throat: white, contrasting with breast" + ], + "chestnut crowned antpitta": [ + "back: olive-brown feathers with subtle streaks", + "beak: short, stout, and pale grayish-brown", + "belly: creamy white with minimal streaks", + "breast: grayish-brown with chestnut band", + "crown: deep chestnut color with smooth feathers", + "forehead: olive-brown blending into the crown", + "eyes: dark brown with a thin pale eyering", + "legs: long, sturdy, and pale pinkish-brown", + "wings: olive-brown with faint pale wingbars", + "nape: olive-brown transitioning into the crown", + "tail: short, olive-brown, and lightly streaked", + "throat: off-white with subtle grayish-brown streaks" + ], + "chestnut crowned babbler": [ + "back: brownish-grey plumage", + "beak: slightly curved, dark grey", + "belly: off-white with brownish-grey markings", + "breast: light grey-brown", + "crown: deep chestnut patch", + "forehead: whitish-grey", + "eyes: dark, surrounded by pale eyering", + "legs: pale pinkish-grey", + "wings: brownish-grey with slight patterning", + "nape: brownish-grey plumage", + "tail: long, dark brown with lighter tips", + "throat: white with light grey-brown streaks" + ], + "chestnut crowned becard": [ + "back: olive-green feathers", + "beak: short and stout, dark upper, lighter lower", + "belly: pale yellow plumage", + "breast: light yellowish-brown feathers", + "crown: distinct chestnut-colored crest", + "forehead: chestnut-colored stripe", + "eyes: black with white eye-ring", + "legs: grayish-blue with sharp claws", + "wings: olive-green with brown edging", + "nape: olive-green blending into chestnut crest", + "tail: long and olive-green, slightly forked", + "throat: pale yellowish-white feathers" + ], + "chestnut crowned bush warbler": [ + "back: olive-brown with pale streaks", + "beak: slim, pointed, and dark", + "belly: creamy-white with pale brown streaks", + "breast: pale brown with darker streaks", + "crown: distinct chestnut-colored stripe", + "forehead: olive-brown with lighter streaks", + "eyes: dark with pale eyering", + "legs: pinkish-brown and slender", + "wings: olive-brown with pale edges", + "nape: olive-brown with slight streaks", + "tail: olive-brown and slightly forked", + "throat: creamy-white with faint markings" + ], + "chestnut crowned foliage gleaner": [ + "back: olive-brown with subtle streaks", + "beak: long, slender, and curved", + "belly: pale buff-white with spotted patterns", + "breast: pale chestnut with fine streaks", + "crown: rich chestnut with distinctive crest", + "forehead: white with faint streaks", + "eyes: dark with pale eye-ring", + "legs: strong, grayish-blue", + "wings: olive-brown with slight barring", + "nape: olive-brown with faint streaks", + "tail: long, olive-brown with faint barring", + "throat: pale white with delicate streaks" + ], + "chestnut crowned gnateater": [ + "back: dark olive-green feathers", + "beak: short, strong, black hook-shaped", + "belly: off-white with grayish undertones", + "breast: chestnut-brown with streaks", + "crown: rich chestnut with distinctive crest", + "forehead: chestnut-brown, blending into crown", + "eyes: small, round, with dark brown irises", + "legs: strong, dark gray with sharp claws", + "wings: olive-green with dark barring", + "nape: olive-green, blending into back", + "tail: long, fan-shaped, olive-green with dark bands", + "throat: white with grayish streaks" + ], + "chestnut crowned laughingthrush": [ + "back: brownish-grey plumage", + "beak: dark, slender, and slightly curved", + "belly: pale grey with tinges of chestnut", + "breast: light grey with chestnut streaks", + "crown: chestnut-colored with raised crest", + "forehead: pale grey blending into the crown", + "eyes: dark, small, and surrounded by white eyering", + "legs: long, slender, and greyish-brown", + "wings: brownish-grey with darker tips and white markings", + "nape: chestnut merging into grey back", + "tail: long, broad, and greyish with white-tipped feathers", + "throat: white with distinguishing black bands" + ], + "chestnut crowned sparrow weaver": [ + "back: chestnut-brown with fine white streaks", + "beak: strong, conical, and black", + "belly: white and lightly streaked", + "breast: pale chestnut-brown with some light streaks", + "crown: rich chestnut with black border", + "forehead: white above the beak", + "eyes: dark brown, surrounded by white feathers", + "legs: long and slender, gray in color", + "wings: brown with white-edged feathers", + "nape: chestnut-brown, lined with black", + "tail: long, brown with faint white streaks", + "throat: white, blending into the breast area" + ], + "chestnut crowned warbler": [ + "back: olive-green with chestnut streaks", + "beak: short, sharp, and black", + "belly: pale yellow with light streaks", + "breast: yellowish-white with thin black streaks", + "crown: rich chestnut-brown with a black border", + "forehead: yellowish-white with thin black streaks", + "eyes: dark brown with a white eye-ring", + "legs: slender and grayish-pink", + "wings: olive-green with black and light-yellow markings", + "nape: olive-green with black streaks", + "tail: dark greenish-brown with light feather tips", + "throat: bright yellow with faint streaks" + ], + "chestnut eared aracari": [ + "back: dark green feathers, slightly iridescent", + "beak: curved, yellow with red tip", + "belly: pale yellow feathers, soft texture", + "breast: light orange downy feathers", + "crown: sleek black plumage", + "forehead: black feathers, smooth appearance", + "eyes: large, brown, encircled with blue skin", + "legs: strong, gray, scaly", + "wings: green and black feathers, elongated shape", + "nape: smooth greenish-black feathers", + "tail: long, narrow black feathers with green iridescence", + "throat: vibrant chestnut patch, soft feathers" + ], + "chestnut eared bunting": [ + "back: dark brown streaks with pale edges", + "beak: small, conical, and yellowish-brown", + "belly: light or white with brown streaks", + "breast: pale orange with brown streaks", + "crown: dark brown with pale lines", + "forehead: dark brown with pale lines", + "eyes: small, round, and dark brown", + "legs: short, robust, and yellowish-brown", + "wings: brown and black with chestnut patches on coverts", + "nape: dark brown with pale lines", + "tail: dark brown with white outer feathers", + "throat: pale orange with brown streaks" + ], + "chestnut eared laughingthrush": [ + "back: rich chestnut-brown", + "beak: short, black and curved", + "belly: pale gray-white", + "breast: warm buff color", + "crown: chestnut with distinctive black markings", + "forehead: chestnut-brown blending into crown color", + "eyes: dark, surrounded by off-white eye-ring", + "legs: sturdy, pinkish-gray", + "wings: chestnut-brown with black flight feathers", + "nape: bright chestnut blending into back color", + "tail: long, chestnut-brown with black central feathers", + "throat: creamy-white with faint black streaks" + ], + "chestnut faced babbler": [ + "back: olive-brown feathers", + "beak: short, stout, and black", + "belly: white with chestnut spots", + "breast: white, with chestnut-colored sides", + "crown: brownish-gray feathers", + "forehead: chestnut-brown stripe", + "eyes: dark with white eyering", + "legs: grayish-brown and slender", + "wings: olive-brown with faint chestnut edges", + "nape: olive greenish-brown", + "tail: long and olive-brown with white tips", + "throat: white with a slight chestnut hue" + ], + "chestnut flanked sparrowhawk": [ + "back: brownish-grey with fine streaks", + "beak: short, hooked, and black", + "belly: white with reddish-brown streaks", + "breast: white with reddish-brown streaks", + "crown: brown with a darker brown stripe", + "forehead: brown with fine streaks", + "eyes: bright yellow with a black pupil", + "legs: long, yellow, and powerful", + "wings: brown with white and chestnut-brown bars", + "nape: brown with fine streaks", + "tail: long, barred with brown and white", + "throat: white with reddish-brown streaks" + ], + "chestnut flanked white eye": [ + "back: olive-green with faint streaks", + "beak: small, dark gray, and pointed", + "belly: pale yellow with subtle white hues", + "breast: yellow with reddish-brown flanks", + "crown: olive-green and rounded", + "forehead: white and slightly rounded", + "eyes: white eye-ring with dark brown irises", + "legs: slender and grayish-brown", + "wings: olive-green with pale yellow fringes", + "nape: olive-green with faint streaks", + "tail: olive-green and slightly forked", + "throat: bright yellow with a slight white curve" + ], + "chestnut fronted helmetshrike": [ + "back: dark gray with slight brownish tint", + "beak: sturdy, black, slightly hooked", + "belly: white to pale gray", + "breast: chestnut-red expanding across the front", + "crown: black helmet-like plumage", + "forehead: black feathers merging into crown", + "eyes: pale yellow surrounded by black", + "legs: strong, black with sharp claws", + "wings: grayish-brown with white or pale gray feather tips", + "nape: black, continuing from the crown", + "tail: gray with black bands and white edges", + "throat: whitish-gray blending into breast color" + ], + "chestnut fronted macaw": [ + "back: greenish-blue feathered area", + "beak: black, powerful, and hooked", + "belly: green feathers mixed with blue", + "breast: bright chestnut coloration", + "crown: green feathers with a hint of blue", + "forehead: vibrant blue tinge on green feathers", + "eyes: white eye-ring with dark brown iris", + "legs: gray, strong, and scaly", + "wings: green with blue and red underside", + "nape: vibrant green feathers", + "tail: green and blue with red underside", + "throat: chestnut color fading into green" + ], + "chestnut headed bee eater": [ + "back: vibrant green feathers", + "beak: long, curved, and black", + "belly: yellow-green feathers", + "breast: orange-chestnut coloration", + "crown: chestnut-colored feathers", + "forehead: bright chestnut-brown", + "eyes: dark, surrounded by black eye-line", + "legs: dark gray with sharp claws", + "wings: green with black trim", + "nape: green merging into chestnut", + "tail: elongated, with black and blue feathers", + "throat: light blue feathers" + ], + "chestnut headed chachalaca": [ + "back: brownish-gray feathers", + "beak: short, curved, and black", + "belly: light chestnut brown", + "breast: bright chestnut color", + "crown: chestnut-colored feathers", + "forehead: reddish-brown plumage", + "eyes: dark brown with thin white ring", + "legs: long, grayish-blue", + "wings: dark brown with chestnut accents", + "nape: chestnut colored feathers", + "tail: long, dark brown with chestnut tips", + "throat: light grayish-white" + ], + "chestnut headed crake": [ + "back: dark chestnut-brown upper back", + "beak: slightly curved, pale greenish-yellow", + "belly: whitish-gray with faint barring", + "breast: light chestnut-colored with dark barring", + "crown: chestnut-colored with a contrast to the lighter forehead", + "forehead: pale grayish-white", + "eyes: deep red to reddish-brown, surrounded by pale eyering", + "legs: long, greenish-yellow with extended toes", + "wings: dark chestnut-brown with some spots and bars", + "nape: rich chestnut fading to pale gray on the lower sides", + "tail: short, dark chestnut-brown with conspicuous barring", + "throat: pale grayish-white, transitioning to chestnut on the breast" + ], + "chestnut headed nunlet": [ + "back: chestnut-brown feathered coverage", + "beak: short, stout, and pale", + "belly: cream color with dark streaks", + "breast: creamy white with chestnut highlights", + "crown: chestnut-colored with slightly raised feathers", + "forehead: chestnut-colored, blending with the crown", + "eyes: dark, beady, nestled in white circles", + "legs: short, pale, with strong feet", + "wings: chestnut-brown primary feathers with lighter coverts", + "nape: chestnut and cream, blending with the rest of the body", + "tail: chestnut-brown with slightly fanned appearance", + "throat: creamy white with subtle streaks" + ], + "chestnut headed oropendola": [ + "back: black feathers with a slight gloss", + "beak: long, pale color with a slight curve", + "belly: bright yellow plumage", + "breast: black feathers blending into yellow", + "crown: chestnut brown with a smooth texture", + "forehead: chestnut brown transitioning to black", + "eyes: small, beady with dark coloration", + "legs: slender with a grayish hue", + "wings: black with a blue-green iridescent sheen", + "nape: chestnut brown slightly lighter than crown", + "tail: long, draping, black with a subtle iridescence", + "throat: deep chestnut brown extending to neck" + ], + "chestnut headed partridge": [ + "back: brownish-black with reddish-brown bars and spots", + "beak: short, hooked and pale grayish-white", + "belly: white with blackish-brown spotting", + "breast: reddish-chestnut with white scaling", + "crown: chestnut-colored with a white eyebrow stripe", + "forehead: white with a chestnut border", + "eyes: round with dark pupils and brown iris", + "legs: yellowish-brown, with three forward-facing toes", + "wings: short, broad, and rounded with brown and chestnut feathers", + "nape: reddish-brown with a white collar", + "tail: short and brown, with reddish-brown crossbars", + "throat: white with blackish-brown triangular markings" + ], + "chestnut headed sparrow lark": [ + "back: brownish-grey with streaks", + "beak: short and conical, pale greyish-brown", + "belly: whitish with pale brown streaks", + "breast: light chestnut, streaked with pale brown", + "crown: chestnut with a dark central stripe", + "forehead: pale chestnut, blending into the crown", + "eyes: dark brown, surrounded by a pale eyering", + "legs: sturdy and pale pinkish-grey", + "wings: brownish-grey with lighter edges on the feathers", + "nape: buff, blending into the back", + "tail: brownish-grey, with white outer tail feathers", + "throat: whitish, bordered with chestnut" + ], + "chestnut headed tanager": [ + "back: olive-green with streaks", + "beak: short, curved, and black", + "belly: pale yellow", + "breast: vibrant yellow-orange", + "crown: deep chestnut hue", + "forehead: rich chestnut color", + "eyes: dark with a thin white eye-ring", + "legs: dark gray and slender", + "wings: olive-green with black feather edges", + "nape: light olive-green", + "tail: olive-green with dark feather tips", + "throat: bright yellow-orange" + ], + "chestnut headed tesia": [ + "back: olive-green feathers", + "beak: thin and pointy", + "belly: pale yellow coloring", + "breast: yellowish-green hue", + "crown: reddish-chestnut cap", + "forehead: red-chestnut shade", + "eyes: small and black", + "legs: slender and light brown", + "wings: olive-green feathers", + "nape: olive-green plumage", + "tail: short with olive-green feathers", + "throat: yellowish-green coloration" + ], + "chestnut hooded laughingthrush": [ + "back: brownish-grey feathers", + "beak: curved, black beak", + "belly: grey-white with brownish tints", + "breast: reddish-brown chest feathers", + "crown: chestnut-colored crest", + "forehead: chestnut-colored brow", + "eyes: dark, round and expressive", + "legs: long, slender, grey legs", + "wings: brownish-grey wing feathers", + "nape: chestnut-colored nape feathers", + "tail: long, brown and graduated", + "throat: white with black streaks" + ], + "chestnut naped antpitta": [ + "back: brownish-grey with faint streaks", + "beak: sturdy, slightly curved", + "belly: creamy-white and spotted", + "breast: rich rufous with blackish bars", + "crown: dark gray with a chestnut touch", + "forehead: grayish-brown", + "eyes: black and beady", + "legs: long, featherless, pale", + "wings: short and rounded, brownish-grey", + "nape: chestnut-colored patch", + "tail: short and fan-shaped, brownish-grey", + "throat: white with heavy black speckling" + ], + "chestnut naped forktail": [ + "back: chestnut nape with black and white pattern", + "beak: short, black, and straight", + "belly: white with black scalloped pattern", + "breast: white with black scalloped pattern", + "crown: black with chestnut naped stripe", + "forehead: black with white flecks", + "eyes: dark with white eye-ring", + "legs: pale pinkish-orange", + "wings: black with white spots and bars", + "nape: chestnut colored patch", + "tail: long, black, forked with white tip", + "throat: white with black scalloped pattern" + ], + "chestnut naped spurfowl": [ + "back: reddish-brown with feathery markings", + "beak: short, strong, and slightly curved", + "belly: white with black bands and spots", + "breast: chestnut color with faint black speckles", + "crown: chestnut with a prominent patch", + "forehead: smooth reddish-brown", + "eyes: dark brown with a thin white eye-ring", + "legs: strong grey-brown with spur on male birds", + "wings: rounded, reddish-brown with black and white speckles", + "nape: chestnut and white striped pattern", + "tail: reddish-brown and medium length, slightly rounded", + "throat: whitish with blackish speckles" + ], + "chestnut necklaced partridge": [ + "back: brown and black feathered, with touches of chestnut", + "beak: short, sturdy, and light grayish", + "belly: blackish with chestnut streaks, white splashes of feathers", + "breast: chestnut-colored, thin white necklaces separating parts", + "crown: dark brown with sparse light streaks", + "forehead: reddish-brown hue covering the forward part of the head", + "eyes: small, dark, and facing slightly forward", + "legs: grayish-brown, feathered thighs, strong feet", + "wings: shorter, brownish with chestnut and black feathers, striped pattern", + "nape: dark brown with light streak", + "tail: medium length, broad, brownish-black feathers with chestnut stripes", + "throat: white feathers blending into chestnut pattern on breast" + ], + "chestnut quilled rock pigeon": [ + "back: dark gray with a slight brownish tint", + "beak: medium-length, curved, blackish-brown", + "belly: grayish-white with chestnut tinge", + "breast: chestnut-brown with quill-like patterns", + "crown: dark gray, smooth feathers with iridescent sheen", + "forehead: light gray with subtle brown undertones", + "eyes: round, black with a thin white eye-ring", + "legs: relatively short, with reddish-pink feet and black claws", + "wings: strong, long, gray with chestnut-colored quills and tips", + "nape: grayish-brown feathers transitioning into the back's color", + "tail: dark gray with broad black band near the tip", + "throat: grayish-white with a chestnut shade near the breast" + ], + "chestnut rumped babbler": [ + "back: chestnut-brown with slight streaks", + "beak: short and straight, pale grayish-blue", + "belly: pale gray with a touch of chestnut coloration", + "breast: grayish-white, blending into the belly", + "crown: dark gray with faint streaks", + "forehead: pale gray, gradually darkening towards the crown", + "eyes: black, surrounded by thin white ring", + "legs: long and slender, light gray", + "wings: chestnut-rumped with dark gray feathers and faint white wing-bars", + "nape: dark gray, connecting the crown and back", + "tail: long and chestnut-rumped, edged in gray", + "throat: white, leading into the breast area" + ], + "chestnut rumped heathwren": [ + "back: brownish-grey with fine streaks", + "beak: slender, curved, dark grey", + "belly: pale chestnut-brown", + "breast: greyish-white with minimal spotting", + "crown: rufous-brown with fine streaks", + "forehead: pale grey lightly streaked", + "eyes: dark, inconspicuous, encircled by a thin eye-ring", + "legs: slender, pale grey", + "wings: brown with a chestnut wing-bar", + "nape: rufous-brown, subtly streaked", + "tail: chestnut-brown, slightly graduated", + "throat: pale grey, unmarked" + ], + "chestnut rumped thornbill": [ + "back: olive-brown with light streaks", + "beak: small, sharp, and black", + "belly: light cream color with subtle brownish tint", + "breast: soft, pale cream hue", + "crown: olive-brown with pale streaks", + "forehead: light brown with fine streaks", + "eyes: black with white rings", + "legs: pale pinkish-grey", + "wings: olive-brown with ragged white markings", + "nape: chestnut-rumped with a streaked pattern", + "tail: olive-brown with white tips and fine streaks", + "throat: pale cream color with light brown streaks" + ], + "chestnut rumped woodcreeper": [ + "back: chestnut-brown with contrasting streaks", + "beak: long, straight, and slightly curved downward", + "belly: off-white with light chestnut-brown markings", + "breast: pale with fine streaks", + "crown: chestnut-brown with faint darker markings", + "forehead: creamy-white fading to brownish-grey", + "eyes: dark, surrounded by a pale eye-ring", + "legs: sturdy and greyish-blue", + "wings: chestnut-brown with subtle wing bars", + "nape: chestnut-brown with darker streaks", + "tail: long and chestnut-brown, stiffened and curved", + "throat: off-white with minimal streaking" + ], + "chestnut shouldered antwren": [ + "back: chestnut-colored with black streaks", + "beak: short, sharp and black", + "belly: white or pale yellow", + "breast: gray with chestnut markings", + "crown: black with white streaks", + "forehead: black and chestnut mix", + "eyes: dark brown with white eyering", + "legs: gray and slender", + "wings: black and chestnut with white bars", + "nape: chestnut stripe surrounded by black", + "tail: black with white tips", + "throat: grayish-white" + ], + "chestnut shouldered goshawk": [ + "back: chestnut-colored feathers with black barring", + "beak: sharp, hooked, dark-colored beak", + "belly: creamy white with dark barring", + "breast: horizontally barred with shades of dark and light brown", + "crown: chestnut-colored and slightly crest-like", + "forehead: chestnut-colored feathers meeting with a dark-colored beak", + "eyes: piercing yellow with dark pupils", + "legs: strong, scaled, yellow-orange with sharp talons", + "wings: dark brown with a lighter chestnut patch at the shoulder", + "nape: chestnut feathers moving to barred light brown", + "tail: long, dark brown with black and white bands", + "throat: pale cream, slightly darker towards breast" + ], + "chestnut sided shrike vireo": [ + "back: olive-green with a hint of gray", + "beak: short, black, hooked upper mandible", + "belly: creamy white with a touch of yellow", + "breast: white with a subtle chestnut wash", + "crown: light gray with a slightly darker gray crest", + "forehead: light gray blending into crown", + "eyes: dark, small, with white eye-ring", + "legs: slender, grayish-blue", + "wings: olive-green, blackish-gray flight feathers", + "nape: grayish-green transition from crown to back", + "tail: dark, blackish-gray, edged with olive-green", + "throat: bright white with a slight yellow tint" + ], + "chestnut tailed antbird": [ + "back: brownish-grey with subtle streaks", + "beak: black and slightly curved", + "belly: warm chestnut-toned", + "breast: light grey with faint barring", + "crown: slate grey with a hint of chestnut", + "forehead: smooth and slate grey", + "eyes: black with a thin white eye-ring", + "legs: pale pinkish-grey with strong claws", + "wings: chestnut-edged with dark grey feathers", + "nape: slate grey, blending into the chestnut tail", + "tail: long and chestnut-colored with white tips", + "throat: white with fine grey barring" + ], + "chestnut tailed jungle flycatcher": [ + "back: olive-brown with slight chestnut hue", + "beak: sturdy, short, and blackish", + "belly: off-white to pale yellow", + "breast: pale yellowish-orange", + "crown: olive-brown with slight chestnut hue", + "forehead: olive-brown with slight chestnut hue", + "eyes: dark brown with white eye-ring", + "legs: pale pinkish-grey", + "wings: olive-brown with chestnut edges to flight feathers", + "nape: olive-brown with slight chestnut hue", + "tail: distinct chestnut color with white outer tail tips", + "throat: off-white to pale yellow" + ], + "chestnut tailed minla": [ + "back: olive-green with streaks", + "beak: short, sharp, black", + "belly: white with black streaks", + "breast: orange-brown with streaks", + "crown: orange-yellow", + "forehead: bright orange", + "eyes: black with white eye-ring", + "legs: pale pinkish-grey", + "wings: olive-green with white patches", + "nape: olive-green", + "tail: chestnut-brown with black tips", + "throat: white with black streaks" + ], + "chestnut tailed starling": [ + "back: chestnut-colored with streaks of darker feathers", + "beak: black, strong, and slightly curved", + "belly: white with light chestnut streaks", + "breast: white, blending into chestnut sides", + "crown: dark chestnut with a glossy sheen", + "forehead: smooth chestnut transitioning to the crown", + "eyes: eyes black with a faint circular white ring", + "legs: dark grey, thin-legged with strong toes", + "wings: dark chestnut with white wingbars and black flight feathers", + "nape: glossy dark chestnut blending into the back", + "tail: long chestnut tail with black-tipped feathers", + "throat: white with chestnut streaks, connecting to the breast" + ], + "chestnut throated apalis": [ + "back: olive-green upperparts", + "beak: short, slender, and pointed", + "belly: white with faint yellowish tinge", + "breast: pale chestnut colored", + "crown: grayish head with subtle crest", + "forehead: pale gray and unmarked", + "eyes: large, dark, and alert", + "legs: long, slender, with pinkish hue", + "wings: blackish-brown with white fringes", + "nape: pale olive-green shading to gray", + "tail: blackish-brown with white tips", + "throat: white with faint streaking" + ], + "chestnut throated flycatcher": [ + "back: olive-green feathers", + "beak: short, black, and slightly hooked", + "belly: creamy white with pale chestnut patch", + "breast: light grayish-brown plumage", + "crown: dark gray with slight crest", + "forehead: smooth, grayish-brown", + "eyes: dark, beady, surrounded by light eyering", + "legs: slender, black", + "wings: olive-green with two white wing bars", + "nape: grayish-brown, feathers blending into back", + "tail: dark, forked with white outer tail feathers", + "throat: distinct chestnut-colored patch" + ], + "chestnut throated huet huet": [ + "back: deep chestnut hue", + "beak: sturdy, medium-length black", + "belly: chestnut-colored underside", + "breast: reddish-brown chest feathering", + "crown: black head crest", + "forehead: black-colored plumage", + "eyes: dark, vivid orbs", + "legs: strong grey limbs", + "wings: dark brown with white streaks", + "nape: black with faint chestnut hue", + "tail: long, rufous-chestnut feathers", + "throat: distinctive chestnut patch" + ], + "chestnut throated seedeater": [ + "back: brown-feathered and rounded", + "beak: short, conical, and pointed", + "belly: light cream with brown streaks", + "breast: pale chestnut color", + "crown: brown with faint streaks", + "forehead: brownish with thin streaks", + "eyes: small, black, and round", + "legs: thin, grayish, and clawed", + "wings: brown with faint wing bars", + "nape: light brown with hint of chestnut", + "tail: long, brown feathers with slight fork", + "throat: chestnut-colored plumage" + ], + "chestnut throated spinetail": [ + "back: reddish-brown with streaks", + "beak: short, curved, and black", + "belly: light brown with grayish streaks", + "breast: warm chestnut color with streaks", + "crown: rufous-brown with central streak", + "forehead: slightly paler brown", + "eyes: dark brown with faint eyering", + "legs: grayish thin legs", + "wings: reddish-brown with faint barring", + "nape: rufous-brown with streaks", + "tail: long, dark brown, and slightly forked", + "throat: bright chestnut patch" + ], + "chestnut tipped toucanet": [ + "back: vibrant green feathers", + "beak: large, curved, black with yellow tip", + "belly: yellowish-green plumage", + "breast: light green fading to yellow", + "crown: glossy dark green", + "forehead: bright yellow patch", + "eyes: dark with thin blue eyering", + "legs: strong, slate-blue", + "wings: emerald green with hints of blue", + "nape: rich green feathers", + "tail: long, dark green with chestnut tips", + "throat: greenish-yellow coloration" + ], + "chestnut vented conebill": [ + "back: dark chestnut-brown feathers", + "beak: thin, pointed black beak", + "belly: lighter brown, fading to white", + "breast: warm chestnut-brown coloring", + "crown: smooth chestnut-brown feathers", + "forehead: lighter brown, almost golden hue", + "eyes: small, round black eyes", + "legs: slender, black legs", + "wings: chestnut-brown with darker flight feathers", + "nape: chestnut-brown feathers fading to lighter brown", + "tail: long, chestnut-brown tail feathers", + "throat: soft white feathers with chestnut-brown accents" + ], + "chestnut vented nuthatch": [ + "back: chestnut brown feathers with subdued streaks", + "beak: sharp, slender, and slightly curved", + "belly: white feathers with a hint of buff color", + "breast: pale, whitish-grey feathers", + "crown: bluish-grey with a defined black stripe", + "forehead: bluish-grey meeting a contrasting black eyestripe", + "eyes: small, dark, and round with a black eyestripe", + "legs: short and sturdy with sharp claws", + "wings: bluish-grey with white edges on flight feathers", + "nape: bluish-grey with a slight transition to chestnut brown", + "tail: short and square with bluish-grey and black feathers", + "throat: white with chestnut vent patch below" + ], + "chestnut vented warbler": [ + "back: olive-green with darker streaks", + "beak: thin, pointed, and dark colored", + "belly: creamy white with light streaks", + "breast: golden-yellow with slight streaks", + "crown: chestnut-brown with a dark eyestripe", + "forehead: olive-green blending into the crown", + "eyes: dark with a distinctive white eyering", + "legs: long and slender, light gray", + "wings: olive-green with blackish flight feathers", + "nape: olive-green transitioning to the chestnut crown", + "tail: dark, with greenish edges and white outer feathers", + "throat: bright yellow with minimal streaking" + ], + "chestnut winged babbler": [ + "back: reddish-brown feathers", + "beak: short and stout, dark greyish-black", + "belly: light grey with streaks", + "breast: greyish-white with darker spots", + "crown: dark chestnut, angular crest", + "forehead: chestnut fading to grey near eyes", + "eyes: small and black with white orbital rings", + "legs: dark greyish-black and slender", + "wings: chestnut with hints of black and white", + "nape: chestnut blending into back", + "tail: chestnut with dark bars and white tips", + "throat: white, contrasting with breast" + ], + "chestnut winged chachalaca": [ + "back: brownish olive hue with subtle feather patterns", + "beak: short, hooked, pale gray", + "belly: light chestnut blending into cream", + "breast: chestnut-colored with soft feather markings", + "crown: dark brown with lighter streaks", + "forehead: lighter brown with fine lines", + "eyes: dark, round, and small with a subtle eye-ring", + "legs: long, slender, grayish in color", + "wings: chestnut with contrasting black primary feathers", + "nape: blend of brown and chestnut with fine streaks", + "tail: long, broad, olive-brown with lighter brown tips", + "throat: pale cream transitioning to chestnut on breast" + ], + "chestnut winged cinclodes": [ + "back: brownish-grey with streaks", + "beak: long, slender and black", + "belly: pale grayish-white", + "breast: grayish-white with light streaks", + "crown: dark brown with streaks", + "forehead: brownish-grey with streaks", + "eyes: dark with white eye-rings", + "legs: sturdy and dark grey", + "wings: chestnut-brown with white markings", + "nape: dark brown with streaks", + "tail: blackish-brown with white tips", + "throat: pale grayish-white with light streaks" + ], + "chestnut winged foliage gleaner": [ + "back: olive-brown with subtle streaks", + "beak: short, slightly curved, pale color", + "belly: creamy white with light brown flanks", + "breast: buffy or pale brownish-gray", + "crown: dark chestnut with striped pattern", + "forehead: lighter chestnut color with faint streaks", + "eyes: round, black, circled by pale eye-ring", + "legs: grayish-brown, sturdy", + "wings: rich chestnut with white-barred flight feathers", + "nape: olive-brown with faint streaks", + "tail: long, chestnut, bordered by olive-brown tips", + "throat: buffy or pale brownish-gray" + ], + "chestnut winged hookbill": [ + "back: dark brown, slightly glossy", + "beak: strong, hooked, black", + "belly: pale, chestnut brown, lightly streaked", + "breast: chestnut brown, darker towards center", + "crown: dark, glossy brown", + "forehead: chestnut brown, slightly streaked", + "eyes: round, dark brown", + "legs: fairly long, dull orange", + "wings: chestnut brown, patterned with white and black", + "nape: chestnut brown, darker at the base", + "tail: long, dark brown, white-tipped", + "throat: pale, chestnut brown, lightly streaked" + ], + "chestnut winged starling": [ + "back: chestnut-brown, glossy plumage", + "beak: strong, black, and slightly curved", + "belly: pale, off-white coloration", + "breast: mix of chestnut and white feathers", + "crown: dark brown with metallic sheen", + "forehead: same dark brown as crown, with a smooth transition", + "eyes: black eyes surrounded by patch of off-white feathers", + "legs: grayish-blue with strong feet and claws", + "wings: rich chestnut coloration, long, and pointed", + "nape: chestnut-brown feathers, fading into white near the throat", + "tail: dark brown, long, and slightly forked", + "throat: bright off-white with a sharp transition from chestnut breast" + ], + "chico tyrannulet": [ + "back: olive-green feathers", + "beak: small, pointed, and black", + "belly: pale yellow with streaks", + "breast: off-white with grayish-green tinge", + "crown: greyish-green with a slight crest", + "forehead: pale gray", + "eyes: black with a white eye-ring", + "legs: slender, grayish-brown", + "wings: greenish-gray with two pale wing-bars", + "nape: olive-green matching back", + "tail: long, slender, and greenish-gray", + "throat: pale grayish-white" + ], + "chiguanco thrush": [ + "back: olive-brown with streaks", + "beak: long and slender, dark gray", + "belly: pale grayish-white", + "breast: grayish-white with light streaks", + "crown: dark brown", + "forehead: slightly lighter brown", + "eyes: medium-sized, encircled with faint white rings", + "legs: long and thin, dark gray", + "wings: olive-brown with white edges on feathers", + "nape: olive-brown with streaks", + "tail: olive-brown, long, and slightly forked", + "throat: pale grayish-white with faint streaks" + ], + "chihuahuan meadowlark": [ + "back: vibrant yellow with black streaks", + "beak: sharp, thin, and slightly curved", + "belly: bright yellow feathers", + "breast: yellow with thin black markings", + "crown: rich red-brown with fine black streaks", + "forehead: red-brown merge with crown", + "eyes: small, dark, and alert", + "legs: slender and light gray", + "wings: red-brown with black and white patterns", + "nape: red-brown streaks fading into yellow", + "tail: long, striped black and white with hints of red-brown", + "throat: intense yellow, distinct from breast" + ], + "chilean flamingo": [ + "back: light pink feathered upper body", + "beak: downward curved, black-tipped and pale pink base", + "belly: white to soft pink feathers", + "breast: pale pink plumage", + "crown: slightly darker pink head feathers", + "forehead: smooth, pale pink", + "eyes: small, dark, and circular", + "legs: long, skinny, pinkish-white with webbed feet", + "wings: pink to pale pink feathers with black flight feathers", + "nape: long neck with pink to white gradient", + "tail: short, fluffy pink feathers", + "throat: light pink to white soft feathers" + ], + "chilean flicker": [ + "back: earthy brown feathers with black spots", + "beak: long, slender, and curved, adapted for digging", + "belly: creamy white with brownish bands", + "breast: pale chestnut-colored accentuated with black streaks", + "crown: greyish-blue plumage with white dots", + "forehead: bluish-grey feathers with white speckles", + "eyes: dark, surrounded by a white ring", + "legs: strong and grey, adapted for clinging onto tree trunks", + "wings: brown with distinct black bars and white spots", + "nape: bluish-grey color with white speckles", + "tail: relatively short with black bars and white tips", + "throat: white and grey with black streaks" + ], + "chilean hawk": [ + "back: brownish-grey feathers", + "beak: strong, hooked, black", + "belly: creamy white with fine streaks", + "breast: pale brown with dark streaks", + "crown: dark brown feathers", + "forehead: pale brown with streaks", + "eyes: piercing yellow", + "legs: yellow with sharp talons", + "wings: broad with dark brown and white markings", + "nape: brown with white streaks", + "tail: long with alternating dark and light bands", + "throat: off-white with faint streaks" + ], + "chilean mockingbird": [ + "back: light grayish-brown feathers", + "beak: long and slender, dark gray", + "belly: soft white feathers", + "breast: light gray with faint streaks", + "crown: light grayish-brown", + "forehead: slightly paler gray", + "eyes: black with pale eye-ring", + "legs: slender, grayish-brown", + "wings: grayish-brown with darker tips", + "nape: light grayish-brown", + "tail: long and dark gray with white edges", + "throat: pale white with faint streaks" + ], + "chilean pigeon": [ + "back: smooth, bluish-gray feathers", + "beak: short, sturdy, and dark-colored", + "belly: soft, pale gray feathers", + "breast: faint purple hue on gray plumage", + "crown: bluish-gray feathers on top of the head", + "forehead: gentle curve from beak to crown", + "eyes: small, round, and dark with a white eyelid", + "legs: reddish-pink, scaly, and strong", + "wings: long and wide, with darker tips", + "nape: bluish-gray feathers at the back of the neck", + "tail: fan-like, with dark bars and white tips", + "throat: pale gray, transitioning to the breast color" + ], + "chilean skua": [ + "back: dark brown feathers with a slight gloss", + "beak: strong, sharp, and hooked, dark in color", + "belly: creamy white or light gray with some brown speckling", + "breast: lighter brown transitioning to the lighter belly", + "crown: smooth, dark brown feathers covering the head", + "forehead: slightly lighter brown than the crown, smoothly transitioning", + "eyes: sharp and piercing, dark brown or black", + "legs: strong and sturdy, dark gray or black", + "wings: long and pointed, dark brown with lighter feather tips", + "nape: dark brown feathers connecting the crown to the back", + "tail: relatively short, dark brown feathers with white tips at the base", + "throat: slightly lighter brown than the breast, smoothly transitioning to the belly" + ], + "chilean swallow": [ + "back: sleek iridescent blue-black feathers", + "beak: small, sharp, and black", + "belly: light, creamy white feathers", + "breast: white with bluish tinge", + "crown: dark blue-black in color", + "forehead: shiny blue-black feathers", + "eyes: small, dark, and round", + "legs: slender, featherless, and black", + "wings: long, pointed, blue-black with white spots", + "nape: iridescent blue-black feathers", + "tail: forked with elongated outer feathers", + "throat: creamy white shading to bluish" + ], + "chilean tinamou": [ + "back: brownish-gray with black-and-white speckles", + "beak: short and slightly curved, pale yellowish-brown", + "belly: soft buff, pale cream color", + "breast: light brown with darker barring patterns", + "crown: pale grayish-brown with faint black stripes", + "forehead: lighter grayish, blending into the crown", + "eyes: small, dark brown with pale gray eyering", + "legs: strong, bluish-gray with sharp claws", + "wings: rounded, brown with faint barring and white tips", + "nape: pale brown with slightly darker streaks", + "tail: short, fan-shaped, brown with faint black bars", + "throat: whitish-gray, blending into the breast color" + ], + "chilean woodstar": [ + "back: shimmering green feathers", + "beak: slender, black, and slightly curved", + "belly: soft, tan-colored plumage", + "breast: bright green, iridescent feathers", + "crown: vibrant golden-green with shining shades", + "forehead: lustrous green that transitions into the crown", + "eyes: small, black, and round", + "legs: thin, black, with delicate legs and needle-like claws", + "wings: long and slender with iridescent green hues", + "nape: bright golden-green feathers that complement the crown", + "tail: forked, dark brown with white outer edges", + "throat: rich, chestnut red with an intense shine" + ], + "chiloe wigeon": [ + "back: shiny green plumage with black speckles", + "beak: bluish-grey with a black tip", + "belly: white with sporadic black feathers", + "breast: chestnut brown with light markings", + "crown: glossy greenish-black feathers", + "forehead: striking white patch", + "eyes: dark brown, slightly almond-shaped", + "legs: bluish-grey, webbed feet", + "wings: marbled with green and white feathers, black edges", + "nape: dark green feathers transitioning to brown", + "tail: black feathers with white sides", + "throat: white, blending into the breast area" + ], + "chimango caracara": [ + "back: brownish-grey feathers", + "beak: sharp, hooked black bill", + "belly: light greyish-white with subtle streaks", + "breast: pale greyish-brown with fine streaks", + "crown: dark brown feathers", + "forehead: white streaked with brown", + "eyes: bright yellow with dark pupils", + "legs: long, yellow-orange legs", + "wings: broad with dark brown and greyish-white markings", + "nape: greyish-brown with faint streaks", + "tail: greyish-brown with white tip and dark bands", + "throat: pale greyish-white with fine streaks" + ], + "chiming wedgebill": [ + "back: brownish-grey feathers", + "beak: long, slender, and black", + "belly: white to cream-colored underparts", + "breast: white or pale grey", + "crown: black with thin white streaks", + "forehead: black with white streaks", + "eyes: black with a white crescent-shaped eye-ring", + "legs: light pink or greyish legs", + "wings: brownish-grey with black feather tips", + "nape: black with thin white streaks", + "tail: long, black, and wedge-shaped", + "throat: white or cream-colored" + ], + "chin hills wren babbler": [ + "back: olive-brown with dark streaks", + "beak: small, pointed, and black", + "belly: light brown with faint streaking", + "breast: pale, buff-toned with dark spots", + "crown: dark brown with lighter streaks", + "forehead: slightly paler brown than the crown", + "eyes: black with white eye-ring", + "legs: pinkish-brown with strong claws", + "wings: short, rounded, olive-brown with noticeable bars", + "nape: olive-brown with lighter streaks", + "tail: short, brown with fine bars and pale edges", + "throat: pale buff with dark streaking" + ], + "chinchipe spinetail": [ + "back: streaked olive-brown feathers", + "beak: short, curved, and sharp", + "belly: creamy yellow with light barring", + "breast: tawny-brown with faint streaks", + "crown: rufous-brown with black streaks", + "forehead: off-white with black stripes", + "eyes: dark with white eye-ring", + "legs: strong, grayish-pink legs", + "wings: rufous-colored with black barring", + "nape: streaked olive-brown with white stripe", + "tail: long, rufous-brown with narrow black bars", + "throat: tawny-white with light streaking" + ], + "chinese babax": [ + "back: brownish-grey feathers with hints of olive", + "beak: thick, strong, blackish-grey", + "belly: buff-white with dark streaks", + "breast: same as belly, buff-white with dark streaks", + "crown: reddish-brown with faint black streaks", + "forehead: same as crown, reddish-brown with faint black streaks", + "eyes: dark, beady, surrounded by indistinct eye-ring", + "legs: strong, greyish-brown, scaly", + "wings: brownish-red with black barring", + "nape: reddish-brown with black streaks", + "tail: long, broad, reddish-brown with black bars", + "throat: pale grey with faint black streaks" + ], + "chinese beautiful rosefinch": [ + "back: vibrant red and pink feathers", + "beak: small, pointed, blackish-grey", + "belly: soft pinkish-white plumage", + "breast: bright rose-red hue", + "crown: stunning red and black patterns", + "forehead: striking red feathering", + "eyes: small, round, black and piercing", + "legs: sleek, dark grey, thin but strong", + "wings: vivid red, sprinkled with black feathers", + "nape: stunning red feather patterns", + "tail: long, red and black feathers, fanned shape", + "throat: deep rose-red plumage" + ], + "chinese blackbird": [ + "back: sleek black feathers", + "beak: sharp yellow-orange point", + "belly: dark black plumage", + "breast: iridescent black feathers", + "crown: smooth black feather crest", + "forehead: shiny black curve", + "eyes: small and inquisitive", + "legs: long, thin and dark", + "wings: black and powerful", + "nape: black feathers extending from the head", + "tail: long, dark, and fan-shaped", + "throat: glossy black with subtle iridescence" + ], + "chinese bush warbler": [ + "back: olive-brown with subtle streaks", + "beak: short, sharp, and dark-colored", + "belly: pale buff-white", + "breast: creamy-white with light brown streaks", + "crown: pale brown with slight crest", + "forehead: light olive-brown, blending with crown", + "eyes: small, dark, and unobtrusive", + "legs: flesh-colored with dark claws", + "wings: olive-brown with faint barring", + "nape: silky olive-brown, coordinating with back", + "tail: medium length, olive-brown with dark bars", + "throat: white transitioning into breast" + ], + "chinese crested tern": [ + "back: light grey feathers covering upper body", + "beak: slender, sharp, yellow with a black tip", + "belly: white feathers with a smooth texture", + "breast: white plumage extending from throat to belly", + "crown: sleek, grey feathers on top of the head", + "forehead: light grey plumage above the eyes", + "eyes: small, dark, circular with a sharp gaze", + "legs: thin, yellow-orange with webbed feet", + "wings: long, light grey feathers with darker tips", + "nape: greyish-white feathers at the back of the neck", + "tail: white, forked with grey outer feathers", + "throat: white feathers extending from beak to breast" + ], + "chinese egret": [ + "back: smooth, white feathers", + "beak: long, slender, and black", + "belly: soft, white plumage", + "breast: white feathers with slight curvature", + "crown: white feathered head with a hint of crest", + "forehead: smooth, white, and feathered", + "eyes: small, round, and black", + "legs: long, thin, and black", + "wings: white feathers with long, pointed tips", + "nape: white and slender with a subtle curve", + "tail: elongated, white feathers with straight edges", + "throat: white, smooth, and slightly constricted" + ], + "chinese francolin": [ + "back: brown and black with white streaks", + "beak: short, stout, and grey", + "belly: cinnamon-colored with black and white bars", + "breast: rustic brown with small white spots", + "crown: reddish-brown with short bristles", + "forehead: buff-colored with a black stripe", + "eyes: amber with a white eye-ring", + "legs: sturdy with dark grey scales", + "wings: brown with white-speckled feathers", + "nape: reddish-brown with a buff stripe", + "tail: long, brown with thin white bars", + "throat: white with a black border" + ], + "chinese grassbird": [ + "back: olive-brown with faint streaks", + "beak: short and sharp, pale orange", + "belly: buffy-white, with pale streaking", + "breast: light brownish-gray, with dark streaks", + "crown: warm brown with pale center stripe", + "forehead: pale gray-brown, slightly streaked", + "eyes: dark brown, with pale eyering", + "legs: long and slender, pale pinkish-gray", + "wings: olive-brown, with faint pale edgings", + "nape: warm brown, faintly streaked", + "tail: brownish-gray, with dark centers and white tips", + "throat: creamy-white, streaked with pale brown" + ], + "chinese gray shrike": [ + "back: blueish-gray feathers", + "beak: black, strong, and hooked", + "belly: white or pale gray", + "breast: light gray", + "crown: blackish with a slight crest", + "forehead: black extending to eye area", + "eyes: deep black with a white eyering", + "legs: black, slender, and strong", + "wings: black with white patches", + "nape: blueish-gray", + "tail: black with white outer feathers", + "throat: white or light gray" + ], + "chinese hwamei": [ + "back: brownish-grey feathers", + "beak: short and sharp, pale yellow", + "belly: cream-colored plumage", + "breast: light brownish-grey feathers", + "crown: black mask-like stripe", + "forehead: cream-white with black stripes", + "eyes: small and dark, surrounded by mask-like stripe", + "legs: strong and pale pink", + "wings: brownish-grey with faint streaks", + "nape: cream-white with dark streaks", + "tail: long and brownish-grey with black bars", + "throat: cream-colored with faint grey streaks" + ], + "chinese leaf warbler": [ + "back: olive-green with pale streaks", + "beak: thin, pointed, and black", + "belly: white and lightly streaked", + "breast: pale yellow-green with subtle streaks", + "crown: yellowish-green with a distinctive stripe", + "forehead: bright yellowish-green", + "eyes: large, black, surrounded by white eyering", + "legs: long, slender, pale pink", + "wings: olive-green with two clear wing-bars", + "nape: yellowish-green, continuous with crown", + "tail: dark, forked, edged with pale feathers", + "throat: pale yellow, blending into breast" + ], + "chinese monal": [ + "back: vibrant iridescent green-blue feathers", + "beak: black, short and strong", + "belly: white, soft feathers", + "breast: metallic blue plumage", + "crown: red-orange fan-shaped crest", + "forehead: brilliant turquoise and purple feathers", + "eyes: small, black, and alert", + "legs: strong, feather-free, gray", + "wings: vivid green-blue with black edge", + "nape: metallic purple-blue feathers", + "tail: elongated, curving, brown-black feathers", + "throat: iridescent blue-green feathers" + ], + "chinese penduline tit": [ + "back: grayish-brown with white flecks", + "beak: short, conical, and black", + "belly: soft white with grayish-brown flanks", + "breast: white with a faint buff tinge", + "crown: black with a white stripe", + "forehead: black, extending to eye line", + "eyes: dark brown, surrounded by white eye ring", + "legs: pale pinkish-gray, slender and agile", + "wings: grayish-brown with white wing bars", + "nape: grayish-brown with a faint white stripe", + "tail: grayish-brown with white outer feathers and black sub-terminal band", + "throat: white, bordered by black facial markings" + ], + "chinese rubythroat": [ + "back: olive-green body plumage", + "beak: thin and pointed", + "belly: reddish-orange with streaks", + "breast: pale reddish-orange", + "crown: grayish-brown with faint streaks", + "forehead: lighter grayish-brown coloring", + "eyes: small and black, surrounded by white eye ring", + "legs: pale, slender, and long", + "wings: olive-green with dark flight feathers", + "nape: grayish-brown, blending into the back", + "tail: dark brown with white outer feathers", + "throat: striking bright red color" + ], + "chinese sparrowhawk": [ + "back: sleek greyish-brown feathers", + "beak: sharp, hooked and yellowish-grey", + "belly: light whitish-yellow with fine grey streaks", + "breast: pale white with thin grey stripes", + "crown: smooth grey-brown feathers", + "forehead: light grey plumage", + "eyes: sharp, intense yellow-orange", + "legs: bright yellow, slender", + "wings: long, grey-brown with dark tips", + "nape: light grey blending into the back", + "tail: banded black and grey feathers", + "throat: whitish-yellow with fine grey streaks" + ], + "chinese thrush": [ + "back: olive-brown with dark streaks", + "beak: blackish, slender, and slightly curved", + "belly: pale gray-white with dark spots", + "breast: grayish-white with dark streaks", + "crown: dark brown with black spots", + "forehead: brownish-gray with black markings", + "eyes: dark with white eye-ring", + "legs: dark, sturdy, and medium-sized", + "wings: brown with buff-colored wing bars", + "nape: streaked olive-brown", + "tail: dark brown with buff-colored edges", + "throat: white with dark streaks" + ], + "chinese vivid niltava": [ + "back: deep blue upper feathers", + "beak: strong, black, and slightly hooked", + "belly: bright orange feathers", + "breast: vivid orange plumage", + "crown: shining blue head feathers", + "forehead: smooth blue plumage", + "eyes: dark, expressive gaze", + "legs: long and slender, black", + "wings: contrasting blue and orange feathers", + "nape: radiant blue with a slight gradient", + "tail: long, blue feathers with orange undertones", + "throat: dazzling bright orange vivid patch" + ], + "chinese white browed rosefinch": [ + "back: reddish-pink feathers covering the upper body", + "beak: sturdy, pale pinkish-grey", + "belly: light pinkish-grey plumage", + "breast: vibrant rose-pink feathers", + "crown: white-browed with a rich pinkish-purple hue", + "forehead: prominent white stripe bordered by black lines", + "eyes: dark, inquisitive gaze", + "legs: thin, greyish-pink", + "wings: rose-pink feathers with darker primary feathers", + "nape: white stripe along the neck, connecting to the crown", + "tail: long, pinkish-grey feathers", + "throat: soft rose-pink with a well-defined white border" + ], + "chinspot batis": [ + "back: olive-grey feathers", + "beak: dark, pointed, and slightly curved", + "belly: white or light pale grey", + "breast: pale grey with a contrast to the white chin spot", + "crown: dark-grey to black with a prominent white eyebrow", + "forehead: olive-grey with a white eyebrow", + "eyes: black, with white eyelid edges", + "legs: dark grey, slender and short", + "wings: olive-grey to dark grey feathers with contrasting white patch", + "nape: olive-grey feathers", + "tail: short, dark grey with contrasting white outer feathers", + "throat: white, with a distinctive dark triangular chin spot" + ], + "chinstrap penguin": [ + "back: sleek, black feathers", + "beak: slender, black with white tips", + "belly: clean, white feathers", + "breast: broad, white chest", + "crown: smooth, black feathers", + "forehead: white, thin stripe", + "eyes: small, dark, expressive", + "legs: short, powerful, pinkish", + "wings: strong, black flippers", + "nape: black, defined stripe", + "tail: short, black, stiff", + "throat: white, narrow chinstrap" + ], + "chiribiquete emerald": [ + "back: vibrant green feathers", + "beak: slender, black, and slightly curved", + "belly: soft, pale yellow", + "breast: bright emerald hue", + "crown: iridescent green", + "forehead: glistening green shade", + "eyes: round, black, and alert", + "legs: thin, dark-colored limbs", + "wings: large, green with vivid blue tips", + "nape: rich green, feathers overlapping", + "tail: long, streaming emerald feathers", + "throat: smooth, lighter green color" + ], + "chirinda apalis": [ + "back: greenish-olive feathers", + "beak: slender black pointed", + "belly: creamy-yellow hue", + "breast: pale yellowish-green", + "crown: bright golden-yellow", + "forehead: golden-yellow stripe", + "eyes: dark brown, encircled by thin white eyering", + "legs: bluish-grey, slender", + "wings: greenish-olive with black markings", + "nape: greenish-olive blending with crown", + "tail: elongated with black-tipped feathers", + "throat: pale yellow patch" + ], + "chiriqui foliage gleaner": [ + "back: olive-brown feathers", + "beak: short, slender, and slightly curved", + "belly: light buff or pale yellow", + "breast: pale brown with fine streaks", + "crown: rufous-brown with faint streaks", + "forehead: rufous-brown, blending with the crown", + "eyes: dark, bright, and relatively large", + "legs: long, grayish-blue", + "wings: olive-brown with faint rufous edges", + "nape: olive-brown with subtle streaks", + "tail: rufous-brown and relatively short", + "throat: off-white with light streaks" + ], + "chiriqui quail dove": [ + "back: smooth, earthy brown feathers", + "beak: short, sharp, black curve", + "belly: soft, buff-colored plumage", + "breast: pinkish-brown, paler towards the center", + "crown: subdued chestnut hue, smooth feathers", + "forehead: lighter brown, transitioning to crown", + "eyes: small, beady, dark brown orbs", + "legs: slender, reddish-brown stalks", + "wings: earthy brown with subtle reddish-brown markings", + "nape: gently curving chestnut, connecting crown to back", + "tail: elongated, earthy brown feathers, often fanned out", + "throat: paler than breast, hint of rose-buff hue" + ], + "chirping cisticola": [ + "back: light brown with subtle streaks", + "beak: sharp, slender, and blackish", + "belly: pale white or cream-colored", + "breast: buff-colored with darker streaks", + "crown: rufous with fine streaks", + "forehead: pale buff with delicate streaks", + "eyes: tiny, beady, dark brown", + "legs: long, slender, and pinkish-orange", + "wings: brown with rufous edges and a distinctive white wing bar", + "nape: rufous, streaked with dark coloration", + "tail: brown with darker banding and white outer feathers", + "throat: white or cream-colored with faint streaks" + ], + "chirruping wedgebill": [ + "back: light brown feathers with faint streaks", + "beak: short, straight, and stout", + "belly: pale, grayish-white plumage", + "breast: light gray feathers with subtle markings", + "crown: brownish-gray with streaks", + "forehead: slightly lighter than the crown with faint streaks", + "eyes: small, dark, and alert", + "legs: slender and grayish in appearance", + "wings: brownish-gray with strong flight feathers", + "nape: light brown feathers converging from the crown", + "tail: long and narrow with brownish-gray feathers", + "throat: pale grayish-white with minimal streaks" + ], + "chivi vireo": [ + "back: olive-green upper side", + "beak: short and slightly hooked", + "belly: pale yellow underneath", + "breast: whitish with faint yellow wash", + "crown: grayish-blue head", + "forehead: blue-gray hue", + "eyes: dark and beady", + "legs: blue-gray, slender", + "wings: short with white wingbars", + "nape: gray-blue, merging with the crown", + "tail: square-shaped with white edges", + "throat: white, contrasting against breast" + ], + "choco elaenia": [ + "back: olive-brown upperparts", + "beak: dark, hooked, and slender", + "belly: pale yellowish underparts", + "breast: olive-gray with yellow tinge", + "crown: olive-brown with faint crest", + "forehead: olive-gray fading to white", + "eyes: dark, round, surrounded by white eye-ring", + "legs: grayish-black and slender", + "wings: olive-brown with white wing-bars", + "nape: olive-brown fading to gray", + "tail: olive-brown with white outer feathers", + "throat: white, bordered by grayish-olive" + ], + "choco manakin": [ + "back: rich brown feathers", + "beak: short, black, and pointy", + "belly: lighter brown with a hint of yellow", + "breast: brown, blends with belly coloration", + "crown: glossy black feathers", + "forehead: shiny black plumage", + "eyes: small, black, and round", + "legs: thin and dark gray", + "wings: brown with black secondary feathers", + "nape: blackish-brown feathers", + "tail: elongated, dark brown feathers", + "throat: contrastingly white or light yellow" + ], + "choco poorwill": [ + "back: earthy brown with subtle white spots", + "beak: short and straight, dusky gray", + "belly: pale grayish-brown with muted streaks", + "breast: light gray with faint white flecks", + "crown: dark brown, adorned with pale spots", + "forehead: slightly paler browns, blending with the crown", + "eyes: large and round, encircled with gray-white feathers", + "legs: long and slender, grayish-brown", + "wings: brownish-black with white-tipped flight feathers", + "nape: earth-toned brown with discreet white markings", + "tail: wide and fan-shaped, dark brown with white bands", + "throat: soft grayish-brown with lighter streaks" + ], + "choco screech owl": [ + "back: dark brown with white speckles", + "beak: sharp, hooked, yellowish-gray", + "belly: light brown with dark brown streaks", + "breast: reddish-brown with white streaks", + "crown: dark brown with whitish spots", + "forehead: slightly paler brown with white speckles", + "eyes: large, dark, surrounded by dark facial disc", + "legs: feathered, grayish-brown", + "wings: dark brown with white and reddish-brown markings", + "nape: reddish-brown with white spots", + "tail: long, dark brown with thin white bars", + "throat: creamy-white with fine brown streaks" + ], + "choco sirystes": [ + "back: olive-brown feathers", + "beak: slim, slightly curved, dark grey", + "belly: cream-colored with faint brown streaks", + "breast: light cinnamon colored with subtle streaking", + "crown: dark brown with a greyish tinge", + "forehead: light greyish-brown", + "eyes: black with a thin white eye-ring", + "legs: long, thin, and dark grey", + "wings: dark brown with a slight greenish sheen", + "nape: dark brown, blending into the olive-brown back", + "tail: long and dark brown with white tips on outer feathers", + "throat: creamy white with light brown streaks" + ], + "choco tapaculo": [ + "back: dark brown with subtle patterns", + "beak: short, sturdy, and black", + "belly: grayish-brown with light streaks", + "breast: gray-brown with slight markings", + "crown: dark brown with pale streaks", + "forehead: somewhat paler brown", + "eyes: dark, beady, and expressive", + "legs: strong, featherless, and dark gray", + "wings: short, brown feathers with hints of gray", + "nape: pale brown with fine streaks", + "tail: dark brown with slightly darker tips", + "throat: light grayish-brown with faint markings" + ], + "choco tinamou": [ + "back: dark brown with deep reddish hue", + "beak: short, slightly curved, greyish-black", + "belly: rich dark brown with lighter accents", + "breast: deep brown with subtle reddish tone", + "crown: dark brown, well-defined with reddish highlights", + "forehead: slightly lighter brown merging with crown", + "eyes: small, black, surrounded by brown feathering", + "legs: sturdy, greyish-blue, feathered upper portion", + "wings: rounded, dark brown, slightly glossy", + "nape: reddish-brown with a faint horizontal stripe", + "tail: short, dark brown, slightly rounded feathers", + "throat: light brown with a hint of reddish hue" + ], + "choco toucan": [ + "back: dark brown to black plumage", + "beak: large, colorful, and curved", + "belly: white or cream feathering", + "breast: bright yellow feathers", + "crown: black feathers with slight gloss", + "forehead: vibrant green-blue coloration", + "eyes: bright blue with black pupils", + "legs: grayish-blue and short", + "wings: dark brown with blue or green highlights", + "nape: glossy black feathers", + "tail: long, dark feathers with blue undertones", + "throat: bright red or orange patch" + ], + "choco tyrannulet": [ + "back: rich brown plumage", + "beak: short, pointed, and black", + "belly: pale cream-colored feathers", + "breast: soft cinnamon shades", + "crown: dark brown with pale edging", + "forehead: lighter brown with faint buffy markings", + "eyes: small, dark with a pale eye-ring", + "legs: slender, grayish-blue", + "wings: brown with pale wing-bars", + "nape: uniform brown blending with crown", + "tail: long, dark brown with subtle barring", + "throat: pale grayish-white" + ], + "choco vireo": [ + "back: moss-green feathers", + "beak: small, pointed, and black", + "belly: off-white with hints of green", + "breast: pale greenish-yellow plumage", + "crown: green with yellow tinges", + "forehead: smooth, moss-green feathers", + "eyes: dark and alert, surrounded by white eye-ring", + "legs: slender and grayish", + "wings: green with black feather tips", + "nape: continuation of the moss-green crown", + "tail: shades of green, slightly forked", + "throat: vibrant yellow with pale streaks" + ], + "choco warbler": [ + "back: rich brown feathers", + "beak: slender and sharp, black", + "belly: creamy white plumage", + "breast: warm chestnut-brown hue", + "crown: rufous-brown crest", + "forehead: russet-colored with fine streaks", + "eyes: black, beady, and curious", + "legs: thin, grayish-brown", + "wings: elongated, dark brown with soft white stripes", + "nape: earthy brown, smooth transition to the back", + "tail: long, dark brown with white edges", + "throat: light chestnut transitioning to pale white" + ], + "choco woodpecker": [ + "back: deep chocolate-brown feathers", + "beak: straight, sturdy, and dark", + "belly: creamy white with faint spots", + "breast: white with dark brown spots", + "crown: bright red crest on males", + "forehead: dark brown to black", + "eyes: small, round, and black", + "legs: grayish with strong claws", + "wings: chocolate-brown with white spots", + "nape: red streak for males, black for females", + "tail: rigid, dark-tipped feathers for balance", + "throat: white with faint brown spots" + ], + "chocolate boobook": [ + "back: dark chocolate brown feathers", + "beak: sharp, curved, black hook", + "belly: creamy, light brown plumage", + "breast: smooth, milk chocolate feathers", + "crown: dark brown with white speckles", + "forehead: slightly raised, milk chocolate hue", + "eyes: large, piercing yellow circles", + "legs: strong, greyish-brown branches", + "wings: wide, dark chocolate spread with white spots", + "nape: milk chocolate base with white streaks", + "tail: elongated dark brown feathers with white bands", + "throat: mottled white and light brown plumage" + ], + "chocolate backed kingfisher": [ + "back: striking deep chocolate-brown", + "beak: long, thick, and black", + "belly: creamy white with beige markings", + "breast: brilliant azure blue", + "crown: vivid orange and blue", + "forehead: bright cobalt blue", + "eyes: large, dark, and piercing", + "legs: short and slate grey", + "wings: brilliant blue with black stripes", + "nape: vibrant orange blending into blue", + "tail: bold blue with black banding", + "throat: soft white with a hint of blue" + ], + "chocolate vented tyrant": [ + "back: brownish-gray feathers", + "beak: short and black, slightly hooked", + "belly: creamy white with a tinge of pale chocolate", + "breast: light chocolate brown plumage", + "crown: dark brown with slight crest", + "forehead: smooth brown feathers", + "eyes: small, black and piercing", + "legs: slender and grayish-black", + "wings: brownish-gray with noticeable chocolate-colored fringes", + "nape: uniform brown feathers", + "tail: long and brown, with a contrasting chocolate vent", + "throat: pale beige with a hint of brown" + ], + "cholo alethe": [ + "back: olive-brown feathers", + "beak: short, pale grayish-blue", + "belly: cream-colored with brown streaks", + "breast: white with grayish-blue streaks", + "crown: cream-colored with brown streaks", + "forehead: white with fine streaks", + "eyes: black surrounded by white eye-ring", + "legs: slim, pale pinkish-gray", + "wings: brown and cream hued with white bars", + "nape: olive-brown with fine streaks", + "tail: long, olive-brown with white-tipped feathers", + "throat: white with grayish-blue markings" + ], + "chopi blackbird": [ + "back: sleek black feathers", + "beak: sharp, pointed, and black", + "belly: glossy black plumage", + "breast: shiny black chest feathers", + "crown: midnight black feathered crest", + "forehead: smooth black plumage", + "eyes: small, beady, and dark", + "legs: long, thin, and black", + "wings: widespread, black feathered", + "nape: black feathers seamlessly connecting head and back", + "tail: elongated, fan-like black feathers", + "throat: dark black plumage on lower head" + ], + "chorister robin chat": [ + "back: olive-brown and slightly patterned", + "beak: slim and straight, with black upper and pale lower mandible", + "belly: white with a hint of pale orange", + "breast: vibrant orange-red and streaked", + "crown: gray or black, with thin white eye stripe", + "forehead: grayish-black and elongated", + "eyes: dark brown with a white eye-ring", + "legs: long and slender, pinkish-grey", + "wings: brownish-black with white spots and bars", + "nape: gray or black, blending into the back", + "tail: dark brown, with white outer tail feathers", + "throat: striking orange-red, extending to upper breast" + ], + "chotoy spinetail": [ + "back: light brown streaked feathers", + "beak: short, sharp, pale curved bill", + "belly: pale buff-colored underparts", + "breast: cinnamon-toned upper breast", + "crown: rufous with streaks, distinctive crest", + "forehead: slightly paler rufous color", + "eyes: small, round, dark colored", + "legs: slender, long, pale pinkish", + "wings: broad, brown, barring on wing feathers", + "nape: light brown with fine dark streaks", + "tail: long, graduated, brown with buff tips", + "throat: pale buff with fine streaking" + ], + "chowchilla": [ + "back: reddish-brown feathers", + "beak: short, stout, and black", + "belly: pale tan with fine brown streaks", + "breast: creamy-white with dark barred pattern", + "crown: reddish-brown with fine black streaks", + "forehead: smooth, light-colored feathers", + "eyes: small, dark, and beady", + "legs: short, pinkish-gray", + "wings: dark brown with alternating pale and rusty bars", + "nape: reddish-brown with black streaks", + "tail: long, dark brown with pale bars and a white tip", + "throat: cream-colored with minimal or subtle streaking" + ], + "christmas island boobook": [ + "back: rusty-brown feathers with faint streaks", + "beak: dark greyish-brown, hooked-shaped", + "belly: lighter brown with fine white streaks", + "breast: reddish-brown feathers, white streaks", + "crown: dark brown, faint streaks", + "forehead: lighter brown, white spots", + "eyes: large and yellow", + "legs: yellowish, long and slender", + "wings: brown with intricate white markings", + "nape: dark brown with fine streaks", + "tail: brown, with bands of white spots", + "throat: pale brown, white streaks" + ], + "christmas island frigatebird": [ + "back: dark and sleek feathers", + "beak: long, slender, hooked", + "belly: greyish-white feathers", + "breast: dark greyish-black feathers", + "crown: black feathers, slight crest", + "forehead: black, smooth feathers", + "eyes: large, dark, and alert", + "legs: slightly bent, black", + "wings: pointed, long, and angular", + "nape: dark black-grey feathers", + "tail: long, deeply forked", + "throat: inflatable red pouch on males" + ], + "christmas island imperial pigeon": [ + "back: smooth and grayish-white", + "beak: strong, hooked, yellowish-white", + "belly: pale, grayish-white", + "breast: creamy white, thicker feathers", + "crown: glossy, greenish-black", + "forehead: slightly raised, greenish-black", + "eyes: bright, golden-yellow", + "legs: sturdy, red-golden", + "wings: wide, white with black tips", + "nape: dark green with slight iridescence", + "tail: long, white, and fan-shaped", + "throat: glossy, greenish-black, thick feathers" + ], + "christmas island swiftlet": [ + "back: sleek, brownish-gray feathers", + "beak: relatively short, black, slightly curved", + "belly: pale gray with soft feathers", + "breast: light gray, somewhat puffed", + "crown: brownish-gray, smooth feathers", + "forehead: lighter gray, slightly rounded", + "eyes: small, black, and alert", + "legs: short and thin, black with tiny claws", + "wings: long, brownish-gray, elegant in flight", + "nape: smooth, grayish-brown transition from head to back", + "tail: short, fan-like with rounded tip", + "throat: pale gray, smooth feathers" + ], + "christmas island white eye": [ + "back: olive-green feathers", + "beak: thin, slightly curved", + "belly: pale yellowish-green", + "breast: light yellow hue", + "crown: olive-green with yellowish tint", + "forehead: faint yellowish-green color", + "eyes: white eye-rings, dark brown iris", + "legs: pale gray slender limbs", + "wings: olive-green, rounded shape", + "nape: greenish-yellow feathers", + "tail: olive-green, slightly forked", + "throat: soft yellow feathers" + ], + "christmas shearwater": [ + "back: deep grayish-brown with subtle, darker streaks", + "beak: short and hooked, blackish-gray fading to lighter gray", + "belly: clean white underside, extending up to the throat", + "breast: white with light gray-brown speckles blending into the belly", + "crown: dark grayish-brown, almost black, covering the top of the head", + "forehead: smooth dark gray-brown transitioning into the crown", + "eyes: small, dark, and circled by black feather markings", + "legs: pinkish-gray and relatively long, ending in sharp talons", + "wings: broad, grayish-brown with white under feathers, curved for gliding", + "nape: gray-brown blending into the darker crown and back", + "tail: thin, pointed, and dark gray-brown, used for steering in flight", + "throat: white with a slight speckling of gray-brown feathers near the breast" + ], + "chubb cisticola": [ + "back: brown with black streaks", + "beak: short and sharp", + "belly: pale brownish-white", + "breast: buff-colored with streaks", + "crown: rufous with black streaks", + "forehead: pale brown", + "eyes: small and dark", + "legs: thin and light brown", + "wings: brown and rounded", + "nape: reddish-brown with streaks", + "tail: short and fan-shaped", + "throat: pale white" + ], + "churring cisticola": [ + "back: brown with streaks of black", + "beak: thin and pointed, dark gray", + "belly: creamy off-white color", + "breast: tawny with dark streaks", + "crown: rufous with brown streaks", + "forehead: buffy-white with dark lines", + "eyes: small, brown, encircled by white eye-ring", + "legs: slender, grayish-pink", + "wings: brown with darker feather margins", + "nape: brownish with faint streaks", + "tail: rufous-brown, edged with dark bars", + "throat: light buff color" + ], + "chusquea tapaculo": [ + "back: olive-brown with blackish bars", + "beak: short, pointed, and black", + "belly: mottled white and black", + "breast: white with blackish-grey bars", + "crown: dark grey with black streaks", + "forehead: slightly paler grey", + "eyes: dark, small, and round", + "legs: pale pinkish-grey", + "wings: blackish, short, and rounded", + "nape: grey with black streaks", + "tail: dark and short, with white-tipped feathers", + "throat: pale grey with fine, dark streaks" + ], + "cinderella waxbill": [ + "back: pale blue-gray with fine dark streaks", + "beak: short, sharp, and bright red", + "belly: white with slight dark markings", + "breast: pale blue-gray with fine dark streaks", + "crown: rich chestnut-brown", + "forehead: bold pale eyebrow stripe", + "eyes: small, dark with white eye-ring", + "legs: slender, pinkish-gray", + "wings: pale blue-gray with dark flight feathers", + "nape: chestnut-brown, blending into back", + "tail: short and square, blue-gray with dark tips", + "throat: white, contrasting with breast" + ], + "cinereous antshrike": [ + "back: dark bluish-gray plumage", + "beak: strong, short, and hooked", + "belly: pale gray with white stripes", + "breast: bluish-gray with white streaks", + "crown: blackish with a chestnut streak", + "forehead: black with a chestnut stripe", + "eyes: dark brown with a white eye-ring", + "legs: long, grayish, and strong", + "wings: bluish-gray, broad, and rounded", + "nape: bluish-gray with a chestnut patch", + "tail: long, bluish-gray, and graduated", + "throat: white and streaked with gray" + ], + "cinereous becard": [ + "back: bluish-gray feathers", + "beak: short, stout, and black", + "belly: pale, grayish-white", + "breast: soft gray plumage", + "crown: darker gray shading", + "forehead: slightly lighter gray", + "eyes: dark brown with pale eyerings", + "legs: blackish-gray, sturdy", + "wings: bluish-gray with dark feather tips", + "nape: gray blending into the crown", + "tail: long, dark gray with white edges", + "throat: pale gray, contrasting with breast" + ], + "cinereous bulbul": [ + "back: dark grayish-brown feathers", + "beak: short and stout, blackish color", + "belly: lighter grayish-brown underparts", + "breast: pale grayish-brown chest feathers", + "crown: dark grayish-brown head", + "forehead: smooth, transitioning to darker feathers", + "eyes: small, dark with a pale white eye-ring", + "legs: strong with dark grayish-brown, scaly legs", + "wings: dark grayish-brown with lighter edges", + "nape: consistent dark grayish-brown feathers", + "tail: long with a slightly forked shape, dark grayish-brown color", + "throat: pale grayish-brown, slightly lighter than the breast" + ], + "cinereous bunting": [ + "back: light brown with subtle streaks", + "beak: short, conical, and pale pinkish-gray", + "belly: pale white with grayish tones", + "breast: sandy brown with slight streaking", + "crown: warm brown with faint streaks", + "forehead: smooth sandy brown", + "eyes: small, black, and round", + "legs: slim, pinkish-gray", + "wings: brown with pale wing bars", + "nape: light brown with a buff collar", + "tail: brown with white outer feathers", + "throat: pale white, contrasting with breast" + ], + "cinereous conebill": [ + "back: slate-gray plumage", + "beak: short, curved, black", + "belly: lighter gray feathers", + "breast: smoky gray plumage", + "crown: slate-gray with a narrow black stripe", + "forehead: slate-gray", + "eyes: small, black, surrounded by a narrow white eyering", + "legs: dark, slender", + "wings: smoky gray with black edges", + "nape: slate-gray", + "tail: dark gray with rounded feathers", + "throat: smoky gray with a white patch at the base" + ], + "cinereous finch": [ + "back: blend of gray and brown feathers", + "beak: small and conical, pale pinkish", + "belly: light gray underbelly", + "breast: subtly streaked, pale gray", + "crown: medium gray with silvery tinge", + "forehead: smooth and slightly silvered", + "eyes: beady, black, and alert", + "legs: slender and pinkish-gray", + "wings: gray-brown with pale edges", + "nape: warm, brownish-gray", + "tail: long and narrow, grayer at base, darker at tip", + "throat: pale silver-gray with thin streaks" + ], + "cinereous ground tyrant": [ + "back: grayish-brown plumage", + "beak: short, black, and hooked", + "belly: light grayish-white", + "breast: soft, pale gray", + "crown: dark grayish-brown", + "forehead: smooth, light gray", + "eyes: small, black, and round", + "legs: long, slender, and pale", + "wings: short, rounded, with grayish-brown feathers", + "nape: grayish-brown with soft feathers", + "tail: short, fan-shaped, with dark gray feathers", + "throat: pale gray and unmarked" + ], + "cinereous harrier": [ + "back: pale gray with slightly darker streaks", + "beak: sharp, hooked, and dark in color", + "belly: white with fine gray barring", + "breast: pale gray with darker streaks", + "crown: dark gray or black", + "forehead: slightly paler gray", + "eyes: yellow with a piercing gaze", + "legs: long and slender, yellowish in color", + "wings: long and pointed, grayish-brown with black tips", + "nape: light gray with a darker line", + "tail: long and narrow, gray with dark bands and a white tip", + "throat: white, bordered by a dark gray streak" + ], + "cinereous mourner": [ + "back: smooth gray feathers", + "beak: short, sharp, black", + "belly: lighter gray feathers", + "breast: soft gray plumage", + "crown: gray feathers, rounded", + "forehead: pale gray feathers", + "eyes: small, black, alert", + "legs: long, thin, grayish", + "wings: medium length, gray feathers", + "nape: smooth gray, hinted curve", + "tail: long, narrow gray feathers", + "throat: light gray, soft plumage" + ], + "cinereous owl": [ + "back: dark brown feathers with white speckles", + "beak: sharp, hooked, and black", + "belly: lighter brown feathers with faint white markings", + "breast: rusty-brown with white streaks", + "crown: densely covered with dark brown and white speckled feathers", + "forehead: dark brown with lighter speckles above the eyes", + "eyes: large, yellow, and forward-facing", + "legs: feathered with dark brown and white-speckled plumage", + "wings: dark brown feathers with white speckles and lighter underside", + "nape: dark brown feathers with white spots, connecting the crown to the back", + "tail: long, dark brown feathers with white bars and markings", + "throat: rusty brown with white streaks, blending to the belly color" + ], + "cinereous tinamou": [ + "back: blue-grey feathers with subtle highlights", + "beak: short, curved, and dark grey", + "belly: light grey with faint patterning", + "breast: pale grey with minimal markings", + "crown: dark grey with slight sheen", + "forehead: bluish-grey, blending with crown", + "eyes: small, dark, and alert", + "legs: strong, feathered, and grey", + "wings: rounded, dusky blue-grey", + "nape: slightly lighter grey than crown", + "tail: short, black-tipped, and blue-grey", + "throat: pale grey, blending with breast" + ], + "cinereous tit": [ + "back: grayish-blue with white streaks", + "beak: short, stout, and black", + "belly: white with black streaks", + "breast: white with black central band", + "crown: gray-blue with a black cap", + "forehead: black and white fringe pattern", + "eyes: large, round, black with white outer ring", + "legs: bluish-gray with sharp claws", + "wings: blue-gray with white-bordered feathers", + "nape: grayish-blue with black stripe", + "tail: long, blue-gray with white outer feathers", + "throat: white with black markings" + ], + "cinereous tyrant": [ + "back: light grayish with soft feathering", + "beak: sharp, black, slightly curved hook", + "belly: whitish-cream with faint streaks", + "breast: light grayish blending into the belly", + "crown: dark-gray and smooth feathering", + "forehead: light gray with fine feathers", + "eyes: black with narrow, pale eyering", + "legs: slender, dark gray, and long", + "wings: light gray with subtle darker barring", + "nape: lighter gray than the crown, smooth feathers", + "tail: dark gray and slightly forked", + "throat: white or pale gray with fine streaking" + ], + "cinereous vulture": [ + "back: dark grey feathers with slight brownish tinge", + "beak: powerful and hooked, black and grey", + "belly: dark grey feathers, paler than back", + "breast: dark grey feathers, well-rounded", + "crown: black feathers, slightly raised", + "forehead: black and scaly, almost featherless", + "eyes: brown with dark, piercing gaze", + "legs: strong, featherless, with grey-black scaly skin", + "wings: broad and long, dark grey with paler edges", + "nape: grey-black feathers with a mane-like appearance", + "tail: grey feathers, broad and slightly wedge-shaped", + "throat: featherless, with wrinkled grey-black skin" + ], + "cinereous warbling finch": [ + "back: compact and grayish", + "beak: small and conical", + "belly: light grey with faint streaks", + "breast: soft grey with delicate streaks", + "crown: pale ashy grey", + "forehead: smooth ashy grey", + "eyes: round and black", + "legs: light pinkish-grey", + "wings: ashy grey with subtle markings", + "nape: uniform grey with slight streaks", + "tail: medium-length, forked and grey", + "throat: clean white-grey" + ], + "cinereous breasted spinetail": [ + "back: grayish-brown with subtle streaks", + "beak: slender and slightly curved", + "belly: pale grayish-white", + "breast: cinereous with fine streaks", + "crown: brown with faint streaks", + "forehead: smooth, grayish-brown", + "eyes: small, dark, and round", + "legs: pale orange with long, thin toes", + "wings: brown with faint barring", + "nape: grayish-brown, blending with crown", + "tail: long and narrow, dark brown", + "throat: pale gray with small dark streaks" + ], + "cinnabar boobook": [ + "back: reddish-brown with white markings", + "beak: dark gray and hooked shape", + "belly: white with reddish-brown streaks", + "breast: white with reddish-brown bars", + "crown: reddish-brown with white speckles", + "forehead: pale with reddish-brown markings", + "eyes: large, dark, and forward-facing", + "legs: long, grayish-yellow, and slender", + "wings: reddish-brown with conspicuous white bars", + "nape: reddish-brown with white speckles", + "tail: long, banded with reddish-brown and white", + "throat: white mixed with reddish-brown marks" + ], + "cinnamon becard": [ + "back: cinnamon-brown feathers covering the upper body", + "beak: short, stout, and black, slightly hooked at the tip", + "belly: pale white with light cinnamon-brown markings", + "breast: white with light cinnamon-brown touches", + "crown: dark cinnamon-brown with a slight crest", + "forehead: lighter cinnamon-brown above the beak", + "eyes: dark and round, surrounded by a cinnamon-brown ring", + "legs: thin, dark-colored, with sharp claws", + "wings: long, broad, and cinnamon-brown, with lighter wingbars", + "nape: cinnamon-brown, connecting the crown and back", + "tail: fairly long, cinnamon-brown with white-tipped outer feathers", + "throat: white, contrasting with the darker head color" + ], + "cinnamon bittern": [ + "back: cinnamon-brown shades with striations", + "beak: long, sharp, and yellowish", + "belly: pale with brown spots", + "breast: white, buff, and mottled", + "crown: dark brown or black with a central stripe", + "forehead: light buff with dark markings", + "eyes: bright, round, with yellowish iris", + "legs: greenish-yellow, long and slender", + "wings: cinnamon-brown with dark flight feathers", + "nape: cinnamon with a streaked appearance", + "tail: dark brown with discrete barring", + "throat: white, buff, or cream with some dark streaks" + ], + "cinnamon bracken warbler": [ + "back: golden-brown with narrow, dark brown streaks", + "beak: thin, pointy, and black", + "belly: light cream with faint, brown streaks", + "breast: pale chestnut-brown with dark speckles", + "crown: reddish-brown with fine, dark streaks", + "forehead: cinnamon-brown and unmarked", + "eyes: small, dark, vibrant, and surrounded by a faint white eyering", + "legs: thin, greyish, and well-adapted for perching", + "wings: warm brown with darker brown bars and white edges", + "nape: rufous-brown with slim, dark brown streaks", + "tail: long, brownish, with subtle white tips on outer feathers", + "throat: pale cream-beige without markings" + ], + "cinnamon ground dove": [ + "back: deep reddish-brown tones", + "beak: short and black", + "belly: creamy white, slightly speckled", + "breast: soft cinnamon-rust shade", + "crown: reddish-brown with gray highlights", + "forehead: muted gray hue", + "eyes: dark with white eye-ring", + "legs: pale pink with dark claws", + "wings: warm cinnamon with dark streaks", + "nape: reddish-brown with gray edges", + "tail: elongated, deep brown with white tips", + "throat: light gray with white accents" + ], + "cinnamon hummingbird": [ + "back: bronze-green feathers", + "beak: long, thin, and slightly curved", + "belly: pale cinnamon hue", + "breast: warm cinnamon-orange", + "crown: iridescent green", + "forehead: glistening green", + "eyes: small, dark, and alert", + "legs: short and thin", + "wings: fast-moving, iridescent green", + "nape: green with bronze undertones", + "tail: slightly notched, iridescent green", + "throat: shimmering greenish gold" + ], + "cinnamon ibon": [ + "back: light cinnamon-brown hue", + "beak: short, conical, black", + "belly: pale cinnamon-brown, fading towards vent", + "breast: rich cinnamon in color", + "crown: light cinnamon-brown with rounded crest", + "forehead: subtle contrast to crown, lighter cinnamon shade", + "eyes: dark brown, surrounded by pale cinnamon feathers", + "legs: slender, dark grey", + "wings: cinnamon-brown with paler fringes on flight feathers", + "nape: light cinnamon-brown, connecting the crown to back", + "tail: medium-length, cinnamon-brown with paler outer feathers", + "throat: lighter shade of cinnamon, distinctive from breast and belly" + ], + "cinnamon manakin tyrant": [ + "back: cinnamon-brown colored feathers", + "beak: short, sharp, black hooked beak", + "belly: pale yellow-white plumage", + "breast: rich cinnamon-orange feathers", + "crown: chestnut-colored crest", + "forehead: smooth and rounded", + "eyes: small, round, dark brown", + "legs: slender, grayish-blue legs", + "wings: cinnamon-brown with faint black markings", + "nape: chestnut-colored transition from head to back", + "tail: long, fan-shaped, cinnamon-brown feathers", + "throat: pale white-yellow plumage" + ], + "cinnamon quail thrush": [ + "back: light brown with faint streaks", + "beak: short and sharp, pale color", + "belly: creamy white with rust-color spots", + "breast: buff-color with cinnamon speckles", + "crown: reddish-brown with pale markings", + "forehead: light brown with fine streaks", + "eyes: dark, surrounded by cream-colored eyering", + "legs: long and slender, grayish-pink", + "wings: brownish-gray with dull white tips on flight feathers", + "nape: lightly streaked with brown and buff", + "tail: long, cinnamon-brown with white outer tips", + "throat: pale buff with fine, dark streaks" + ], + "cinnamon screech owl": [ + "back: russet-colored feathers with dark streaks", + "beak: small, light-colored, hooked", + "belly: pale and streaked with reddish-brown", + "breast: light and dappled with black and brown markings", + "crown: cinnamon-colored top of head, spotted with white", + "forehead: pale with streaks of cinnamon-brown", + "eyes: round, yellow-orange in color", + "legs: feathered, grayish in color", + "wings: reddish-brown with dark bands and white spots", + "nape: cinnamon-colored with white spots", + "tail: banded brown and white, tipped in gray", + "throat: pale with faint reddish-brown streaks" + ], + "cinnamon tanager": [ + "back: vibrant shades of orange, red, and brown", + "beak: short, sturdy, and silver-gray", + "belly: light blue with reddish-brown streaks", + "breast: rich cinnamon-red", + "crown: bright red-orange", + "forehead: striking red-orange", + "eyes: small, dark, with a white circle", + "legs: slim, dark gray", + "wings: deep blue with cinnamon red edges", + "nape: reddish-orange blending into brown", + "tail: long, blue with reddish-brown accents", + "throat: brilliant cinnamon-red" + ], + "cinnamon warbling finch": [ + "back: warm brownish with fine streaks", + "beak: thin, pointed, silver-gray", + "belly: pale cinnamon color, lightly streaked", + "breast: light cinnamon with darker streaks", + "crown: warm brown with streaked pattern", + "forehead: rusty reddish-brown", + "eyes: small, round, black with a white eye-ring", + "legs: slender, pale gray", + "wings: dark brown with cinnamon edges on feathers", + "nape: softly streaked brown", + "tail: long, dark brown with white edges on outer feathers", + "throat: pale cinnamon with subtle streaking" + ], + "cinnamon weaver": [ + "back: light brown with streaks", + "beak: strong, conical-shaped", + "belly: pale yellowish-brown", + "breast: cinnamon-colored feathers", + "crown: golden-brown with black streaks", + "forehead: golden-brown", + "eyes: small, dark and attentive", + "legs: grayish-brown, slender", + "wings: brown with golden-olive edges", + "nape: black and golden-brown streaks", + "tail: long, brown, slightly forked", + "throat: pale yellowish-brown" + ], + "cinnamon woodpecker": [ + "back: reddish-brown with black bars", + "beak: long, sturdy, and black", + "belly: cream-colored with brown spots", + "breast: white with black streaks", + "crown: bright red feathers", + "forehead: red feathers blending into crown", + "eyes: dark and round with black outline", + "legs: strong and grayish-blue", + "wings: dark brown with white spots", + "nape: black and white barring", + "tail: black with white barring", + "throat: white with black streaks" + ], + "cinnamon banded kingfisher": [ + "back: vibrant turquoise-blue feathers", + "beak: long, deep red with black tip", + "belly: soft, creamy white plumage", + "breast: rich cinnamon and white bands", + "crown: striking turquoise-blue crest", + "forehead: bright blue with faint streaks", + "eyes: sharp, dark brown surrounded by faint blue", + "legs: sturdy red-orange with sharp claws", + "wings: stunning blue-green, folded close", + "nape: vivid blue-green with some streaking", + "tail: elongated, iridescent blue-green feathers", + "throat: white merging into cinnamon breastbands" + ], + "cinnamon bellied flowerpiercer": [ + "back: olive-green with brownish tinge", + "beak: short, black, and slightly curved", + "belly: cinnamon-rust color with white streaks", + "breast: grayish-blue with cinnamon-rust edges", + "crown: dull blue with faint violet sheen", + "forehead: bluish-gray", + "eyes: dark brown with thin white eye-ring", + "legs: slender, black and thin", + "wings: blue-gray with darker edges", + "nape: olive-green blending into blue-gray", + "tail: elongated, blue-gray with darker tips", + "throat: bluish-gray with subtle streaks" + ], + "cinnamon bellied ground tyrant": [ + "back: brownish-grey feathers covering upper body", + "beak: short, sharp, and black curved bill", + "belly: cinnamon-colored with light streaks", + "breast: greyish-white feathers with faint streaks", + "crown: dark brown and slightly raised", + "forehead: brownish-grey feathers blending into the crown", + "eyes: small, black, and well-spaced", + "legs: slender, black, and long for ground foraging", + "wings: brownish-grey with darker streaks, great for short flights", + "nape: dark grey feathers transitioning from the crown", + "tail: long and dark brown with lighter edges for contrast", + "throat: pale grey feathers with fine streaking" + ], + "cinnamon bellied imperial pigeon": [ + "back: greyish-brown feathers with a slight sheen", + "beak: short and sturdy, pale yellowish color", + "belly: cinnamon-russet or orange-brown hue", + "breast: lighter cinnamon color merging into belly", + "crown: dark grey head plumage", + "forehead: slightly lighter grey compared to the crown", + "eyes: surrounded by bare red skin, dark black pupils", + "legs: strong, reddish-purple scaled", + "wings: broad and greyish-brown with rounded tips", + "nape: darker grey feathers transitioning from crown to back", + "tail: relatively short, greyish-brown feathers", + "throat: lavender-grey feathers, slightly paler than breast" + ], + "cinnamon bellied saltator": [ + "back: dark olive-green hue", + "beak: strong, conical shape", + "belly: cinnamon-colored feathers", + "breast: grayish with subtle streaks", + "crown: vibrant blue-black coloring", + "forehead: smooth dark contour", + "eyes: small, black beads", + "legs: sturdy with sharp claws", + "wings: olive-green with slight blue tint", + "nape: dark grayish-blue shade", + "tail: broad, dark-blue feathers", + "throat: light gray with fine streaks" + ], + "cinnamon breasted bunting": [ + "back: rich brown with pale streaks", + "beak: short and conical, pale gray", + "belly: creamy white", + "breast: cinnamon-colored with dark speckles", + "crown: dark brown with pale streaks", + "forehead: dark brown to match crown", + "eyes: small and black, encircled with pale feathering", + "legs: slender and pale gray", + "wings: brown with prominent white and dark barring", + "nape: brown with pale streaks, similar to crown", + "tail: dark brown, short and rounded with white outer feathers", + "throat: creamy white with dark speckles" + ], + "cinnamon breasted tody tyrant": [ + "back: rich cinnamon brown", + "beak: short, pointed and black", + "belly: pale cinnamon color", + "breast: vibrant cinnamon hue", + "crown: dark grayish-brown", + "forehead: light gray", + "eyes: small, round, and black", + "legs: slender and black", + "wings: cinnamon brown with faint barring", + "nape: grayish-brown", + "tail: short and dark brown", + "throat: light grayish-white" + ], + "cinnamon browed melidectes": [ + "back: rich brown feathers with a glossy sheen", + "beak: black, slightly curved, and sturdy", + "belly: lighter brown with a touch of cinnamon hue", + "breast: warm cinnamon shade with a smooth texture", + "crown: dark brown fading into a cinnamon shade", + "forehead: cinnamon-toned feathers blending into the crown", + "eyes: bright, piercing black orbs surrounded by a cinnamon band", + "legs: black, sturdy limbs with sharp talons", + "wings: rich brown with lighter cinnamon edges and intricate feather patterns", + "nape: dark brown feathers transitioning into lighter cinnamon shades", + "tail: long, broad brown feathers with cinnamon highlights", + "throat: smooth cinnamon feathering fading into the breast area" + ], + "cinnamon chested bee eater": [ + "back: vibrant green feathers", + "beak: long, curved, and black", + "belly: cinnamon-colored underside", + "breast: rich cinnamon hue", + "crown: bright green with a tinge of blue", + "forehead: greenish-blue plumage", + "eyes: dark and round, surrounded by green feathers", + "legs: black and slender", + "wings: green-blue with black flight feathers", + "nape: green hue blending into the cinnamon breast", + "tail: long, narrow, and green with black tips", + "throat: cinnamon color transitioning into the breast" + ], + "cinnamon chested flycatcher": [ + "back: earthy brown with spotted patterns", + "beak: small, slender, and black", + "belly: light beige with speckled markings", + "breast: vibrant cinnamon shade, prominent feature", + "crown: mottled brown with slight crests", + "forehead: blending of beige and brown tones", + "eyes: round, black, and alert", + "legs: thin, dark gray with small claws", + "wings: brown with intricate light patterns", + "nape: smooth transition from brown crown to cinnamon breast", + "tail: long and tapered, aligned with the back's earthy color", + "throat: continuation of cinnamon breast, fading into beige belly" + ], + "cinnamon crested spadebill": [ + "back: light brown with subtle markings", + "beak: short, thick and black", + "belly: soft white with faint gray mottling", + "breast: pale cinnamon-orange color", + "crown: cinnamon-orange with a crest", + "forehead: bright cinnamon-orange", + "eyes: small and dark brown", + "legs: slender and gray", + "wings: light brown with darker brown bars", + "nape: light brown with faint markings", + "tail: long, slender, and brown with white edges", + "throat: creamy white with mottled gray" + ], + "cinnamon faced tyrannulet": [ + "back: pale brown with slight streaks", + "beak: small, thin, and slightly curved", + "belly: pale yellowish-white", + "breast: pale yellow with slight streaks", + "crown: cinnamon-brown color", + "forehead: pale cinnamon-brown", + "eyes: dark with thin eyering", + "legs: slender, light gray", + "wings: brown with buff-edged feathers", + "nape: cinnamon-brown, blending with crown", + "tail: brown with slightly forked shape", + "throat: pale yellow-white" + ], + "cinnamon headed green pigeon": [ + "back: olive-green plumage", + "beak: short, hooked, pale yellow-gray", + "belly: light yellow-green feathers", + "breast: bluish-gray plumage", + "crown: cinnamon-brown coloration", + "forehead: pale cinnamon-brown hue", + "eyes: dark, rounded, encircled by thin eye-ring", + "legs: strong, purplish-gray with scaly texture", + "wings: dark green with hints of blue and purple", + "nape: cinnamon-brown blending to green", + "tail: elongated, olive-green with blue-violet iridescence", + "throat: pale gray with a bluish tinge" + ], + "cinnamon rumped foliage gleaner": [ + "back: warm brown with cinnamon tint", + "beak: thin, slightly curved, black", + "belly: creamy white with subtle streaks", + "breast: pale brown with soft streaks", + "crown: reddish-brown flowing to nape", + "forehead: light brown with fine streaks", + "eyes: dark, beady with faint eyering", + "legs: slender, pale gray", + "wings: brown with faint bars, cinnamon edges", + "nape: cinnamon tint merging with crown", + "tail: long, brown with cinnamon undertones", + "throat: cream-colored with delicate streaks" + ], + "cinnamon rumped seedeater": [ + "back: cinnamon-brown with fine dark streaks", + "beak: conical and sharp-edged", + "belly: pale grey or beige", + "breast: light cinnamon, sometimes with faint streaks", + "crown: cinnamon-brown with subtle dark streaks", + "forehead: dark with light streaks", + "eyes: black with pale eyering", + "legs: grayish-pink or brownish", + "wings: cinnamon-brown with dark feather edges", + "nape: cinnamon-brown with fine dark streaks", + "tail: dark brown with lighter cinnamon edges", + "throat: pale gray or beige" + ], + "cinnamon rumped trogon": [ + "back: vibrant green feathers", + "beak: small, sharp, yellow-orange", + "belly: pale yellow plumage", + "breast: deep cinnamon-colored patch", + "crown: striking green feathers with slight iridescence", + "forehead: bright green with subtly shimmering scales", + "eyes: large, round, black with a surrounding thin yellow ring", + "legs: short, yellow-orange with sharp claws", + "wings: green upperparts, deep red and white-barred underparts", + "nape: shimmering green, transitioning to the cinnamon rump", + "tail: long, square-tipped, dark green with white barring", + "throat: vibrant yellow, contrasting with the cinnamon breast" + ], + "cinnamon tailed fantail": [ + "back: rich chestnut-brown coloration", + "beak: short, slender black curve", + "belly: light, creamy white hue", + "breast: pale cinnamon shade", + "crown: chestnut-brown feathers", + "forehead: delicate rufous-brown", + "eyes: dark, alert beads", + "legs: slim, sturdy black limbs", + "wings: elongated, chestnut-brown", + "nape: soft, rufous-brown plumage", + "tail: long, cinnamon-fanned feathers", + "throat: creamy white expanse" + ], + "cinnamon tailed sparrow": [ + "back: reddish-brown with streaks of black", + "beak: short and stout, dark gray", + "belly: white with brown side streaks", + "breast: off-white with spotted dark brown streaks", + "crown: rich chestnut-red color", + "forehead: lighter reddish-brown, blending with the crown", + "eyes: small, dark, and beady", + "legs: sturdy, pale pink", + "wings: dark brown with white-edged feathers", + "nape: reddish-brown, continuing from the crown", + "tail: cinnamon-brown with subtle dark bands", + "throat: whitish with a hint of pale brown" + ], + "cinnamon throated hermit": [ + "back: cinnamon-brown feathers", + "beak: long, curved, slender", + "belly: pale cinnamon-grey", + "breast: cinnamon-grey with fine streaks", + "crown: bronze-green with iridescence", + "forehead: bright cinnamon color", + "eyes: dark, round, and expressive", + "legs: thin, strong, and light grey", + "wings: bronze-green with iridescent sheen", + "nape: cinnamon and greenish-brown tones", + "tail: elongated, white-tipped central feathers", + "throat: bright cinnamon hue" + ], + "cinnamon throated woodcreeper": [ + "back: reddish-brown feathers with fine streaks", + "beak: long, slender, and curved", + "belly: pale cinnamon with fine streaks", + "breast: warm cinnamon color with darker streaks", + "crown: reddish-brown with fine streaks", + "forehead: slightly paler than crown with fine streaks", + "eyes: dark and beady, surrounded by pale eye-ring", + "legs: strong and grey with curved claws", + "wings: reddish-brown with fine band patterns", + "nape: slightly paler than back with fine streaks", + "tail: long and tapered, with reddish-brown feathers", + "throat: pale cinnamon with faint streaks" + ], + "cinnamon vented piha": [ + "back: reddish-brown feathers", + "beak: short, hooked, black", + "belly: creamy white with cinnamon streaks", + "breast: pale cinnamon color", + "crown: reddish-brown feathers", + "forehead: light reddish-brown", + "eyes: small, dark", + "legs: slender, gray", + "wings: reddish-brown with darker flight feathers", + "nape: reddish-brown", + "tail: long, reddish-brown, with lighter tips", + "throat: pale cinnamon color" + ], + "cipo canastero": [ + "back: pale brown with subtle streaks", + "beak: long, slender, and slightly curved", + "belly: creamy white, lightly striped", + "breast: buff or light brown with faint streaks", + "crown: grayish-brown with faint streaks", + "forehead: beige with fine dark streaks", + "eyes: dark brown, surrounded by pale feathers", + "legs: strong, grayish-brown", + "wings: pale brown with darker tips and bars", + "nape: buff or light brown with thin stripes", + "tail: long, beige with brown bars", + "throat: white or light beige, unmarked" + ], + "cirl bunting": [ + "back: olive-green with brown streaks", + "beak: stout, conical, and yellowish", + "belly: pale and lightly streaked", + "breast: bright yellow with rusty-red band", + "crown: chestnut-brown with fine streaks", + "forehead: pale yellow", + "eyes: dark with pale eye-ring", + "legs: sturdy, pinkish-brown", + "wings: brown with pale fringes", + "nape: greenish-brown with streaks", + "tail: brown with white outer feathers", + "throat: pale yellow" + ], + "citreoline trogon": [ + "back: vibrant olive-green", + "beak: broad and yellowish-orange", + "belly: pale yellow with grayish coloration", + "breast: deep gray with subtle olive tones", + "crown: glossy olive-green", + "forehead: smooth olive-green", + "eyes: dark, round, with yellow eye-rings", + "legs: short, stout, and bluish-gray", + "wings: boldly barred, black and white", + "nape: striking olive-green", + "tail: long, squared with black and white bands", + "throat: grayish-white with streaks" + ], + "citril finch": [ + "back: olive-yellow feathers", + "beak: short, sharp, conical", + "belly: pale yellow-white", + "breast: bright yellow", + "crown: greenish-yellow", + "forehead: greenish-yellow", + "eyes: small, dark", + "legs: strong, gray", + "wings: olive-green with black edges", + "nape: greenish-yellow", + "tail: forked, black and olive-green", + "throat: bright yellow" + ], + "citrine canary flycatcher": [ + "back: vibrant yellow-green shades", + "beak: sharp, slender, slightly-curved", + "belly: bright yellow hue", + "breast: soft yellow feathers", + "crown: bold olive-yellow crest", + "forehead: striking yellow plumage", + "eyes: small, round, dark", + "legs: thin, grayish-brown", + "wings: vivid yellow with grayish-black edges", + "nape: olive-yellow, smoothly connected to back", + "tail: elongated, grayish-black with yellow highlights", + "throat: vibrant yellow feathers" + ], + "citrine wagtail": [ + "back: olive-green with black streaks", + "beak: slender, dark gray", + "belly: pale yellow", + "breast: vibrant yellow", + "crown: dark gray, slightly streaked", + "forehead: bright yellow with gray", + "eyes: dark, small, with faint white ring", + "legs: long, dark-gray", + "wings: blackish-brown with white edges", + "nape: gray with greenish tint", + "tail: dark gray with white outer feathers", + "throat: striking yellow" + ], + "citrine warbler": [ + "back: vibrant yellow-green plumage", + "beak: sharp, slender, and black", + "belly: bright yellow with subtle streaks", + "breast: vivid yellow with dark streaks", + "crown: deep yellow with black streaks", + "forehead: bright yellow and unmarked", + "eyes: black with white eye-ring", + "legs: long and dark gray", + "wings: black with yellow-green edges", + "nape: yellowish-green with dark markings", + "tail: black with white spots and edges", + "throat: striking yellow with fine streaks" + ], + "citron bellied attila": [ + "back: vibrant olive-green color", + "beak: dark grey, strong and slightly hooked", + "belly: bright yellowish-citron hue", + "breast: pale olive-green shade", + "crown: dark olive-green with faint streaks", + "forehead: olive-green hue blending into yellow", + "eyes: black with white eye-ring", + "legs: light grey, sturdy and slightly feathered", + "wings: olive-green with darker primary feathers", + "nape: olive-green with lighter citron highlights", + "tail: dark olive-green, fan-shaped and elongated", + "throat: pale citron-yellow, blending into breast area" + ], + "citron headed yellow finch": [ + "back: vibrant green feathers", + "beak: small, conical, and pinkish", + "belly: soft, pale yellow plumage", + "breast: bright yellow feathers", + "crown: citron-yellow crest", + "forehead: prominent citron-yellow patch", + "eyes: dark, beady, and alert", + "legs: pinkish-gray and slender", + "wings: greenish feathers with hints of yellow", + "nape: greenish-yellow plumage", + "tail: long, greenish-yellow feathers", + "throat: bright yellow plumage" + ], + "clamorous reed warbler": [ + "back: light brown with streaks of darker brown", + "beak: long, slender, and pointed; light orange", + "belly: pale white with light brown highlights", + "breast: light brown with streaks of darker brown", + "crown: medium brown with streaks of darker shades", + "forehead: pale brown merging with the crown", + "eyes: small, black, and shiny", + "legs: sturdy, orange-brown, and clawed", + "wings: mixture of light and dark brown feathers", + "nape: medium brown with darker streaks", + "tail: long, thin feathers of varying brown shades", + "throat: pale brown with lighter highlights" + ], + "clapperton spurfowl": [ + "back: dark brown feathers with white speckles", + "beak: short, sharp, and light gray", + "belly: light brown with black markings", + "breast: reddish-brown speckled with white spots", + "crown: chestnut-colored feathers", + "forehead: reddish-brown with thin white lines", + "eyes: small, dark, and bright", + "legs: long and grayish-blue with spurs", + "wings: dark brown with white mottling", + "nape: chestnut-brown with white speckles", + "tail: long, dark brown with white-tipped feathers", + "throat: white bordered by black stripes" + ], + "claret breasted fruit dove": [ + "back: olive-green with a slight gloss", + "beak: short, curved, dull yellow", + "belly: deep claret red, fading into orange", + "breast: vibrant claret red, blending into belly", + "crown: purple-blue with slight iridescence", + "forehead: bright purple-blue, fading into crown", + "eyes: small, black, surrounded by pale-blue eyering", + "legs: short, sturdy, dull yellow", + "wings: olive-green, with purple-blue highlights on secondary feathers", + "nape: glossy olive-green, transitioning to purple-blue on crown", + "tail: squared-off, olive-green mixed with shades of pale yellow and gray", + "throat: pale yellow, blending into claret red breast" + ], + "clarion wren": [ + "back: olive-brown with black streaks", + "beak: long, slim, and curved", + "belly: pale creamy-white with buff tones", + "breast: light rufous-orange with black spots", + "crown: rufous-brown with dark streaks", + "forehead: rufous with a hint of black streaks", + "eyes: large, dark, and expressive", + "legs: long, slender, and grey", + "wings: olive-brown with black barring", + "nape: rufous-brown with black streaks", + "tail: long and rufous with black barring", + "throat: white with fine black streaks" + ], + "clarke weaver": [ + "back: olive-green feathers covering the dorsal side", + "beak: sharp, pointed, and silver-gray", + "belly: pale yellow, soft feathered underbody", + "breast: bright yellow plumage on the chest area", + "crown: yellow feathers with streaks of black or gray on top of the head", + "forehead: vibrant yellow feathers above the eyes", + "eyes: small, round, and dark in color", + "legs: thin, grayish-brown with sharp claws", + "wings: olive-green with white bars and patches", + "nape: olive-green feathers transitioning to yellow at the back of the neck", + "tail: long, rounded, and olive-green with white outer feathers", + "throat: bright yellow feathers extending from the lower beak to the breast" + ], + "claudia leaf warbler": [ + "back: olive-green, slightly darker than wings", + "beak: thin, pointy, blackish with a lighter base", + "belly: white, with some mottled olive-gray markings", + "breast: pale yellowish-white, with hints of olive-gray on the sides", + "crown: bright olive-green, well-defined against the forehead's pale stripe", + "forehead: white to pale yellow, forming a distinct supercilium", + "eyes: dark brown, encircled by a thin, broken white eye-ring", + "legs: pinkish-gray, slender, with well-defined scaly texture", + "wings: olive-green, with distinct primary and secondary feathers", + "nape: olive-green, same color as the back and crown", + "tail: dark olive-brown, with clean, pointed feathers and broad white tips on the outer feathers", + "throat: pale yellow-white, blending into the bird's breast color" + ], + "clay colored thrush": [ + "back: olive-brown plumage", + "beak: straight and yellowish-brown", + "belly: creamy-white with faint brown spots", + "breast: plain buff-gray", + "crown: smooth, olive-brown", + "forehead: slightly paler olive-brown", + "eyes: round and dark brown with pale eye-ring", + "legs: long and pale pinkish-brown", + "wings: olive-brown with distinct feather edges", + "nape: uniform olive-brown", + "tail: long and slightly reddish-brown", + "throat: light buff-gray with minimal markings" + ], + "clicking shrike babbler": [ + "back: olive-green feathers with faint streak patterns", + "beak: strong and slightly curved, dark gray", + "belly: pale beige, slightly striped", + "breast: light rusty-orange hue with subtle streaks", + "crown: grayish-olive with buff streaking", + "forehead: olive-gray with a slight browner shade", + "eyes: small, rounded, dark brown", + "legs: slender, grayish-brown", + "wings: olive-green with white edges and slight barring", + "nape: olive-green with faint streaking", + "tail: olive-green, long with white-tipped feathers", + "throat: off-white or pale beige, unmarked" + ], + "cliff flycatcher": [ + "back: vibrant greenish-olive feathers", + "beak: short, strong and black", + "belly: pale yellow with some light stripes", + "breast: yellowish-orange with fuzzy streaks", + "crown: dark olive-green with a slight streak pattern", + "forehead: smooth olive-green feathers", + "eyes: dark brown, round and beady", + "legs: short and sturdy, dark gray", + "wings: brownish-green with light wing bars", + "nape: rich olive-green with subtle stripes", + "tail: long, dark brown with a slight fork", + "throat: bright yellow with faint streaks" + ], + "cloud cisticola": [ + "back: tawny brown with fine streaks", + "beak: thin, pointed, blackish-brown", + "belly: pale, tawny-white with soft streaks", + "breast: tawny, white, streaked with brown", + "crown: golden brown finely streaked with black", + "forehead: buff color with delicate streaks", + "eyes: dark brown with amber-white eye-ring", + "legs: slender, long, pale pinkish-brown", + "wings: tawny with dark brown bars and white edges", + "nape: tawny brown, finely streaked with black", + "tail: dark brown, white-tipped, with outer feathers edged in pale buff", + "throat: white, unmarked" + ], + "cloud forest pygmy owl": [ + "back: vibrant greenish-brown feathers for camouflage", + "beak: small, sharp, and black for capturing prey", + "belly: pale creamy-white with brown stripes", + "breast: light brown with faint white barring", + "crown: dark brown with lighter speckles", + "forehead: smooth feathers in shades of brown", + "eyes: large, yellow, and expressive for night vision", + "legs: strong, feathered, with sharp talons for perching and hunting", + "wings: short, rounded, and capable of silent flight", + "nape: dark brown with lighter brown spots", + "tail: short, with greenish-brown and white-banded feathers", + "throat: pale white with faint brown markings" + ], + "cloud forest screech owl": [ + "back: mottled brown and black feathers", + "beak: small, sharp, and hooked", + "belly: light, creamy feathers with brown streaks", + "breast: white with brown horizontal markings", + "crown: round, rusty brown with black streaks", + "forehead: light gray with black markings", + "eyes: large, dark, and expressive", + "legs: feathered with powerful talons", + "wings: rounded with black and brown barring", + "nape: rusty brown with black streaks", + "tail: long, banded with dark and light shades", + "throat: white with brown markings" + ], + "cloud scraping cisticola": [ + "back: light brown and streaked", + "beak: short and pointed", + "belly: whitish with some brown spots", + "breast: pale brown with streaks", + "crown: rufous with dark streaks", + "forehead: light brown with streaks", + "eyes: small and dark", + "legs: thin and pale", + "wings: rounded with dark brown and buff feathers", + "nape: rufous with dark streaks", + "tail: long and narrow, often pointed upwards", + "throat: white with light brown streaks" + ], + "cloven feathered dove": [ + "back: soft gray feathers forming a smooth curve", + "beak: short yet strong, in a light cream color", + "belly: delicate white feathers covering the underside", + "breast: a blend of pinkish-gray feathers in a round shape", + "crown: slight crest of gray feathers atop the head", + "forehead: smooth area with white or light gray feathers", + "eyes: expressive black orbs with a gentle gaze", + "legs: thin, pinkish-gray, ending in scaly feet with sharp claws", + "wings: dual layers of elegant gray feathers, cloven near the tips", + "nape: meeting point of head and back feathers, subtly transitioning in color", + "tail: elongated gray feathers with a slight v-shape at the end", + "throat: white or light gray feathers adorning the neck" + ], + "club winged manakin": [ + "back: vibrant green feathers", + "beak: compact, black, and hooked", + "belly: white to yellowish underside", + "breast: rich orange-red color", + "crown: bright green with iridescent sheen", + "forehead: greenish area above eyes", + "eyes: small, black, bright", + "legs: short and stout with black scales", + "wings: unique club-shaped feathers with structural coloration", + "nape: iridescent green feathers on the back of the neck", + "tail: short, square, and green with tapering feathers", + "throat: orange-red patch below beak" + ], + "coal tit": [ + "back: grayish-green with subtle stripes", + "beak: short, pointed, and black", + "belly: whitish-gray with pale yellow tinge", + "breast: buff-white with black bib", + "crown: black with white streaks on sides", + "forehead: glossy black", + "eyes: round and black with white eyering", + "legs: dark gray and sturdy", + "wings: bluish-gray with white wing bars", + "nape: blue-gray with a lighter shade", + "tail: grayish-blue with a black tip", + "throat: white with a black bib" + ], + "coal crested finch": [ + "back: dark gray, smooth feathers", + "beak: short, pale grayish-blue, conical shape", + "belly: light gray, soft feathers", + "breast: gray transitioning to white, fluffy plumage", + "crown: striking black feathers, erect crest", + "forehead: black feathers, blending with the crest", + "eyes: dark brown, lively gaze", + "legs: short, sturdy, pinkish-gray", + "wings: dark gray, long and sleek feathers", + "nape: black, merging with crest and back feathers", + "tail: gray to black, fan-shaped feathers", + "throat: white contrasting with black crest" + ], + "coastal boubou": [ + "back: dark brownish-grey feathers", + "beak: short, hooked black beak", + "belly: creamy white feathers", + "breast: pale brownish-grey with black spots", + "crown: black or dark brown feathers", + "forehead: black or dark brown feathers", + "eyes: round, with white eye-ring", + "legs: greyish-black, long, and slender", + "wings: dark brownish-grey with white wing-bars", + "nape: dark brownish-grey feathers", + "tail: long, black or dark brown with white tips", + "throat: black, with white crescent-like markings" + ], + "coastal cisticola": [ + "back: brownish with streaks", + "beak: short, pointed, dark-colored", + "belly: pale cream or buff", + "breast: brownish with streaks", + "crown: rufous or reddish-brown", + "forehead: rufous or reddish-brown", + "eyes: dark with a white eye-ring", + "legs: slender, pale-colored", + "wings: brownish with darker markings", + "nape: rufous or reddish-brown", + "tail: relatively short, dark with white tips", + "throat: pale cream or buff" + ], + "coastal miner": [ + "back: dusty brown feathers", + "beak: slender, curved, black", + "belly: off-white with light markings", + "breast: pale gray with soft streaks", + "crown: grayish-brown and crested", + "forehead: slightly lighter gray-brown", + "eyes: black and beady", + "legs: sturdy, grayish-brown", + "wings: long, brownish-gray with white accents", + "nape: subtly streaked gray-brown", + "tail: long, tapering, dark-tipped feathers", + "throat: pale gray with light streaks" + ], + "cobalt rumped parrotlet": [ + "back: vibrant green feathers", + "beak: small, light pink hook-shaped beak", + "belly: light green to yellowish feathers", + "breast: yellowish-green feathers, slightly puffed", + "crown: bright green feathered dome", + "forehead: rich green collection of feathers", + "eyes: dark, round with white eye-ring", + "legs: short, grey with zygodactyl feet", + "wings: greenish-blue primary feathers, green secondaries", + "nape: slightly lighter green feathers", + "tail: cobalt blue and green feathers, medium length", + "throat: soft yellow-green feathered area" + ], + "cobalt winged parakeet": [ + "back: vibrant green feathers", + "beak: small, curved, and black", + "belly: light green with blue shades", + "breast: bright turquoise-blue plumage", + "crown: deep blue and green blend", + "forehead: vivid cobalt-blue", + "eyes: dark, round, and expressive", + "legs: slender grey with zygodactyl toes", + "wings: striking cobalt-blue edged green", + "nape: rich green with blue hues", + "tail: long, green feathers with blue tips", + "throat: soft green turning light blue" + ], + "cobb wren": [ + "back: brownish-grey with light streaks", + "beak: small, thin, and slightly curved", + "belly: creamy white with faint spots", + "breast: light brown with soft speckles", + "crown: warm brown with subtle striping", + "forehead: smooth, pale brown", + "eyes: small, dark, and round", + "legs: thin, delicate, and brown", + "wings: brown with light barring and white spots", + "nape: brown with faint streaks blending into the crown", + "tail: short, brown, and slightly curved", + "throat: white with light beige shading" + ], + "cocha antshrike": [ + "back: dark brownish-grey, with subtle feather streaks", + "beak: short, hooked, black or greyish-black", + "belly: buffy-white, with faint markings", + "breast: reddish-brown, slight feather striations", + "crown: dusty brown, extended crest", + "forehead: dusky brown, with a tonal gradient towards the crown", + "eyes: dark, round, surrounded by a pale, buff-colored eye-ring", + "legs: sturdy, greyish-black", + "wings: brownish-grey, distinct pale wing-bars", + "nape: dusky brown, blending with crown and back", + "tail: long, dark brown, with narrow white bars", + "throat: buffy-white, lightly mottled" + ], + "cochabamba mountain finch": [ + "back: olive-brown with streaks", + "beak: short and stout, silvery-gray", + "belly: grayish-white, fading to white", + "breast: grayish-white with brown streaks", + "crown: olive-brown, slightly streaked", + "forehead: olive-brown, blending with crown", + "eyes: black with white eye-ring", + "legs: sturdy, pinkish-brown", + "wings: olive-brown with faint barring", + "nape: olive-brown with streaks", + "tail: olive-brown with faint bars", + "throat: grayish-white, bordered by brown streaks" + ], + "cock tailed tyrant": [ + "back: slate gray feathers", + "beak: small, pointed, black", + "belly: white and fluffy", + "breast: light gray", + "crown: angular crest with elongated black feathers", + "forehead: white", + "eyes: round, dark, and alert", + "legs: delicate, grayish-blue", + "wings: grayish-brown with white fringes", + "nape: white and smooth", + "tail: long, black, split feathers with white tips", + "throat: white and unblemished" + ], + "cockatiel": [ + "back: grey-feathered spine region", + "beak: curved, grayish-white beak", + "belly: light gray plumage underside", + "breast: pale orange circular patch", + "crown: tufted yellow crest", + "forehead: prominent yellow feathers", + "eyes: round, expressive eyes with white eye-ring", + "legs: gray, scaly limbs", + "wings: long, grey-feathered appendages", + "nape: gray plumage on neck", + "tail: elongated gray feathers", + "throat: grayish-white coloration" + ], + "cockerell fantail": [ + "back: sleek and smooth feathers", + "beak: sharp and strong curve", + "belly: fluffy and rounded", + "breast: full and vibrant plumage", + "crown: prominent crest of feathers", + "forehead: clear and smooth", + "eyes: alert and observant", + "legs: sturdy with sharp claws", + "wings: broad and gracefully curved", + "nape: smooth transition to back feathers", + "tail: extravagant, fan-like spread", + "throat: sleek feathers with distinct markings" + ], + "cocoa thrush": [ + "back: dark brownish-green plumage", + "beak: slim, slightly curved, blackish", + "belly: white with brownish streaks", + "breast: creamy white with rich brown spots", + "crown: dark brownish-green with dense feathers", + "forehead: smooth dark brownish-green", + "eyes: dark brown with white eye-ring", + "legs: slender, grayish-yellow", + "wings: dark brownish-green, rounded edged", + "nape: dark brownish-green with dense feathers", + "tail: dark brownish-green, medium length", + "throat: white with thin brown streaks" + ], + "cocoa woodcreeper": [ + "back: brownish feathers with light streaks", + "beak: long, decurved and dark-colored", + "belly: creamy white with buffy undertones", + "breast: shades of brown with lighter streaks", + "crown: rufous-brown with fine streaks", + "forehead: light brown with some dull streaks", + "eyes: dark and beady, surrounded by lighter feathers", + "legs: strong, grayish-blue with sharp claws", + "wings: brown with darker bars and white streaks", + "nape: rufous-brown with fine streaks", + "tail: long, brown with dark barring and white tips", + "throat: pale with light brown streaks" + ], + "cocoi heron": [ + "back: bluish-grey plumage", + "beak: long, sharp, and yellow", + "belly: white feathers", + "breast: white with gray streaks", + "crown: black cap on head", + "forehead: white with black border", + "eyes: bright yellow with black outline", + "legs: long and yellow", + "wings: large with bluish-grey feathers", + "nape: gray with a white stripe", + "tail: short with bluish-grey feathers", + "throat: white with a black stripe" + ], + "coconut lorikeet": [ + "back: vibrant green feathers", + "beak: strong orange-red beak", + "belly: light green and yellow gradient", + "breast: brilliant blue feathers", + "crown: vivid green with a slight blue sheen", + "forehead: bright green feathers", + "eyes: dark, round with a white eye-ring", + "legs: gray and sturdy", + "wings: green and blue with red underside", + "nape: rich green plumes", + "tail: long, green feathers with yellow tips", + "throat: yellow and green hues" + ], + "cocos cuckoo": [ + "back: dark greyish-brown feathers", + "beak: short, slightly curved, black", + "belly: pale grey with faint barring", + "breast: pale grey, lightly speckled", + "crown: dark grey, slightly raised", + "forehead: lighter grey blending into crown", + "eyes: dark, encircled by thin grey eye-ring", + "legs: sturdy, greyish-black", + "wings: greyish-brown, tapering to black tips", + "nape: darker grey, blending into crown", + "tail: long, tipped with white, black outer feathers", + "throat: pale grey, unmarked" + ], + "cocos finch": [ + "back: smooth, brownish-gray feathers", + "beak: short, sturdy, and conical-shaped", + "belly: pale, buffy-white feathers", + "breast: light grayish-brown plumage", + "crown: dark gray to black rounded feathers", + "forehead: grayish-black feathers blending with crown", + "eyes: small, dark, and shining", + "legs: strong, slender, and brown", + "wings: rounded feathers with brownish-gray coloration", + "nape: grayish-black feathers continuing from crown", + "tail: long, brownish-gray feathers with a slightly forked shape", + "throat: lighter grayish-brown feathers transitioning from breast" + ], + "cocos tyrannulet": [ + "back: olive-green feathering", + "beak: short and sharply-pointed", + "belly: pale yellow with subtle markings", + "breast: off-white with light streaks", + "crown: dark gray and crest-like", + "forehead: light gray with fine white lines", + "eyes: small and black with pale eye-ring", + "legs: slender and dark gray", + "wings: olive-green with faint wing-bars", + "nape: grayish transition from crown to back", + "tail: moderately long and olive-green with white tips", + "throat: plain off-white" + ], + "coiba spinetail": [ + "back: brownish-gray with subtle streaks", + "beak: slender and slightly curved", + "belly: light grayish-brown", + "breast: pale with faint streaks", + "crown: rufous with a spiky crest", + "forehead: whitish with streaks", + "eyes: dark with a pale eyebrow stripe", + "legs: pinkish-gray and strong", + "wings: brownish-gray with indistinct bars", + "nape: reddish-brown with streaks", + "tail: long with dark bands", + "throat: pale and streaked" + ], + "coleto": [ + "back: glossy metallic green", + "beak: short and stout, black", + "belly: deep blue with white patches", + "breast: vibrant blue-violet", + "crown: brilliant purple-blue", + "forehead: bright cobalt blue", + "eyes: large and dark, surrounded by blue-violet feather patches", + "legs: small black with strong grasp", + "wings: iridescent blue-black with hints of green", + "nape: radiant purple-blue", + "tail: black with small hints of metallic green", + "throat: shimmering blue-purple" + ], + "colima pygmy owl": [ + "back: small and brown with light spots", + "beak: short, sharp, and hooked", + "belly: white with brown streaks", + "breast: white with brown speckles", + "crown: rounded, brown with light markings", + "forehead: light-colored between dark eyebrows", + "eyes: large, yellow, and forward-facing", + "legs: short with strong, feathered talons", + "wings: brown, rounded, with light barring", + "nape: brown and lightly spotted", + "tail: short, brown with light barring", + "throat: white with brown markings" + ], + "colima warbler": [ + "back: olive-green feathers", + "beak: thin, pointed, black", + "belly: pale yellowish-white", + "breast: bright yellow", + "crown: orange-yellow with contrasting gray", + "forehead: orange-yellow", + "eyes: dark with thin white eye-ring", + "legs: slender, grayish", + "wings: grayish-olive with white and dark wing-bars", + "nape: grayish-olive", + "tail: grayish-olive with white outer edges", + "throat: bright yellow" + ], + "collared antshrike": [ + "back: gray to brownish-gray feathers", + "beak: short, stout, and slightly hooked", + "belly: off-white to pale-yellow", + "breast: dark gray or black streaks", + "crown: black with a rust-colored crest", + "forehead: black with a slight rust-colored edge", + "eyes: dark brown with a white circle around them", + "legs: thin and grayish", + "wings: black with white streaks and bars", + "nape: black feathers with a rust-colored collar", + "tail: long and black with white tips", + "throat: off-white to pale-yellow" + ], + "collared babbler": [ + "back: olive-brown with subtle streaks", + "beak: short and slightly curved", + "belly: pale grey", + "breast: greyish-white with faint streaks", + "crown: bright chestnut", + "forehead: whitish", + "eyes: dark with pale eyering", + "legs: sturdy and pale pink", + "wings: olive-brown with chestnut-edged feathers", + "nape: chestnut with distinct white collar", + "tail: long with chestnut and olive-brown feathers", + "throat: white with faint streaks" + ], + "collared bush robin": [ + "back: vibrant blue feathers", + "beak: small, sharp, black", + "belly: white underbelly with dark spots", + "breast: blue-grey with orange patch", + "crown: bright blue head", + "forehead: dark blue above beak", + "eyes: round, black, shining", + "legs: slender, dark grey", + "wings: blue-grey with white spots", + "nape: blue merging with head", + "tail: long, white-tipped, blue-grey", + "throat: orange collar dividing head and chest" + ], + "collared crow": [ + "back: dark glossy feathers", + "beak: sturdy and black", + "belly: grayish-white plumage", + "breast: grayish-white feathers", + "crown: black with slight iridescence", + "forehead: black smooth feathers", + "eyes: dark and alert", + "legs: strong and black", + "wings: wide, dark, and glossy", + "nape: black with distinct white collar", + "tail: long and dark, fanned out", + "throat: grayish-white feathers" + ], + "collared falconet": [ + "back: slate black feathers, compact profile", + "beak: sharp and hooked, black, distinctive curve", + "belly: white with black horizontal bars", + "breast: dark slate with white streaks", + "crown: black with a unique crest", + "forehead: white with black spots, steep slope", + "eyes: bright, piercing, yellow-orange", + "legs: strong, yellow, sharp black talons", + "wings: black, narrow, pointed at tips", + "nape: black with white stripe, thick collar", + "tail: black and white bands, long central feathers", + "throat: white with black streaks, distinct border" + ], + "collared finchbill": [ + "back: olive-brown with dark streaks", + "beak: dark grey, thick and conical", + "belly: pale-yellow, diffused streaks", + "breast: yellowish-brown with dark streaks", + "crown: rusty-brown, slightly crested", + "forehead: pale buffy-white", + "eyes: dark brown with faint eyering", + "legs: sturdy pale pinkish-grey", + "wings: olive-brown with white-bordered feathers", + "nape: rusty-brown, streaked", + "tail: dark olive-brown, white tips on outer feathers", + "throat: pale yellowish-brown, faint streaks" + ], + "collared forest falcon": [ + "back: sleek, dark-feathered", + "beak: strong, hooked, black", + "belly: light-grey feathered", + "breast: white and grey-plumage", + "crown: black, well-defined", + "forehead: black, blending with crown", + "eyes: piercing, yellow-orange", + "legs: long, yellow, powerful", + "wings: broad, rounded, dark feathers", + "nape: black and grey, distinctive", + "tail: long, banded grey-black", + "throat: pale white-greyish" + ], + "collared gnatwren": [ + "back: slate-gray feathers", + "beak: short and thin with curved upper mandible", + "belly: whitish-gray with streaks", + "breast: grayish-white with fine black band", + "crown: dark gray with slightly paler streaks", + "forehead: pale gray with slight streaks", + "eyes: black with thin white eyering", + "legs: long and slim, pale flesh-colored", + "wings: slate-gray with white-tipped coverts", + "nape: gray with faint streaks", + "tail: long and dark with pale edges", + "throat: white with fine black collar" + ], + "collared imperial pigeon": [ + "back: dark grey feathers with slight iridescence", + "beak: short and robust, light-colored", + "belly: pale grey with a hint of white", + "breast: soft grey with white undertones", + "crown: dark grey plumage, well-defined", + "forehead: smooth grey connected to the crown", + "eyes: dark with light skin area around it", + "legs: short and stout, reddish color", + "wings: dark grey with wide feathers, some with pale edges", + "nape: curved, grey, and slightly iridescent", + "tail: medium length, dark grey feathers with pale tips", + "throat: pale grey gradually blending into the breast" + ], + "collared inca": [ + "back: iridescent green feathers", + "beak: long, straight, and black", + "belly: velvety black plumage", + "breast: vibrant white patch", + "crown: shimmering green", + "forehead: glossy, dark green", + "eyes: small, dark, and beady", + "legs: slender, grayish-black", + "wings: iridescent green with black edges", + "nape: shining green feathers", + "tail: long, broad, and black", + "throat: striking white patch" + ], + "collared lark": [ + "back: light brown with subtle streaks", + "beak: small and sharp, pale grey", + "belly: mostly off-white with light streaks", + "breast: pale brownish-grey with fine streaks", + "crown: brown with faint streaks and a pale border", + "forehead: lighter brown with faint streaks", + "eyes: small, beady with a thin white eye-ring", + "legs: slender and greyish-pink", + "wings: brown with pale tips, crossed with a white panel", + "nape: light brown, transitioning to the back coloration", + "tail: short with dark central feathers and white outer feathers", + "throat: whitish with fine brown streaks" + ], + "collared laughingthrush": [ + "back: olive brown, patterned feathery exterior", + "beak: slender, black upper mandible and pale lower mandible", + "belly: light orange and white feathery underside", + "breast: soft orange hue with thin, black stripes", + "crown: dark brown feathers with subtle streaking", + "forehead: smooth olive-brown transition to crown", + "eyes: black beady eyes with fine white eye-rings", + "legs: sturdy legs with dark gray scales and sharp claws", + "wings: olive-toned feathery exterior with subtle patterns", + "nape: distinct black crescent-shaped collar on olive-brown background", + "tail: lengthy, dark olive-brown with feathery ends", + "throat: smooth white, merging into the orange breast area" + ], + "collared lory": [ + "back: vibrant green feathers", + "beak: short and curved, bright orange color", + "belly: deep red plumage with contrasting green borders", + "breast: brilliant red and orange feathers", + "crown: bright red plumage fading to green", + "forehead: striking red patches above eyes", + "eyes: dark and alert, surrounded by green feathers", + "legs: sturdy and short, blue-grey in color", + "wings: green primary feathers with hints of red", + "nape: vibrant green feathers with defined collar pattern", + "tail: long, green feathers with golden yellow tips", + "throat: deep red feathers with subtle green accents" + ], + "collared myna": [ + "back: iridescent green-black feathers", + "beak: short, stout, black", + "belly: grayish-white feathers", + "breast: white plumage with hints of green", + "crown: shiny green-black feathers", + "forehead: black and glossy", + "eyes: dark, beady with a slight frown", + "legs: black and sturdy", + "wings: iridescent green-black, slightly rounded", + "nape: black with a green metallic sheen", + "tail: long, black, and green-glossy feathers", + "throat: black with hints of green and distinctive white collar" + ], + "collared owlet": [ + "back: grayish-brown feathers", + "beak: small, sharp, and black", + "belly: white with brown speckles", + "breast: white with grey streaks", + "crown: grey with dark brown spots", + "forehead: white, rounded markings", + "eyes: large and yellow", + "legs: short with strong talons", + "wings: short with dark brown stripes", + "nape: greyish-brown with brown streaks", + "tail: grey and white with dark brown bands", + "throat: white with faint grey streaks" + ], + "collared palm thrush": [ + "back: olive-brown upperparts", + "beak: strong, blackish-grey", + "belly: light cream-white", + "breast: pale grey with a mauve wash", + "crown: olive-brown with a faint crest", + "forehead: light olive-brown", + "eyes: dark brown with a pale eye-ring", + "legs: long and slender, greyish-pink", + "wings: olive-brown with some pale edging", + "nape: olive-brown colors blending with the crown", + "tail: olive-brown, fairly long and slightly rounded", + "throat: pale grey with a distinctive black collar" + ], + "collared petrel": [ + "back: light grey, elongated feathers", + "beak: strong, hooked, blackish-grey", + "belly: white, soft feathers", + "breast: white, slightly puffed", + "crown: soft, grey-white plumage", + "forehead: smooth, white-grey gradient", + "eyes: black, round, with a white ring", + "legs: pinkish, scaly, and strong", + "wings: wide, pointed, grey-black", + "nape: pale grey, curved transition", + "tail: long, black-tipped, white feathers", + "throat: white, slightly crested" + ], + "collared plover": [ + "back: light brown with subtle markings", + "beak: short and straight black beak", + "belly: white, blending into grayish-brown", + "breast: grayish-brown with possible white stripes", + "crown: light brown with white forehead stripe", + "forehead: white stripe extending towards eyes", + "eyes: small, dark, surrounded by white markings", + "legs: slender, pale pinkish-gray", + "wings: light brown with white and black feather patterns", + "nape: light brown with white collar around the neck", + "tail: short, brown with white outer feathers", + "throat: white, merging with belly color" + ], + "collared pratincole": [ + "back: light brown with soft feather patterns", + "beak: short, black, and slightly curved", + "belly: white with subtle markings", + "breast: reddish-brown with a black collar", + "crown: smooth, light brown feathers", + "forehead: white stripe extending through eye line", + "eyes: dark, round, with a piercing gaze", + "legs: reddish-brown and slender", + "wings: long, pointed, featuring light brown and black feathers", + "nape: light brown with a black collar", + "tail: short, with prominent black and white markings", + "throat: white and unmarked" + ], + "collared redstart": [ + "back: bright olive-green", + "beak: slender black", + "belly: bright yellow", + "breast: vibrant yellow", + "crown: black with orange-yellow crest", + "forehead: orange-yellow tufts", + "eyes: black with white eye-ring", + "legs: pale pinkish-gray", + "wings: olive-green with white-tipped black feathers", + "nape: olive-green with black collar", + "tail: black with white edges", + "throat: vibrant yellow" + ], + "collared scops owl": [ + "back: light grayish-brown with black streaks", + "beak: short, sharp, and dark gray", + "belly: pale buff or white with dark streaks", + "breast: pale buff or white with thin black streaks", + "crown: grayish-brown with dark streaks and distinctive \"ear\" tufts", + "forehead: pale gray with black streaks", + "eyes: large, yellow, and forward-facing", + "legs: feathered, dull yellow with well-developed talons", + "wings: grayish-brown with darker markings and white bands", + "nape: pale grayish-brown with darker streaks", + "tail: long, grayish-brown, and heavily barred with white", + "throat: pale buff with dark streaks" + ], + "collared sparrowhawk": [ + "back: blue-gray, speckled with white", + "beak: short, hooked, yellowish", + "belly: pale white, striped with reddish-brown", + "breast: light buff, streaked with reddish-brown", + "crown: blue-gray, with darker streaks", + "forehead: pale white, merging with the crown", + "eyes: bright yellow, piercing gaze", + "legs: long, slender, yellowish", + "wings: rounded, blue-gray, barring on flight feathers", + "nape: blue-gray, blending with crown", + "tail: long, blue-gray, white-tipped, barred with dark bands", + "throat: whitish, with reddish-brown markings" + ], + "collared towhee": [ + "back: olive-green with dark streaks", + "beak: short, black, cone-shaped", + "belly: white with brown streaks", + "breast: reddish-brown with black spots", + "crown: black with a white stripe", + "forehead: black with a white stripe", + "eyes: large, black, and round", + "legs: long, slender, grey", + "wings: black with white tips", + "nape: black with a white stripe", + "tail: long and black with white edges", + "throat: white with black streaks" + ], + "collared treepie": [ + "back: sleek, dark grey feathers", + "beak: sturdy, black, and slightly curved", + "belly: lighter grey, soft-looking feathers", + "breast: pale grey, blending into belly", + "crown: glossy, black plumage", + "forehead: smooth transition from dark crown to eyes", + "eyes: sharp, black, and inquisitive", + "legs: strong, grey, and scaly", + "wings: broader, grey feathers with black tips", + "nape: dark grey collar around the neck", + "tail: long, black, and slightly curved", + "throat: pale grey connecting to breast" + ], + "collared trogon": [ + "back: vibrant green feathers", + "beak: short, stout, ivory-colored", + "belly: striking red-orange plumage", + "breast: bright red band separating green and red areas", + "crown: radiant green with slight bluish tint", + "forehead: greenish-blue transitioning into the crown", + "eyes: large, round, dark brown with light eye-ring", + "legs: slender, grayish, and scaly", + "wings: green with black and white barred patterns", + "nape: emerald green extending from the crown", + "tail: long, iridescent, green upper tail with black and white tips", + "throat: white in males, or pale gray in females, bordered by the red breast" + ], + "collared warbling finch": [ + "back: delicate olive-green plumage", + "beak: sharp and conical-shaped, blackish", + "belly: pale grey color with light streaks", + "breast: greyish-white with faint brown spots", + "crown: greyish blue with faint streaks", + "forehead: smooth and grey-blue", + "eyes: round and dark with a faint white ring", + "legs: sturdy and dark grey", + "wings: olive-green with black edges and white bars", + "nape: olive-green with a faint dark collar", + "tail: blackish with white outer edges and a forked shape", + "throat: whitish-grey with faint brown streaks" + ], + "colombian chachalaca": [ + "back: olive-brown with subtle speckles", + "beak: short, pale gray, and curved", + "belly: light brown with white streaks", + "breast: chestnut hue with fine dark barring", + "crown: rufous-toned and slightly crested", + "forehead: pale gray and flatter", + "eyes: dark, beady with thin gray eye-ring", + "legs: long, slender, and dark gray", + "wings: olive-brown with faint barring", + "nape: pale gray transitioning to rufous", + "tail: long and brown with noticeable white tips", + "throat: pale, grayish-white with minimal markings" + ], + "colombian crake": [ + "back: brownish-grey striped feathers", + "beak: short, slightly curved, pale yellow", + "belly: creamy-white with faint brown speckles", + "breast: light reddish-brown with dark streaks", + "crown: reddish-brown with darker streaks", + "forehead: pale buff color, slightly striped", + "eyes: dark brown surrounded by light eye-ring", + "legs: long, slender, yellow-green", + "wings: reddish-brown with white and black barring", + "nape: light buff with dark stripes", + "tail: short, brownish-grey with faint barring", + "throat: creamy-white with light brown speckles" + ], + "colonist kingfisher": [ + "back: vibrant blue upper body feathers", + "beak: long, sharp, black with coral-colored lower mandible", + "belly: white or cream-colored feathers", + "breast: white or cream-colored feathers", + "crown: bright blue with black streaks", + "forehead: striking blue with black streaks", + "eyes: dark, beady, and attentive", + "legs: short, red-orange, and sturdy", + "wings: iridescent blue or greenish-blue feathers", + "nape: black streaks transitioning from blue crown", + "tail: long, vibrant blue feathers with black bars", + "throat: white or cream-colored feathers" + ], + "colorful puffleg": [ + "back: vibrant green feathers", + "beak: slender, slightly curved black", + "belly: shimmering golden-yellow", + "breast: iridescent purple-blue", + "crown: bright emerald crest", + "forehead: glistening turquoise-blue", + "eyes: dark, piercing gaze", + "legs: short black with scaled feet", + "wings: shiny green with hints of red", + "nape: radiant bronze hue", + "tail: elongated, metallic green-blue feathers", + "throat: glistening amethyst patch" + ], + "comb duck": [ + "back: smooth, slightly curved upper body", + "beak: wide, flat, and rounded tip", + "belly: white, soft, and slightly rounded", + "breast: pale grey, rounded, and feathered", + "crown: black, rounded, and slightly raised", + "forehead: black, smooth, and flat", + "eyes: small, dark, and alert", + "legs: orange, short, and webbed", + "wings: strong, short, and dark-tipped", + "nape: curved, black, and slender", + "tail: short, pointed, and dark-colored", + "throat: white, curved, and feathered" + ], + "comb crested jacana": [ + "back: long, slender, and brownish-black", + "beak: elongated, slender, and slightly curved downward", + "belly: whitish-grey with some black markings", + "breast: light brown with a white patch", + "crown: adorned with a feathered comb crest", + "forehead: light brown with a slight green iridescence", + "eyes: large, round, dark brown in color", + "legs: very long and greenish-grey, with elongated toes", + "wings: broad, brownish-black with light brown markings", + "nape: smooth light brown transitioning to brownish-black towards the back", + "tail: short and rounded with brownish-black feathers", + "throat: white or cream-colored with light brown markings" + ], + "common babbler": [ + "back: brown feathers with faint streaks", + "beak: slightly curved and pale", + "belly: whitish with brownish spots", + "breast: light brown with speckles", + "crown: brown with a faint crest", + "forehead: pale brown and slightly streaked", + "eyes: small, dark, and beady", + "legs: long and slender with pale pinkish-gray coloring", + "wings: brownish with faint barring", + "nape: brown with a faint streak", + "tail: long and brown with light tips", + "throat: whitish with a slight brown tint" + ], + "common bronzewing": [ + "back: earthy brown with subtle hues", + "beak: short, sturdy, and grayish", + "belly: pale gray or buff color", + "breast: pale pinkish shading", + "crown: gray-brown with a lighter edge", + "forehead: whitish gray", + "eyes: bright and alert", + "legs: reddish with strong toes", + "wings: brown with distinctive bronze patches", + "nape: dark gray with slight iridescence", + "tail: broad with white outer feathers", + "throat: light gray with soft texture" + ], + "common bulbul": [ + "back: sleek, brownish-grey feathers", + "beak: short, strong, slightly curved", + "belly: cream-colored with soft plumage", + "breast: light brown with a white center", + "crown: distinct round crest on top of the head", + "forehead: steep curve from beak to crest", + "eyes: round and black with alert expression", + "legs: thin, greyish-brown with strong claws", + "wings: brownish-grey with white trim on tips", + "nape: brownish-grey plumage, connecting the crest to the back", + "tail: long, straight, with white tips and dark to light brown feathers", + "throat: cream-colored with soft, fine feathers" + ], + "common buzzard": [ + "back: brownish-grey plumage with subtle stripes", + "beak: hooked, short, and yellowish with a dark tip", + "belly: light cream or white with brown bars", + "breast: white or buff with brown streaks", + "crown: streaked brown with lighter edges", + "forehead: pale brown blending into the crown", + "eyes: piercing yellow or orange", + "legs: strong, yellow, and featherless", + "wings: broad, brown with white patches and dark tips", + "nape: brown, blending with the crown", + "tail: alternating dark and light bands with a rounded tip", + "throat: white or cream, streaked with brown" + ], + "common cactus finch": [ + "back: dusty brown with dark streaks", + "beak: short, strong, and cone-shaped", + "belly: pale whitish-gray", + "breast: light brown with subtle darker streaks", + "crown: dark grayish-brown", + "forehead: dark grayish-brown, continuous with the crown", + "eyes: black, small, and round", + "legs: strong, scaly, and dark gray", + "wings: grayish-brown with black feather markings", + "nape: dusty brown with faint streaks", + "tail: dark grayish-brown, elongated, and slightly forked", + "throat: pale whitish-gray, blending with the breast" + ], + "common chaffinch": [ + "back: brownish grey with light streaks", + "beak: short and conical, pale gray-blue", + "belly: off-white with a light reddish hue", + "breast: pale pinkish-orange to reddish-brown", + "crown: blueish gray", + "forehead: light blueish gray", + "eyes: dark brown, surrounded by faint grey ring", + "legs: light brown and slender", + "wings: dark brown with white patches", + "nape: brownish grey, matching back", + "tail: dark brown with white outer feathers", + "throat: white to pale pinkish-orange, depending on the individual bird" + ], + "common chiffchaff": [ + "back: olive-green with some pale streaks", + "beak: small, dark, and pointed", + "belly: pale yellow or off-white", + "breast: creamy or yellowish with slight streaking", + "crown: olive-brown with a pale stripe", + "forehead: light olive-brown", + "eyes: dark with a pale eye-ring", + "legs: blackish-gray to dark brown", + "wings: olive-brown with white or pale-yellow wing bars", + "nape: olive-brown and streaked", + "tail: dark brown with a slight fork", + "throat: pale yellow or off-white" + ], + "common chlorospingus": [ + "back: olive-green, streaked with dark shades", + "beak: short and conical, grayish-black", + "belly: pale yellow, with faint streaks", + "breast: yellowish-green, merging into the belly", + "crown: bright yellow, contrasting with other head feathers", + "forehead: olive-green, merging into the crown", + "eyes: dark brown, beady, and alert", + "legs: grayish-blue, sturdy, and slender", + "wings: olive-green with faint yellow edges on feathers", + "nape: olive-green, similar to the back", + "tail: dark green, long and narrow, with a slight notch", + "throat: bright yellow, well-defined and contrasting" + ], + "common cicadabird": [ + "back: sleek, dark blue-gray feathers", + "beak: short, slightly hooked, black", + "belly: light gray or white plumage", + "breast: pale gray with darker streaks", + "crown: dark blue-gray feathers", + "forehead: smooth, dark blue-gray feathers", + "eyes: deep black, surrounded by a thin white eye-ring", + "legs: strong, black, and scaly", + "wings: dark blue-gray, elongated primaries", + "nape: dark blue-gray feathers blending into the back", + "tail: long, dark blue-gray central feathers with white outer feathers", + "throat: white or light gray, sometimes streaked with darker shades" + ], + "common crane": [ + "back: smooth gray feathers", + "beak: long, slender, and pointed", + "belly: light gray coloration", + "breast: slightly lighter gray than back", + "crown: narrow strip of black feathers", + "forehead: red patch of bare skin", + "eyes: round, piercing, and dark", + "legs: long, slender, and black", + "wings: large with gray feathers, black tips", + "nape: black feathers extending to the neck", + "tail: short, fan-shaped, gray feathers", + "throat: white and smooth feathers" + ], + "common cuckoo": [ + "back: grayish-brown with subtle barring", + "beak: slightly curved, pale in color", + "belly: white with dark horizontal streaks", + "breast: white with dark vertical streaks", + "crown: gray with a hint of blue", + "forehead: grayish-blue, smooth", + "eyes: small, dark brown", + "legs: short, yellowish-green", + "wings: long, pointed with grayish-brown bars", + "nape: gray with slight barring", + "tail: elongated, fan-like, with horizontal bars", + "throat: white with minimal streaking" + ], + "common diving petrel": [ + "back: dark grey feathers with sleek texture", + "beak: short, black, and stubby with hooked tip", + "belly: light greyish-white feathers", + "breast: grey feathers with lighter shades towards the center", + "crown: dark grey feathers extending from forehead to nape", + "forehead: smooth dark grey feathers transitioning into the crown", + "eyes: small, round, and black with a white circle surrounding them", + "legs: short and strong with webbed feet", + "wings: dark grey, pointed, and streamlined for efficient diving", + "nape: dark grey feathers connecting the crown to the back", + "tail: short, dark grey, and slightly rounded or squared-off", + "throat: greyish-white feathers transitioning into the belly" + ], + "common flameback": [ + "back: olive-green with black bars", + "beak: pale ivory, tapered and pointed", + "belly: white with dark spots", + "breast: white with black streaks", + "crown: crimson-red with black borders", + "forehead: red in males, black in females", + "eyes: dark brown with white rings", + "legs: grayish-blue with sharp claws", + "wings: olive-green with dark spots", + "nape: red with black markings", + "tail: black with white or buffy bars", + "throat: white with dark streaks" + ], + "common grasshopper warbler": [ + "back: subtly striped, olive-brown plumage", + "beak: thin, short, and slightly curved downward", + "belly: pale buff with faint streaks", + "breast: pale brown with faint markings", + "crown: rufous-tinged with streaks", + "forehead: narrow pale band above eyes", + "eyes: small, black, and alert", + "legs: long and slender, pale pinkish", + "wings: rounded, olive-brown with faint bars", + "nape: olive-brown with subtle streaks", + "tail: short and square, olive-brown", + "throat: pale buff, slightly mottled" + ], + "common green magpie": [ + "back: vibrant green feathers", + "beak: strong and black, slightly hooked", + "belly: bright green, slightly lighter than back", + "breast: brilliant green plumage", + "crown: green feathers atop the head", + "forehead: green, blends with crown", + "eyes: dark with a white eyelid ring", + "legs: long and black, strong for perching", + "wings: bold green with blue wingtips", + "nape: green, seamlessly transitions to back", + "tail: lengthy with blue and green feathers", + "throat: green, merges with breast" + ], + "common greenshank": [ + "back: greyish-green feathers with white markings", + "beak: long, slightly upturned, dark grey", + "belly: white with light streaks", + "breast: greyish-white with light streaks", + "crown: greyish-green with white streaks", + "forehead: greyish-white blending into crown", + "eyes: small, dark, surrounded by a white eye-ring", + "legs: long, slender, grey-green", + "wings: greyish-green with white markings, elongated tips", + "nape: greyish-green with white streaks, blending into back", + "tail: greyish-green with white and black bands", + "throat: white, blending into breast" + ], + "common gull": [ + "back: light gray feathers, smooth texture", + "beak: yellow with red spot, hooked tip", + "belly: white, soft feathers", + "breast: white, rounded shape", + "crown: grayish-white, round top", + "forehead: smooth white feathers, small black eyes", + "eyes: round, dark, and alert", + "legs: yellow-green, webbed feet for swimming", + "wings: light gray with black wingtips, folded at rest", + "nape: light gray, connecting head to body", + "tail: white with black band, triangular shape", + "throat: white feathers, slender neck" + ], + "common hawk cuckoo": [ + "back: grayish-brown with dark streaks", + "beak: black, slightly curved", + "belly: white with black wavy bars", + "breast: pale gray with black streaks", + "crown: grayish-brown with dark streaks", + "forehead: grayish-brown with lighter streaks", + "eyes: dark brown, encircled by yellow", + "legs: yellowish, short, and sturdy", + "wings: grayish-brown with dark barring", + "nape: grayish-brown with dark streaks", + "tail: dark bars with white tips", + "throat: pale gray with dark streaks" + ], + "common hill myna": [ + "back: glossy black with green tinge", + "beak: bright yellow with curved tip", + "belly: deep black with iridescent shine", + "breast: shimmering black feathers", + "crown: sleek and dark with slight crest", + "forehead: glossy black with smooth plumage", + "eyes: dark brown with white eye-ring", + "legs: robust grey with powerful grip", + "wings: iridescent green and black with strong flight feathers", + "nape: shining black with slight crest", + "tail: long, black, and shimmering with green hues", + "throat: lustrous ebony with elongated feathers" + ], + "common jery": [ + "back: olive-green and smooth", + "beak: short and pointed", + "belly: pale yellow and feathery", + "breast: soft yellow with minimal markings", + "crown: greenish with a slight crest", + "forehead: light green and unmarked", + "eyes: small and black", + "legs: slender, with two forward-facing and two rear-facing toes", + "wings: olive-green with a touch of brown near the edges", + "nape: greenish, blending into the back", + "tail: long and dark olive-green", + "throat: yellowish and fluffy" + ], + "common kingfisher": [ + "back: vibrant blue-green feathers", + "beak: long, sharp, and black", + "belly: white or cream-colored plumage", + "breast: vibrant orange feathers", + "crown: bright blue or green with streaks", + "forehead: bright blue or green feathers", + "eyes: small, round, with black pupils", + "legs: short and sturdy with black or grayish-blue color", + "wings: vibrant blue-green, short, and rounded", + "nape: bright blue or green with streaks", + "tail: blue-green and moderately long", + "throat: brilliant orange or white feathers" + ], + "common miner": [ + "back: olive-brown feathers with white streaks", + "beak: strong, conical-shaped, and dark grey", + "belly: pale grey with faint white streaks", + "breast: greyish-white with darker grey streaks", + "crown: olive-brown with white streaks", + "forehead: light grey with white streaks", + "eyes: small, round, and black", + "legs: dark grey with strong, clawed feet", + "wings: olive-brown with white spots and streaks", + "nape: light grey with white streaks", + "tail: long, dark grey with white outer edges", + "throat: pale grey with faint white streaks" + ], + "common myna": [ + "back: olive-brown with black streaks", + "beak: strong, curved, yellowish-orange", + "belly: white with dark brown streaks", + "breast: grayish-brown with black streaks", + "crown: glossy black", + "forehead: glossy black", + "eyes: bright yellow with bare yellow skin patch", + "legs: yellow, strong, and stout", + "wings: dark brown with a white patch", + "nape: glossy black", + "tail: blackish brown with white tips", + "throat: off-white, surrounded by black plumage" + ], + "common newtonia": [ + "back: light brown and streaked", + "beak: small and needle-like", + "belly: pale with brown markings", + "breast: buff-brown with fine streaks", + "crown: plain brown with minimal streaking", + "forehead: narrow and light brown", + "eyes: dark, round, and small", + "legs: slender and grey", + "wings: brown, short, with white-edged feathers", + "nape: brown, unmarked, and slightly darker", + "tail: short and slightly forked with pale tips", + "throat: pale brown with light streaking" + ], + "common nightingale": [ + "back: warm brown with some soft spotting", + "beak: straight, thin, and pointed", + "belly: buffy-white with light speckling", + "breast: pale ochre, slightly streaked", + "crown: reddish-brown, uniform color", + "forehead: russet brown, smooth feathering", + "eyes: small, dark, bordered by faint white ring", + "legs: sturdy, pinkish-brown, with scaled appearance", + "wings: plain brown with rounded feather tips", + "nape: reddish-brown, matching crown color", + "tail: rusty brown, unmarked, and wedge-shaped", + "throat: pale ochre, blending to white towards neck" + ], + "common ostrich": [ + "back: long, flat, and feathered", + "beak: large, flat, and blunt", + "belly: round and feathered", + "breast: broad and muscular", + "crown: small, feathered crest", + "forehead: relatively flat and feathered", + "eyes: large, round and expressive", + "legs: long, thick, and powerful", + "wings: small, vestigial, and feathered", + "nape: elongated and curved neck", + "tail: short, fan-like feathers", + "throat: slender and feathered" + ], + "common paradise kingfisher": [ + "back: vibrant blue-green with dark barring", + "beak: long, black, and sharply pointed", + "belly: white to pale gray", + "breast: white or light blue with black streaks", + "crown: bright turquoise blue", + "forehead: blue or blue-green", + "eyes: dark and round with a yellow or orange ring", + "legs: short, black, and sturdy", + "wings: deep blue with black and white markings", + "nape: turquoise blue with dark barring", + "tail: elongated, iridescent blue with black bands", + "throat: white or light turquoise blue" + ], + "common pauraque": [ + "back: brown, mottled with black and buff coloration", + "beak: short, wide, and dark gray", + "belly: pale grayish-brown with dark bars and spots", + "breast: grayish-brown with dark bars and buff streaks", + "crown: dark brown with buff spots and a broad white stripe", + "forehead: dark brown with faint buff streaks", + "eyes: large, dark, and somewhat forward-facing", + "legs: short, feathered, with black talons", + "wings: long, brown with black and buff markings", + "nape: dark brown with buff spotting and streaks", + "tail: long, brown with black bars and buff tips", + "throat: grayish-white with narrow brown bars" + ], + "common pochard": [ + "back: reddish-brown feathers", + "beak: bluish-grey with black tip", + "belly: light grey to white plumage", + "breast: rich rust-colored feathers", + "crown: dark brown, rounded shape", + "forehead: dark brown, slightly sloping", + "eyes: dark, surrounded by brown feathers", + "legs: greyish-blue with webbed feet", + "wings: brown with white stripe", + "nape: dark brown, connecting to crown", + "tail: short, dark, slightly wedged-shaped", + "throat: white, contrasting with dark head" + ], + "common potoo": [ + "back: brownish-grey with complex patterns", + "beak: wide, short, and hooked", + "belly: mottled grey-brown and black", + "breast: pale brown with black barring", + "crown: black and grey mottled with white spots", + "forehead: black and white mottled", + "eyes: large, yellow with black iris", + "legs: short and grey", + "wings: pointed, grey and brown patterned", + "nape: streaked with black and white", + "tail: long, brown with black barring", + "throat: light grey with white and black speckles" + ], + "common quail": [ + "back: brownish-grey feathers with buff streaks", + "beak: short, stout, and dark-colored", + "belly: pale grey with black and white markings", + "breast: sandy brown with dark spots", + "crown: chestnut-colored with a white stripe", + "forehead: buff-colored with black markings", + "eyes: small and dark on either side of the head", + "legs: short, feathered and strong", + "wings: rounded, brownish-grey with black bars", + "nape: pale grey with white streaks", + "tail: short, with dark bars and buff tips", + "throat: whitish-grey with a dark border" + ], + "common redshank": [ + "back: brownish-grey with white spots", + "beak: long, slender, and orange-tipped", + "belly: white with greyish markings", + "breast: soft greyish-brown with fine streaks", + "crown: brown with white speckles", + "forehead: greyish-brown with white spots", + "eyes: dark with white eyering", + "legs: bright orange-red", + "wings: greyish-brown with white edges", + "nape: white speckled with brown", + "tail: dark grey with white outer feathers", + "throat: white with grey streaks" + ], + "common redstart": [ + "back: reddish-brown with a hint of grey", + "beak: small, thin, and black", + "belly: bright orange fading to white", + "breast: vibrant orange-red", + "crown: slate grey extending to nape", + "forehead: small, slate grey like the crown", + "eyes: round, black, with a white eye-ring", + "legs: thin, long, and black", + "wings: greyish-black with small white patches", + "nape: slate grey, continuous with the crown", + "tail: long, black with bright orange edges", + "throat: vibrant orange-red matching the breast" + ], + "common reed warbler": [ + "back: olive-brown with faint streaks", + "beak: long, slender, and pointed", + "belly: pale cream-colored", + "breast: light buff with brownish streaks", + "crown: dull brown with a slightly darker stripe", + "forehead: pale olive-brown blending into the crown", + "eyes: dark brown with a faint white eye-ring", + "legs: pale pinkish-brown with long toes", + "wings: brownish-grey with pale feather edges", + "nape: olive-brown, similar to the back", + "tail: brownish-grey with a square tip", + "throat: pale buff, fading to cream on the belly" + ], + "common ringed plover": [ + "back: light brown with speckled pattern", + "beak: short, straight, and orange with black tip", + "belly: white and unmarked", + "breast: white with a bold black band", + "crown: brown with a white stripe above the eye", + "forehead: white with a hint of orange", + "eyes: black with a distinctive white eye-ring", + "legs: bright orange and thin", + "wings: light brown with black and white markings", + "nape: brown with a white collar", + "tail: black and white alternating bands", + "throat: white and unmarked" + ], + "common rosefinch": [ + "back: rusty brown feathers", + "beak: stout, conical shape", + "belly: pale pinkish-red hue", + "breast: vibrant rose-red color", + "crown: deep red feathers", + "forehead: bright red plumage", + "eyes: dark, round, and small", + "legs: sturdy, dark grey", + "wings: brown with white wing bars", + "nape: reddish-brown feathers", + "tail: forked shape, brown and white tips", + "throat: rich red plumage" + ], + "common sandpiper": [ + "back: brownish-gray with fine streaks", + "beak: straight, slender, dark-colored", + "belly: white or off-white", + "breast: streaked with gray-brown", + "crown: brownish with faint streaks", + "forehead: pale white or beige", + "eyes: dark with a thin white eyering", + "legs: pale greenish or yellowish", + "wings: brownish-gray with white edges", + "nape: brown with faint streaks", + "tail: dark with white outer feathers", + "throat: white or off-white" + ], + "common scale backed antbird": [ + "back: olive-green color, slight feather scaling", + "beak: short, sharp, black", + "belly: pale gray white", + "breast: grayish, few scale-like patterns", + "crown: black with faint scalloping", + "forehead: black, slightly scaled appearance", + "eyes: dark, surrounded by thin white eyering", + "legs: long, slender, gray", + "wings: olive-green, edged with black scalloped feathers", + "nape: olive-green, black scalloped pattern", + "tail: long, black feathers, white tips", + "throat: white, with faint scale-like markings" + ], + "common scimitarbill": [ + "back: brownish-grey plumage", + "beak: long, curved, black", + "belly: white-grey feathering", + "breast: pale grey plumage", + "crown: brownish-grey feathers", + "forehead: smooth grey-brown", + "eyes: dark, small and round", + "legs: slender and grey", + "wings: brownish-grey, long, pointed", + "nape: grey with brown tinges", + "tail: long, straight, brown-grey feathers", + "throat: pale grey feathering" + ], + "common scoter": [ + "back: black with slight gloss", + "beak: mostly black with yellow knob", + "belly: black and slightly lighter than back", + "breast: black merging with belly", + "crown: rounded, black", + "forehead: sloping with black feathers", + "eyes: small, dark", + "legs: short, dark grey with webbed feet", + "wings: black with white wing patch", + "nape: black, connecting crown to back", + "tail: short, black, slightly upturned", + "throat: black, continuous with breast" + ], + "common shelduck": [ + "back: glossy green-black plumage", + "beak: striking red-orange with a protruding nail-like tip", + "belly: creamy-white feathers", + "breast: chestnut-brown band", + "crown: dark green-black with lighter eye stripe", + "forehead: white feathers blending into the crown", + "eyes: dark brown with white surrounding feathers", + "legs: bright orange-red coloration", + "wings: white patch with iridescent green-black feathers", + "nape: green-black blending into the back feathers", + "tail: short with white feathers and black markings", + "throat: white feathers extending from the beak" + ], + "common snipe": [ + "back: patterns of brown and black feathers", + "beak: long, straight, and slender", + "belly: white with fine streaks", + "breast: pale with heavy brown streaks", + "crown: dark with a central light stripe", + "forehead: white with pale brown streaks", + "eyes: small and dark, surrounded by white", + "legs: grayish-green and relatively short", + "wings: pointed with barred brown and black feathers", + "nape: light brown with dark streaks", + "tail: short with alternating brown and white bars", + "throat: white with light brown streaks" + ], + "common square tailed drongo": [ + "back: sleek, dark feathers", + "beak: strong, slightly hooked", + "belly: svelte, dark plumage", + "breast: dark, lightly feathered", + "crown: smooth, glossy head feathers", + "forehead: unblemished, shining dark feathers", + "eyes: piercing and sharp", + "legs: slender, light-colored", + "wings: elongated, dark feathers with pointed tips", + "nape: shadowy, sleek plumage", + "tail: square-shaped, long dark feathers", + "throat: dark, smooth-feathered" + ], + "common sunbird asity": [ + "back: shimmering green and blue", + "beak: long, curved, and black", + "belly: pale yellow and white", + "breast: vibrant blue-green", + "crown: glossy green with hints of purple", + "forehead: iridescent turquoise", + "eyes: dark brown with a thin white ring", + "legs: black and slender", + "wings: bright green with hints of blue", + "nape: green transitioning to blue", + "tail: long, thin, and blue-green", + "throat: turquoise fading into yellow" + ], + "common swift": [ + "back: sleek, dark plumage", + "beak: sharp, short, black", + "belly: light grayish-white", + "breast: grayish-brown feathers", + "crown: dark, streamlined", + "forehead: dark plumage, sloping", + "eyes: small, dark, beady", + "legs: short, thin, black", + "wings: long, crescent-shaped, powerful", + "nape: dark plumage, continuous with the back", + "tail: forked, black feathers", + "throat: lighter gray below beak" + ], + "common tailorbird": [ + "back: olive-green feathered upper body", + "beak: long, slender, and pointed", + "belly: light grey-white underside", + "breast: greyish-white and slightly puffed", + "crown: olive-green with chestnut-colored patch", + "forehead: small, pale grey-white", + "eyes: round, black, and alert", + "legs: slender, yellowish-grey with long toes", + "wings: olive-green with narrow white fringes", + "nape: greyish-white with slight feather ruffling", + "tail: long, curved, and olive-green feathers", + "throat: pale grey-white, thin feathering" + ], + "common tody flycatcher": [ + "back: olive-green feathers", + "beak: short and broad", + "belly: light yellow plumage", + "breast: pale yellow with faint streaks", + "crown: black with yellow borders", + "forehead: yellow stripe above the beak", + "eyes: small with a white eyering", + "legs: short and gray", + "wings: olive-green with pale wingbars", + "nape: olive green with yellow edges", + "tail: black with white outer feathers", + "throat: pale yellow with fine streaks" + ], + "common waxbill": [ + "back: striking reddish-brown feathers", + "beak: short and sharply pointed, reddish-orange", + "belly: pale buff or cream-colored feathers", + "breast: rosy-pink feathers", + "crown: reddish-brown with fine black barring", + "forehead: black horizontal stripe above the eyes", + "eyes: small, dark, and round with white eye-ring", + "legs: slender and pale pinkish-gray", + "wings: reddish-brown with black markings and white spots", + "nape: reddish-brown with fine black barring", + "tail: long and dark, reddish-brown with black markings", + "throat: pale gray or white with sharp contrast to breast color" + ], + "common wood pigeon": [ + "back: bluish-grey upper body", + "beak: short, white-tipped bill", + "belly: white lower body", + "breast: rosy-pink coloring", + "crown: grey, rounded head", + "forehead: light grey plumage", + "eyes: bright yellow-orange", + "legs: pinkish-red limbs", + "wings: grey-blue with black tips", + "nape: light grey-white collar", + "tail: elongated, dark grey feathers", + "throat: light grey-white patch" + ], + "common woodshrike": [ + "back: slate gray feathers with a slight sheen", + "beak: short, curved black hook", + "belly: off-white with faint gray striations", + "breast: pale gray with a subtle scalloped pattern", + "crown: dark gray with distinct black eye stripe", + "forehead: smooth, light gray", + "eyes: piercing black with thin white eye-ring", + "legs: sturdy, light pinkish-brown", + "wings: black and gray barred pattern with white patches", + "nape: medium gray with a soft transition from crown", + "tail: long, black and white, with a graduated pattern of bands", + "throat: smooth, off-white transitioning into the breast" + ], + "comoro blue pigeon": [ + "back: sleek bluish-grey feathers", + "beak: short and slightly curved with a reddish base", + "belly: soft greyish-blue plumage", + "breast: shiny violet-blue feathers", + "crown: bright blue top of the head", + "forehead: vibrant blue feathers transitioning to duller on the face", + "eyes: dark orbs with a faint blue eye-ring", + "legs: reddish-brown and sturdy", + "wings: wide and rounded, with bluish-grey feathers", + "nape: rich blue feathers at the back of the head", + "tail: fan-shaped with greyish-blue feathers", + "throat: slightly paler blue plumage" + ], + "comoro drongo": [ + "back: dark grayish-black with a metallic sheen", + "beak: thin and pointed, black", + "belly: deep gray, slightly paler than back", + "breast: smooth grayish-black", + "crown: dark gray with a glossy shine", + "forehead: glossy dark gray", + "eyes: piercing brown with a black outlining", + "legs: strong and slender, black", + "wings: dark grayish-black with metallic highlights; extending beyond tail", + "nape: slightly less glossy than crown, dark gray", + "tail: long and narrow, dark grayish-black, forked ends", + "throat: matte gray-black, slightly less pronounced than breast" + ], + "comoro pigeon": [ + "back: pale blue-gray feathers", + "beak: short and stout, grayish-black", + "belly: soft, bluish-gray plumage", + "breast: slightly lighter than the back, with a slight purplish hue", + "crown: blue-gray feathers with a darker shade than the back", + "forehead: bluish-gray with a light sheen", + "eyes: bright, orange-red surrounded by a bare skin patch", + "legs: reddish-purple, medium-length", + "wings: broad, rounded, pale blue-gray feathers", + "nape: slightly darker blue-gray feathers than on the back", + "tail: square-shaped, bluish-gray, and medium-length", + "throat: soft, bluish-gray feathers with a purplish hue" + ], + "comoro scops owl": [ + "back: striped brown and white feathers", + "beak: small, curved, and light-colored", + "belly: creamy white with faint brown speckles", + "breast: white with rusty brown patches", + "crown: brown with distinctive white eyebrows", + "forehead: white with feathered connect to eyebrows", + "eyes: large, yellow-orange, and surrounded by white \"glasses\" markings", + "legs: feathered, and light brown", + "wings: brown with white and rufous barring", + "nape: brown with white speckles and streaks", + "tail: short, brown with white bars", + "throat: white with light brown patches" + ], + "comoro thrush": [ + "back: dark brown feathers covering the upper body", + "beak: strong, slightly curved, and black in color", + "belly: cream, pale white feathers covering the lower body", + "breast: greyish with faint brown streaks", + "crown: dark brown feathers on top of the head", + "forehead: dark brown with slightly lighter feathers", + "eyes: small and black, surrounded by a thin white eye-ring", + "legs: long, slender, and greyish-brown", + "wings: dark brown with black and white patterned flight feathers", + "nape: dark brown feathers on the back of the neck", + "tail: long and dark brown, with black and white tipped feathers", + "throat: pale grey, slight white coloration, and smooth feathers" + ], + "comoro white eye": [ + "back: olive green feathers covering upper body", + "beak: small, slender, and black", + "belly: pale gray-white with subtle yellow tint", + "breast: light gray merging into the belly", + "crown: vibrant yellow with a hint of green", + "forehead: yellow continuing from the crown", + "eyes: large, round, black with white eye-ring", + "legs: grayish-black and slender", + "wings: olive green with darker primary feathers", + "nape: yellow-green transition from crown to back", + "tail: dark green and moderately long with white tips", + "throat: soft gray leading into the breast" + ], + "comoros blue vanga": [ + "back: deep blue feathers", + "beak: short, hooked black beak", + "belly: powdery blue hue", + "breast: vibrant azure plumage", + "crown: sleek dark blue feathers", + "forehead: striking bright blue streak", + "eyes: small black with white ring around", + "legs: dark grayish-blue", + "wings: long, blue with black-tipped feathers", + "nape: rich blue transitioning to a deeper hue", + "tail: elongated blue with black stripes", + "throat: brilliant sky-blue coloring" + ], + "comoros cuckooshrike": [ + "back: olive-green upperparts", + "beak: short, stout, and dark-colored", + "belly: light grayish-white underparts", + "breast: pale gray with slight olive tint", + "crown: olive-green", + "forehead: light olive-green", + "eyes: medium-sized and dark-colored", + "legs: short, grayish-brown", + "wings: olive-green with white wingbars", + "nape: olive-green", + "tail: long and olive-green, with white outer feathers", + "throat: pale gray" + ], + "comoros green pigeon": [ + "back: greenish iridescent plumage", + "beak: short and hook-tipped", + "belly: light green hues", + "breast: vibrant green plumage", + "crown: speckled green and gray feathers", + "forehead: green plumage transitioning to gray", + "eyes: black with a yellow eye-ring", + "legs: strong and reddish-orange", + "wings: green with dark flight feathers", + "nape: greenish-gray feathers", + "tail: long and green with black and white tips", + "throat: light green plumage" + ], + "compact weaver": [ + "back: olive-green plumage", + "beak: slender, pointed beak", + "belly: whitish-gray feathers", + "breast: light yellowish-brown", + "crown: golden-yellow feathers", + "forehead: slightly lighter yellow", + "eyes: beady black eyes", + "legs: thin, grayish legs", + "wings: olive-green with white streaks", + "nape: bright yellow feathers", + "tail: short, squared-off tail", + "throat: pale yellowish-white" + ], + "cone billed tanager": [ + "back: vibrant turquoise-blue feathers", + "beak: short, pointed, and black", + "belly: dark grayish-blue plumage", + "breast: bright blue feathers fading to gray", + "crown: iridescent blue-violet crest", + "forehead: blue-violet plumage accentuating eyes", + "eyes: small, dark, and alert", + "legs: sturdy black legs with sharp claws", + "wings: shimmering blue-green with black edges", + "nape: blue-violet plumage, gracefully curved", + "tail: long, black, and elegant with blue-green tips", + "throat: intense blue transitioning to gray near belly" + ], + "congo martin": [ + "back: vibrant blue feathers", + "beak: pointed and black", + "belly: light blue-grey plumage", + "breast: bright blue feathers", + "crown: deep blue with a slight crest", + "forehead: vibrant blue feathers", + "eyes: small and black", + "legs: black and thin", + "wings: long and blue with black tips", + "nape: striking blue feathers", + "tail: blue with elongated, forked feathers", + "throat: blue-grey plumage" + ], + "congo moor chat": [ + "back: dark brown or black, speckled with white", + "beak: short and thick, black in color", + "belly: light gray or off-white", + "breast: black with hints of white speckles", + "crown: dark brown or black with white speckles", + "forehead: black with white speckles", + "eyes: small, round, and black", + "legs: sturdy and black, with sharp claws", + "wings: dark brown or black, with white speckles", + "nape: dark brown or black, with white speckles", + "tail: long and pointy, black with white speckles", + "throat: off-white or light gray" + ], + "congo peacock": [ + "back: vibrant blue-green plumage with iridescent sheen", + "beak: short and stout, pale grayish-white", + "belly: dark bronze-green feathers with a metallic shine", + "breast: deep blue plumage with glossy finish", + "crown: rounded with dark blue feathers", + "forehead: prominent with metallic blue-green feathers", + "eyes: dark brown with a bright red eye-ring", + "legs: strong and gray, with sharp claws", + "wings: blue-green with gold and brown accents, displaying eye-like patterns", + "nape: shimmering green-blue plumage", + "tail: long and decorative, with blue-green and bronzed hues", + "throat: shining deep blue, complementing breast and belly" + ], + "congo serpent eagle": [ + "back: dark brown feathers with white edges", + "beak: strong, hooked black beak", + "belly: cream-colored with brown spots", + "breast: white with brown streaks", + "crown: mottled brown and white feathers", + "forehead: white feathers with light brown edges", + "eyes: bright yellow with black pupils", + "legs: scaled, yellowish-gray with powerful talons", + "wings: brown with white mottling and significant wingspan", + "nape: feathers blending from dark brown to white", + "tail: dark brown feathers with white bands", + "throat: cream-colored with light brown spots" + ], + "congo sunbird": [ + "back: iridescent green, shimmering in sunlight", + "beak: long, slender and curved for nectar-feeding", + "belly: bright yellow, vibrant contrast with green", + "breast: shimmery green, eye-catching display", + "crown: iridescent blue-green, visually stunning", + "forehead: bright green, distinctive feature", + "eyes: small, round, essential for spotting flowers", + "legs: thin, agile for perching on branches", + "wings: deep green, fast and agile in flight", + "nape: radiant blue-green, visually pleasing transition", + "tail: long, streamer-like, intricate patterns", + "throat: metallic green, vital for species identification" + ], + "cook islands fruit dove": [ + "back: bright green with bluish tinge", + "beak: short and stout, dark gray", + "belly: pale yellow-green, lightening towards the vent", + "breast: vibrant orange, fading into yellow-green", + "crown: vivid green, lightly streaked with blue", + "forehead: brilliant emerald green", + "eyes: small, dark brown, surrounded by faint yellow ring", + "legs: short, strong, and gray", + "wings: bright green, blue-tinged flight feathers, white stripe", + "nape: green, with slight yellowish hue", + "tail: elongated, dark green with blue outer feathers", + "throat: soft yellow-green, transitioning to orange breast" + ], + "cook petrel": [ + "back: sleek, grayish-blue feathers", + "beak: sturdy, sharp, and black", + "belly: soft, white feathers", + "breast: white feathers with a grayish-blue touch", + "crown: smooth, grayish-blue plumage", + "forehead: white feathers transitioning to grayish-blue", + "eyes: small, dark, and alert", + "legs: strong, scaly, and webbed", + "wings: long, pointed, with grayish-blue and black markings", + "nape: smooth, grayish-blue feathers", + "tail: short, fan-shaped, with dark feathers", + "throat: white feathers with a clean division from the grayish-blue breast" + ], + "cook swift": [ + "back: sleek, elongated feathers", + "beak: short, sharp, pointed", + "belly: soft, light-colored plumage", + "breast: rounded, beige-colored feathers", + "crown: smooth, dark feathers on top of head", + "forehead: slightly raised and well-defined", + "eyes: small, dark, alert gaze", + "legs: long, thin, strong limbs", + "wings: long, narrow, curved for swift flight", + "nape: transition area between head and back feathers", + "tail: forked, fan-shaped for maneuverability", + "throat: pale, smooth feathers below beak" + ], + "coopmans elaenia": [ + "back: light olive-green feathers", + "beak: small, grayish-brown", + "belly: pale yellowish-white", + "breast: light grayish-olive", + "crown: dark gray with subtle crest", + "forehead: slightly paler gray", + "eyes: black with white eye-ring", + "legs: thin, dark gray", + "wings: olive-green with some grayish-brown and white edgings", + "nape: light olive-gray", + "tail: grayish-brown with lighter edges", + "throat: pale gray" + ], + "copper pheasant": [ + "back: vibrant earthy tones with intricate patterns", + "beak: long, sharp and slightly curved", + "belly: golden-brown feathers with black barring", + "breast: metallic copper with iridescent sheen", + "crown: reddish-brown feathers, sleek appearance", + "forehead: rich copper hue, slightly raised feathers", + "eyes: dark with intelligent gleam, surrounded by bare red skin", + "legs: strong, sturdy with grey-brown scales", + "wings: elongated, deep copper and black feathers with a distinctive barring pattern", + "nape: subtly transition from crown to back, reddish-brown feathers", + "tail: long, luxurious feathers with alternating copper, brown, and black bands", + "throat: lighter copper hue, smooth and unblemished appearance" + ], + "copper seedeater": [ + "back: greenish-olive feathers", + "beak: sharp, pointed, grayish", + "belly: pale buff-yellow feathers", + "breast: subtly streaked, yellowish", + "crown: greenish-olive with a copper tint", + "forehead: coppery red patch", + "eyes: dark, beady eyes", + "legs: grayish-brown and slender", + "wings: olive-green with black streaks", + "nape: greenish-olive coloration", + "tail: dark, pointed feathers with buff edges", + "throat: pale yellow, blending into breast" + ], + "copper sunbird": [ + "back: vibrant green feathers with metallic sheen", + "beak: long, slender, black and curved", + "belly: bright yellow with iridescent patch", + "breast: brilliant orange to red hues", + "crown: glistening emerald green", + "forehead: gleaming copper with green tinges", + "eyes: small, dark, and round", + "legs: thin, black, and delicate", + "wings: iridescent green with pointed edges", + "nape: shimmering green and copper tones", + "tail: elongated, forked, and shimmering green", + "throat: dazzling, metallic, copper-red color" + ], + "copper rumped hummingbird": [ + "back: iridescent green-bronze feathers", + "beak: slender, long, and slightly curved", + "belly: light grayish-white coloring", + "breast: bright white with a coppery sheen", + "crown: shimmering green-gold feathers", + "forehead: shining metallic green", + "eyes: small and black, alert expression", + "legs: short and delicate, with tiny feet", + "wings: long and slender, rapidly beating", + "nape: copper-bronze feathers blending into green", + "tail: forked with reddish-brown tipped feathers", + "throat: vibrant white with a metallic copper tint" + ], + "copper tailed hummingbird": [ + "back: iridescent green, shimmering feathers", + "beak: slender, elongated, and slightly curved", + "belly: white or grayish-white, very soft", + "breast: bright green or turquoise, iridescent", + "crown: vibrant metallic green, eye-catching", + "forehead: gleaming emerald green, feathers", + "eyes: small, alert, dark black", + "legs: petite, thin and sturdy", + "wings: rapidly moving, transparent, edged in green", + "nape: rich coppery-bronze, shimmering hues", + "tail: eye-catching copper-red, elongated", + "throat: ruby or magenta, iridescent feathers" + ], + "copper tailed starling": [ + "back: iridescent blue-green hues", + "beak: sleek and pointy, black", + "belly: creamy white with light copper streaks", + "breast: shiny copper feathers", + "crown: blue-violet sheen with metallic finish", + "forehead: metallic blue-violet hue", + "eyes: dark, round, and alert", + "legs: black and slender", + "wings: iridescent blue-green with copper highlights", + "nape: copper-lined violet-blue feathers", + "tail: long, coppery, and well-streamlined", + "throat: gleaming copper plumage" + ], + "copper throated sunbird": [ + "back: metallic green with a coppery hue", + "beak: slender, black, and curved", + "belly: pale greyish-white", + "breast: bright greenish-blue", + "crown: iridescent purple-blue", + "forehead: metallic green merging into the crown", + "eyes: dark brown surrounded with light-blue feathers", + "legs: black with small scaly texture", + "wings: dark green with hints of blue", + "nape: shiny green with metallic sheen", + "tail: long, dark green-blue feathers", + "throat: coppery-red with iridescent shine" + ], + "copperback quail thrush": [ + "back: copper-toned, feathered brilliance", + "beak: short, sturdy, brownish-gray", + "belly: subdued, white-scalloped feathers", + "breast: pale gray with delicate spots", + "crown: reddish-brown, sleek contour", + "forehead: warm-toned, merging into smooth crown", + "eyes: alert, black, with white eyerings", + "legs: slender, vibrant orange", + "wings: striking copper, adorned with spots", + "nape: matching reddish-brown crown hue", + "tail: elongated, coppery-spotted feathers", + "throat: distinguished white with subtle markings" + ], + "coppery emerald": [ + "back: vibrant copper-green feathers", + "beak: slender, slightly curved, black", + "belly: iridescent emerald green hue", + "breast: shimmering coppery-orange plumage", + "crown: radiant green with a slight crest", + "forehead: metallic emerald and copper blend", + "eyes: bright, with intelligent dark pupils", + "legs: thin, sturdy, dark gray", + "wings: elongated, copper and emerald gradient", + "nape: smooth transition from crown to back", + "tail: long, elegant, green and copper feathers", + "throat: striking coppery orange radiance" + ], + "coppery metaltail": [ + "back: vibrant coppery-green plumage", + "beak: slender, slightly curved black bill", + "belly: iridescent golden-green feathers", + "breast: shining green-chestnut shimmer", + "crown: luminous coppery-bronze crest", + "forehead: bright metallic green hue", + "eyes: dark, round, and attentive", + "legs: thin, strong, grayish black", + "wings: shimmering green with bronze edges", + "nape: gleaming coppery-gold tinge", + "tail: iridescent steel-blue with white tips", + "throat: glistening emerald-green bib" + ], + "coppery bellied puffleg": [ + "back: vibrant green with iridescent sheen", + "beak: thin, straight, black", + "belly: rich coppery orange", + "breast: golden yellow with hints of green", + "crown: shiny emerald green", + "forehead: bright green with shimmer", + "eyes: small, black, alert", + "legs: feathered, light gray with delicate claws", + "wings: iridescent green with dark primary feathers", + "nape: radiant green with golden highlights", + "tail: relatively short, iridescent green with black tips", + "throat: brilliant golden yellow" + ], + "coppery chested jacamar": [ + "back: shimmering green feathers", + "beak: elongated, black, and sharp", + "belly: pale brownish-gray hue", + "breast: vibrant copper-red color", + "crown: glossy green plumage", + "forehead: glistening green feathers", + "eyes: small, black, and round", + "legs: slender and dark gray", + "wings: iridescent green with black edges", + "nape: shiny green feathered", + "tail: long and black, extending past the body", + "throat: slender and vibrant copper-tone" + ], + "coppery headed emerald": [ + "back: vibrant green feathers", + "beak: slender, slightly curved black", + "belly: pale grayish-green", + "breast: bright emerald green", + "crown: coppery orange sheen", + "forehead: glittering copper hue", + "eyes: small and black", + "legs: thin, black, and wiry", + "wings: iridescent green-blue", + "nape: brilliant green, copper-fringed", + "tail: metallic green with white tips", + "throat: shimmery green" + ], + "coquerel coua": [ + "back: grayish-blue feathers", + "beak: slightly curved, black beak", + "belly: pale gray, slightly fluffy plumage", + "breast: soft gray feathers with subtle white streaks", + "crown: grayish-blue color with white streaks", + "forehead: light gray feathers fading into darker ones above the eyes", + "eyes: large, bright red-orange circles with black pupils", + "legs: reddish-brown scaly legs with sharp claws", + "wings: grayish-blue primary feathers with white streaks; elongated secondary feathers", + "nape: light gray feathers gradually darkening toward crown", + "tail: long, fan-shaped feathers with bold blue and white stripes", + "throat: pale gray feathers blending down into the breast area" + ], + "coqui francolin": [ + "back: brown and black streaks with white spots", + "beak: short, sharp, and slightly curved", + "belly: cream-colored with grey speckles", + "breast: warm tawny with light bars", + "crown: brown and black with white streaks", + "forehead: light cream to white", + "eyes: dark brown with thin white eye-ring", + "legs: sturdy, yellow-grey with three toes", + "wings: brown, black, and white feathers with rufous and buff markings", + "nape: light brown with black streaking", + "tail: brown and black feathers with tawny bars", + "throat: cream to white with grey speckles" + ], + "coral billed ground cuckoo": [ + "back: vibrant green feathers with bold black streaks", + "beak: striking red coral color, curved and sharp", + "belly: creamy pale feathers with subtle green and black patterns", + "breast: misty green shades with black streaks", + "crown: iridescent green with black streaks, creating a regal appearance", + "forehead: glistening green with distinct black markings", + "eyes: round, large and dark with a curious glint", + "legs: long, red coral-colored, slender, and strong", + "wings: wide and green, black-streaked feathers for swift movement", + "nape: striking green with black streaks that blend into the back", + "tail: long, sturdy green feathers with sharply-lined black patterns", + "throat: pale off-white color, providing contrast to the vibrant beak" + ], + "coraya wren": [ + "back: dark brown with light streaks", + "beak: slender, black, and slightly curved", + "belly: pale cinnamon with black markings", + "breast: reddish-brown with black spots", + "crown: dark brown with light streaks", + "forehead: reddish-brown with black spots", + "eyes: large, dark, with white eyering", + "legs: thin and slate-gray", + "wings: dark brown with conspicuous barring", + "nape: light brown with black markings", + "tail: long, dark brown with black barring", + "throat: pale cinnamon with black markings" + ], + "cordillera azul antbird": [ + "back: mottled greenish-brown feathers", + "beak: short and sharp, blackish-gray", + "belly: pale gray with fine black streaks", + "breast: grayish-blue with dark streaks", + "crown: dark blue with pale feather edges", + "forehead: vibrant blue feathers", + "eyes: small and beady, dark brown", + "legs: slender, dark gray", + "wings: greenish-brown with hints of blue", + "nape: blue feathers with pale edges", + "tail: long and dark, greenish-blue with pale tips", + "throat: grayish-blue with streaks of black" + ], + "cordillera ground warbler": [ + "back: olive-brown with streaks", + "beak: short and pointed", + "belly: white with buff flanks", + "breast: white with black streaks", + "crown: dark brown", + "forehead: light brown with streaks", + "eyes: black with white eye-ring", + "legs: pale pink with short toes", + "wings: brown with pale wing bars", + "nape: olive-brown with streaks", + "tail: brown and short", + "throat: white and unmarked" + ], + "cordilleran canastero": [ + "back: brownish-gray feathers with streaks", + "beak: long, slender, and slightly curved", + "belly: pale, buff-colored plumage", + "breast: buff-colored, streaked feathers", + "crown: brownish, striped pattern", + "forehead: light brown with fine streaks", + "eyes: small, round, and dark", + "legs: strong, featherless, and pinkish-brown", + "wings: medium-sized with streaked brown plumage", + "nape: grayish-brown with fine streaks", + "tail: long, brown, and barred with dark bands", + "throat: pale buff with light streaks" + ], + "cordoba cinclodes": [ + "back: light brown with streaks", + "beak: long, thin, and curved downward", + "belly: whitish-grey with some dark streaks", + "breast: pale grey-brown with streaks", + "crown: dark brown with lighter streaks", + "forehead: light brown with slight streaking", + "eyes: small, black, and well-defined", + "legs: short and strong, with dark scales", + "wings: brown with white feather edges", + "nape: light brown with dark streaks", + "tail: medium length, brown with white tips", + "throat: whitish-grey with some streaking" + ], + "corn bunting": [ + "back: brownish with dark streaks", + "beak: sturdy and pale pinkish-brown", + "belly: off-white to pale buff", + "breast: reddish-brown with dark streaks", + "crown: dark brown with streaks", + "forehead: subtle buff hue", + "eyes: small and black", + "legs: pale pinkish-brown", + "wings: dark brown, striped outer edges", + "nape: brown with streaks", + "tail: dark brown, forked", + "throat: off-white, sometimes with faint streaks" + ], + "corn crake": [ + "back: brownish-yellow with black streaks", + "beak: short and conical, yellowish-brown", + "belly: creamy-white with dark spots", + "breast: pale grayish-blue with black fine streaks", + "crown: rusty-brown with black markings", + "forehead: pale cream with dark streaks", + "eyes: small, dark brown", + "legs: strong and sturdy, pale pinkish-brown", + "wings: broad with chestnut patches on the outer primaries", + "nape: similar to the crown, rusty-brown with black streaks", + "tail: short, broad, and rounded, dark brown with pale edges", + "throat: creamy-white with slight dark streaks" + ], + "coroneted fruit dove": [ + "back: emerald green with white spots", + "beak: short and hooked, yellowish-orange", + "belly: light green fading to yellow", + "breast: graduated hues of green and yellow", + "crown: bluish-green surrounded by white", + "forehead: light green with white markings", + "eyes: dark brown with thin white eye-ring", + "legs: short and grayish-blue", + "wings: green with white-spotted feathers", + "nape: pale blue with distinct white circle", + "tail: long and tapered, green and blue feathers", + "throat: white with green, blue, and purple patches" + ], + "correndera pipit": [ + "back: brownish with streaks", + "beak: slender and pointed", + "belly: pale and spotted", + "breast: light brown with streaks", + "crown: brown with faint streaks", + "forehead: pale with minimal streaks", + "eyes: small and black", + "legs: thin and pale pink", + "wings: brown with subtle barring", + "nape: light brown with faint streaks", + "tail: long and tapered with brown edges", + "throat: pale with light streaks" + ], + "corsican finch": [ + "back: dark brown with narrow white streaks", + "beak: short, stout, and conical, with a light grayish tint", + "belly: soft grayish-white tone with brownish flanks", + "breast: pale grayish-white blending with the belly", + "crown: dark brown feathers with white edges", + "forehead: light brown blending into the crown", + "eyes: round and dark, surrounded by pale feather markings", + "legs: slightly orange-toned with strong dark claws", + "wings: rounded with dark brown feathers and white markings", + "nape: dark brown with fine white streaks blending into the back", + "tail: dark brown with white edges on outer feathers", + "throat: soft grayish-white, transitioning to the breast color" + ], + "corsican nuthatch": [ + "back: bluish-grey feathers", + "beak: sharp, pointed, and black", + "belly: pale greyish-white hue", + "breast: light bluish-grey plumage", + "crown: dark grey with streaks", + "forehead: greyish-black blending into crown", + "eyes: small, black, and shiny", + "legs: orange-brownish and slender", + "wings: bluish-grey with white patterns", + "nape: dark grey feathered area", + "tail: long, bluish-grey with darker outer feathers", + "throat: white with greyish tinge" + ], + "cory shearwater": [ + "back: dark gray feathers covering the upper body", + "beak: long, slim, and hooked, black in color", + "belly: creamy white feathers running from breast to tail", + "breast: white plumage with subtle gray streaks", + "crown: dark gray feathers extending from the forehead to the nape", + "forehead: smooth gray feathers, transitioning from dark to lighter shades", + "eyes: round, dark, and well-defined with a thin gray ring around them", + "legs: short and pinkish-gray with sharp black claws", + "wings: long and narrow, dark gray on top with white underneath", + "nape: dark gray, connecting with the crown and back", + "tail: slender and elongated with dark gray feathers", + "throat: light gray feathers meeting with the breast area" + ], + "coscoroba swan": [ + "back: sleek white feathers", + "beak: bright orange-red with a white nail tip", + "belly: white feathers", + "breast: white feathers", + "crown: white feathers on top of the head", + "forehead: white feathers above the eyes", + "eyes: dark brown or black with white eyelids", + "legs: pinkish-orange with partially webbed feet", + "wings: white with visible black primary feathers when in flight", + "nape: white feathers along the back of the neck", + "tail: white feathers with hidden black undercoverts", + "throat: white feathers on the front of the neck" + ], + "costa rican brushfinch": [ + "back: olive-green with subtle brown-ish hues", + "beak: short, conical, and black", + "belly: pale yellow with grayish undertones", + "breast: soft yellowish-olive with hints of gray", + "crown: greenish-gray and slightly darker than back", + "forehead: light olive-green", + "eyes: small and black, with a faint pale eye-ring", + "legs: sturdy, pale grayish-pink", + "wings: olive-green with darker flight feathers", + "nape: olive-green blending with crown and back", + "tail: long and olive-brown, with darker central feathers", + "throat: pale grayish-yellow" + ], + "costa rican pygmy owl": [ + "back: greenish-brown with white spots", + "beak: short, curved, yellowish", + "belly: off-white with brown streaks", + "breast: light buff, streaked with brown", + "crown: dark brown with white streaks", + "forehead: pale buff with brown streaks", + "eyes: vibrant yellow, surrounded by white eyebrows", + "legs: short, feathered, and yellowish", + "wings: bars and markings in various shades of brown", + "nape: white, streaked with dark brown", + "tail: greenish-brown with white bands", + "throat: pale buff, unmarked" + ], + "costa rican swift": [ + "back: sleek, dark plumage", + "beak: small, sharp, and black", + "belly: light gray or white, delicate feathers", + "breast: grayish-white, soft plumage", + "crown: black with a slight iridescence", + "forehead: smooth, dark feathers", + "eyes: small, rounded, and black", + "legs: tiny, strong, and black", + "wings: long, slender, dark feathers", + "nape: glossy, black plumage", + "tail: forked, black feathers", + "throat: white, soft-feathered" + ], + "costa rican warbler": [ + "back: olive-green feathers", + "beak: short and pointed", + "belly: yellowish-white plumage", + "breast: light-yellow and streaked", + "crown: dark gray with light streaks", + "forehead: pale gray hues", + "eyes: beady and black", + "legs: thin and medium length", + "wings: olive-green with white tips", + "nape: grayish-green feathers", + "tail: long and olive-green", + "throat: bright yellow color" + ], + "cotton pygmy goose": [ + "back: smooth, compact feathers in shades of brown and gray", + "beak: short, pointed bill in bluish gray or black color", + "belly: creamy white feathers with a hint of yellow", + "breast: white to greyish-white feathers with a slightly fluffy texture", + "crown: dark brown or grayish-brown feathers extending from the forehead to the nape", + "forehead: lighter shade of brown or grayish-brown feathers transitioning into the darker crown", + "eyes: small, round eyes with a dark brown or black iris", + "legs: short, sturdy legs with webbed feet in shades of bluish gray or black", + "wings: white or grayish-white feathers with brown or black tips and markings", + "nape: dark brown or grayish-brown feathers that connect the crown to the upper back", + "tail: short, fan-shaped feathers in shades of brown and black", + "throat: white or cream-colored feathers with a soft, delicate texture" + ], + "cozumel emerald": [ + "back: vibrant green feathers", + "beak: short, black, and slightly curved", + "belly: light yellowish-green plumage", + "breast: pale green with lime highlights", + "crown: iridescent greenish-blue", + "forehead: bright green with a hint of turquoise", + "eyes: lively dark brown with a white eye-ring", + "legs: sturdy grey with sharp claws", + "wings: rich emerald green with darker flight feathers", + "nape: deep green transitioning to the crown", + "tail: elongated, green feathers with black tips", + "throat: soft yellowish-green shading" + ], + "cozumel vireo": [ + "back: olive-green with a slight yellowish tinge", + "beak: short, slightly curved, and dark gray", + "belly: pale yellow with faint olive wash", + "breast: light yellow with olive sides", + "crown: grayish-olive with faint yellow edges", + "forehead: grayish-olive with a slight yellow tint", + "eyes: dark brown with white eye-ring", + "legs: slender and grayish-blue", + "wings: olive-green with faint yellow edges on flight feathers", + "nape: grayish-olive with a hint of yellow", + "tail: olive-green with slightly darker central feathers", + "throat: pale yellow with a light olive wash" + ], + "crag chilia": [ + "back: sleek brown feathers", + "beak: sharp, pointed, black", + "belly: pale, fluffy, cream-colored", + "breast: soft, brownish-grey feathers", + "crown: dark brown, distinct crest", + "forehead: brownish-black plumage", + "eyes: small, sharp, dark brown", + "legs: slender, greyish-blue legs", + "wings: rounded, brown with accentuated feather tips", + "nape: lighter brown than crown, blending into back", + "tail: elongated, brown feathers with lighter edges", + "throat: creamy-white, contrasting with breast" + ], + "craveri murrelet": [ + "back: light greyish-blue with white edges", + "beak: short, dark, and pointed", + "belly: white with grey markings", + "breast: white and smooth", + "crown: dark grey-black, rounded", + "forehead: grey-black, narrow", + "eyes: small, black, and shiny", + "legs: short and pinkish-orange", + "wings: greyish-blue with white undersides", + "nape: grey-black curve behind head", + "tail: short, dark, and fan-shaped", + "throat: white with grey streaks" + ], + "cream backed woodpecker": [ + "back: cream-colored feathers with black streaks", + "beak: strong, straight, and black", + "belly: cream-white with small black markings", + "breast: cream-white with black streaks", + "crown: bright red crest", + "forehead: cream-white transitioning into red crest", + "eyes: dark with white outlines", + "legs: short, sturdy, and gray", + "wings: black with white horizontal stripes", + "nape: red crest blending into cream-white", + "tail: black with white speckles and red tips", + "throat: cream-white with black streaks" + ], + "cream breasted fruit dove": [ + "back: vibrant green with speckles of gold", + "beak: curved, short, and dark colored", + "belly: soft, pale cream hues", + "breast: creamy white with subtle green accents", + "crown: iridescent green and blue tones", + "forehead: deep emerald green", + "eyes: small, dark, and alert", + "legs: orange-red with strong, scaly texture", + "wings: green with patterns of blue and purple", + "nape: brilliant metallic green-blue", + "tail: patterned green and blue feathers with tapered ends", + "throat: creamy, pale coloring with a hint of green" + ], + "cream colored courser": [ + "back: light cream-colored feathers", + "beak: thin, slightly curved, and pale", + "belly: soft cream hue, smooth feathers", + "breast: delicate white-cream, slightly puffed", + "crown: pale, gently defined crest", + "forehead: smooth, cream-colored feathers", + "eyes: small, dark with light cream outlines", + "legs: slender, light-colored with slight webbing", + "wings: wide, cream with faint spots or patterns", + "nape: discreet, gentle transition to back feathers", + "tail: long, cream, with subtle markings", + "throat: pale, cream, smooth feathers" + ], + "cream eyed bulbul": [ + "back: olive-green and smooth", + "beak: slender and slightly curved", + "belly: pale yellow with light streaks", + "breast: soft and creamy colored", + "crown: glossy black with a touch of blue", + "forehead: shiny black and sleek", + "eyes: creamy white with a black pupil", + "legs: thin, grayish-blue", + "wings: greenish-blue with a tinge of gray", + "nape: olive-green merging into black", + "tail: long and dark, with a white-tipped edge", + "throat: pale cream with a hint of yellow" + ], + "cream striped bulbul": [ + "back: light cream hue with subtle striping", + "beak: short, slightly curved, dark brown", + "belly: gentle cream hue with faint stripes", + "breast: creamy white with soft striped pattern", + "crown: smooth, creamy with faint dark streaks", + "forehead: delicate cream with thin striping", + "eyes: sharp black with white eye-ring", + "legs: thin, light brown with sturdy talons", + "wings: cream color with dark stripes along feathers", + "nape: soft cream with light striping", + "tail: elongated, cream with dark brown bands", + "throat: pale cream with stripped texture" + ], + "cream throated white eye": [ + "back: olive-green feathers", + "beak: short, black and pointed", + "belly: creamy-white underparts", + "breast: pale and creamy plumage", + "crown: olive-green with a white ring", + "forehead: white, distinctive stripe", + "eyes: large, surrounded by white rings", + "legs: gray with strong small feet", + "wings: olive-green, slightly rounded", + "nape: olive-green with white streaks", + "tail: olive-green, medium-length", + "throat: cream-colored, smooth feathers" + ], + "cream vented bulbul": [ + "back: olive-green feathers with slight streaks", + "beak: short, slender, and curved", + "belly: pale yellow with minimal markings", + "breast: off-white and lightly streaked", + "crown: distinct black crest fading into gray", + "forehead: light grayish-white", + "eyes: small and dark, surrounded by a white ring", + "legs: slim and dark-colored", + "wings: olive-green with prominent white-tipped coverts", + "nape: grayish-white to light gray", + "tail: long and dark, with white outer feathers", + "throat: creamy-white with faint streaks" + ], + "cream winged cinclodes": [ + "back: brownish-grey feathers", + "beak: long, slender, and black", + "belly: creamy-white plumage", + "breast: cream-colored with grey streaks", + "crown: brownish-grey feathers", + "forehead: grey-brown coloration", + "eyes: small and black", + "legs: dark grey and sturdy", + "wings: cream edges with brown-grey feathers", + "nape: brownish-grey feathers", + "tail: short and fan-shaped, brownish-grey", + "throat: light cream color with grey streaks" + ], + "creamy bellied antwren": [ + "back: olive-brown and creamy mix", + "beak: slim, slightly curved, black color", + "belly: creamy white with light streaks", + "breast: light grey with subtle streaks", + "crown: light brownish-grey", + "forehead: pale greyish-brown, lighter than crown", + "eyes: dark brown, surrounded by pale feathers", + "legs: light grey, relatively thin", + "wings: olive-brown with light creamy edges", + "nape: pale grey-brown", + "tail: long and slightly rounded, olive-brown with creamy fringes", + "throat: pale grey with light streaks" + ], + "creamy bellied gnatcatcher": [ + "back: creamy light blue-gray", + "beak: thin and straight, black", + "belly: pale cream, slightly fluffy", + "breast: soft creamy white", + "crown: grayish-blue feathers", + "forehead: subtle light gray", + "eyes: small and black, distinct white eye-ring", + "legs: slim and dark gray", + "wings: blue-gray, with white wingbars", + "nape: slightly darker gray-blue", + "tail: long and slender, black with white edges", + "throat: white, blending into breast" + ], + "creamy bellied thrush": [ + "back: brownish-gray feathers", + "beak: short, curved, black", + "belly: creamy-white hue", + "breast: light chestnut tint", + "crown: smooth brownish-gray", + "forehead: slightly lighter gray", + "eyes: dark, round, with white eye-ring", + "legs: sturdy, grayish-brown", + "wings: brownish-gray with dark bars", + "nape: continuous brownish-gray", + "tail: long, brownish-gray with white edges", + "throat: pale white to creamy" + ], + "creamy breasted canastero": [ + "back: light, creamy brown with streaks", + "beak: short, sharp, and dark", + "belly: pale, cream-colored and smooth", + "breast: soft, creamy, and streaked", + "crown: light brown, with subtle streaking", + "forehead: narrow, streaked creamy brown", + "eyes: small, black, and glistening", + "legs: thin, twig-like, and gray", + "wings: streaked, brownish with creamy edges", + "nape: smoothly-textured, light brown", + "tail: long, brown, with creamy tips", + "throat: pale, light cream, and unstreaked" + ], + "creamy crested spinetail": [ + "back: light brown with subtle barring", + "beak: sharp, curved, and dark", + "belly: off-white with faint streaks", + "breast: pale brown with streaked pattern", + "crown: creamy-white with soft feathers", + "forehead: delicate white lines", + "eyes: small and black", + "legs: slender and tan-colored", + "wings: rufous-brown with darker flight feathers", + "nape: ruddy-brown with mottled spots", + "tail: long, brown with fine barring and white tips", + "throat: pale buff with slight streaking" + ], + "creamy rumped miner": [ + "back: brownish-gray feathers", + "beak: short, black and pointed", + "belly: creamy-white plumage", + "breast: light gray with fine streaks", + "crown: grayish-brown with faint streaks", + "forehead: smooth, pale gray", + "eyes: dark, surrounded by pale feathers", + "legs: slender, beige-colored", + "wings: brown-gray with faint bars", + "nape: cream-colored rump patch", + "tail: long, brownish-gray with white edges", + "throat: pale gray with fine streaking" + ], + "crescent honeyeater": [ + "back: olive-green plumage", + "beak: down-curved, blackish bill", + "belly: whitish-gray feathers", + "breast: grayish-white with black markings", + "crown: olive-green with yellow streaks", + "forehead: yellowstripe above the eyes", + "eyes: dark round, surrounded by white rings", + "legs: thin, grayish legs with sharp claws", + "wings: olive-dark green with yellow fringes", + "nape: grayish-olive transition to the back", + "tail: olive-green with black edges", + "throat: yellow with a crescent-shaped black patch" + ], + "crescent chested babbler": [ + "back: earthy brown with subtle streaks", + "beak: short and curved, blackish hue", + "belly: creamy white with faint streaks", + "breast: vibrant yellow crescent shape", + "crown: warm brown with a slight rufous tone", + "forehead: brown, blending with crown", + "eyes: dark with a small white eye-ring", + "legs: sturdy, grayish-brown", + "wings: brown, marked with faint bars", + "nape: warm brown, consistent with crown", + "tail: long and brown, with lighter feather edges", + "throat: creamy white, contrasting with breast" + ], + "crescent chested puffbird": [ + "back: olive-green with gentle streaks", + "beak: short and sharp, blackish-grey", + "belly: white with pale yellow undertones", + "breast: white with a warm brown crescent", + "crown: soft olive-green", + "forehead: subtle pale olive", + "eyes: dark with a thin white eyering", + "legs: slender, dull grey", + "wings: olive-green with darker wing bars", + "nape: soft olive-green fading to brown", + "tail: olive-green with dark outer edges", + "throat: white, leading to crescent on breast" + ], + "crescent chested warbler": [ + "back: olive-green feathers", + "beak: thin, pointed, black", + "belly: creamy white with yellow tinge", + "breast: vibrant yellow crescent", + "crown: grayish-blue cap", + "forehead: blue tint blending into crown", + "eyes: dark with fine white eyering", + "legs: long, slender, grayish-blue", + "wings: olive-green with black streaks", + "nape: grayish-blue blending into back", + "tail: long, tapered, olive-green with black streaks", + "throat: bright yellow, bordered by grayish-blue" + ], + "crescent faced antpitta": [ + "back: olive-brown with subtle streaks", + "beak: black and thin, slightly curved", + "belly: creamy yellow with blackish spots", + "breast: orange-brown with fine streaks", + "crown: dark olive-green", + "forehead: pale, off-white crescent marking", + "eyes: dark, round and small", + "legs: pale pink and long", + "wings: olive-brown with faint bars", + "nape: olive-green with indistinct streaks", + "tail: olive-brown with pale tips", + "throat: cream-colored with light streaks" + ], + "crested ant tanager": [ + "back: dark olive-green feathers", + "beak: short, sharp, and black", + "belly: pale yellow with a slight greenish tint", + "breast: bright red-orange", + "crown: black with a prominent red crest", + "forehead: black feathers leading to the red crest", + "eyes: small, round, and black", + "legs: grayish-brown and slender", + "wings: olive-green with black edges", + "nape: black with a red crest extending from the crown", + "tail: long, black with a green sheen", + "throat: vibrant red-orange" + ], + "crested barbet": [ + "back: vibrant yellow-green feathers", + "beak: strong, thick, and slightly curved", + "belly: yellow and red patterned feathers", + "breast: bold, red-orange colored feathers", + "crown: distinctive black-and-white striped crest", + "forehead: black-and-white barred patterns", + "eyes: round and dark", + "legs: grayish-brown, strong, and clawed", + "wings: yellow-green with bright red patches", + "nape: black with white streaks", + "tail: broad and yellow, with black bars", + "throat: white with black barring" + ], + "crested becard": [ + "back: olive-green feathers", + "beak: short and stout, pale gray", + "belly: pale yellow plumage", + "breast: light grayish-yellow feathers", + "crown: black crest extending from forehead", + "forehead: adorned with raised crest", + "eyes: dark, round, and alert", + "legs: gray and sturdy", + "wings: olive-green with black markings", + "nape: continuation of olive-green from back", + "tail: long, olive-green with black edges", + "throat: light grayish-yellow plumage" + ], + "crested bellbird": [ + "back: olive-green and smooth feathers", + "beak: short, strong, and slightly curved", + "belly: creamy-white with fine black spots", + "breast: white with black speckles", + "crown: black with distinctive raised crest", + "forehead: black feathers transitioning to white", + "eyes: dark brown with pale eye-ring", + "legs: short and sturdy, slate-gray", + "wings: olive-green with distinct wing-bars", + "nape: black with white streaks", + "tail: long, olive-green feathers with white tips", + "throat: white bordered with black streaks" + ], + "crested berrypecker": [ + "back: vibrant green feathers", + "beak: short, black, and stubby", + "belly: pale yellow plumage", + "breast: light green with a slight yellow tinge", + "crown: red crest with dark green feathers", + "forehead: bright green, smooth plumage", + "eyes: small, round, black and glossy", + "legs: dark gray and slender", + "wings: dark green with some blue iridescence", + "nape: green feathers, slightly lighter than the back", + "tail: short, graduated, dark green feathers", + "throat: pale greenish-yellow plumage" + ], + "crested black tyrant": [ + "back: dark grey feathers covering the upper body", + "beak: short, black, and slightly curved", + "belly: greyish-white feathers on the lower body", + "breast: dark grey plumage on the chest", + "crown: black crest on top of the head", + "forehead: smooth black feathers above the eyes", + "eyes: small, round, and black with white eye-ring", + "legs: long, thin, and black with sharp claws", + "wings: black with greyish-white bars on the underside", + "nape: dark grey feathers at the back of the neck", + "tail: long, black, and slightly forked", + "throat: small dark grey feathers below the beak" + ], + "crested bobwhite": [ + "back: brownish-black feathers with white spots", + "beak: short, curved, grayish-black", + "belly: creamy-white with black and brown barred pattern", + "breast: chestnut-orange with black and white bars", + "crown: black with a white stripe along crest", + "forehead: black feathers blending into crown", + "eyes: dark, round, with a thin white ring", + "legs: sturdy, grayish-blue with sharp claws", + "wings: rounded, brown with black and white markings", + "nape: black feathers interspersed with white", + "tail: short, black with a few white spots", + "throat: white bordered by a black collar" + ], + "crested bunting": [ + "back: vibrant blueish-green patterns", + "beak: short and conical, pale pinkish", + "belly: light greyish-blue with streaks", + "breast: bright blueish-green, shimmering", + "crown: tufted black crest on the head", + "forehead: deep black feathers", + "eyes: small dark, with thin white eye-ring", + "legs: sturdy, pinkish-grey", + "wings: blueish-green with black borders", + "nape: deep blue, fading to grey", + "tail: elongated central feathers, blue-green with black tips", + "throat: black feathers with a hint of iridescence" + ], + "crested cuckoo dove": [ + "back: olive-gray with feathery edges", + "beak: short and curved, gray-black", + "belly: pale gray with subtle peach undertones", + "breast: soft pinkish-gray with fine, dark markings", + "crown: grayish-brown with a prominent crest", + "forehead: smooth and gray with a slight peach tinge", + "eyes: deep brown with a thin white eye-ring", + "legs: sturdy and pinkish-gray with dark, scaly texture", + "wings: dark olive-brown with fine feathered patterns", + "nape: grayish-brown blending into the crest", + "tail: long and straight, gray-brown with dark, vertical stripes", + "throat: subtle peach-gray with delicate, fine markings" + ], + "crested doradito": [ + "back: olive-green with black streaks", + "beak: short and sharply pointed", + "belly: yellowish with brownish flanks", + "breast: pale yellow with faint streaks", + "crown: vibrant yellow with a prominent crest", + "forehead: bright yellow", + "eyes: dark and small", + "legs: slender with grayish feet", + "wings: olive-green with black barring", + "nape: bright yellow with a black stripe", + "tail: short and dark with white edges", + "throat: pale yellow and unmarked" + ], + "crested duck": [ + "back: sleek, grayish-brown feathers", + "beak: short, broad, flat with a slight hook", + "belly: cream-colored, soft feathers", + "breast: reddish-brown, rounded plumage", + "crown: distinct, prominent crest atop head", + "forehead: smooth, merging with the crest", + "eyes: bright, alert, dark-colored", + "legs: strong, webbed, orange-yellow", + "wings: medium-sized, grayish-brown with bright blue speculum", + "nape: curve of the neck, covered in glossy feathers", + "tail: short, fan-shaped, spreading feathers", + "throat: slightly lighter than breast, soft plumage" + ], + "crested finchbill": [ + "back: olive-green feathered", + "beak: sturdy, dark-colored, and hooked", + "belly: light-grayish underparts", + "breast: soft-gray feathered", + "crown: distinct black and bushy crest", + "forehead: black feathers transitioning into the crown", + "eyes: small, dark, and alert", + "legs: grayish, slender, and strong", + "wings: olive-green with slight wingbars", + "nape: olive-green feathers connecting to back", + "tail: olive-green central feathers, and tapering off to black on the outer edges", + "throat: soft gray, blending into the breast area" + ], + "crested francolin": [ + "back: brown and black striations", + "beak: sharp, short, pale grey", + "belly: light beige with black speckles", + "breast: horizontally striped black and white", + "crown: reddish-brown with grey flecks", + "forehead: smooth feather transition to beak", + "eyes: round, dark brown, alert gaze", + "legs: sturdy, greyish-brown with scaling", + "wings: brown and black patterned feathers", + "nape: reddish-brown shading to the crown", + "tail: black and brown barred, medium length", + "throat: white with black spots and stripes" + ], + "crested gallito": [ + "back: vibrant rust-colored plumage", + "beak: short, curved and sturdy", + "belly: lightly striped greyish-white feathers", + "breast: reddish-brown with subtle stripes", + "crown: prominent dark crest with spiky feathers", + "forehead: rust-colored with slightly raised feathers", + "eyes: alert and inquisitive, dark brown", + "legs: strong and long, slate grey", + "wings: reddish-brown with blackish flight feathers", + "nape: rust-colored fading into the greyish-white stripes", + "tail: broad and fan-shaped, grayish-brown", + "throat: cream-colored with a hint of grey stripes" + ], + "crested goshawk": [ + "back: grayish-brown feathers", + "beak: sharp, hooked, dark-colored", + "belly: white with dark bars", + "breast: white with dark streaks", + "crown: gray with long crest", + "forehead: gray and smooth", + "eyes: piercing yellow", + "legs: yellow and strong", + "wings: rounded, grayish-brown with dark bars", + "nape: gray with a hint of brown", + "tail: long, horizontal bars", + "throat: white and unmarked" + ], + "crested hornero": [ + "back: brown and streaked feathers", + "beak: short and stout, pale beige color", + "belly: pale brown with a hint of gray", + "breast: dusky brown", + "crown: reddish-brown with a noticeable crest", + "forehead: light brown, blending into the crown", + "eyes: small, round and black", + "legs: sturdy and pale orange", + "wings: brown and patched with white feathers", + "nape: brown, slightly lighter than the back", + "tail: brown and long, with lighter tips", + "throat: bright white, contrasting with the rest of the body" + ], + "crested lark": [ + "back: brown with light streaks", + "beak: short and cone-shaped", + "belly: whitish with brown streaks", + "breast: buff-colored with dark streaks", + "crown: spiky crest, brownish-grey", + "forehead: pale with a slight brown tint", + "eyes: small and dark", + "legs: long and slender, pale brown", + "wings: mottled brown with white edges", + "nape: light brown with dark streaks", + "tail: short and dark with white outer feathers", + "throat: white with dark streaks" + ], + "crested malimbe": [ + "back: vibrant red feathers", + "beak: short, strong, gray-black", + "belly: deep red plumage", + "breast: bright red with a black band", + "crown: sharp crest of red feathers", + "forehead: red with slightly raised feathers", + "eyes: round with dark surround", + "legs: dark gray, sturdy", + "wings: red with black edges", + "nape: red mixed with black streaks", + "tail: fan-like with red and black feathers", + "throat: black with red feather accents" + ], + "crested owl": [ + "back: dark brown feathers with lighter streaks", + "beak: strong, sharp, and slightly curved", + "belly: lightly colored with dark barring", + "breast: buff-colored with dusky streaks", + "crown: prominent white crest feathers atop the head", + "forehead: dark brown with lighter speckles", + "eyes: large, piercing yellow orbs", + "legs: sturdy, feathered limbs ending in sharp talons", + "wings: dark brown with white spots and barring", + "nape: dark brown feathers blending into the crest", + "tail: long, fan-shaped with dark barring and white tips", + "throat: pale with subtle mottling" + ], + "crested partridge": [ + "back: olive-brown feathers with black spots", + "beak: short, curved, and grayish-white", + "belly: chestnut-brown with dark scale-pattern", + "breast: dark grayish-blue feathering", + "crown: black feathers with a distinct red crest", + "forehead: black feathers with a slight bluish tint", + "eyes: dark brown, surrounded by a ring of bare, bluish skin", + "legs: sturdy, grayish-blue with sharp claws", + "wings: olive-brown with black spotting and blue-edged feathers", + "nape: olive-brown with black spotting", + "tail: short, greenish-brown with black bars", + "throat: bluish-gray with fine black spotting" + ], + "crested pigeon": [ + "back: pale gray with subtle white speckles", + "beak: short, sharp, and light gray", + "belly: creamy beige with light gray shading", + "breast: pale pinkish-gray with a slightly darker tinge", + "crown: gray feathers capped with a thin, black, spiky crest", + "forehead: smooth, pale gray feathers", + "eyes: dark and rounded, surrounded by a thin white eye-ring", + "legs: pinkish-gray, slender, and unfeathered", + "wings: soft gray with brown patches and thin, white accents", + "nape: pale gray with a smooth-feather transition into the crown", + "tail: long and tapered, gray with a white band at the end", + "throat: light beige, blending seamlessly into the breast" + ], + "crested quail dove": [ + "back: brownish-grey with faint black streaks", + "beak: short and greyish-black", + "belly: soft grey blending into pale creamy white", + "breast: pale grey with a tinge of pinkish-purple", + "crown: deep bluish-grey with prominent crest feathers", + "forehead: bluish-grey transitioning into the crown", + "eyes: large, dark, with a thin white eye-ring", + "legs: slim and pinkish-brown", + "wings: brownish-grey, elongated, with white tips on outer feathers", + "nape: bluish-grey, continuing from the crown", + "tail: medium length, grey with white outer tail feathers", + "throat: pale grey tinged with pinkish-purple" + ], + "crested quetzal": [ + "back: vibrant green feathers", + "beak: strong, black, slightly curved", + "belly: deep crimson red plumage", + "breast: iridescent green feathers with hints of blue", + "crown: crest of long, thin green feathers", + "forehead: bright green with blue shimmer", + "eyes: round, shining, black surrounded by white", + "legs: gray and sturdy with sharp claws", + "wings: iridescent green with prominent feathers", + "nape: smooth transition from crest to back", + "tail: elongated, iridescent green with red undertail coverts", + "throat: metallic green plumage with blue sheen" + ], + "crested satinbird": [ + "back: vibrant olive-green", + "beak: slender, black curved", + "belly: pale yellow underparts", + "breast: brilliant orange", + "crown: silvery-white crest", + "forehead: metallic-green gloss", + "eyes: black, piercing gaze", + "legs: grayish-black, slender", + "wings: shiny olive-green, rounded", + "nape: metallic-green highlights", + "tail: elongated, silver-tinged feathers", + "throat: light golden-yellow" + ], + "crested shrikejay": [ + "back: sleek, slate-gray feathers", + "beak: elongated, needle-like, and black", + "belly: soft white with faint gray streaks", + "breast: light gray transitioning to white", + "crown: prominent, black crest with a blue sheen", + "forehead: smooth, grayish-blue plumage", + "eyes: dark, piercing, and alert", + "legs: sturdy, black, and suited for perching", + "wings: strong, slate-gray, and expansive", + "nape: merging black crest with gray-blue body", + "tail: elongated, fanned, with black and white feathers", + "throat: white with grayish-blue upper feather edges" + ], + "crested tit warbler": [ + "back: greyish-brown feathers with subtle streaks", + "beak: short, thin, and pointed", + "belly: creamy white with faint markings", + "breast: pale grey with possible faint streaks", + "crown: distinctive black and white crest", + "forehead: black with white markings in the crest", + "eyes: deep black with white eye-ring", + "legs: thin, pale pinkish legs with sharp claws", + "wings: greyish-brown with white-edged feathers", + "nape: black band connecting to the crest", + "tail: long, grey-brown with white outer feathers", + "throat: pale grey with faint streaks" + ], + "crested treeswift": [ + "back: sleek, elongated body with gray-brown feathers", + "beak: long, thin, and slightly curved for catching insects", + "belly: pale grayish-white, smooth, and soft feathers", + "breast: grayish-white plumage blending with the belly", + "crown: distinct crest of elongated feathers on top of the head", + "forehead: smooth, grayish-brown feathers above the sharp beak", + "eyes: dark, round, and alert, adapted for excellent vision", + "legs: short, slender, and adapted for perching on branches", + "wings: large, strong, and powerful with rounded broad tips", + "nape: blended difference between the crown and back", + "tail: long, forked, and streamlined for maneuverability in flight", + "throat: pale grayish-white, blending with the breast and belly" + ], + "crestless curassow": [ + "back: dark brown feathers covering the upper body", + "beak: robust, black, and slightly curved", + "belly: lighter brown feathers with some white speckles", + "breast: dark brown feathers with occasional lighter spots", + "crown: smooth, dark brown feathers covering the head", + "forehead: slightly lighter brown feathers above the eyes", + "eyes: small, round, and dark in color", + "legs: strong and sturdy with black scales", + "wings: dark brown feathers with a slight gloss", + "nape: dark brown feathers connecting the head to the back", + "tail: long, dark brown feathers with white tips", + "throat: brown feathers transitioning to the breast area" + ], + "cretzschmar babbler": [ + "back: olive-brown with fine streaks", + "beak: short and pointed, dark gray", + "belly: pale grayish-white", + "breast: light brown with gray tinge", + "crown: dark chestnut-brown with fine streaks", + "forehead: dark chestnut-brown with fine streaks", + "eyes: dark brown, surrounded by pale eye-ring", + "legs: sturdy and grayish-pink", + "wings: olive-brown, streaked pattern", + "nape: chestnut-brown, fine streaks", + "tail: long and olive-brown with dark bars", + "throat: pale grayish-white" + ], + "cretzschmar bunting": [ + "back: olive-brown with dark streaks", + "beak: short, conical, pale grayish-blue", + "belly: pale pinkish-white", + "breast: rust-red with dark streaks", + "crown: light gray with darker streaks", + "forehead: lighter gray than crown", + "eyes: black with white eyering", + "legs: pinkish-gray", + "wings: brown with pale edges, wingbars", + "nape: grayish-brown with dark streaks", + "tail: dark brown, forked, white outer feathers", + "throat: light grayish-white" + ], + "cricket longtail": [ + "back: vibrant green feathers", + "beak: long and slender", + "belly: pale yellow hue", + "breast: light green plumage", + "crown: narrow head crest", + "forehead: smooth green feathers", + "eyes: small and shiny black", + "legs: thin and medium length", + "wings: elongated and green, patterned with black and white bands", + "nape: greenish with distinctive markings", + "tail: extraordinarily long, thin, and curved, with feathered tips", + "throat: green shades, blending with the breast area" + ], + "crimson finch": [ + "back: vibrant red feathers", + "beak: strong, conical shape", + "belly: bright white plumage", + "breast: striking crimson red", + "crown: deep red feathers", + "forehead: bold red patch", + "eyes: sharp, black beady", + "legs: sturdy, grey-brown", + "wings: black and red patterned", + "nape: brilliant red coloring", + "tail: long, black-tipped feathers", + "throat: fiery red hue" + ], + "crimson fruitcrow": [ + "back: deep red feathers with a slight glossy finish", + "beak: short, black, strong, and gently curved", + "belly: vibrant crimson with a silky feather texture", + "breast: bright red chest feathers, slightly puffed outward", + "crown: glossy red crest sitting atop the head", + "forehead: smooth crimson feathers transitioning to the crown", + "eyes: black, round, alert, and surrounded by red feathers", + "legs: slender, dark gray legs with sharp black claws", + "wings: red with a touch of iridescence, slightly curved tips", + "nape: red feathers covering the back of the neck, blending with the back", + "tail: moderate length with a squared-off end, comprised of vibrant red feathers", + "throat: vivid red feathers leading from the beak to the breast" + ], + "crimson rosella": [ + "back: bright blue with black-edged feathers", + "beak: pale cream, strong and sharply hooked", + "belly: vivid blue with a touch of green", + "breast: crimson red with a slight curve", + "crown: deep red with a smooth texture", + "forehead: rich red and slightly raised", + "eyes: dark brown with a sharp gaze", + "legs: gray and sturdy, suited for perching", + "wings: blue with black edges and red accents", + "nape: crimson red, smoothly blending with the crown", + "tail: long and blue with black bands", + "throat: brilliant red, slightly curved towards beak" + ], + "crimson seedcracker": [ + "back: deep red feathers with lighter edges", + "beak: short, thick, and white", + "belly: pale red with fine black streaks", + "breast: vibrant crimson plumage", + "crown: deep red feathers, slightly raised", + "forehead: smooth red feathers", + "eyes: small, dark, and alert", + "legs: long, slender, and black", + "wings: red with black markings", + "nape: red feathers transitioning from the crown", + "tail: long, red with black banding", + "throat: bright crimson feathers" + ], + "crimson shining parrot": [ + "back: vibrant red feathers with green accents", + "beak: strong, curved, black beak", + "belly: rich crimson plumage", + "breast: stunning scarlet feathers", + "crown: emerald green head and neck", + "forehead: bright green, clearly defined", + "eyes: sharp, intelligent gaze", + "legs: sturdy and covered in green and red feathers", + "wings: multi-hued red and green feathers, elongated", + "nape: transition from green to red plumage", + "tail: long, wispy feathers with red and blue streaks", + "throat: lighter shade of red or orange-red feathers" + ], + "crimson topaz": [ + "back: vibrant greenish-yellow with iridescent gold", + "beak: black and straight, slightly curved at tip", + "belly: bright golden-yellow with iridescent sheen", + "breast: brilliant crimson blending into yellow", + "crown: radiant orange with metallic reflections", + "forehead: glowing golden hue near the beak", + "eyes: dark with a protective black ring", + "legs: grayish-black with slightly curved claws", + "wings: shimmering golden-green with black edges", + "nape: lustrous greenish-gold transitioning to orange", + "tail: long, iridescent green streamers", + "throat: gleaming, fiery red blending into breast color" + ], + "crimson backed flameback": [ + "back: deep crimson feathers with dark streaks", + "beak: curved black chisel-like bill", + "belly: pale yellow plumage with black streaks", + "breast: vivid golden-yellow feathers", + "crown: bright crimson cap", + "forehead: bold crimson patch", + "eyes: dark, alert, and inquisitive", + "legs: sturdy grayish-blue limbs", + "wings: crimson and black striped pattern", + "nape: crimson feathers with slight curve", + "tail: black feathers with crimson tips", + "throat: pale yellow with fine black streaks" + ], + "crimson backed sunbird": [ + "back: vibrant crimson hue", + "beak: slender, slightly-curved, black", + "belly: yellow-green with indigo streaks", + "breast: iridescent greenish-blue", + "crown: shimmering metallic crimson", + "forehead: glistening greenish-black", + "eyes: small, round, dark", + "legs: thin, dark grayish-blue", + "wings: mix of blue, purple, and green feathers", + "nape: intense crimson red", + "tail: incurved, bluish-black", + "throat: bright emerald-green" + ], + "crimson backed tanager": [ + "back: vibrant crimson hue", + "beak: short, pointed, black", + "belly: brilliant crimson color", + "breast: bright crimson shade", + "crown: gleaming crimson red", + "forehead: intense crimson color", + "eyes: round, black, alert", + "legs: strong, grayish-blue", + "wings: crimson with contrasting black feathers", + "nape: crimson, blending with back", + "tail: elongated, black-tipped crimson feathers", + "throat: deep crimson red" + ], + "crimson bellied parakeet": [ + "back: vibrant green feather coverage", + "beak: strong, hook-shaped, blackish-gray", + "belly: crimson-red hue with occasional green feathers", + "breast: brightly colored red plumage", + "crown: striking green feathers on top of head", + "forehead: brilliant green and blue hues", + "eyes: dark, prominent with white eye-ring", + "legs: grayish, short, sturdy legs with sharp claws", + "wings: green and blue feathers with black flight feathers", + "nape: bold green feathers with a slight blue hue", + "tail: long, slender green and blue feathers with black tips", + "throat: soft green transitioning into red breast feathers" + ], + "crimson bellied woodpecker": [ + "back: vibrant crimson feathers with black streaks", + "beak: sturdy, chisel-shaped black beak", + "belly: eye-catching crimson shade with white undertones", + "breast: striking crimson feathers with black bars", + "crown: glossy black with hints of red on the sides", + "forehead: gleaming black with a crimson streak", + "eyes: round and dark with a white ring around", + "legs: strong and grey with sharp black claws", + "wings: black and white barred pattern with crimson highlights", + "nape: bold black and crimson striped pattern", + "tail: stiff black feathers with white tips and crimson base", + "throat: deep crimson hue with small black specks" + ], + "crimson breasted finch": [ + "back: vibrant reddish-orange plumage", + "beak: short, powerful, and conical", + "belly: bright red with white undertail coverts", + "breast: deep crimson color", + "crown: striking red feathers", + "forehead: intense red hue", + "eyes: small, dark, and alert", + "legs: sturdy and grayish-pink", + "wings: brownish-grey with white edging", + "nape: rich red plumage on back of neck", + "tail: medium-length with white outer feathers", + "throat: vivid red plumage" + ], + "crimson breasted flowerpecker": [ + "back: vibrant crimson-red feathers", + "beak: small, curved, black beak", + "belly: red with speckled white spots", + "breast: rich crimson coat", + "crown: deep red feathers on top of the head", + "forehead: blazing red plumage", + "eyes: small, round, black eyes", + "legs: slender, dark grey", + "wings: red with black and white patches", + "nape: crimson hue connecting to back", + "tail: short, red feathers with white tips", + "throat: bright red and smooth" + ], + "crimson breasted gonolek": [ + "back: vibrant red feathers", + "beak: sharp, black, and conical", + "belly: crimson red plumage", + "breast: bright crimson chest", + "crown: scarlet red crest", + "forehead: red feathers meeting the beak", + "eyes: small, black, beady orbs", + "legs: slender and black with sharp claws", + "wings: reddish-orange with black flight feathers", + "nape: transition from red crown to black upper back", + "tail: medium-length, black feathers with white tips", + "throat: brilliant red feathers continuing from the breast" + ], + "crimson breasted woodpecker": [ + "back: reddish-brown plumage with black speckles", + "beak: straight, strong, and pointed for drilling into wood", + "belly: white or cream-colored with black streaks", + "breast: vibrant red feathers, giving it its name", + "crown: rich brown color with a red patch in males", + "forehead: brown feathers above the eyes, transitioning to red in males", + "eyes: small, dark, and alert, surrounded by a white eye-ring", + "legs: greyish-brown and strong for grasping branches", + "wings: triangular, reddish-brown with black and white barred pattern", + "nape: brown color with a white stripe separating it from the crown", + "tail: stiff and pointed for extra support while scaling tree trunks", + "throat: white or light grey with a reddish tinge in some individuals" + ], + "crimson browed finch": [ + "back: vibrant green plumage", + "beak: short, sturdy, and silver-grey", + "belly: soft, pale yellow feathers", + "breast: bright, rosy-red coloration", + "crown: distinct crimson-browed marking", + "forehead: deep red feathers extend to the eye", + "eyes: small, dark, and alert", + "legs: delicate, slender, and pale grey", + "wings: green with black-edge feathers", + "nape: green plumage, blending seamlessly with the back", + "tail: green with contrasting black edges", + "throat: rosy-red hues, fading to pale yellow" + ], + "crimson collared grosbeak": [ + "back: bright red feathers covering dorsal area", + "beak: thick and conical, black-colored", + "belly: white with small red flecks", + "breast: vibrant red feathers with broad band", + "crown: striking red feathered crest", + "forehead: smooth red-plumaged region", + "eyes: small and beady, dark-colored", + "legs: robust and grayish in hue", + "wings: black with red shoulder patch", + "nape: red feathered section behind head", + "tail: black with white outer rectrices", + "throat: contrasting white feathers under beak" + ], + "crimson collared tanager": [ + "back: vibrant green feathers", + "beak: sharp, black, medium-sized", + "belly: deep crimson hue", + "breast: bright crimson shade", + "crown: lush green feathers", + "forehead: brilliant green color", + "eyes: small, dark, alert", + "legs: thin, grayish-black", + "wings: green with black accents", + "nape: rich green plumage", + "tail: long, green and black feathers", + "throat: striking crimson red" + ], + "crimson crested woodpecker": [ + "back: red and black striped feathers", + "beak: chisel-like strong black beak", + "belly: white to pale beige feathers", + "breast: bright red with hints of black", + "crown: vibrant red crest on the head", + "forehead: red feathers extending from beak", + "eyes: small, bright, and black", + "legs: grayish-black and sturdy", + "wings: black with vivid white spots", + "nape: red feathers connecting crown to back", + "tail: black with white patches, used for support", + "throat: red feathers blending into breast" + ], + "crimson crowned flowerpecker": [ + "back: vibrant green plumage", + "beak: short, stout, black", + "belly: pale, yellow-green feathers", + "breast: bright crimson patch", + "crown: striking crimson cap", + "forehead: stunning red plumage", + "eyes: small, dark, lively", + "legs: thin, grey, and strong", + "wings: greenish-blue with dark primaries", + "nape: emerald green feathers", + "tail: short and slightly forked", + "throat: light green hue" + ], + "crimson crowned fruit dove": [ + "back: vibrant green feathers", + "beak: short, hooked, and orange", + "belly: soft lime-green plumage", + "breast: bright crimson hue", + "crown: striking red feathers", + "forehead: continuation of red crown", + "eyes: dark, round, with a white eye-ring", + "legs: short, sturdy, with scaly grey texture", + "wings: slightly rounded, green mixed with blue feathers", + "nape: blend of green and crimson feathers", + "tail: green with dark blue tips, fan-shaped", + "throat: luminous green feathers" + ], + "crimson fronted barbet": [ + "back: vibrant green feathers", + "beak: short and stout, pale yellow", + "belly: bright yellow plumage", + "breast: bold red patch", + "crown: green with blue streaks", + "forehead: crimson red", + "eyes: dark with thin white ring", + "legs: grayish-blue, strong", + "wings: green with blue edges", + "nape: green and blue hues", + "tail: green feathers, slightly forked", + "throat: deep blue patch" + ], + "crimson fronted cardinal": [ + "back: vibrant red feathers covering the rear upper body", + "beak: sturdy, conical red-orange beak", + "belly: soft white feathers on the lower abdomen", + "breast: red feathers covering the upper chest area", + "crown: rich red crest on the top of the head", + "forehead: bright red feathers extending from beak to crown", + "eyes: dark, beady eyes with a black outline", + "legs: slender legs and feet with greyish skin", + "wings: black feathers with a mixture of red and white patterns", + "nape: red feathers extending down the back of the neck", + "tail: black feathers with red and white bands near the base", + "throat: white feathers transitioning to red across the neck" + ], + "crimson fronted parakeet": [ + "back: vibrant green feathers", + "beak: short, curved, and pale orange", + "belly: lighter green feathers", + "breast: yellowish-green plumage", + "crown: bright crimson patch", + "forehead: distinctive red feathers", + "eyes: dark with white eye-rings", + "legs: light gray and slender", + "wings: green with blue flight feathers", + "nape: crimson streak extending downward", + "tail: long, blue-tipped feathers", + "throat: pale greenish-yellow plumage" + ], + "crimson headed partridge": [ + "back: red and green iridescent plumage", + "beak: short and strong, beige color", + "belly: grayish-white feathers", + "breast: bright red plumage", + "crown: crimson red feathers", + "forehead: red feathers transitioning to green", + "eyes: dark brown with pale eye-ring", + "legs: sturdy, feathered with grayish scales", + "wings: reddish-brown with green highlights", + "nape: red transitioning to green feathers", + "tail: long, brown with green iridescence", + "throat: bright red feathers" + ], + "crimson hooded manakin": [ + "back: vibrant green feathers", + "beak: short and black", + "belly: white underbelly", + "breast: white to light gray chest", + "crown: bright crimson hood", + "forehead: red merging into green", + "eyes: black and expressive", + "legs: slim grayish-brown", + "wings: green with rounded edges", + "nape: red fusing into green", + "tail: compact green feathers", + "throat: red transitioning to white" + ], + "crimson hooded myzomela": [ + "back: vibrant crimson with subtle black streaks", + "beak: small, slender, and black", + "belly: deep red with lighter undertones", + "breast: rich, fiery red", + "crown: intense crimson, softly blending into the forehead", + "forehead: blazing red hue, merging with the crown", + "eyes: round, dark, and alert", + "legs: slim black with sharp claws", + "wings: blazing red with dark edges", + "nape: striking crimson, melding into the back", + "tail: vivid red with a black tip", + "throat: brilliant, deep red shade" + ], + "crimson mantled woodpecker": [ + "back: red and black striped pattern", + "beak: strong, chisel-like beak", + "belly: white with black barring", + "breast: white with black speckles", + "crown: vibrant red feathers", + "forehead: red plumage extending forward", + "eyes: small, black with white eye-ring", + "legs: grayish-brown, sturdy legs", + "wings: black with white patches and red markings", + "nape: red plumage connecting with crown", + "tail: black with white barring", + "throat: partially red with white streaking" + ], + "crimson rumped toucanet": [ + "back: vibrant green feathers", + "beak: large, colorful, curved", + "belly: light yellow hue", + "breast: bright yellow plumage", + "crown: deep green crest", + "forehead: prominent, greenish-blue", + "eyes: round, dark, and expressive", + "legs: sturdy, blue-gray", + "wings: powerful, green with blue hints", + "nape: rich green with blue tint", + "tail: long, green, and red-tipped", + "throat: bright red patch" + ], + "crimson rumped waxbill": [ + "back: vibrant green feathers", + "beak: sharp, pointy black", + "belly: soft whitish grey", + "breast: reddish-pink plumage", + "crown: deep green cap", + "forehead: bright green feathers", + "eyes: small, round, black", + "legs: thin, brownish-grey", + "wings: greenish with blue hues, strong", + "nape: deep green feathers", + "tail: crimson-red, long", + "throat: beige, smooth feathers" + ], + "crimson winged finch": [ + "back: vibrant crimson feathers", + "beak: small, pointed, light-colored", + "belly: white with soft feathering", + "breast: bright red with streaks", + "crown: brilliant red with smooth crest", + "forehead: deep red merging into the crown", + "eyes: dark, round, alert", + "legs: slender, strong, light gray", + "wings: striking crimson with black tips", + "nape: rich red blending into the back", + "tail: long, black tipped feathers", + "throat: intense red with delicate streaks" + ], + "crimson winged woodpecker": [ + "back: deep red mosaic-like pattern", + "beak: sturdy and elongated, black", + "belly: whitish with red undertones", + "breast: bright crimson with flecks of white", + "crown: striking red crest with black feathers", + "forehead: black with hints of red", + "eyes: piercing, dark, and alert", + "legs: grayish-black with strong claws", + "wings: red feathers with black spots", + "nape: red and black striped design", + "tail: elongated, red with black bands", + "throat: crimson with streaks of white" + ], + "crinkle collared manucode": [ + "back: iridescent greenish-black feathers", + "beak: short, stout, and slightly curved", + "belly: dark green, velvety plumage", + "breast: greenish black with slight iridescence", + "crown: shiny greenish-black crest", + "forehead: smoother greenish-black feathers", + "eyes: small and dark", + "legs: grayish-purple with strong feet", + "wings: rounded, glossy greenish-black", + "nape: vibrant green-black plumage with crinkle texture", + "tail: long, dark, and slightly rounded with shimmering green-blue sheen", + "throat: greenish-black, slightly less iridescent than other feathers" + ], + "crissal thrasher": [ + "back: dark brownish-grey with streaks", + "beak: long, curved, and pale gray", + "belly: buff or pale brown with faint spots", + "breast: light brown with black spots and streaks", + "crown: pale brown with faint streaks", + "forehead: smooth, pale brown", + "eyes: dark, surrounded by pale brown feathers", + "legs: strong and grayish", + "wings: brown with faint darker bars", + "nape: pale brown with faint streaks", + "tail: long, brown with dark barring and white tips", + "throat: light brown with faint spots" + ], + "croaking cisticola": [ + "back: light brown with scattered streaks", + "beak: short and pointed", + "belly: off-white with faint streaks", + "breast: light brown with dark streaks", + "crown: olive brown with streaks", + "forehead: pale with light streaks", + "eyes: small and dark", + "legs: short and thin, light pinkish-brown", + "wings: mottled brown, short rounded shape", + "nape: light brown with streaks", + "tail: dark brown, fan-shaped with white-tipped edges", + "throat: off-white, unmarked" + ], + "croaking ground dove": [ + "back: subtle brown feathering", + "beak: short, curved black peak", + "belly: creamy tan coloration", + "breast: faintly spotted, light grayish-brown hues", + "crown: sleek, grayish-brown surface", + "forehead: smooth, cream-toned contour", + "eyes: round, dark bead-like gaze", + "legs: slender pinkish-gray stems", + "wings: light brown plumage with faint black markings", + "nape: grayish-brown feather transition", + "tail: squared, light brown feathers with intermittent dark spots", + "throat: smooth, faint cream color" + ], + "crossley ground thrush": [ + "back: olive-brown with pale spots", + "beak: straight, thin, dark-grey", + "belly: white with dark-grey streaks", + "breast: pale, greyish-brown with spots", + "crown: olive-brown with faint streaks", + "forehead: smooth, greyish-brown", + "eyes: dark with thin eye-ring", + "legs: long, strong, pale pinkish-grey", + "wings: olive-brown, barred with pale streaks", + "nape: olive-brown with faint streaks", + "tail: dark, greyish-brown with pale tips", + "throat: pale, greyish-white with dark-grey streaks" + ], + "crossley vanga": [ + "back: dark grey with black streaks", + "beak: sturdy and hooked, black", + "belly: white with greyish flanks", + "breast: greyish-white, sometimes tinged with pale yellow", + "crown: glossy black", + "forehead: dark grey merging with black crown", + "eyes: deep brown, slightly highlighted by pale eyering", + "legs: pale pinkish-grey, strong", + "wings: dark grey with black streaks, white feather edges", + "nape: dark grey with black streaks, continuous with back", + "tail: long, black with white tips", + "throat: whitish-grey, blending into greyish-white breast" + ], + "crow honeyeater": [ + "back: sleek black plumage", + "beak: long, slender, and black", + "belly: slightly lighter grayish-black feathers", + "breast: dark black with a hint of metallic sheen", + "crown: shiny black feathers", + "forehead: smooth black feathers", + "eyes: small and dark with a keen gaze", + "legs: sturdy black with strong grip", + "wings: powerful black feathers built for flight", + "nape: black feathers transitioning into a gray-black blend", + "tail: long, black, and slightly fan-shaped", + "throat: black feathers with a faint glossy appearance" + ], + "crow billed drongo": [ + "back: glossy black with a hint of iridescence", + "beak: short, strongly hooked, and black", + "belly: deep black and sleek", + "breast: shiny black with minimal feathering", + "crown: black with a subtle sheen", + "forehead: smooth black, slightly curved", + "eyes: dark brown, almost black, sharp gaze", + "legs: sturdy and dark gray", + "wings: long, slightly pointed with glossy black feathers", + "nape: black with a sleek, curved shape", + "tail: broad, slightly forked, glossy black", + "throat: black with a smooth contour" + ], + "crowned chat tyrant": [ + "back: light grey feathers with olive tones", + "beak: sharp, slender, and black", + "belly: pale yellowish-white plumage", + "breast: light grey with noticeable streaking", + "crown: bright yellow crest with black band", + "forehead: grey plumage blending into the yellow crown", + "eyes: black, round, with white eyelid edges", + "legs: long, thin, dark grey", + "wings: greyish-olive with white-tipped secondary feathers", + "nape: light grey, blending into the yellow crown", + "tail: greyish-brown with paler outer feathers", + "throat: light grey plumage, blending into the breast streaking" + ], + "crowned cormorant": [ + "back: sleek coal-black feathers", + "beak: long, slender, hooked tip", + "belly: soft white feathering", + "breast: contrasting white plumage", + "crown: distinct white crest", + "forehead: smooth black outline", + "eyes: bright piercing blue", + "legs: sturdy black, webbed feet", + "wings: elongated black feathers", + "nape: white patch extending from crown", + "tail: sharp black, fan-like", + "throat: slightly feathered white curve" + ], + "crowned eagle": [ + "back: dark brown feathers with light markings", + "beak: powerful, hooked, blackish-gray", + "belly: white with blackish-brown barring", + "breast: white with black streaks", + "crown: prominent, long, shaggy black feathers", + "forehead: white with blackish-brown markings", + "eyes: piercing yellow with black pupil", + "legs: strong, feathered, light gray", + "wings: long, broad, dark brown with lighter markings", + "nape: blackish-brown with white edges", + "tail: dark brown with broad white bands", + "throat: white with blackish-brown streaks" + ], + "crowned lapwing": [ + "back: brownish-grey feathers", + "beak: short and sharp, black tip with red base", + "belly: white plumage", + "breast: brownish-grey with black patch", + "crown: black with prominent white stripe", + "forehead: white feathers above beak", + "eyes: bright and alert, black with pale yellow rings", + "legs: long and thin, pale pink", + "wings: brownish-grey with white trailing edges", + "nape: black collar with white stripe above", + "tail: short, black and white feathers", + "throat: white plumage" + ], + "crowned sandgrouse": [ + "back: brownish-grey feathers with speckled patterns", + "beak: short and pointed, pale-colored", + "belly: creamy white with light speckling", + "breast: greyish-brown with fine black bars", + "crown: golden-buff with a black central stripe", + "forehead: light golden-buff", + "eyes: dark with a white eye-ring", + "legs: sturdy and yellowish", + "wings: long and pointed, brown with black and white markings", + "nape: golden-buff with black central striping", + "tail: brown with white and black bars", + "throat: creamy white, sharply delineated from breast" + ], + "crowned slaty flycatcher": [ + "back: blueish-gray feathered", + "beak: short, sharp, and black", + "belly: pale grayish-white", + "breast: light gray with blue tinge", + "crown: deep slate-blue color", + "forehead: blueish-gray feathers", + "eyes: small, round, with black pupils", + "legs: thin, dark gray, and long", + "wings: blue-gray with darker ends", + "nape: blue-gray right above the wings", + "tail: long, slate-blue feathers with darker tips", + "throat: pale bluish-gray" + ], + "crowned woodnymph": [ + "back: iridescent green feathers", + "beak: thin and needle-like", + "belly: shining purple-blue plumage", + "breast: vibrant turquoise-green feathers", + "crown: shimmering violet crest", + "forehead: metallic green hues", + "eyes: small and dark with white-eye rings", + "legs: slender pale pink legs", + "wings: bright green with elongated coverts", + "nape: gleaming violet-green plumage", + "tail: long and forked with blue-green feathers", + "throat: iridescent green patch" + ], + "crozet shag": [ + "back: dark bluish-black feathers", + "beak: long, slender, and greyish-black", + "belly: white feathers with black edges", + "breast: white with black upper border", + "crown: black with slight crest", + "forehead: black and sloping", + "eyes: small with red eye-ring", + "legs: pinkish with webbed feet", + "wings: black with white underwing patches", + "nape: black with slight crest", + "tail: long, fan-shaped with black feathers", + "throat: white feathers with black edges" + ], + "cryptic flycatcher": [ + "back: olive-brown with slight streaks", + "beak: short, wide, and black", + "belly: creamy white and barely streaked", + "breast: light grayish-brown with subtle streaks", + "crown: grayish-brown with faint ridges", + "forehead: pale olive-gray", + "eyes: large, dark, and alert", + "legs: sturdy and dark-colored", + "wings: olive-brown with faint bars", + "nape: dusky grayish-brown", + "tail: slightly forked, brown with subtle barring", + "throat: pale and unmarked" + ], + "cryptic forest falcon": [ + "back: forest-green sleek feathers", + "beak: sharp and hooked, blackish-gray", + "belly: lighter green with subtle markings", + "breast: olive green blending to cream", + "crown: vivid green with subtle lines", + "forehead: prominent with green feathers", + "eyes: piercing yellow orbs", + "legs: strong, yellow scaly limbs", + "wings: vibrant green with strong black bars", + "nape: delicate green to cream transition", + "tail: long, banded green and black feathers", + "throat: creamy white with faint markings" + ], + "cryptic honeyeater": [ + "back: brownish-olive plumage", + "beak: long, thin, curved", + "belly: light cream underbelly", + "breast: pale yellowish-brown feathers", + "crown: rufous-red patch", + "forehead: slightly paler rufous", + "eyes: dark, piercing gaze", + "legs: slender, pale blue-grey", + "wings: brownish-olive with slight barring", + "nape: yellowish-brown hue", + "tail: long, slightly forked, olive-brown", + "throat: pale cream feathering" + ], + "cryptic warbler": [ + "back: olive-green with subtle streaks", + "beak: slim and pointed, dark upper, pale lower", + "belly: pale-yellow fading to white", + "breast: delicate yellow with faint streaks", + "crown: olive-brown, well-defined", + "forehead: pale beige with subtle streaks", + "eyes: a dark, sharp gaze surrounded by a faint eye-ring", + "legs: long, slender, and pale-colored", + "wings: olive-brown, adorned with two yellow wing-bars", + "nape: olive-green, faintly streaked", + "tail: short, rounded, and olive-brown with faint barring", + "throat: creamy-white with light feathering" + ], + "cuban black hawk": [ + "back: dark brown feathers with lighter edges", + "beak: strong, slightly hooked black bill", + "belly: dark, barred brown and white underparts", + "breast: dark brown with white streaks", + "crown: chocolate-brown feathers on top of the head", + "forehead: dark brown feathers blending with crown", + "eyes: bright yellow with black pupils", + "legs: yellow, thick and sturdy", + "wings: broad, dark brown with light feather edges", + "nape: dark brown, connecting head to back", + "tail: black and brown bands with white tips", + "throat: dark brown with a lighter streaked pattern" + ], + "cuban blackbird": [ + "back: dark iridescent black with glossy sheen", + "beak: long and slightly curved, black in color", + "belly: deep black feathers fading into a lighter black towards the tail", + "breast: smooth, dark black plumage", + "crown: lustrous black with hints of blue and green iridescence", + "forehead: sleek black feathers with smooth transitions into eyes", + "eyes: piercing, bright yellow with black pupils", + "legs: strong, black legs with sharp, ebony claws", + "wings: dark black feathers with iridescent sheen at certain angles", + "nape: slightly lighter, non-glossy black feathers", + "tail: long, well-spaced black feathers with a distinctive forked shape", + "throat: shiny black feathers transitioning smoothly into breast" + ], + "cuban bullfinch": [ + "back: dark gray feathers covering dorsal area", + "beak: short, robust, black", + "belly: shades of gray, small feathers", + "breast: grayish-white, dense plumage", + "crown: black, rounded contour", + "forehead: black feathers, slightly pronounced", + "eyes: round, black, surrounded by faint white ring", + "legs: sturdy, grayish-brown", + "wings: dark gray, broad, rounded tips", + "nape: black to dark gray plumage", + "tail: compact, dark gray, slightly forked", + "throat: grayish-white, smooth transition from breast" + ], + "cuban crow": [ + "back: dark grayish-black feathers", + "beak: long, straight, and black", + "belly: slightly paler grayish-black feathers", + "breast: dark gray to black plumage", + "crown: smooth black feathers", + "forehead: sleek black feathers", + "eyes: bright and alert, surrounded by black feathers", + "legs: long, black, and sturdy", + "wings: large, dark feathers with strong flight muscles", + "nape: dark grayish-black feathers connecting the head to the back", + "tail: wide, fan-shaped, and black", + "throat: dark gray to black, slightly pale feathers" + ], + "cuban emerald": [ + "back: metallic green feathers", + "beak: slender and curved structure", + "belly: light gray and white hue", + "breast: bright green, shimmering scales", + "crown: iridescent green plumage", + "forehead: shining green appearance", + "eyes: small, dark, and alert", + "legs: short, sturdy, dark gray", + "wings: metallic green with dark edges", + "nape: resplendent green transition", + "tail: forked, elongated, dark feathers", + "throat: vivid turquoise-blue flash" + ], + "cuban gnatcatcher": [ + "back: soft blue-gray with subtle streaks", + "beak: thin, black, slightly curved", + "belly: pale grayish-white", + "breast: light blue-gray", + "crown: blue-gray with white streaks", + "forehead: blue-gray with faint white streaks", + "eyes: black with white eyering", + "legs: thin, black, and long", + "wings: blue-gray with faint bars", + "nape: pale gray with white streaks", + "tail: long, black with white outer edges", + "throat: light grayish-white" + ], + "cuban grassquit": [ + "back: olive-green with darker streaks", + "beak: short, conical, and silver-grey", + "belly: pale grayish underparts", + "breast: yellowish, dark speckles", + "crown: black, distinctive marking", + "forehead: small, black patch above beak", + "eyes: bright, dark, and round", + "legs: slender, grayish-brown", + "wings: olive-green, darker shade", + "nape: olive-green, blends with back", + "tail: short, dark, and sharply pointed", + "throat: yellow with black markings" + ], + "cuban green woodpecker": [ + "back: olive-green feathers with dark streaks", + "beak: long, straight, and chisel-like with a blackish color", + "belly: pale yellow with dark streaks or spots", + "breast: light yellow or yellow-green, spotted with black or brown", + "crown: reddish-brown with darker streaks", + "forehead: pale olive-green, occasionally with a red tint", + "eyes: white or pale yellow with a black pupil", + "legs: grayish or bluish-gray with strong claws", + "wings: olive-green with yellow edges and black or brown streaks", + "nape: olive-green with dark streaks or spots", + "tail: olive-green with black bars and lighter speckles", + "throat: pale yellow or yellowish-white with dark streaks or spots" + ], + "cuban martin": [ + "back: glossy blue-black feathers", + "beak: small and pointed; black", + "belly: white or buffy-white feathers", + "breast: white or buffy-white plumage", + "crown: iridescent blue-black feathers", + "forehead: glossy blue-black with unique plumage", + "eyes: dark, surrounded by dark feathers", + "legs: short and black or dark gray", + "wings: black-blue, sharply pointed", + "nape: blue-black feathers with iridescent shine", + "tail: forked, with glossy black-blue feathers", + "throat: white or buffy-white feathers" + ], + "cuban nightjar": [ + "back: grayish-brown patterned plumage", + "beak: short, slightly curved, dark brown color", + "belly: pale creamy-white with brownish spots", + "breast: mottled gray-brown coloration", + "crown: grayish-brown with paler streaks", + "forehead: pale grayish-brown color", + "eyes: large, dark, forward-facing", + "legs: short, feathered, pale brown color", + "wings: relatively long, grayish-brown with pale markings", + "nape: gray-brown with pale streaks", + "tail: medium length, grayish-brown with faint barring", + "throat: pale grayish-white with mottled brown markings" + ], + "cuban oriole": [ + "back: sunny yellow upper side", + "beak: long, slender, curved black bill", + "belly: bright yellow underparts", + "breast: vibrant yellow feathers", + "crown: smooth black plumage", + "forehead: deep black feathers", + "eyes: dark, round, surrounded by black", + "legs: slender, bluish-gray legs", + "wings: dark, folded, striking white bars", + "nape: yellow merging into black", + "tail: black with yellow edges", + "throat: radiant yellow plumage" + ], + "cuban parakeet": [ + "back: vibrant green feathers", + "beak: short, hooked, light beige", + "belly: pale yellow-green plumage", + "breast: lighter green feathers", + "crown: striking blue coloring", + "forehead: rich blue feathers", + "eyes: small, dark with white eye-ring", + "legs: grayish, with two backward and two forward facing toes", + "wings: bright green with hints of blue", + "nape: greenish-blue transition from crown", + "tail: long, narrow, mix of green and blue feathers", + "throat: soft greenish-yellow plumage" + ], + "cuban parrot": [ + "back: vibrant green feathers, sleek", + "beak: strong, hooked, yellowish-white", + "belly: soft green and blue mixed feathers", + "breast: vivid turquoise, slightly fluffy", + "crown: bright green, feathers slightly raised", + "forehead: green feathers smoothly transitioning to blue", + "eyes: expressive, dark, encircled with bare white skin", + "legs: sturdy, greyish, scaly", + "wings: rich green, blue flight feathers visible", + "nape: green feathers merging into blue", + "tail: long, blue and green feathers, slightly fan-shaped", + "throat: sky-blue feathers, delicate" + ], + "cuban pewee": [ + "back: olive-green shade", + "beak: straight and thin", + "belly: off-white hue", + "breast: pale yellow feathers", + "crown: grayish-green crest", + "forehead: smooth, grayish-green", + "eyes: dark and round", + "legs: thin, strong limbs", + "wings: olive-brown with faint bars", + "nape: grayish-green transition", + "tail: fan-shaped, dark-tipped", + "throat: off-white color" + ], + "cuban pygmy owl": [ + "back: olive-brown with white spots", + "beak: short, curved, and grayish", + "belly: whitish with brown streaks", + "breast: sandy-brown with some markings", + "crown: olive-brown with white spots", + "forehead: light brown with faint markings", + "eyes: bright yellow encircled by black", + "legs: feathered and short with sharp claws", + "wings: olive-brown with white spots", + "nape: spotted with white on olive-brown background", + "tail: short with brown and white bands", + "throat: pale white with sparse brown streaks" + ], + "cuban solitaire": [ + "back: olive-green with bluish sheen", + "beak: thin and slightly curved, dark gray", + "belly: pale greyish-white", + "breast: grayish-white with faint streaks", + "crown: dull blue-gray", + "forehead: light bluish-gray", + "eyes: dark brown surrounded by faint eye-ring", + "legs: short, dark gray", + "wings: olive-green with cobalt blue edges", + "nape: olive-green with bluish tinge", + "tail: long and forked, dark greenish-blue", + "throat: lighter grayish-white with faint streaks" + ], + "cuban vireo": [ + "back: olive-green coloration and feathered", + "beak: short, slightly hooked, pale-colored", + "belly: light yellow with faint streaks", + "breast: yellowish-white hue blending with throat color", + "crown: olive-green with faint gray streaks", + "forehead: yellowish-white blending into crown", + "eyes: dark with white eyering, expressive", + "legs: sturdy and pale grayish-brown", + "wings: olive-green with two white wing bars", + "nape: olive-green transitioning from crown", + "tail: olive-green with white edges on feathers", + "throat: pale yellowish-white blending with breast" + ], + "cuckoo roller": [ + "back: dark greenish-blue iridescent feathers", + "beak: short, black, and hooked", + "belly: grayish with bold white markings", + "breast: grayish-blue with white streaks", + "crown: greenish-blue with slightly glossy appearance", + "forehead: flat and greenish-blue", + "eyes: dark brown encircled by pale gray area", + "legs: short, strong, and pale gray", + "wings: long, narrow, with greenish-blue and black patterning", + "nape: greenish-blue with white streaks", + "tail: broad, slightly fan-shaped, greenish-blue with black barring", + "throat: pale gray with faint white markings" + ], + "cundinamarca antpitta": [ + "back: olive-brown with subtle streaks", + "beak: strong, thin, and slightly curved", + "belly: creamy-white with grayish streaks", + "breast: grayish-brown with faint streaks", + "crown: slate-gray with lighter edges", + "forehead: slightly paler slate-gray", + "eyes: dark and small, surrounded by a pale eye-ring", + "legs: robust, pinkish-gray with strong feet", + "wings: olive-brown with faint bars", + "nape: slate-gray with slightly lighter edges", + "tail: long, olive-brown with narrow bars", + "throat: whitish-gray with fine streaks" + ], + "curl crested aracari": [ + "back: vibrant yellow-green with black streaks", + "beak: large, black, and yellow-tipped with a slight curve", + "belly: bright red-orange", + "breast: deep red with a black patch", + "crown: glossy black with curly crest feathers", + "forehead: black and smooth", + "eyes: reddish-brown with a black ring around them", + "legs: blueish-gray and sturdy", + "wings: greenish-black with a yellow edging", + "nape: yellow-green with black streaks, like the back", + "tail: long and black, with yellow crossband and red tip", + "throat: red coloration blending with the breast" + ], + "curl crested jay": [ + "back: vibrant blue feathers", + "beak: strong black and hooked", + "belly: light blue and fluffy", + "breast: bright blue plumage", + "crown: curly black crested feathers", + "forehead: black feathers blending into blue", + "eyes: sharp and dark with a blue eye ring", + "legs: sturdy black legs and claws", + "wings: striking blue with black edges", + "nape: rich blue blending into black crest", + "tail: long, dark blue feathers with black tips", + "throat: lighter blue with delicate feathers" + ], + "curl crested manucode": [ + "back: dark iridescent blue", + "beak: short and black", + "belly: shimmering black-blue", + "breast: glossy black", + "crown: curly feather crest", + "forehead: iridescent blue-black", + "eyes: brown surrounded by black", + "legs: black and slender", + "wings: iridescent blue and elongated", + "nape: black with a bluish sheen", + "tail: compact and fan-shaped", + "throat: shiny blue-black" + ], + "curlew sandpiper": [ + "back: light brown and gray feathered", + "beak: long, thin, and slightly curved", + "belly: white with light speckling", + "breast: pale brown with streaks", + "crown: streaked brown and gray", + "forehead: light grayish-brown", + "eyes: small and black", + "legs: slender and dark gray", + "wings: rounded with a mix of gray and brown", + "nape: brownish-gray with thin streaks", + "tail: short and fan-shaped, mixed browns", + "throat: pale with light streaks" + ], + "curve billed reedhaunter": [ + "back: pale brown with dark streaks", + "beak: long, curved, and pointed", + "belly: off-white with brown streaks", + "breast: pale brown with faint streaks", + "crown: grayish-brown with darker streaks", + "forehead: buffy with faint streaks", + "eyes: dark, piercing, with a thin white eyering", + "legs: long, sturdy, and pale gray", + "wings: brownish-gray with faint barring", + "nape: grayish-brown with slight streaks", + "tail: long and rounded, with dark barring", + "throat: buffy, unmarked" + ], + "curve billed scythebill": [ + "back: olive-brown feathers", + "beak: long, curved and sharp", + "belly: light-greyish shade", + "breast: pale, slightly streaked", + "crown: brownish-orange with a crest", + "forehead: smooth and feathered", + "eyes: small, black with a white outline", + "legs: strong and slender, reddish-brown", + "wings: elongated with brown barring", + "nape: feathered with a rusty-brown shade", + "tail: long and narrow, banded with brown", + "throat: whitish-grey with streaks" + ], + "curve billed tinamou": [ + "back: feathered with cryptic patterns", + "beak: slightly curved, sharp tip", + "belly: light, soft feathers", + "breast: rounded, buff-colored", + "crown: mottled brown with streaks", + "forehead: lighter brown, smooth texture", + "eyes: small, dark, and beady", + "legs: slender, bluish-gray", + "wings: short, rounded, barred plumage", + "nape: mixed brown streamlines", + "tail: small, pointed, earthy hues", + "throat: paler, streaked feathers" + ], + "cut throat": [ + "back: vibrant green feathers", + "beak: short, pointed, black", + "belly: yellowish orange", + "breast: bright red patch", + "crown: striking blue plumage", + "forehead: blue feathers transition", + "eyes: round, dark, and alert", + "legs: gray, thin, and long", + "wings: green and blue mixed feathers", + "nape: green feathers with blue hues", + "tail: elongated, narrow feathers, green and blue", + "throat: distinct red \"cut-throat\" marking" + ], + "cuzco brushfinch": [ + "back: brownish-gray plumage", + "beak: short, black, conical", + "belly: cream-colored with streaks", + "breast: grayish-brown with streaks", + "crown: reddish-brown with black stripes", + "forehead: whitish-gray with black streaks", + "eyes: small, dark, surrounded by feathers", + "legs: thin, pale pinkish-gray", + "wings: brownish-gray with black and white feather tips", + "nape: reddish-brown with black stripes", + "tail: long, brownish-gray, forked", + "throat: whitish-gray with black streaks" + ], + "cuzco warbler": [ + "back: olive green with slight streaks", + "beak: thin, elongated, and sharp", + "belly: pale yellowish-white", + "breast: light gray with faint streaks", + "crown: bright rufous-brown with faint streaks", + "forehead: dark gray or olive-brown", + "eyes: small and black with light eyering", + "legs: slim and grayish-brown", + "wings: olive-green with faint dark streaks", + "nape: olive-brown with subtle streaks", + "tail: slightly forked and dark brown", + "throat: light grayish-white" + ], + "cyprus scops owl": [ + "back: grayish-brown with dark streaks", + "beak: sharp, hooked, light-colored", + "belly: light gray with dark streaking", + "breast: pale gray with darker markings", + "crown: rounded, grayish-brown with fine streaks", + "forehead: paler gray with fine streaks", + "eyes: large, yellowish-orange, forward-facing", + "legs: feathered, sturdy, grayish-brown", + "wings: rounded, barred with dark and light patterns", + "nape: grayish-brown with darker streaks", + "tail: short, wide, dark and light barred", + "throat: pale gray, lightly streaked" + ], + "cyprus warbler": [ + "back: olive-brown with darker streaks", + "beak: slender and pointed, dark gray", + "belly: creamy or off-white", + "breast: light gray with dark streaks", + "crown: olive-brown with grayish streaks", + "forehead: slightly paler olive-brown", + "eyes: dark with white eye-ring", + "legs: pinkish-gray or light brown", + "wings: olive-brown with hints of gray", + "nape: olive-brown with darker streaks", + "tail: dusky olive-brown with lighter edges", + "throat: white or pale gray" + ], + "cyprus wheatear": [ + "back: light brownish-grey with a slight olive tinge", + "beak: strong, slender, and pointed black", + "belly: soft white with a pale buff hue", + "breast: off-white transitioning to light orange-brown", + "crown: pale grey-brown with subtle streaks", + "forehead: light greyish-brown blending into crown", + "eyes: sharp and dark with a faint white eyering", + "legs: slender and black, well-adapted for perching", + "wings: grey-brown with black flight feathers and white patches", + "nape: light grey-brown, blending into the back", + "tail: black with outer feathers edged in white", + "throat: clean and white, contrasting with breast colour" + ], + "d'arnaud barbet": [ + "back: vibrant greenish-yellow feathers", + "beak: short, straight, and black", + "belly: bright yellow with black streaks", + "breast: golden-yellow with black spots", + "crown: black with blue sheen", + "forehead: black with partial blue sheen", + "eyes: small, black, and partially hidden by feathers", + "legs: short and grayish-blue", + "wings: greenish-yellow with black tips", + "nape: black with blue sheen", + "tail: blackish-blue with white spots", + "throat: golden-yellow with black spots" + ], + "d'orbigny chat tyrant": [ + "back: soft gray feathers", + "beak: small, pointed and black", + "belly: creamy-white and fluffy", + "breast: pale gray with subtle streaks", + "crown: dark gray with a slight crest", + "forehead: smooth gray feathers", + "eyes: large, black, and expressive", + "legs: thin and dark, with sharp claws", + "wings: gray and white with fine barring", + "nape: light gray, blending with the crown", + "tail: elongated, black-tipped feathers", + "throat: white with minimal markings" + ], + "dalat bush warbler": [ + "back: olive-green feathers with brownish tinge", + "beak: slender, straight, and pointed", + "belly: white or pale yellow with faint streaks", + "breast: buff-colored with spots or streaks", + "crown: olive-green with faint brownish markings", + "forehead: pale buff with faint streaks", + "eyes: dark brown with pale eyering", + "legs: pinkish, strong and long", + "wings: olive-green with white wing bars", + "nape: olive-green with lighter edges on feathers", + "tail: dark brown with olive-green edges on feathers", + "throat: pale buff with faint spots or streaks" + ], + "damar flycatcher": [ + "back: dark gray feathers with a slight green sheen", + "beak: short, black, hooked at the tip", + "belly: pale gray with a hint of yellow undertones", + "breast: light gray with a slight bluish tinge", + "crown: dark gray, slightly raised", + "forehead: smooth, blending seamlessly with the crown", + "eyes: round, black, and inquisitive", + "legs: thin, black, and strong", + "wings: streamlined, dark gray with white markings on the edges", + "nape: blending smoothly with the back and the crown", + "tail: long, dark gray, with white outer feathers and a slight fork", + "throat: pale gray, contrasting with the darker upper body" + ], + "damara red billed hornbill": [ + "back: sleek, smooth feathers in earthy tones", + "beak: long, curved, red-orange bill", + "belly: light cream-colored feathers", + "breast: white feathers transitioning to soft gray", + "crown: black plumage with white streaks", + "forehead: black feathers with a white patch", + "eyes: surrounded by contrasting white feathers, alert and dark", + "legs: thin, sturdy limbs with black scaly skin", + "wings: brownish-black feathers with white edges for flight", + "nape: black and white striped feathers", + "tail: long, black feathers with white tips for balance", + "throat: white feathers merging into the breast area" + ], + "damara tern": [ + "back: sleek, light grey plumage", + "beak: sharp, black and slender", + "belly: white and smooth feathers", + "breast: white, soft plumage", + "crown: black with a slight crest", + "forehead: white tip transitioning to black crown", + "eyes: dark, rounded, and alert", + "legs: reddish-orange and thin", + "wings: elongated and grey with dark tips", + "nape: light grey, blending with back", + "tail: forked, white with black edges", + "throat: white and smooth feathers" + ], + "dapple throat": [ + "back: dappled brown and gray feathers", + "beak: short, sharp, and slightly curved", + "belly: soft white with scattered speckles", + "breast: grayish-brown with dappled markings", + "crown: pale gray with light streaks", + "forehead: smooth, light gray feathers", + "eyes: small, dark, and alert", + "legs: slender and grayish-brown", + "wings: mottled brown with speckled tips", + "nape: silvery-gray with a streaked pattern", + "tail: elongated, gray-brown with pale streaks", + "throat: pale gray with distinctive dapple markings" + ], + "dark batis": [ + "back: dark, sleek feathers", + "beak: short, strong, and black", + "belly: light gray with faint streaks", + "breast: pale gray with subtle markings", + "crown: black and well-defined", + "forehead: dark gray, fading into the crown", + "eyes: large, black, and piercing", + "legs: thin and sturdy, brownish-gray", + "wings: dark, elongated, with white tips", + "nape: deep gray, blending into the back", + "tail: dark, fan-shaped with white edges", + "throat: light gray with faint markings" + ], + "dark chanting goshawk": [ + "back: dark grey feathers with white streaks", + "beak: sharp, hooked, black", + "belly: white with grey wavy bars", + "breast: white with grey wavy bars", + "crown: dark grey plumage", + "forehead: dark grey, slightly paler than the crown", + "eyes: deep red with black pupils", + "legs: long, yellow legs with black talons", + "wings: dark grey with white spots and streaks", + "nape: dark grey, lighter than the crown", + "tail: black and white banded", + "throat: pale white with grey wavy bars" + ], + "dark hawk cuckoo": [ + "back: sleek dark gray feathers", + "beak: sharp, black, and hooked", + "belly: pale gray with subtle stripes", + "breast: lighter gray with thin streaks", + "crown: dark gray with slight crest", + "forehead: smooth dark gray", + "eyes: intense black and round", + "legs: strong and black with sharp talons", + "wings: long and dark gray with barred pattern", + "nape: smooth dark gray feathers", + "tail: dark gray, long, and slender with distinct bands", + "throat: pale gray with faint streaks" + ], + "dark newtonia": [ + "back: dark brown feathers", + "beak: short, strong, black", + "belly: light brown or grey", + "breast: slightly darker brown", + "crown: dark brown, slightly raised", + "forehead: dark brown, smooth", + "eyes: small, black, bright", + "legs: slender, grey", + "wings: dark brown with white edges", + "nape: dark brown, blending with crown", + "tail: long, fan-shaped, dark brown", + "throat: light brown or grey" + ], + "dark pewee": [ + "back: dark grayish-brown feathers", + "beak: small, slim, and black", + "belly: light grayish-white underparts", + "breast: grayish-brown feathers blending into belly color", + "crown: dark grayish-brown head", + "forehead: slightly lighter grayish-brown feathers", + "eyes: small, black and alert", + "legs: thin, black, and delicate", + "wings: dark grayish-brown with slight markings", + "nape: dark grayish-brown feathers similar to crown", + "tail: long, slender, and dark grayish-brown", + "throat: pale grayish-white feathers" + ], + "dark backed imperial pigeon": [ + "back: dark grey upper feathers", + "beak: short and hooked, light-colored", + "belly: dusky white underparts", + "breast: soft grey plumage", + "crown: dark grey head feathers", + "forehead: smooth, light-colored transition to beak", + "eyes: small, black, surrounded by light skin", + "legs: short, strong, pinkish-grey", + "wings: broad and dark grey", + "nape: grey feathers starting behind head", + "tail: long, dark grey, squared-off feathers", + "throat: lighter grey transitioning to belly" + ], + "dark backed wood quail": [ + "back: dark, patterned feathers", + "beak: short, sharp, grayish-black", + "belly: dark brown with narrow white bars", + "breast: chestnut with black-and-white streaks", + "crown: glossy blue-black with a raised crest", + "forehead: bluish-gray with a blackish-blue eyebrow", + "eyes: round, dark brown, encircled by pale feathering", + "legs: sturdy, gray, scale-covered", + "wings: dark brown, barred with white, short and rounded", + "nape: blackish-blue with a white-bordered blue collar", + "tail: short, dark brown with white bars and a square-cut tip", + "throat: dark reddish-brown with a white-spotted bib" + ], + "dark bellied cinclodes": [ + "back: dark brown with streaks", + "beak: long, curved, black", + "belly: dark grey-brown", + "breast: grey-brown with streaking", + "crown: dark brown", + "forehead: dark brown", + "eyes: round and black", + "legs: strong and pinkish-brown", + "wings: dark brown with barred pattern", + "nape: dark brown", + "tail: dark brown with faint bars", + "throat: grey-brown with streaks" + ], + "dark billed cuckoo": [ + "back: dark brown with subtle green sheen", + "beak: long, straight and dark grey", + "belly: creamy white with pale brown streaks", + "breast: pale brown with white streaks", + "crown: dark brown with faint green iridescence", + "forehead: reddish-brown with faint streaks", + "eyes: dark brown with pale eye-ring", + "legs: long, slender and grey", + "wings: brown with white outer edges and green sheen", + "nape: dark brown with green iridescent sheen", + "tail: long and brown with white tips", + "throat: whitish with faint brown streaks" + ], + "dark breasted rosefinch": [ + "back: dark reddish-brown with subtle streaks", + "beak: short, conical, blackish-brown", + "belly: pale pinkish-red", + "breast: deep rose pink, blending into dark brown", + "crown: dark brown with reddish highlights", + "forehead: deep rose pink", + "eyes: black with thin pale eye-ring", + "legs: blackish-brown, slender", + "wings: dark brown with reddish and buff-toned feather edging", + "nape: dark reddish-brown", + "tail: dark brown with lighter outer feathers", + "throat: deep rose pink, transitioning into pale pinkish-red" + ], + "dark breasted spinetail": [ + "back: brownish-grey feathers", + "beak: short, pointed, blackish", + "belly: pale grayish-white", + "breast: dark brown with fine streaks", + "crown: dark brown with fine streaks", + "forehead: dark brown with fine streaks", + "eyes: small, dark, round", + "legs: long, thin, reddish-brown", + "wings: brownish-grey with lighter edges", + "nape: dark brown with fine streaks", + "tail: long, thin, brownish-grey", + "throat: pale grayish-white with dark streaks" + ], + "dark brown honeyeater": [ + "back: earthy brown with subtle hues", + "beak: curved, slender, and black", + "belly: warm beige with darker streaks", + "breast: golden-brown speckles blending into the belly", + "crown: chocolate brown feathers with a slight shine", + "forehead: slightly lighter brown, seamlessly blending into the crown", + "eyes: small, black, and bright against the brown feathers", + "legs: sturdy, grey-brown with scaly texture", + "wings: rich brown with intricate black markings", + "nape: warm brown tones, flowing into the back", + "tail: elongated, fanned-out feathers with contrasting patterns", + "throat: soft, lighter brown feathers blending into the breast" + ], + "dark crowned white eye": [ + "back: sleek, dark-feathered", + "beak: small, sharp, black", + "belly: white plumage", + "breast: subtly gray-tinted white", + "crown: jet black with white framing", + "forehead: white with slight black streaks", + "eyes: striking white eye-rings", + "legs: thin, dark gray", + "wings: dark gray with white edges", + "nape: deep black feathers", + "tail: dark gray with white tips", + "throat: clear white feathers" + ], + "dark eared myza": [ + "back: dark olive-green feathers", + "beak: short, slender, slightly curved", + "belly: pale grayish-yellow plumage", + "breast: light grayish-yellow feathers", + "crown: dark gray with subtle streaks", + "forehead: grayish-black with slight streaks", + "eyes: small, black, and round", + "legs: short, sturdy, pale pink", + "wings: dark olive-green with grayish edges", + "nape: dark gray streaks over lighter gray", + "tail: long, dark olive-green feathers", + "throat: pale grayish-yellow, blending with breast" + ], + "dark eyed white eye": [ + "back: sleek gray feathers", + "beak: tiny black straight tip", + "belly: soft white feathers", + "breast: white plumage with gray shades", + "crown: rounded grayish-white top", + "forehead: smooth white transition into crown", + "eyes: deep black with white circle around", + "legs: slender gray legs with sharp claws", + "wings: gray with white edges, slightly bent", + "nape: gray plumage connecting crown and back", + "tail: gray long feathers with white tips", + "throat: white merging with breast feathers" + ], + "dark faced ground tyrant": [ + "back: sleek dark-colored plumage", + "beak: short and sharp, blackish hue", + "belly: dull gray to brownish feathers", + "breast: lightly speckled grayish-brown", + "crown: boldly dark-colored, faintly streaked", + "forehead: dark blackish-gray feathers", + "eyes: round and bright, encircled by darker plumage", + "legs: long and slender, pale grayish hue", + "wings: dark brown with lighter edging on feathers", + "nape: smooth dark-colored feathers transitioning from crown", + "tail: lengthy and dark, faint barring on feathers", + "throat: lighter gray with black speckles, contrasts with darker face" + ], + "dark fronted babbler": [ + "back: brownish-grey feathers", + "beak: short, slightly curved, blackish", + "belly: pale grey with light streaks", + "breast: dark greyish-brown", + "crown: dark grey with a slight brown hue", + "forehead: lighter grey, blending with the crown", + "eyes: dark, with white eye-ring", + "legs: sturdy, reddish-brown", + "wings: brownish-grey, rounded shape", + "nape: dark grey blending into the back", + "tail: long, dark grey-brown with lighter tips", + "throat: pale grey, lighter than the breast" + ], + "dark necked tailorbird": [ + "back: olive-green feathers covering the bird's upper back", + "beak: slender, long, and sharp, with a black upper and grey lower mandible", + "belly: pale yellowish-white underparts and flanks", + "breast: greyish-olive hue blending with belly color", + "crown: bold olive-green with a distinctive narrow black stripe", + "forehead: olive-green with black streaks", + "eyes: small, round, and dark with a white eyering", + "legs: long, slender, and greyish-brown for perching and hopping", + "wings: olive-green with contrasting dark feathers and white tips", + "nape: dark grey coloration distinct from the back", + "tail: long, broad, and olive-green with dark banding and white-tip outer feathers", + "throat: white with a dark grey patch, blending with the breast area" + ], + "dark rumped rosefinch": [ + "back: dark rusty brown with slight streaks", + "beak: small, sharp, blackish-grey", + "belly: pale pinkish-red, fading to whitish underparts", + "breast: vibrant pinkish-red feathers", + "crown: dark brown with streaks of grey", + "forehead: black, contrasting with pinkish-red face", + "eyes: dark, nearly black, surrounded by pale feathering", + "legs: strong, greyish-brown with sharp claws", + "wings: dark brown with reddish-pink feather edges", + "nape: grey above, blending to dark rusty brown towards the back", + "tail: long, dark brown with pale reddish-pink fringes", + "throat: vibrant pinkish-red feathers, similar to the breast" + ], + "dark rumped swift": [ + "back: sleek dark feathers", + "beak: thin pointed black beak", + "belly: soft grayish-white underpart", + "breast: smooth dark plumage", + "crown: dark-feathered head", + "forehead: narrow black band above eyes", + "eyes: small round dark eyes", + "legs: short black legs", + "wings: long, slender, sickle-shaped dark wings", + "nape: dusky grey neck feathers", + "tail: short dark forked tail", + "throat: pale gray or white patch" + ], + "dark sided flycatcher": [ + "back: olive-brown shading", + "beak: short and pointed", + "belly: off-white with gray streaks", + "breast: pale gray and lightly streaked", + "crown: dark gray", + "forehead: lighter gray shading", + "eyes: dark, surrounded by pale eye-ring", + "legs: thin and black", + "wings: long, dark gray with white edges on feathers", + "nape: gray-brown with slight streaking", + "tail: dark with white outer feathers", + "throat: whitish-gray, blends with breast" + ], + "dark sided thrush": [ + "back: dark brown plumage", + "beak: stout, blackish", + "belly: dull white with dark markings", + "breast: mottled grayish-brown", + "crown: dark grayish-brown", + "forehead: slightly paler gray-brown", + "eyes: dark brown, prominent", + "legs: strong, blackish-gray", + "wings: dark brown, rounded", + "nape: grayish-brown", + "tail: brownish-black, medium length", + "throat: white with dark streaks" + ], + "dark throated oriole": [ + "back: vibrant yellow with black markings", + "beak: sharp, black, and downward-curving", + "belly: bright yellow with faint streaks", + "breast: rich golden-yellow and smooth", + "crown: shiny black with a slight crest", + "forehead: deep black and sleek", + "eyes: round, dark, and alert", + "legs: strong, dark grey with sharp claws", + "wings: striking black with yellow edges", + "nape: smooth transition from black to yellow", + "tail: long, black, and slightly forked", + "throat: bold black and well-defined" + ], + "dark throated seedeater": [ + "back: sleek, dark-feathered", + "beak: narrow, pointy, black", + "belly: off-white with faint streaks", + "breast: creamy white blending to pale gray", + "crown: blackish cap covering head", + "forehead: slightly more grayish-black", + "eyes: beady, black, alert", + "legs: slim, long, dark", + "wings: dark shades with contrasting white bands", + "nape: continuous black from crown to back", + "tail: dark gray with white cornered tips, slightly forked", + "throat: deep black, distinguishing feature" + ], + "dark winged miner": [ + "back: dark grey feathers with subtle streaks", + "beak: strong, black, and slightly curved", + "belly: light grey with dark grey markings", + "breast: pale grey with dark streaks", + "crown: black with a slight metallic sheen", + "forehead: dark grey with faint markings", + "eyes: round, black with white eye-ring", + "legs: slender and black", + "wings: dark blackish-grey with white wing-bar", + "nape: dark grey with light streaks", + "tail: long, black with white outer feathers", + "throat: pale grey with dark grey streaks" + ], + "dark winged trumpeter": [ + "back: dark grey with slight sheen", + "beak: black, strong, and curved", + "belly: muted grey, slightly plump", + "breast: deep grey, dense feathers", + "crown: sleek, blackish-blue hues", + "forehead: dark grey, smooth feathers", + "eyes: small, bright, and intelligent", + "legs: black, long, and sturdy", + "wings: wide, dark feathers with iridescence", + "nape: pale grey, curve of the neck", + "tail: long, broad, blackish-blue feathers", + "throat: soft grey, light feathering" + ], + "dartford warbler": [ + "back: dark slate-grey with a tinge of olive", + "beak: thin, slightly curved, dark brown", + "belly: pale greyish-brown", + "breast: light grey to dark greyish-brown", + "crown: dark slate-grey, slightly crested", + "forehead: dark slate-grey, continuous with crown", + "eyes: small, dark with a white eye-ring", + "legs: dark brown, thin and long", + "wings: dark grey with reddish-brown edges", + "nape: dark slate-grey, consistent with the back", + "tail: long and dark grey, with reddish-brown edges", + "throat: pale greyish-brown" + ], + "darwin nothura": [ + "back: brownish-gray with light speckles", + "beak: short, sharp, and grayish-yellow", + "belly: light brown with faint black spots", + "breast: tawny color with irregular black stripes", + "crown: reddish-brown with white spots", + "forehead: grayish-white with fine black stripes", + "eyes: small, dark, and slightly concealed", + "legs: slender and grayish-yellow", + "wings: brownish-gray with white speckles", + "nape: reddish-brown with lighter stripes", + "tail: short, rounded, with black and white bars", + "throat: white with thin black stripes" + ], + "daurian jackdaw": [ + "back: sleek gray feathers", + "beak: short black beak", + "belly: pale grayish-white plumage", + "breast: light gray feathers", + "crown: dark gray-black crest", + "forehead: smooth black feathers", + "eyes: bright, inquisitive dark eyes", + "legs: sturdy black legs", + "wings: charcoal gray with white banding", + "nape: black plumage fading to gray", + "tail: fan-shaped dark gray feathers", + "throat: black feathers with a slight purple sheen" + ], + "daurian partridge": [ + "back: earthy brown with arrow-shaped markings", + "beak: short, strong, and pale-colored", + "belly: light buff with grayish-brown specks", + "breast: rust-colored and chestnut-brown", + "crown: reddish-chestnut with thin, pale streaks", + "forehead: grayish-white with fine streaks", + "eyes: dark brown and alert", + "legs: stout, short, and feathered", + "wings: brown with white and chestnut markings", + "nape: grayish-white transitioning to chestnut", + "tail: brown with distinct white pattern", + "throat: pale white with thin, dark streaks" + ], + "daurian starling": [ + "back: iridescent dark green with blue-purple sheen", + "beak: slender and slightly curved, black", + "belly: silvery grey with fine white streaks", + "breast: silvery-grey, finely streaked with white", + "crown: iridescent dark green with hints of blue-purple", + "forehead: dark green with blue-purple sheen", + "eyes: dark brown with thin white eye-ring", + "legs: slender, pale pinkish-grey", + "wings: iridescent green-blue with dark flight feathers", + "nape: bluish-green with white streaks", + "tail: dark, slightly iridescent with white-tipped outer feathers", + "throat: silvery-grey with fine white streaks" + ], + "david fulvetta": [ + "back: olive-green feathers", + "beak: short and pointed", + "belly: pale yellow color", + "breast: yellow-orange with dark streaks", + "crown: bright yellow with a black stripe", + "forehead: yellow feathers with a slight curve", + "eyes: dark, round and expressive", + "legs: grayish-blue, thin and long", + "wings: olive-green with darker flight feathers", + "nape: olive-green blending with the crown", + "tail: long, dark central feathers with white outer feathers", + "throat: bright yellow, distinct from the breast" + ], + "davison leaf warbler": [ + "back: olive-green with slight yellowish hue", + "beak: slender, blackish-gray upper mandible and lighter lower mandible", + "belly: predominantly yellow with faint olive wash", + "breast: bright yellow with subtle streaking", + "crown: greenish-yellow with indistinct central stripe", + "forehead: bright yellow-green", + "eyes: dark brown with pale, thin eyering", + "legs: pale pinkish-gray", + "wings: olive-green with two distinct yellow wingbars", + "nape: yellow-green, blending with crown and back", + "tail: olive-green with darker outer tail feathers and contrasting white edges", + "throat: vibrant yellow, contrasting with breast and belly" + ], + "dayak blue flycatcher": [ + "back: dark blue feathers with a sleek appearance", + "beak: small, black, and pointed for catching insects", + "belly: light blue-grey hue blending to subtle white near tail", + "breast: vibrant blue feathers with a slight shimmer", + "crown: deep blue feathered crest atop the head", + "forehead: bright-blue plumage transitioning into crown", + "eyes: small, black, alert, and expressive", + "legs: slender, black, and delicate for perching", + "wings: dark blue feathers with a hint of iridescence", + "nape: striking blue feathers smoothly connecting to back", + "tail: elongated blue feathers with white banding at the tips", + "throat: brilliant blue feathers leading to breast area" + ], + "dead sea sparrow": [ + "back: subtle shades of dusty brown", + "beak: petite and curved, blackish-gray", + "belly: pale yellowish-white with faint streaks", + "breast: light creamy-buff, streaked with brown", + "crown: streaked grayish-brown, pale center stripe", + "forehead: light gray, almost white", + "eyes: dark and round, surrounded by white eye-ring", + "legs: slender, scaly bluish-gray", + "wings: dusky brown, edged with white or buff", + "nape: grayish-brown with fine streaks", + "tail: short, dark brown with paler outer feathers", + "throat: clean white with contrast to streaked adjacent areas" + ], + "deep blue flowerpiercer": [ + "back: deep blue with glossy sheen", + "beak: black, hook-shaped", + "belly: pale grayish-blue", + "breast: rich blue", + "crown: dark blue, almost black", + "forehead: bright blue", + "eyes: black with white eye-ring", + "legs: black, slender", + "wings: deep blue, elongated feathers", + "nape: dark blue with lighter streaks", + "tail: deep blue, forked", + "throat: vibrant blue with possible grayish patch" + ], + "delegorgue pigeon": [ + "back: bluish-grey plumage with a hint of purple", + "beak: short and stout, dark in color", + "belly: light grey with a slight glossy sheen", + "breast: lavender-grey feathers, slightly puffed", + "crown: dark bluish-grey head feathers", + "forehead: smooth, blending into the crown", + "eyes: bright, surrounded by a thin white eye-ring", + "legs: reddish-pink with dark claws", + "wings: bluish-grey with prominent black primary feathers", + "nape: slightly darker grey leading into the back plumage", + "tail: long, dark grey feathers with wide black bands", + "throat: pale grey transitioning from the breast" + ], + "delicate prinia": [ + "back: light brown with subtle white streaks", + "beak: thin, pointed, black", + "belly: pale yellowish-white", + "breast: grayish-white with faint streaks", + "crown: rufous with fine black streaks", + "forehead: light gray blending into brown crown", + "eyes: small, black, with white eyering", + "legs: slender, grayish-pink", + "wings: rufous-brown with faint white bars", + "nape: pale rufous-brown with fine streaks", + "tail: long, graduated, with rufous-brown and black markings", + "throat: white with light gray streaks" + ], + "delta amacuro softtail": [ + "back: slate gray with fine white streaks", + "beak: short, tapered, and yellowish", + "belly: pale gray with faint white barring", + "breast: soft grayish-white with scalloped pattern", + "crown: light gray with a subtle crest", + "forehead: smooth pale gray", + "eyes: dark, round, and expressive", + "legs: long, slender, and dull yellow", + "wings: gray with understated white markings", + "nape: gently sloping, gray with fine white streaks", + "tail: dark gray with white tips and edges", + "throat: bright white with a hint of soft gray" + ], + "denham bustard": [ + "back: sleek, grayish-brown feathers", + "beak: long, sharp, and slightly curved", + "belly: smooth, creamy white feathers", + "breast: pale grey with black markings", + "crown: grayish-brown with black crest", + "forehead: white with black streaks", + "eyes: small, dark, and alert", + "legs: long, slender, and dull yellow", + "wings: broad and rounded, with barred gray and brown feathers", + "nape: grayish-brown with a hint of glossiness", + "tail: long, gray-brown with white outer feathers", + "throat: white feathers, bordered by black stripes" + ], + "derbyan parakeet": [ + "back: vibrant green feathers", + "beak: strong, red, hooked shape", + "belly: light green with black markings", + "breast: bright green layer of feathers", + "crown: deep purple-blue extending to nape", + "forehead: purple-blue feathers fading into green", + "eyes: round, dark brown with white rings", + "legs: grayish blue with scaly texture", + "wings: long, green with blue and black details", + "nape: rich purple-blue meeting green back", + "tail: long, green-blue with black tips", + "throat: light green feathers with black streaks" + ], + "des murs wiretail": [ + "back: olive-green feathers with slight sheen", + "beak: short, thin, and pointed", + "belly: white and soft downy texture", + "breast: pale gray plumage with white streaks", + "crown: distinctive blue-black crest", + "forehead: blue-black plumage, fading to olive-green", + "eyes: round, black, and alert", + "legs: long, slender, and pale pinkish-brown", + "wings: olive-green with blue-black covert feathers", + "nape: olive-green, merging with crest color", + "tail: long and wire-like, tipped with white feathers", + "throat: pale gray with white streaks, matching the breast" + ], + "desert cisticola": [ + "back: light brown with streaks", + "beak: thin, sharp, and black", + "belly: pale white with light streaks", + "breast: off-white with faint brown spots", + "crown: rufous-brown with speckles", + "forehead: small, narrow, and light brown", + "eyes: dark, beady, and alert", + "legs: long, thin, and pale", + "wings: brown with faint barring", + "nape: streaked brown coloration", + "tail: long, narrow, and brown with white tips", + "throat: off-white and unmarked" + ], + "desert finch": [ + "back: light brown with subtle streaks", + "beak: short, cone-shaped, grayish-pink", + "belly: pale, off-white with light streaks", + "breast: creamy beige with faint markings", + "crown: light brown with a slightly darker shade", + "forehead: light brown blending into the crown", + "eyes: small, dark, encircled by a faint eye-ring", + "legs: slender, grayish-pink", + "wings: light brown with darker markings and white wing-bars", + "nape: light brown, blending into the back", + "tail: short, forked, with dark brown and white feathers", + "throat: off-white, blending into the breast" + ], + "desert lark": [ + "back: light brown with subtle streaks", + "beak: short, slightly curved, pale pinkish", + "belly: pale sandy-buff, faint streaks", + "breast: light buff, minimal streaking", + "crown: pale sandy-brown, short crest", + "forehead: smooth, slightly paler than crown", + "eyes: small, dark, well-defined outline", + "legs: thin, long, pale pinkish-brown", + "wings: sandy-brown, elongated, black tips", + "nape: light brown, short narrow streaks", + "tail: brown, fan-shaped, white outer edges", + "throat: whitish, unmarked, distinctive" + ], + "desert owl": [ + "back: tawny brown with dark speckles", + "beak: sharp, curved, creamy-colored", + "belly: pale with brown bars", + "breast: buff-colored with dark streaks", + "crown: rounded, tawny with dark flecks", + "forehead: pale with dark markings", + "eyes: large, bright yellow", + "legs: feathered, tawny with dark bars", + "wings: long, brown with dark spots", + "nape: tawny with dark markings", + "tail: rounded, brown with pale bands", + "throat: pale buff with brown streaks" + ], + "desert sparrow": [ + "back: sandy brown feathers with slight streaks", + "beak: short, conical, and pale grey", + "belly: whitish with faint brown streaks", + "breast: light, buff-colored with subtle markings", + "crown: warm grey with a streakily-patterned appearance", + "forehead: pale grey transitioning into the crown", + "eyes: small, dark, surrounded by a light grey eye-ring", + "legs: thin, long and pale pinkish-grey", + "wings: sandy brown with white-edged, darker feathers", + "nape: streaked grey-brown, blending with the crown", + "tail: dark brown with white outer feathers and a forked shape", + "throat: pale buff, transitioning into the breast color" + ], + "desert wheatear": [ + "back: light brown color with sandy hues", + "beak: short, sharp, black", + "belly: creamy white with hints of pale yellow", + "breast: light beige, blending into white towards the belly", + "crown: cinnamon brown, slightly darker than the back", + "forehead: light brown, like the back, with a touch of white", + "eyes: black, surrounded by white feathers", + "legs: long, light pink legs with claws used for perching", + "wings: light brown with dark tips on feathers, distinctive small black patch", + "nape: light brown, continuing the color from the crown and back", + "tail: subtly darker shade of brown with white edges on the outer feathers", + "throat: creamy white, contrasting with the brown breast and head" + ], + "diabolical nightjar": [ + "back: mottled dark brown with subtle streaks", + "beak: short and slightly hooked, blackish in color", + "belly: creamy, spotted with brown shades", + "breast: dark gray-brown with fine white specks", + "crown: rusty-brown, mixed with dark feathers", + "forehead: pale buff with dark feather tips", + "eyes: deep black, alert and watchful", + "legs: slender, gray with sharp claws", + "wings: dark gray-brown, covered with white spots", + "nape: reddish-brown with fine white speckles", + "tail: dark brown, edged with white markings", + "throat: pale grayish-buff, spotted with dark brown" + ], + "diademed sandpiper plover": [ + "back: dark gray feathers with a slight olive tint", + "beak: short, straight, and black in color", + "belly: white feathers with hints of gray or light brown", + "breast: white feathers with black speckling and a broad black band across the chest", + "crown: white with a black and white striped pattern, resembling a \"diadem\" or crown", + "forehead: white feathers leading into the striped pattern on the crown", + "eyes: large, dark, and surrounded by white feathers", + "legs: yellowish-orange with long black claws", + "wings: dark gray with white edges and conspicuous white patches on the upper-wing and flight feathers", + "nape: grayish-white feathers transitioning into the dark gray back", + "tail: dark gray feathers with distinct white bands", + "throat: white feathers extending up to the chin" + ], + "diademed tanager": [ + "back: vibrant blue feathers", + "beak: short, sharp, and black", + "belly: soft turquoise hue", + "breast: deep blue plumage", + "crown: bold diadem-like stripes", + "forehead: bright blue feathers", + "eyes: small, dark, and round", + "legs: slender and dark grey", + "wings: long, blue-edged feathers", + "nape: blue with diadem stripes", + "tail: broad, long, and blue", + "throat: blue plumage with a hint of turquoise" + ], + "diademed tapaculo": [ + "back: dark gray with fine white streaks", + "beak: short, thin, and black", + "belly: pale gray with white spots", + "breast: slate gray with fine white streaking", + "crown: dark gray with bold white diagonal stripes", + "forehead: dark gray with subtle white streaks", + "eyes: small, black, surrounded by white eyering", + "legs: strong, dark gray", + "wings: dark gray with white spots and bars", + "nape: dark gray with fine white streaks", + "tail: short, dark gray with white edges", + "throat: pale gray with white spotting" + ], + "diamantina sabrewing": [ + "back: iridescent green upper body", + "beak: long, slender, and slightly curved", + "belly: light grayish-blue", + "breast: pale-blue hue", + "crown: glossy green head", + "forehead: bright green plumage", + "eyes: small, dark, and alert", + "legs: thin and black", + "wings: long, iridescent green, and narrow", + "nape: vibrant green transitioning to blue", + "tail: elongated forked tail feathers", + "throat: white patch with blue tinge" + ], + "diamantina tapaculo": [ + "back: dark gray with subtle plumage markings", + "beak: short, stout, and black", + "belly: grayish-white with light barring", + "breast: pale gray with fine blackish bars", + "crown: dark gray and slightly crested", + "forehead: gray with thin black markings", + "eyes: small, dark brown, and partially hidden by feathers", + "legs: long, black, and sturdy", + "wings: dark gray with faint barring, rounded shape", + "nape: dark gray with subtle, fine plumage markings", + "tail: short, dark gray, and slightly rounded", + "throat: pale gray with thin, blackish bars" + ], + "diamond dove": [ + "back: soft gray feathered covering", + "beak: delicate, pointed light gray or blue", + "belly: creamy white or light gray feathers", + "breast: pinkish or earthy brown hue", + "crown: silvery-blue feathers with a shine", + "forehead: slight iridescent blue", + "eyes: dark, beady with orange orbital ring", + "legs: slender and pink or red in color", + "wings: gray with white spotted pattern", + "nape: blue-gray with glossy finish", + "tail: long, gray with a black band at the end", + "throat: slightly lighter gray than body" + ], + "diamond firetail": [ + "back: vibrant and attractive with light olive-green hues", + "beak: strong, pointed, and whitish pink", + "belly: white and fluffy with black crescents", + "breast: white, accentuated with horizontal black bands", + "crown: crimson red with a touch of elegance", + "forehead: scarlet red, extending to the eyes", + "eyes: round, dark beads with expressive intelligence", + "legs: long and slender, with striking pink hues", + "wings: ash-grey, adorned with white spots", + "nape: olive-green, gracefully blending with the crimson crown", + "tail: lengthy and expressive, with alternating black and white bands", + "throat: white, accenting the vibrant red features of the head" + ], + "diard trogon": [ + "back: vibrant green feathers", + "beak: short and hooked, yellow-orange", + "belly: warm, red-orange hue", + "breast: bold red plumage", + "crown: rich green coloration", + "forehead: deep green feathers", + "eyes: piercing black with a white eye-ring", + "legs: slender and bluish-gray", + "wings: brilliant green with white bands", + "nape: continuation of green crown feathers", + "tail: long and straight with white and black banding", + "throat: red coloration matching the breast" + ], + "dickinson kestrel": [ + "back: sleek and grayish-brown", + "beak: sharp, hooked, and black", + "belly: creamy white with brown spots", + "breast: pale and lightly streaked", + "crown: grayish-brown with a dark stripe", + "forehead: white and unmarked", + "eyes: piercing yellow with dark surrounding patch", + "legs: strong and yellow", + "wings: broad with dark bands and white tips", + "nape: grayish-brown with a dark stripe", + "tail: long and banded with a white tip", + "throat: pale and unmarked" + ], + "dideric cuckoo": [ + "back: olive-green color blending with tree leaves", + "beak: short, black, and strong for a firm grasp on insects", + "belly: pale, subtle brown with horizontal streaks", + "breast: grayish-brown with faint white speckles", + "crown: vibrant creamy-orange crest on the head", + "forehead: grayish-brown, with creamy-orange extending upwards", + "eyes: dark, beady with an intense gaze", + "legs: grayish-brown, slender, and well-suited for tree perching", + "wings: olive-green with shades of grayish-brown and white tips", + "nape: grayish-brown, connecting the crown to the back", + "tail: long, dark brown feathers with white edging for agile flight", + "throat: grayish-brown with white speckles, seamlessly connecting with breast" + ], + "dimorphic dwarf kingfisher": [ + "back: vibrant blue-green with small white markings", + "beak: short, dark, and stout", + "belly: white or pale orange", + "breast: bright orange with blue-green bands", + "crown: deep blue-green, sometimes with a black stripe", + "forehead: bright blue-green or turquoise", + "eyes: large, dark, and round with white eyering", + "legs: short, sturdy, and orange", + "wings: blue-green with white spotting, round shape", + "nape: deep blue-green or turquoise with thin white lines", + "tail: short and blue-green, often with a white tip", + "throat: white or pale orange, sometimes with fine green bands" + ], + "dimorphic fantail": [ + "back: vibrant olive-green or brown feathers", + "beak: short, thin, and slightly curved", + "belly: light beige or cream-colored soft feathers", + "breast: shades of gray or pale brown plumage", + "crown: slightly darker gray or olive-green feathers", + "forehead: narrow creamy-white stripe", + "eyes: small, round, and dark", + "legs: short and sturdy with black or brown coloring", + "wings: olive-green or brown feathers with bold white markings", + "nape: distinctive black-and-white striped pattern", + "tail: long and fanned, showcasing prominent white edges", + "throat: light beige or cream-colored feathers" + ], + "dinelli doradito": [ + "back: olive-green feathers", + "beak: short, thin, and pointed", + "belly: pale yellow with light streaks", + "breast: yellowish with fine streaks", + "crown: bright yellow with a light brown stripe", + "forehead: yellowish-orange", + "eyes: dark, round, and alert", + "legs: slender and gray", + "wings: olive-green with subtle feather patterns", + "nape: brownish-yellow", + "tail: dark, fan-shaped with white edges", + "throat: yellow with subtle streaks" + ], + "diuca finch": [ + "back: light brown with visible feather structure", + "beak: conical and pointed for seed-eating", + "belly: faintly streaked white underparts", + "breast: white with occasional faint streaks", + "crown: bluish-gray with feathered crest", + "forehead: smooth bluish-gray plumage", + "eyes: small, black, and bead-like", + "legs: pale pink, strong and adapted for perching", + "wings: brownish with white wing bars", + "nape: bluish-gray and well-feathered", + "tail: short, often erect, with black and white markings", + "throat: white with occasional faint streaks" + ], + "dja river swamp warbler": [ + "back: olive-green with subtle streaks", + "beak: slender and pointed, dark gray", + "belly: pale white with grayish undertones", + "breast: light gray with faint olive hues", + "crown: olive-green with faint streaks", + "forehead: pale gray-olive", + "eyes: small, round with black pupils", + "legs: thin and wiry, light brown", + "wings: olive-green with faint yellow edges", + "nape: olive-green with streaks", + "tail: short, olive color, and square-ended", + "throat: light gray, paler than breast" + ], + "djibouti spurfowl": [ + "back: brownish-gray with faint patterns", + "beak: short, strong, and grayish", + "belly: pale gray with blackish spots", + "breast: gray with subtle white speckles", + "crown: dark gray with sleek feathers", + "forehead: slightly lighter gray than crown", + "eyes: small and black, with a white ring", + "legs: long, gray, and sinewy", + "wings: brownish-gray with faint white striping", + "nape: dark gray, slightly lighter than crown", + "tail: medium length, brownish-gray with faint bands", + "throat: pale gray, contrasting with breast" + ], + "doherty bushshrike": [ + "back: greenish-brown upper feathers", + "beak: strong, hooked, blackish", + "belly: yellowish-white underside", + "breast: reddish-orange plumage", + "crown: grayish-blue head feathers", + "forehead: white stripe above eyes", + "eyes: big, bright, and black", + "legs: long, slim, grayish", + "wings: greenish-brown with hints of blue", + "nape: grayish-blue neck feathers", + "tail: long, greenish-blue, with a black subterminal band", + "throat: red-orange with a white border" + ], + "dohrn thrush babbler": [ + "back: olive-brown with subtle streaks", + "beak: short and curved, dark-colored", + "belly: creamy-white with faint barring", + "breast: pale brown with darker markings", + "crown: rufous-brown with light streaks", + "forehead: buffy-brown blending into crown", + "eyes: dark with pale eye-ring", + "legs: long and slender, pale pinkish-grey", + "wings: olive-brown with noticeable barring", + "nape: rufous-brown, lightly streaked", + "tail: olive-brown, moderately long with faint bars", + "throat: white with thin brown streaks" + ], + "dollarbird": [ + "back: vibrant blue-green upper body", + "beak: stout and black", + "belly: pale blue-grey underside", + "breast: bright blue chest area", + "crown: glossy blue-green head", + "forehead: smooth blue-green transition to beak", + "eyes: black with notable eye ring", + "legs: short and grey", + "wings: royal blue with white patches", + "nape: rich blue-green plumage", + "tail: square and blue-green with white tips", + "throat: palest blue-grey connected to breast" + ], + "dolphin gull": [ + "back: sleek, pale gray feathers", + "beak: short, stout, and slightly hooked", + "belly: white and smooth", + "breast: subtly speckled white with streaks of gray", + "crown: smooth gray plumage", + "forehead: light gray with white highlights", + "eyes: dark and attentive", + "legs: short, sturdy, and pinkish-red", + "wings: broad, gray and white with black tips", + "nape: gray shading to white at the neck", + "tail: square-ended, white with black banding", + "throat: white, blending into speckled breast" + ], + "donaldson smith nightjar": [ + "back: cryptically patterned with blending browns and grays", + "beak: short, wide, and slightly hooked at the tip", + "belly: pale brown with fine streaks and mottling", + "breast: medium brown with intricate barring and streaks", + "crown: dark brown, with cream and buff spotting and streaks", + "forehead: light buff coloration with subtle streaks", + "eyes: large and dark, surrounded by a white feather ring", + "legs: short and feathered with small claws", + "wings: long, slender, and pointed, with intricate brown patterns", + "nape: brown and gray with intricate markings for camouflage", + "tail: blackish-brown with bold white bars and a white terminal band", + "throat: white, featuring a distinct dark, crescent-shaped patch" + ], + "donaldson smith sparrow weaver": [ + "back: brownish-grey with black streaks", + "beak: sturdy, black, and conical", + "belly: light cream with subtle streaks", + "breast: creamy-white with black spots", + "crown: greyish-brown with dark streaks", + "forehead: pale grey with fine black lines", + "eyes: dark brown, surrounded by pale grey feathers", + "legs: long, grey, and thin", + "wings: brown with white and black feather markings", + "nape: greyish-brown with dark streaks", + "tail: long, brown, with white outer feathers and black markings", + "throat: creamy-white with fine black streaks" + ], + "doria goshawk": [ + "back: dark brown with thin white bars", + "beak: black, sharp, and hooked", + "belly: cream-colored with rust-brown streaks", + "breast: white with thick brown bars/streaks", + "crown: dark brown and sleek", + "forehead: white with brown streaks", + "eyes: bright, yellow with black pupil", + "legs: yellow with sharp black talons", + "wings: dark brown with white bars and rounded tips", + "nape: dark brown with white streaks", + "tail: long with dark brown and white bands", + "throat: white with fine brown streaks" + ], + "dorst cisticola": [ + "back: light brown with subtle streaks", + "beak: short, pointy, and dark-colored", + "belly: whitish with hints of yellow", + "breast: slightly striated light brown", + "crown: rufous with streaks of black", + "forehead: light brown blending with the crown", + "eyes: small and dark, nestled in a stripe", + "legs: delicate and pale, slightly grayish", + "wings: light brown with dark streaks, rounded", + "nape: streaked brown, similar to the back", + "tail: musky brown with dark-edged feathers", + "throat: whitish, blending into the breast" + ], + "dot backed antbird": [ + "back: olive-green with small black spots", + "beak: short, slender, and black", + "belly: off-white, faint spotted pattern", + "breast: white with black spots", + "crown: olive-green with faint stripes", + "forehead: olive-green, slightly paler than crown", + "eyes: small, black, surrounded by white eye-ring", + "legs: short, light gray", + "wings: olive-green, blackish spots along feathers", + "nape: olive-green, similar to back and crown", + "tail: black, long and broad, white bars near tip", + "throat: unspotted white" + ], + "dot eared coquette": [ + "back: striking green feathers", + "beak: slender and slightly curved", + "belly: pale grayish-white", + "breast: vibrant green shimmer", + "crown: iridescent violet crest", + "foreground: feather tufts near the beak", + "eyes: small and dark, surrounded by white feathers", + "legs: short with delicate dark feet", + "wings: elongated with dark green edges", + "nape: mixture of green and violet, tufted", + "tail: forked, decorated with black and white feathers", + "throat: intricate pattern of white and black" + ], + "dot fronted woodpecker": [ + "back: black and white barred pattern", + "beak: strong, chisel-like, black", + "belly: yellowish-white with black spots", + "breast: white with black streaks", + "crown: red patch on the male's head", + "forehead: white with black spots", + "eyes: black and round, with a white patch around them", + "legs: grayish-blue, strong, and short", + "wings: black with white spots and bars", + "nape: black and white striped", + "tail: black with white outer feathers", + "throat: white with black streaks" + ], + "dot winged antwren": [ + "back: dark grey with light streaks", + "beak: short and black", + "belly: pale white-grey", + "breast: light grey with darker flanks", + "crown: black with slight crest", + "forehead: black and smooth", + "eyes: small and dark", + "legs: slender and grey", + "wings: dark grey with white dots", + "nape: grey with light streaks", + "tail: long and dark with white tips", + "throat: pale white-grey" + ], + "dot winged crake": [ + "back: olive-brown with fine streaks", + "beak: short and straight, pale yellow", + "belly: grayish-white with faint barring", + "breast: mottled gray-brown", + "crown: dark gray-brown with a slight crest", + "forehead: olive-brown with faint streaks", + "eyes: dark brown, slightly elongated", + "legs: greenish-yellow, slender", + "wings: short and rounded, olive-brown with white spotted dots", + "nape: olive-brown with fine streaks", + "tail: short and square, olive-brown with white dots", + "throat: pale grayish-white, unmarked" + ], + "dotted tanager": [ + "back: vibrant blue-green feathers", + "beak: strong and conical", + "belly: light turquoise hue", + "breast: bright teal plumage", + "crown: metallic cobalt crest", + "forehead: blue-green feathers", + "eyes: deep, dark pupils", + "legs: slender, gray appendages", + "wings: radiant aqua plumage", + "nape: bright blue coloring", + "tail: elongated, iridescent feathers", + "throat: soft azure tones" + ], + "double banded courser": [ + "back: light sandy-brown with subtle markings", + "beak: short and stout, pale pinkish color", + "belly: creamy white with faint dark bands", + "breast: light sandy-brown, blending into the belly", + "crown: pale brown with a streak of black", + "forehead: narrow white band above the eyes", + "eyes: dark brown, encircled by a thin white ring", + "legs: long and slender, pale grayish-blue", + "wings: sandy-brown with dark barring, outer wings have black tips", + "nape: pale brown, matching the crown", + "tail: white with two bold black bands, long and slightly forked", + "throat: light sandy-brown, blending into the breast" + ], + "double banded graytail": [ + "back: long, sleek gray feathers", + "beak: small, sharp, white with a black tip", + "belly: pale gray with faint banding", + "breast: light gray with double dark bands", + "crown: darker gray with a slight crest", + "forehead: smooth pale gray", + "eyes: beady, black, expressive", + "legs: slender, delicate, yellow", + "wings: gray and white, with dark bands on the edges", + "nape: grayish-white", + "tail: elongated, double-banded gray feathers", + "throat: pale gray, smooth" + ], + "double banded plover": [ + "back: brownish-grey coat with short feathers", + "beak: short and dark, slightly pointed", + "belly: white underbelly with faint brown speckles", + "breast: white, bordered by a dark brownish-black band", + "crown: reddish-brown, extending to the nape area", + "forehead: white with brown border", + "eyes: dark and round, surrounded by a thin white ring", + "legs: skinny, pinkish-orange with dark claws", + "wings: brownish-grey without distinct markings, pointed tips", + "nape: reddish-brown, blending into the back feathers", + "tail: short with dark brownish-black feathers, white tips", + "throat: white, contrasting with the upper dark breast band" + ], + "double banded pygmy tyrant": [ + "back: olive-green feathers", + "beak: small, pointed black", + "belly: pale yellowish-white", + "breast: light grayish-green", + "crown: dark grayish-green", + "forehead: black, narrow band", + "eyes: dark, medium-sized", + "legs: slender, grayish", + "wings: olive-green with yellowish-white edges", + "nape: olive-green, black bands", + "tail: short, square, and dark grayish", + "throat: pale grayish-white" + ], + "double banded sandgrouse": [ + "back: tawny brown with elongated feathers", + "beak: short and robust, greyish in color", + "belly: whitish and streaked with brown", + "breast: cinnamon brown with horizontal darker bars", + "crown: dark brown with a tufted appearance", + "forehead: pale brown fading to white at the front", + "eyes: small and dark, surrounded by a white eye-ring", + "legs: feathered, short, with grayish scaly skin", + "wings: predominantly brown with black and white bars on secondaries", + "nape: dark brown with elongated feathers", + "tail: long, brown with black and white banding", + "throat: white, bordered by a distinct black band" + ], + "double collared seedeater": [ + "back: greenish-yellow, slightly streaked", + "beak: short, conical, grayish-black", + "belly: pale gray, subtle streaks", + "breast: deep green-black, sharp border", + "crown: olive-green, smooth texture", + "forehead: greenish-yellow with black border", + "eyes: dark, medium-sized, alert", + "legs: pale gray, thin, agile", + "wings: dark brown, white edges on feathers", + "nape: olive-green, blending with crown", + "tail: short, crisp, black with white edges", + "throat: bright green-black, distinct collar" + ], + "double spurred spurfowl": [ + "back: brownish-black with streaks of white", + "beak: short and stout, pale gray", + "belly: creamy white with blackish bars", + "breast: beige with dark barring", + "crown: dark brown with white streaks", + "forehead: reddish-brown and white markings", + "eyes: bright orange-red surrounded by light blue skin", + "legs: long, scaly, and grayish", + "wings: dark brown with white streaks and reddish-brown accents", + "nape: reddish-brown with white streaks", + "tail: long, blackish-brown feathers with white tips", + "throat: creamy white with dark bars" + ], + "double striped thick knee": [ + "back: brown speckled feathers", + "beak: short, curved and black", + "belly: off-white with sparse black stripes", + "breast: light brown with dark streaks", + "crown: pale-brown feathers", + "forehead: white stripe above eyes", + "eyes: bright orange ring surrounding black pupils", + "legs: long, yellow-gray and slightly scaly", + "wings: brown with light and dark streaks", + "nape: mottled brown and white feathers", + "tail: short and pointy, with dark brown and white bands", + "throat: white, bordered by two black stripes" + ], + "double toothed barbet": [ + "back: vibrant green feathers", + "beak: thick, red, and slightly curved", + "belly: yellowish-green feathers", + "breast: red and yellow mix plumage", + "crown: black feathers with a red stripe", + "forehead: yellow feathers above the beak", + "eyes: small, dark, and attentive", + "legs: strong, gray, and scaly", + "wings: green with red and yellow accents", + "nape: black feathers with a red collar", + "tail: short, wide, and green", + "throat: black feathers with a white stripe" + ], + "double toothed kite": [ + "back: sleek, grayish-brown feathers", + "beak: sharp, curved, black", + "belly: white, lightly barred or streaked", + "breast: grayish-white or pale rufous, streaked with black stripes", + "crown: grayish or pale rufous, streaked with black", + "forehead: grayish-white, slightly streaked", + "eyes: piercing, dark brown", + "legs: thin, yellowish", + "wings: long, grayish-brown, black primary feathers", + "nape: grayish-white with black streaks", + "tail: black with narrow white bands and white tips", + "throat: white, unmarked" + ], + "dovekie": [ + "back: sleek, black-feathered", + "beak: short, stubby, black", + "belly: white and soft-looking", + "breast: white feathers with rounded shape", + "crown: black, smooth-feathered top", + "forehead: small, black-feathered", + "eyes: round, dark, and alert", + "legs: short, black, webbed feet", + "wings: compact, black, and powerful", + "nape: black, smooth-feathered back of the neck", + "tail: short, black, and slightly fan-shaped", + "throat: white-feathered, leading to breast" + ], + "drab hemispingus": [ + "back: dull olive-green color", + "beak: thick and cone-shaped", + "belly: pale yellow with faint streaks", + "breast: subdued yellow with subtle markings", + "crown: dusky grayish-brown", + "forehead: slightly paler than the crown", + "eyes: dark with a faint white ring", + "legs: strong and grayish-brown", + "wings: olive-green with two buffy wing bars", + "nape: similar to the crown in color", + "tail: dark with outer feathers edged in white", + "throat: pale grayish-yellow" + ], + "drab seedeater": [ + "back: brownish-grey feathers", + "beak: short, conical, greyish-white", + "belly: white with faint streaks", + "breast: pale buff-brown hue", + "crown: brownish-grey, slightly darker than back", + "forehead: inconspicuous, blending with crown", + "eyes: small, dark, surrounded by thin eye-ring", + "legs: slender, pale grey", + "wings: brownish-grey with faint barring", + "nape: same color as crown, brownish-grey", + "tail: short, square-shaped, brownish-grey", + "throat: pale buff, slightly paler than breast" + ], + "drab swiftlet": [ + "back: sleek, plain gray-brown", + "beak: short, thin, black", + "belly: soft, pale gray", + "breast: pale gray, unmarked", + "crown: unadorned, gray-brown", + "forehead: smooth, light gray", + "eyes: small, black, alert", + "legs: short, dark, slender", + "wings: long, tapered, swift", + "nape: nondescript, gray-brown", + "tail: short, square-ended, black", + "throat: pale gray, unembellished" + ], + "drab water tyrant": [ + "back: grayish-brown feathers", + "beak: short, pointed, and black", + "belly: white and soft", + "breast: lightly streaked white and beige", + "crown: soft gray feathers", + "forehead: smooth, pale gray", + "eyes: small, dark, with white eye-ring", + "legs: thin, long, and dark", + "wings: dark gray with light edges", + "nape: grayish-brown", + "tail: medium-long, subdued gray", + "throat: pale white with light streaking" + ], + "drab whistler": [ + "back: olive-brown feathers", + "beak: short, straight, and dark", + "belly: off-white and lightly streaked", + "breast: grayish-white with faint streaks", + "crown: olive-brown with a slight crest", + "forehead: smooth, olive-brown", + "eyes: small and dark", + "legs: slender and gray", + "wings: olive-brown with faint barring", + "nape: olive-brown and unmarked", + "tail: long, thin, and olive-brown", + "throat: pale gray with light streaks" + ], + "drab breasted pygmy tyrant": [ + "back: olive-green with faint streaks", + "beak: short and hooked, dark grey", + "belly: pale yellow with faint streaks", + "breast: dull beige-grey with minimal streaks", + "crown: slightly darker olive-green", + "forehead: light olive-green", + "eyes: black with a dull white eye-ring", + "legs: pale grey, thin and spindly", + "wings: olive-green with faint barring and pale edging", + "nape: olive-green, blending into the crown", + "tail: short and square, dark olive with pale edges", + "throat: light beige-grey, unmarked" + ], + "drakensberg prinia": [ + "back: pale brown with faint streaks", + "beak: short and pointed, dark grey", + "belly: white with light grey wash", + "breast: light greyish-brown", + "crown: greyish-brown with slight streaks", + "forehead: pale grey-brown with a hint of streaking", + "eyes: dark with a white eye-ring", + "legs: long and slender, pale pinkish-grey", + "wings: brownish-grey with faint barring on flight feathers", + "nape: greyish-brown with faint streaks", + "tail: long and thin, greyish-brown with white outer tips", + "throat: light grey-white" + ], + "drakensberg rockjumper": [ + "back: dark slate grey with white streaks", + "beak: straight, black, and sharp-pointed", + "belly: black with white speckles", + "breast: striking orange-red", + "crown: dark slate grey", + "forehead: orange-red patch", + "eyes: yellow with black eye-ring", + "legs: long, reddish-pink, and strong", + "wings: black with white wing-bar", + "nape: dark slate grey", + "tail: long, black with white edges", + "throat: orange-red with white speckles" + ], + "drakensberg siskin": [ + "back: olive-green with dark streaks", + "beak: grayish-black, conical in shape", + "belly: pale yellow with gray streaks", + "breast: bright yellow with dark streaks", + "crown: olive-green with dark streaks", + "forehead: olive-green with black streaks", + "eyes: dark brown encircled by a white eye-ring", + "legs: pale pinkish-brown with sharp claws", + "wings: olive-brown with dark streaks and white wing bars", + "nape: olive-green with dark streaks", + "tail: olive-brown with black streaks and white outer feathers", + "throat: yellow with gray streaks" + ], + "drongo fantail": [ + "back: sleek, elongated body", + "beak: slightly hooked, strong", + "belly: light-colored feathers", + "breast: smooth, ruffled chest", + "crown: slightly raised, crest-like", + "forehead: low, dark coloring", + "eyes: beady, attentive gaze", + "legs: slender, long limbs", + "wings: curved, pointed tips", + "nape: dark, stretching to back", + "tail: long, fanned-out shape", + "throat: feathered, contrasting color" + ], + "dubois seedeater": [ + "back: blackish-brown feathers", + "beak: short, conical, pale gray", + "belly: whitish-gray plumage", + "breast: blackish-brown feathers", + "crown: blackish-brown with slight iridescence", + "forehead: blackish-brown feathers", + "eyes: dark brown, surrounded by pale gray eye-ring", + "legs: light gray, thin, and delicate", + "wings: blackish-brown with subtle white wing bars", + "nape: blackish-brown plumage", + "tail: short, blackish-brown, slightly forked", + "throat: blackish-brown feathers" + ], + "duchess lorikeet": [ + "back: vivid green feathers", + "beak: vibrant orange-red hues", + "belly: bright yellow underside", + "breast: rich greenish-blue plumage", + "crown: deep blue mixed with green", + "forehead: orange and yellow shades", + "eyes: petite, dark, attentive gaze", + "legs: grayish-blue with sharp claws", + "wings: green-blue with hints of yellow", + "nape: blend of green and blue feathers", + "tail: long, green feathers with yellow tips", + "throat: golden-yellow with orange accents" + ], + "ducorps cockatoo": [ + "back: white, slightly curved feathers", + "beak: light grey, strong, curved", + "belly: white, fluffy feathers", + "breast: white, covering rounded chest", + "crown: white crest, elongated feathers", + "forehead: white, smooth feathers", + "eyes: dark, round with white surrounding", + "legs: grey, scaly with sharp claws", + "wings: white, long, powerful feathers", + "nape: white, short, smooth feathers", + "tail: white, broad, slightly tapered", + "throat: white, soft, fluffy feathers" + ], + "duetting giant honeyeater": [ + "back: olive-green feathers with a hint of yellow", + "beak: long, sharp, and slightly curved black bill", + "belly: pale, creamy yellow with fine dark streaks", + "breast: rich golden-yellow with distinctive black markings", + "crown: bright yellow with a striking black stripe", + "forehead: prominent black eyebrow meeting at the base of the bill", + "eyes: dark, expressive orbs encircled by a thin yellow ring", + "legs: slender and sturdy with sharp black claws", + "wings: olive-green with black primary feathers and yellow-edged secondaries", + "nape: nestled between the wings, a pale yellow coloration with fine streaks", + "tail: elongated, predominantly black feathers with yellow fringes", + "throat: adorned with a wide black band, contrasting the vivid yellow chin" + ], + "dugand antwren": [ + "back: olive-green feathers covering the back", + "beak: small, blackish, sharp, slightly curved", + "belly: pale yellowish in color", + "breast: greyish-white with black streaks", + "crown: dark gray with a shaggy crest", + "forehead: dark gray feathers, leading to the crown", + "eyes: small, round, and dark", + "legs: light grey, slender with strong feet for perching", + "wings: olive-grey with blackish edges and white wing-bars", + "nape: dark gray, connecting with the crown", + "tail: long and dark grey, with white tips on outer feathers", + "throat: white with greyish streaks" + ], + "duida woodcreeper": [ + "back: rich brown with faint streaks", + "beak: long, slightly curved, and pointed", + "belly: pale cream with brown speckles", + "breast: buff with brownish streaks", + "crown: reddish-brown with faint streaks", + "forehead: slightly paler brown than crown", + "eyes: dark, round, and piercing", + "legs: grayish-brown with strong claws", + "wings: brown with distinct bars on feathers", + "nape: reddish-brown blending into back color", + "tail: long, brown with faint barring", + "throat: creamy white with light brown streaks" + ], + "dulit frogmouth": [ + "back: dark brown with pale streaks and spots", + "beak: short, hooked, and grayish-brown", + "belly: lighter brown with white specks", + "breast: reddish-brown with white bars", + "crown: brown with paler streaks", + "forehead: lighter brown with streaks", + "eyes: dark, large, and round", + "legs: short and grayish-brown", + "wings: long and brown with spots", + "nape: dark brown with lighter streaks", + "tail: brown, long, and fan-shaped with barring", + "throat: pale brown with white speckles" + ], + "dull flycatcher": [ + "back: earthy brown plumage", + "beak: small, black, and pointed", + "belly: creamy beige with pale streaks", + "breast: light brown with delicate spots", + "crown: olive-brown with faint streaks", + "forehead: slightly paler brown", + "eyes: black with white eye-ring", + "legs: thin, grayish-brown", + "wings: dull brown with faint wing-bars", + "nape: olive-brown, blending into back", + "tail: brown with white outer feathers", + "throat: pale beige with light streaks" + ], + "dull blue flycatcher": [ + "back: pale grey-blue feathers", + "beak: small, pointed, black", + "belly: light grey-blue", + "breast: soft blue-grey plumage", + "crown: subtle blue-grey crest", + "forehead: faint grey-blue feathers", + "eyes: round, dark, alert", + "legs: slender, dark gray", + "wings: muted blue with greyish-blue accents", + "nape: gently sloping, grey-blue hue", + "tail: sleek, tapering, pale blue feathers", + "throat: delicate blue-grey plumage" + ], + "dull capped attila": [ + "back: olive-grey coloration", + "beak: dark, heavy and hooked", + "belly: pale yellow-tinted", + "breast: lighter olive-grey hue", + "crown: dull greenish-brown", + "forehead: slightly paler olive-grey", + "eyes: dark, small, and piercing", + "legs: grey, sturdy and featherless", + "wings: olive-grey with darker flight feathers", + "nape: same hue as crown, dull greenish-brown", + "tail: long and tapering, olive-grey shade", + "throat: lighter and paler yellow than belly" + ], + "dull colored grassquit": [ + "back: muted olive-green", + "beak: dark gray, conical shape", + "belly: pale yellowish-brown", + "breast: light brown with subtle streaks", + "crown: dull gray-brown", + "forehead: grayish-brown blending with crown", + "eyes: small, black, with a faint white eye-ring", + "legs: slender gray-brown", + "wings: olive-green with faint streaks", + "nape: gray-brown, blending with back", + "tail: short, olive-green with brownish edges", + "throat: pale gray-brown, slightly lighter than breast" + ], + "dull mantled antbird": [ + "back: olive-brown feathers", + "beak: black and straight", + "belly: grayish-white", + "breast: grayish-white with faint streaks", + "crown: black with white streaks", + "forehead: black feathers", + "eyes: reddish-brown with white eye-ring", + "legs: pale pinkish-gray", + "wings: olive-brown with black bars", + "nape: black with white streaks", + "tail: long, olive-brown with broad black bars", + "throat: white with grayish-white streaks" + ], + "dune lark": [ + "back: sandy-brown feathers with subtle streaking", + "beak: slender, slightly curved blackish-gray beak", + "belly: light cream or whitish feathers, sparsely speckled", + "breast: soft sandy-brown plumage with faint streaking", + "crown: pale sandy-brown feathers, blending seamlessly with its back", + "forehead: slightly lighter sandy-brown compared to the crown", + "eyes: dark and small, surrounded by faint white eyering", + "legs: long and slender grayish-pink legs", + "wings: mottled sandy-brown feathers with contrasting white wingbars", + "nape: pale sandy-brown color, continuous with the crown", + "tail: rounded and sandy-brown with slight black markings on end", + "throat: whitish feathers with a sparse scattering of darker specks" + ], + "dunn lark": [ + "back: streaked brown-and-white pattern", + "beak: short, pointed, and light-colored", + "belly: whitish with brown streaks", + "breast: buffy brown with streaking", + "crown: brown with faint streaks", + "forehead: smooth and light brown", + "eyes: small and dark brown", + "legs: thin and pinkish-brown", + "wings: brown with white-edged feathers", + "nape: streaked light brown", + "tail: fan-shaped with brown and white feathers", + "throat: pale with faint brown streaks" + ], + "dunnock": [ + "back: brownish grey feathers with streaks", + "beak: slim greyish-black bill", + "belly: light grey color, slightly paler", + "breast: greyish-brown hue, some streaks", + "crown: blueish-grey head, slight streaks", + "forehead: grey-blue color, unmarked", + "eyes: small with brown-black irises", + "legs: slender pinkish-reddish legs", + "wings: brownish-grey, hints of blue, streaked feathers", + "nape: blueish-grey with faint streaks", + "tail: fairly long, dark brown with subtle streaks", + "throat: light grey, almost white, slightly paler than belly" + ], + "dupont lark": [ + "back: light brown with darker streaks", + "beak: dark gray, sharp, and slightly curved", + "belly: pale brown with light streaks", + "breast: tawny brown with faint markings", + "crown: reddish-brown with subtle streaks", + "forehead: pale brown blending with the crown", + "eyes: dark brown, bright, and alert", + "legs: light pink with strong, long toes", + "wings: brown with noticeable bars and white edges", + "nape: light brown, smoothly transitioning from the crown", + "tail: brownish-gray with white tips and dark bands", + "throat: off-white with pale brown streaks" + ], + "dusky antbird": [ + "back: dark brown plumage", + "beak: short, curved black bill", + "belly: grayish-brown feathers", + "breast: pale gray plumage", + "crown: dark brown with a thin crest", + "forehead: smooth and brownish-gray", + "eyes: black, surrounded by a pale ring", + "legs: long, slender, and gray", + "wings: dark brown with faint barring", + "nape: brown with a subtle grayish cast", + "tail: long, dark brown with a slight curve", + "throat: pale grayish-white with fine streaks" + ], + "dusky babbler": [ + "back: grayish-brown feathers", + "beak: short, curved, dark-colored", + "belly: pale gray with light streaks", + "breast: grayish-brown with subtle markings", + "crown: dark brown with faint streaks", + "forehead: light grayish-brown", + "eyes: small, dark with white eyering", + "legs: slender, brownish-gray", + "wings: grayish-brown, slightly rounded", + "nape: grayish-brown, faint streaks", + "tail: long, brownish-gray with darker tips", + "throat: light gray with faint streaks" + ], + "dusky broadbill": [ + "back: dark gray with a thick black stripe", + "beak: wide, bluish-gray, and hooked", + "belly: pale gray with subtle streaks", + "breast: dark gray with faint markings", + "crown: black with a small crest", + "forehead: black and well-defined", + "eyes: bright yellow surrounded by a black mask", + "legs: sturdy, bluish-gray", + "wings: dark gray with white-tipped secondary feathers", + "nape: dark gray with a distinct black collar", + "tail: blackish, broad, with white tips on outer feathers", + "throat: pale gray, contrasting with the dark breast" + ], + "dusky chlorospingus": [ + "back: olive-green upper body", + "beak: short and conical", + "belly: pale yellowish-brown color", + "breast: grayish or pale brownish wash", + "crown: dark gray", + "forehead: lighter gray", + "eyes: black with a thin white eyering", + "legs: sturdy and brownish-gray", + "wings: olive-green with two white wing bars", + "nape: olive-green, blending with crown and back", + "tail: olive-green and slightly forked", + "throat: grayish-white, contrasting with breast" + ], + "dusky crag martin": [ + "back: gray-brown coloration", + "beak: short and pointed", + "belly: pale gray hue", + "breast: light gray plumage", + "crown: slightly darker gray-brown", + "forehead: smooth grayish-brown transition", + "eyes: small, black, and circular", + "legs: short and black", + "wings: long and pointed with gray-brown feathers", + "nape: gray-brown with a smooth blend into the back", + "tail: forked and squared with gray-brown feathers", + "throat: lighter gray shade than breast" + ], + "dusky crested flycatcher": [ + "back: dark olive-green", + "beak: short and strong", + "belly: yellowish-white", + "breast: pale gray", + "crown: slightly crested, dusky gray", + "forehead: dusky gray", + "eyes: dark, with pale eye ring", + "legs: short and strong", + "wings: brownish-black with white wing bars", + "nape: dusky gray", + "tail: brownish-black, forked", + "throat: pale gray" + ], + "dusky crimsonwing": [ + "back: deep crimson with subtle streaks", + "beak: small, sharp, and black", + "belly: light crimson to orange blend", + "breast: rich red with some white markings", + "crown: dark crimson fading to brighter red", + "forehead: vivid red meeting the eyes", + "eyes: round, black, and expressive", + "legs: grayish-brown and slender", + "wings: dusky red with black feather tips", + "nape: deep crimson leading to the crown", + "tail: long, dark red feathers with black edges", + "throat: lighter red with some white streaks" + ], + "dusky eagle owl": [ + "back: earthy brown feathers with dark streaks", + "beak: large, sharp, and dark in color", + "belly: creamy-white with faint brown barring", + "breast: light buff color with dark vertical streaks", + "crown: rounded head with brown speckled plumage", + "forehead: smooth dark brown feathers", + "eyes: striking orange-yellow with dark pupils", + "legs: strong, feathered, and yellowish", + "wings: extensive mottled brown patterns", + "nape: brownish feathers with darker markings", + "tail: dark broad bands of brown and buff feathers", + "throat: pale, whitish-buff with demarcated dark streaks" + ], + "dusky fantail": [ + "back: dark gray, slightly glossy", + "beak: small, black, hooked tip", + "belly: pale gray with white undertail", + "breast: light gray, fluffy feathers", + "crown: dark gray, smooth curve", + "forehead: light gray, thin white stripe", + "eyes: black, beady, expressive", + "legs: slender, long, black", + "wings: dark gray, rounded, white edges", + "nape: light gray, short feathers", + "tail: fan-shaped, dark gray, white tips", + "throat: light gray, delicate feathers" + ], + "dusky fulvetta": [ + "back: olive-brown plumage", + "beak: short, stout, grayish-black", + "belly: pale gray-white underparts", + "breast: gray-white, slightly darker than belly", + "crown: dark gray, often concealed crest", + "forehead: dark gray, blending into crown", + "eyes: dark brown, circled by pale eyering", + "legs: featherless, grayish-black", + "wings: olive-brown, short and rounded", + "nape: darker olive-brown than back", + "tail: olive-brown, short and squared", + "throat: white, contrasting with gray breast" + ], + "dusky gerygone": [ + "back: olive-brown plumage", + "beak: slender, slightly curved", + "belly: off-white with a yellow tint", + "breast: pale grayish-white", + "crown: brownish-gray", + "forehead: light gray", + "eyes: dark, beady with white eye ring", + "legs: long, slender, grayish", + "wings: olive-brown with grayish-white edges", + "nape: brownish-gray", + "tail: long, fan-shaped, olive-brown", + "throat: pale grayish-white" + ], + "dusky grasswren": [ + "back: rusty-brown with black streaks", + "beak: short, pointed, black", + "belly: pale cream with black markings", + "breast: rusty-brown with black streaks", + "crown: dark brown with grey tinges", + "forehead: grey-brown with faint streaks", + "eyes: small, dark with pale eyering", + "legs: long, strong, greyish-blue", + "wings: brown with dark markings, short, rounded", + "nape: rusty-brown with black streaks", + "tail: brown with dark bands, short, stiff", + "throat: pale grey with black streaks" + ], + "dusky hummingbird": [ + "back: dark green iridescent feathers", + "beak: slender and straight black bill", + "belly: grayish-white lower region", + "breast: grayish-white upper region", + "crown: dark green iridescent feathers", + "forehead: dark green and slightly shimmering", + "eyes: small and dark brown", + "legs: short and thin black legs", + "wings: iridescent dark green, fast-beating", + "nape: dark green iridescent feathers", + "tail: forked, dark green with white outer tips", + "throat: metallic violet straight patch" + ], + "dusky lark": [ + "back: dark brown and streaked", + "beak: strong and pointed", + "belly: pale with dark streaks", + "breast: buffy brown with darker markings", + "crown: dark with noticeable streaks", + "forehead: dusky brown", + "eyes: sharp and brown", + "legs: strong and pale", + "wings: long with brown barring", + "nape: brown with streaks", + "tail: dark brown with pale tips", + "throat: pale with dark streaks" + ], + "dusky long tailed cuckoo": [ + "back: dark brown with fine streaks", + "beak: curved and slender black beak", + "belly: buffy-white with dark bars", + "breast: pale and streaked with dark brown", + "crown: sleek dark brown", + "forehead: dark brown and streaked", + "eyes: black with pale eyering", + "legs: greyish-blue with long toes", + "wings: long, dark brown with thin white bars", + "nape: contrasting darker brown", + "tail: elongated with prominent white-tipped feathers", + "throat: pale buff and streaked with brown" + ], + "dusky megapode": [ + "back: dark brownish-grey plumage", + "beak: short, black, curved", + "belly: light grey with subtle barring", + "breast: dark grey with black streaks", + "crown: blackish-grey, rounded", + "forehead: dark grey, slightly lighter than crown", + "eyes: reddish-brown iris, round shape", + "legs: strong, yellow-grey, long claws", + "wings: dark brownish-grey, rounded tips", + "nape: blackish-grey, slightly raised feathers", + "tail: dark brown, well-rounded fan shape", + "throat: lighter grey, slight barring" + ], + "dusky moorhen": [ + "back: dark grey with subtle green sheen", + "beak: yellow tip, greenish base", + "belly: grayish-black", + "breast: grey with dark striations", + "crown: black with glossy appearance", + "forehead: red frontal shield above beak", + "eyes: small, red with black pupils", + "legs: long, yellow-green with red upper-part", + "wings: dark grey with thin white streaks", + "nape: black, blending into grey back", + "tail: short, black with white patches at corners", + "throat: light grey with darker markings" + ], + "dusky munia": [ + "back: dark brown with subtle black streaks", + "beak: short, conical, pale grayish-blue", + "belly: pale grayish-brown with dusky streaks", + "breast: grayish-brown with dark streaks", + "crown: dark brown with black streaks", + "forehead: dark brown, slightly raised feathers", + "eyes: small, round, black with white eye-ring", + "legs: pale pinkish-gray with strong claws", + "wings: dark brown with faint black bars", + "nape: rich brown with fine black streaks", + "tail: short, black with brownish edges", + "throat: grayish-brown with darker streaks" + ], + "dusky myzomela": [ + "back: dark reddish-brown", + "beak: sharp, slender, black", + "belly: deep rufous-toned", + "breast: dark reddish-brown", + "crown: reddish-brown, slightly darker", + "forehead: deep reddish-brown", + "eyes: dark, circular, beady", + "legs: slender, dark gray", + "wings: dark reddish-brown, short", + "nape: reddish-brown, blending with crown", + "tail: short, dark reddish-brown", + "throat: slightly paler reddish-brown" + ], + "dusky nightjar": [ + "back: smooth, grayish-brown feathers", + "beak: short, slightly curved, black in color", + "belly: pale cream with brown spots", + "breast: grayish-brown with black streaks", + "crown: mottled gray and brown", + "forehead: plain grayish-brown", + "eyes: large, dark with a white eyering", + "legs: short with brown scales, long claws", + "wings: long, lush, brown with white spotting", + "nape: grayish-brown with light streaks", + "tail: broad, brown with white bands", + "throat: pale gray with faint brown streaks" + ], + "dusky parrot": [ + "back: dark, grayish-green feathers", + "beak: short, curved, and sharp", + "belly: lighter green gradient", + "breast: deep greenish-blue", + "crown: grayish-green coloring", + "forehead: brighter green spot", + "eyes: black beady orbs with white eye-ring", + "legs: gray, scaly, and strong", + "wings: green and blue flight feathers", + "nape: grayish-green plumage", + "tail: long, dark green feathers", + "throat: pale green feathers" + ], + "dusky pigeon": [ + "back: dark gray feathers", + "beak: short, black, slightly curved", + "belly: light gray feathers", + "breast: medium gray feathers", + "crown: dark gray, slightly raised", + "forehead: smooth, dark gray", + "eyes: orange ring around black pupil", + "legs: short, red or coral", + "wings: dark gray, broad, strong", + "nape: dark gray, thin band separating crown and back", + "tail: medium gray, short, fan-shaped", + "throat: light gray feathers" + ], + "dusky piha": [ + "back: dark gray, slightly bronzed", + "beak: stout, hooked, black", + "belly: pale gray, lightly striped", + "breast: smoky gray with faint markings", + "crown: dark gray, less bronzed than back", + "forehead: smooth, smoky gray", + "eyes: large, pale yellow", + "legs: strong, dark gray", + "wings: dark, bronzed gray", + "nape: dark gray, blending with the crown", + "tail: dark gray, moderately long", + "throat: whitish-gray, lightly streaked" + ], + "dusky purpletuft": [ + "back: dark brown with iridescent purple shades", + "beak: short and slightly curved, black", + "belly: pale grey with faint purple hues", + "breast: greyish-brown with hints of purple", + "crown: dark brown with a purplish sheen", + "forehead: deep brown with a violet gleam", + "eyes: small, round, black, outlined in white", + "legs: slender, dark grey with sharp claws", + "wings: iridescent, brownish-purple, spanning a moderate length", + "nape: velvety brown fading into a purplish tone", + "tail: elongated, dark violet-brown with a subtle purplish sheen", + "throat: light grey with soft purple undertones" + ], + "dusky spinetail": [ + "back: dark brownish-gray feathers", + "beak: short, strong, and hooked", + "belly: grayish-white plumage", + "breast: grayish-brown feathers", + "crown: darker brownish-gray cap", + "forehead: slightly lighter gray-brown", + "eyes: small and dark, encircled with faint white rings", + "legs: slender and long, olive-brown", + "wings: dark brownish-gray and rounded", + "nape: grayish-brown with lighter streaks", + "tail: short and squared, with darker brown central feathers", + "throat: pale gray shading to white" + ], + "dusky starfrontlet": [ + "back: iridescent green with a bronzy gleam", + "beak: slender, slightly curved, black", + "belly: shining green with bluish tinge", + "breast: glittering violet-blue", + "crown: bright green with metallic sheen", + "forehead: shimmering blue-violet", + "eyes: dark, round, surrounded by white feather patch", + "legs: short, black with strong claws", + "wings: long, narrow, and pointed, covered in metallic green feathers", + "nape: gleaming green with hints of bronze", + "tail: short, square, blue-green with white tips", + "throat: brilliant turquoise-blue" + ], + "dusky sunbird": [ + "back: olive-brown feathers with iridescent sheen", + "beak: long, slender, and curved downward for nectar feeding", + "belly: light grey, thin plumage", + "breast: vibrant orange with dark speckles", + "crown: iridescent blue or green with dark feathers", + "forehead: glossy black feathers blending into the crown", + "eyes: small, dark brown with white eye-ring", + "legs: slender and grey, with sharp claws", + "wings: olive-brown with darker flight feathers", + "nape: iridescent green, connecting the crown and back", + "tail: long, dark, and forked with white outer feathers", + "throat: metallic blue or green, with dark speckles" + ], + "dusky tapaculo": [ + "back: dark gray plumage", + "beak: short, stout, black", + "belly: lighter gray feathers", + "breast: grayish-white underparts", + "crown: dark gray or black feathers", + "forehead: grayish-black color", + "eyes: small, black, beady", + "legs: sturdy, feathered, gray", + "wings: rounded, short, dark gray", + "nape: dark gray with slight white streaks", + "tail: short, square-shaped, gray", + "throat: light gray feathers" + ], + "dusky tetraka": [ + "back: dark olive-brown, streaked with black and chestnut", + "beak: short, slender, and pointed", + "belly: pale cinnamon-brown", + "breast: warm ochre, fading into belly", + "crown: olive-brown, faint streaks of chestnut", + "forehead: rusty brown with fine white streaks", + "eyes: dark brown, surrounded by gray eye-ring", + "legs: slender and grayish-brown", + "wings: dark brown with buffy-white edges on feathers", + "nape: olive-brown, blending into the crown", + "tail: long, brown, and slightly forked", + "throat: greyish-white with faint streaks of brown" + ], + "dusky thrush": [ + "back: dark brown with pale streaks", + "beak: short and black", + "belly: white with dark spots", + "breast: orange-red with dark speckles", + "crown: brown with dark streaks", + "forehead: dark brown with faint streaks", + "eyes: small and black", + "legs: pale pinkish-brown", + "wings: brown with pale edging", + "nape: dark brown with light streaks", + "tail: dark brown with white outer feathers", + "throat: white with dark streaks" + ], + "dusky tit": [ + "back: dark greyish-brown plumage", + "beak: short, black, and stout", + "belly: lighter greyish-white feathers", + "breast: soft grey plumage", + "crown: dark greyish-brown with a slightly raised crest", + "forehead: smooth dark greyish-brown feathers", + "eyes: small, black, and shiny", + "legs: dark grey with strong, slender claws", + "wings: dark greyish-brown with light wingbars", + "nape: dark greyish-brown with a slight crest", + "tail: long, greyish-white with dark edges", + "throat: pale grey with minimal streaking" + ], + "dusky turtle dove": [ + "back: olive-grey feathers with a subtle sheen", + "beak: short, black, and slightly curved", + "belly: pale grey with hints of brown", + "breast: rosy pink fading to pale grey", + "crown: pale blue-grey with a smooth texture", + "forehead: light blue-grey blending into the crown", + "eyes: dark brown and round, surrounded by soft grey feathers", + "legs: short, reddish-pink, and strong", + "wings: olive-grey featuring black barring and white edgings", + "nape: pale blue-grey with distinctive dark arrowhead markings", + "tail: long, olive-grey with white outer tail feathers", + "throat: pale grey bordered by a thin black line" + ], + "dusky twinspot": [ + "back: dark brown with subtle streaks", + "beak: black, short and conical", + "belly: pale white with grayish-brown spotting", + "breast: mottled gray-brown with light streaks", + "crown: grayish-brown with subtle streaks", + "forehead: light gray-brown", + "eyes: black, beady, surrounded by light gray rings", + "legs: thin, grayish-brown", + "wings: gray-brown with noticeable spots and barring", + "nape: grayish-brown with slight streaks", + "tail: dark brown with lighter edges", + "throat: pale white with grayish-brown streaks" + ], + "dusky warbler": [ + "back: olive-brown color with faint streaks", + "beak: small, pointed, and dark", + "belly: cream-colored with light brown wash", + "breast: pale and creamy with fine brown streaks", + "crown: olive-brown with darker streaks", + "forehead: slightly lighter brownish hue", + "eyes: small, dark, and beady", + "legs: thin and dark; long, pronounced claws", + "wings: olive-brown with faint bars and edges", + "nape: dark brownish with faint streaks", + "tail: short, dark with rufous edges, and upturned", + "throat: whitish-cream with faint brown streaks" + ], + "dusky white eye": [ + "back: brownish-gray feathers", + "beak: short and black", + "belly: off-white cream color", + "breast: light gray with subtle streaks", + "crown: grayish-brown", + "forehead: slight brown tinge", + "eyes: distinctive white eye-ring", + "legs: long and grayish-black", + "wings: brown with faint feather patterns", + "nape: gray-brown coloration", + "tail: moderately long and brownish-gray", + "throat: pale gray with light markings" + ], + "dusky woodswallow": [ + "back: bluish-gray feathers", + "beak: short, dark, and hooked", + "belly: pale white with light gray streaks", + "breast: pale gray with hints of blue", + "crown: dark gray-blue", + "forehead: smooth bluish-gray", + "eyes: small, dark, and round", + "legs: short and blackish", + "wings: bluish-gray with white edges", + "nape: bluish-gray, slightly darker than forehead", + "tail: long and forked, dark gray-blue", + "throat: pale gray with subtle blue tint" + ], + "dusky backed jacamar": [ + "back: olive green with metallic sheen", + "beak: long, slender, and black", + "belly: whitish to buff", + "breast: olive to yellowish-green", + "crown: glossy greenish-black", + "forehead: olive to dark green", + "eyes: dark brown with reddish eyering", + "legs: pale blue-gray", + "wings: olive green with metallic sheen", + "nape: glossy greenish-black", + "tail: long, greenish-black with white tips", + "throat: white to pale buff" + ], + "dusky billed parrotlet": [ + "back: green feathers with a hint of blue", + "beak: small, hooked, dark grey", + "belly: light green underbelly with a yellowish tinge", + "breast: bright green feathers, slightly lighter than back", + "crown: dark green feathers with a bit of black", + "forehead: combination of green and black feathers", + "eyes: round, dark with a white eye-ring", + "legs: dark, short, and strong with sharp claws", + "wings: green with blue-tipped flight feathers", + "nape: green feathers occasionally mixed with blue", + "tail: green on top and blue underneath, long and tapering", + "throat: bright green, sometimes yellow-green feathers" + ], + "dusky blue flycatcher": [ + "back: slate-gray with a tinge of blue", + "beak: short, sharp and black", + "belly: pale grayish-blue", + "breast: light grayish-blue", + "crown: dark grayish-blue", + "forehead: slightly paler grayish-blue", + "eyes: black with thin white eye-ring", + "legs: slender and dark", + "wings: dusky-blue with darker primary feathers", + "nape: bluish-gray with subtle streaks", + "tail: long, dusky-blue with darker tips", + "throat: pale gray-blue" + ], + "dusky capped flycatcher": [ + "back: olive-brown with subtle streaks", + "beak: short, dark, and hooked", + "belly: pale yellowish-white", + "breast: greyish with pale streaks", + "crown: dark gray with concealed crest", + "forehead: slightly lighter gray", + "eyes: dark with pale eye-ring", + "legs: dark and slender", + "wings: olive-brown with two whitish wing bars", + "nape: grayish transitioning from crown", + "tail: dark and forked with pale feather edges", + "throat: whitish-gray with faint streaks" + ], + "dusky capped greenlet": [ + "back: olive green feathers", + "beak: small and sharp", + "belly: pale yellow hue", + "breast: yellow-green shades", + "crown: olive shades with dusky cap", + "forehead: olive green", + "eyes: dark with white eye-ring", + "legs: grayish-brown", + "wings: olive-green with dusky edges", + "nape: greenish-olive", + "tail: olive green with faint white tips", + "throat: bright yellow undertones" + ], + "dusky capped woodcreeper": [ + "back: olive-brown with subtle streaks", + "beak: long, slightly curved, and pale brown", + "belly: buffy-yellow with light streaking", + "breast: pale brown with darker streaking", + "crown: brownish-gray with a slight crest", + "forehead: olive-gray blending into the crown", + "eyes: dark and beady, surrounded by a pale eye-ring", + "legs: strong and grayish-pink", + "wings: olive-brown with faint bars and white-tipped feathers", + "nape: olive-gray blending into the back", + "tail: long and brown, with thin white barring", + "throat: pale buff-yellow, unmarked" + ], + "dusky cheeked foliage gleaner": [ + "back: olive-brown feathers", + "beak: short, stout, and curved", + "belly: pale buff with fine streaks", + "breast: golden-brown with dark streaks", + "crown: rufous with a faint crest", + "forehead: dark brown with thin streaks", + "eyes: black with faint white eyering", + "legs: long and slender, grayish-brown", + "wings: olive-brown with bold dusky spots", + "nape: rufous with fine streaks", + "tail: long and dark brown with inconspicuous white tips", + "throat: pale buff streaked with dark brown" + ], + "dusky chested flycatcher": [ + "back: olive-brown upperparts", + "beak: short, dark, and slightly hooked", + "belly: pale yellowish underparts", + "breast: muted dusky-orange chest patch", + "crown: olive-brown with a slight crest", + "forehead: slightly paler brown", + "eyes: dark, deep-set against pale eyering", + "legs: long, dark, and slender", + "wings: olive-brown with faint wing bars", + "nape: consistent olive-brown tone", + "tail: medium-length, olive-brown with subtle black markings", + "throat: pale, contrasting with dusky-orange breast" + ], + "dusky faced tanager": [ + "back: olive-green feathers", + "beak: short and sharp", + "belly: grayish-green hue", + "breast: pale gray plumage", + "crown: subtly darker green cap", + "forehead: greenish-yellow tint", + "eyes: black with a small white eye-ring", + "legs: dark gray and sturdy", + "wings: olive-green with faint edging", + "nape: green transition to gray", + "tail: squared-off with olive-green feathers", + "throat: pale gray fading to the breast" + ], + "dusky green oropendola": [ + "back: vibrant green with a subtle iridescence", + "beak: strong, straight, black and curved", + "belly: yellow-gold with contrasting dark streaks", + "breast: deep green, fading to yellow on the sides", + "crown: dusky black, smooth and sleek", + "forehead: dark green, slightly lighter than the crown", + "eyes: round, bright, black with white ring", + "legs: sturdy, scaly, dark gray to black", + "wings: iridescent green, long and streamlined", + "nape: dark green, blending seamlessly with the crown", + "tail: long, tapering, yellow-brown with black barring", + "throat: vibrant yellow, stretching to the upper breast" + ], + "dusky headed brushfinch": [ + "back: olive-green plumage", + "beak: short and pointed, black color", + "belly: pale grayish-white underparts", + "breast: soft grayish-olive hue", + "crown: warm brown streaked with black", + "forehead: dusky brown coloration", + "eyes: dark, beady, surrounded by pale eyering", + "legs: strong and slender, light pink hue", + "wings: long, olive-green with dark brown covert feathers", + "nape: soft brownish-olive color", + "tail: long and slim, blackish with white outer feathers", + "throat: pale grayish-white with faint streaks" + ], + "dusky headed parakeet": [ + "back: green feathers with blue undertones", + "beak: pale orange-yellow and hooked", + "belly: lighter green with vibrant sheen", + "breast: bright green feathers with slight yellow tint", + "crown: dusky gray-blue color", + "forehead: dark gray fading into green", + "eyes: dark brown with white eye-ring", + "legs: sturdy gray with clawed toes", + "wings: green feathers with blue tints on the edge", + "nape: gray-blue transitioning to green", + "tail: long green feathers with blue and yellowish tips", + "throat: greenish-gray color fading into the breast" + ], + "dusky legged guan": [ + "back: dark brown with white streaks", + "beak: large and yellowish-brown", + "belly: grayish-white with black bars", + "breast: chestnut-brown with white streaks", + "crown: dark gray with brown hues", + "forehead: pale gray with white pinfeathers", + "eyes: bright yellow with black pupils", + "legs: strong and dusky gray", + "wings: dark brown with white tips and black bars", + "nape: pale gray with white pinfeathers", + "tail: long, dark brown with white-tipped feathers", + "throat: pale gray with white pinfeathers" + ], + "dusky tailed antbird": [ + "back: dark brown with light feather edges", + "beak: short, strong black hook-like shape", + "belly: pale grey with black markings", + "breast: greyish-white with darker spots", + "crown: bold blackish-brown feathers", + "forehead: brown with faint feather patterns", + "eyes: small, black, and bright", + "legs: sturdy, light grey, and slender", + "wings: brown with light-rimmed feathers", + "nape: dark brown, finely streaked texture", + "tail: dusky brown with distinct tail-feathers", + "throat: white with thin black stripes" + ], + "dusky tailed canastero": [ + "back: brownish-gray with streaks", + "beak: short, curved, and black", + "belly: pale cream with light streaks", + "breast: buff-colored, streaked", + "crown: brownish-gray, slightly raised", + "forehead: gray-brown with fine streaks", + "eyes: dark with pale eyering", + "legs: long, thin, and brown", + "wings: brown with darker barring", + "nape: gray-brown, streaked", + "tail: long, dusky, and slightly notched", + "throat: cream with light streaks" + ], + "dusky tailed flatbill": [ + "back: olive-brown feathers", + "beak: broad, flat, and hooked", + "belly: light yellowish-brown", + "breast: pale grayish-brown", + "crown: dark grayish-brown", + "forehead: slightly paler brown", + "eyes: small and black", + "legs: long and slender, dark gray", + "wings: olive-brown with faint dark barring", + "nape: grayish-brown, blending with crown", + "tail: dusky brown with lighter edges", + "throat: pale grayish-white" + ], + "dusky throated antshrike": [ + "back: grayish-brown with faint streaks", + "beak: stout, slightly hooked, black", + "belly: pale buffy-white", + "breast: grayish-white with black streaks", + "crown: dark gray with a slight crest", + "forehead: dark gray, merging with the crown", + "eyes: large, dark, with pale eye-ring", + "legs: sturdy, pinkish-gray", + "wings: grayish-brown, with white wing-bars", + "nape: grayish, transitioning to brown", + "tail: long, dark brown with faint bars", + "throat: dusky gray with black streaks" + ], + "dusky throated hermit": [ + "back: olive-green upperparts", + "beak: long, curved, slender", + "belly: pale rufous-brown", + "breast: light brown with soft streaks", + "crown: olive-green with a hint of blue", + "forehead: olive-green with slight-blue shine", + "eyes: dark brown", + "legs: grayish-pink", + "wings: olive-green, elongated primary feathers", + "nape: olive-green with blue iridescence", + "tail: rufous, white-tipped, fan-shaped", + "throat: dusky gray with subtle streaks" + ], + "dwarf bittern": [ + "back: brownish-grey with dark streaks", + "beak: long, sharp, and yellowish-green", + "belly: buff-colored with dark streaks", + "breast: pale brown with dark streaks and spots", + "crown: blackish-brown with a thin white stripe", + "forehead: white with dark streaks", + "eyes: small, round, with golden-yellow irises", + "legs: long, slender, greenish-yellow", + "wings: brownish-grey with dark markings", + "nape: pale brown with dark streaks", + "tail: short, with dark brown and greyish-white bands", + "throat: buff-colored with dark streaks" + ], + "dwarf cassowary": [ + "back: dense, black feathered", + "beak: strong, hooked, grayish-blue", + "belly: thick, black plumage", + "breast: robust, black feathers", + "crown: blue skin with a prominent casque", + "forehead: blue to purplish, casque features", + "eyes: dark brown, piercing", + "legs: stout, grayish-blue with sharp claws", + "wings: short, drab-colored feathers", + "nape: black, leading to casque", + "tail: stiff, elongated quill-like feathers", + "throat: blue, bare skin with wattles" + ], + "dwarf cuckoo": [ + "back: light grey-brown, with plumage blending seamlessly into wings", + "beak: short, curved, dark grey", + "belly: pale grey-white feathers, subtle streaking", + "breast: soft grey-brown, blending with belly", + "crown: sleek, dark grey, slightly darker than back", + "forehead: smooth, dark grey, transitioning into crown", + "eyes: dark, round, tiny white eyebrow markings", + "legs: short, pale grey, with strong dark claws", + "wings: grey-brown, round-edged, with faint barring", + "nape: light grey, transitioning smoothly to back", + "tail: square-ended, greyish-brown, with dark bands and white tips", + "throat: pale grey-white, smooth appearance with hints of streaking" + ], + "dwarf fruit dove": [ + "back: vibrant green feathers", + "beak: small, curved, dark grey", + "belly: pale green, soft plumage", + "breast: lavender-grey, delicate", + "crown: stunning emerald green", + "forehead: bright lime tone", + "eyes: beady, dark, expressive", + "legs: short, stout, light grey", + "wings: green and yellow, swift", + "nape: emerald green transition", + "tail: elongated, green-blue gradient", + "throat: pale cream hue, subtle" + ], + "dwarf honeyguide": [ + "back: small, pale brown, slightly streaked", + "beak: short, curved, dark grey", + "belly: white or creamy, spotted with brown", + "breast: pale brown, streaked with darker marks", + "crown: grayish-brown, slightly darker than back", + "forehead: smooth, grayish-brown", + "eyes: small, round, black", + "legs: short, strong, grey", + "wings: brown with white spots, rounded", + "nape: pale brown, slightly darker than crown", + "tail: short, dark brown, white-tipped feathers", + "throat: creamy, with light brown streaks" + ], + "dwarf jay": [ + "back: slate-blue feathers", + "beak: short, black, and curved", + "belly: pale blue-gray plumage", + "breast: light blue-gray feathers", + "crown: slaty blue with faint streaks", + "forehead: slate-blue with thin white streaks", + "eyes: small, black, and alert", + "legs: thin, dark gray, and featherless", + "wings: blue-gray with white highlights", + "nape: slate-blue coloration", + "tail: long, blue-gray, with white-tipped feathers", + "throat: light blue-gray plumage" + ], + "dwarf koel": [ + "back: olive-green plumage", + "beak: sharp, black, and slightly curved", + "belly: off-white to greyish coloring", + "breast: pale greyish-brown feathers", + "crown: dark brown or black plumage", + "forehead: slightly lighter brown than the crown", + "eyes: small, round, dark brown or black", + "legs: relatively short, dark grey", + "wings: olive-green with darker flight feathers", + "nape: olive-green, similar to the back", + "tail: long and dark with a slightly forked shape", + "throat: light grey, may transition to a paler color on belly" + ], + "dwarf tyrant manakin": [ + "back: greenish-yellow plumage", + "beak: small, sharp, and black", + "belly: bright yellow feathers", + "breast: vibrant yellow and green hues", + "crown: dark, rounded, and iridescent", + "forehead: slightly lighter green feathers", + "eyes: round, deep-set, and dark", + "legs: slender, gray, and unfeathered", + "wings: short, rounded, and greenish-yellow", + "nape: smooth and greenish-yellow", + "tail: short, fan-like, and green feathers", + "throat: bright yellow, soft feathering" + ], + "dwarf vireo": [ + "back: olive-green feathers cover the dorsal side", + "beak: short, slightly curved, greyish in color", + "belly: pale whitish-yellow feathers on the lower body", + "breast: light grey or olive hue with subtle streaks", + "crown: plain olive-grey head feathers", + "forehead: pale greyish-olive, blending into the crown", + "eyes: small, dark orbs with a faint whitish eyering", + "legs: slender and greyish-blue, well-adapted for perching", + "wings: olive-green with two white wing bars", + "nape: continuation of the olive-grey feathers from the crown", + "tail: greyish-olive, slightly forked with white outer edges", + "throat: pale grey or whitish, contrasting with the breast" + ], + "dybowski twinspot": [ + "back: olive-brown with white spots", + "beak: short and thick, pale pinkish-gray", + "belly: white with dark spots", + "breast: white with black spots", + "crown: reddish-brown with white spots", + "forehead: dark brown with white spots", + "eyes: black with white eye-ring", + "legs: pale pinkish-gray", + "wings: olive-brown with white feather edges", + "nape: reddish-brown with white spots", + "tail: dark brown with white spots", + "throat: white with dark spots" + ], + "eared dove": [ + "back: smooth and grayish-brown feathers", + "beak: short and sturdy, blackish-gray color", + "belly: creamy-white to pale buff feathers", + "breast: rosy-pink to reddish-brown hue, with subtle spotting", + "crown: pale gray with a subtle crest", + "forehead: smooth and light gray feathers", + "eyes: reddish-brown, surrounded by light gray feathers", + "legs: reddish-pink, with small and sharp claws", + "wings: grayish-brown with dark spots and pale edges on flight feathers", + "nape: pale gray feathers with a slight pinkish tint", + "tail: long and grayish-brown, with black band and white outer feathers", + "throat: creamy-white with a slight rosy hue" + ], + "eared pitta": [ + "back: green and black feathers", + "beak: short, strong, yellowish", + "belly: sky blue with black stripes", + "breast: bright blue", + "crown: green with yellow highlights", + "forehead: black, prominent eye stripe", + "eyes: dark, small, bright", + "legs: strong, yellowish", + "wings: green and black feathers", + "nape: blue-green, continuation of crown", + "tail: short, green with blue tips", + "throat: bright yellow" + ], + "eared poorwill": [ + "back: light gray-brown feathers with dark streaks", + "beak: small, dark, hooked bill", + "belly: pale grayish-white with thin dark bars", + "breast: mottled grayish-brown with dark barring", + "crown: dark gray-brown with light streaks", + "forehead: light gray with dark speckles", + "eyes: large, dark, and round", + "legs: short and feathered with dark gray claws", + "wings: long, pointed, and grayish-brown with dark bands", + "nape: grayish-brown with light streaks", + "tail: short with dark bands and white-tipped outer feathers", + "throat: white with dark mottling" + ], + "eared pygmy tyrant": [ + "back: olive-green feathers", + "beak: small and hooked, black color", + "belly: pale yellow-white plumage", + "breast: creamy-yellow with very fine streaks", + "crown: brownish-gray with discrete crest", + "forehead: pale grayish-white", + "eyes: dark with a white eyering", + "legs: thin and grayish-brown", + "wings: olive-green, black-tipped feathers", + "nape: grayish-brown", + "tail: short with dark central feathers", + "throat: white with pale gray streaks" + ], + "eared quetzal": [ + "back: vibrant green plumage", + "beak: strong, slightly curved, and black", + "belly: bright red feathers", + "breast: rich red plumage", + "crown: green feathers with a slight crest", + "forehead: shimmering green feathering", + "eyes: dark, round, and expressive", + "legs: sturdy, dark gray with sharp claws", + "wings: iridescent green with covert feathers", + "nape: striking green with elongated feathers", + "tail: long, cascading green and white feathers", + "throat: red plumage transitioning from the breast" + ], + "east amazonian fire eye": [ + "back: vibrant green with subtle blue hues", + "beak: short, black, and hooked", + "belly: soft yellow with fine stripes", + "breast: orange-red with intricate feather patterns", + "crown: bright green with a hint of turquoise", + "forehead: fiery red to orange gradient", + "eyes: dark, round, and expressive with white rings", + "legs: slender, grayish-blue with scaly texture", + "wings: green with blue and yellow accents, elongated feathers", + "nape: bluish-green seamlessly transitioning from the crown", + "tail: long, tapered feathers with green and blue stripes", + "throat: rich red with delicate, light feathering" + ], + "east andean antbird": [ + "back: olive-brown with subtle streaks", + "beak: small, hooked, and black", + "belly: buffy-white with faint barring", + "breast: grayish-white with faint barring", + "crown: dark gray with fine streaks", + "forehead: dark gray, slightly mottled", + "eyes: pale yellow-white, medium size", + "legs: short, pale pinkish-grey", + "wings: olive-brown with faint pale edging", + "nape: dark gray with fine streaks", + "tail: long, brown with pale tips", + "throat: pale gray with faint barring" + ], + "east brazilian chachalaca": [ + "back: olive-brown feathers covering the dorsal area", + "beak: short and stout, pale grayish-white in color", + "belly: soft feathers with pale gray shades", + "breast: mottled gray-brown plumage", + "crown: blackish or dark brown feathers on top of the head", + "forehead: slightly raised, dark brown feathers", + "eyes: beady and red or dark brown in color", + "legs: long and sturdy, grayish-white or pale gray in color", + "wings: olive-brown, broad, and rounded", + "nape: grayish-brown, smooth feathers on the back of the neck", + "tail: long and tapering, olive-green with pale gray tips", + "throat: bare, reddish or grayish skin area with fine whitish feathers" + ], + "east coast akalat": [ + "back: olive-brown with subtle streaks", + "beak: short, slender, black", + "belly: white with creamy-brown sides", + "breast: white with indistinct brown streaks", + "crown: dark brown with fine streaks", + "forehead: olive-brown with faint streaks", + "eyes: large, black, with white eye-ring", + "legs: pale pink to light brown", + "wings: olive-brown with distinct white spots", + "nape: olive-brown with fine streaks", + "tail: long, slightly notched, brown", + "throat: white with thin brown streaks" + ], + "eastern bearded greenbul": [ + "back: olive-green with light streaks", + "beak: slender, slightly curved and grayish", + "belly: yellowish-green and fluffy", + "breast: pale olive-green with hints of yellow", + "crown: green with subtle darker streaks", + "forehead: olive-green blending with the crown", + "eyes: small, black with a white eyering", + "legs: pale gray with strong, scaled texture", + "wings: olive-green with distinct light edging", + "nape: green with slightly darker streaks", + "tail: long, olive-green with white-tipped feathers", + "throat: pale yellow with olive-green markings" + ], + "eastern black eared wheatear": [ + "back: dark brown to black plumage", + "beak: slender, slightly curved, black", + "belly: light gray to white feathers", + "breast: pale grayish-brown plumage", + "crown: dark black with slight streaks", + "forehead: mixture of dark and white feathers", + "eyes: dark brown, surrounded by white eyering", + "legs: long, slender, black", + "wings: black with white patches", + "nape: blackish-brown transition to the back", + "tail: black with white outer edges", + "throat: white or pale gray feathers" + ], + "eastern black headed batis": [ + "back: dark grey with black streaks", + "beak: short, thin, and black", + "belly: white with black streaks", + "breast: grey and white mixed", + "crown: black with a white line", + "forehead: black and thin", + "eyes: small, round, and dark", + "legs: slender and grey", + "wings: black and white spotted", + "nape: black with a white line", + "tail: black, short, and forked", + "throat: white with dark markings" + ], + "eastern bonelli warbler": [ + "back: olive-green with subtle grey tones", + "beak: thin and pointed, dark-brown", + "belly: clean, white, with some pale grey sides", + "breast: pale greyish-white, unmarked", + "crown: subdued, greenish-grey", + "forehead: light grey, sometimes tinged with green", + "eyes: striking, large, with white eye-ring", + "legs: pale pinkish-brown, slender", + "wings: greyish-green, with prominent pale wingbars", + "nape: pale olive-green, blending into the back", + "tail: greyish-green, with outer feathers edged in white", + "throat: plain, pale greyish-white" + ], + "eastern bristlebird": [ + "back: light brown, streaked with darker feathering", + "beak: short, thin, and pointed; black or dark gray", + "belly: pale buff or cream, with faint streaks near the flanks", + "breast: light buff or cream with faint streaking", + "crown: dark brown with light streaks; bristly feathers at base", + "forehead: brown, slightly paler than the crown; bristles present", + "eyes: dark brown or black; encircled by a narrow, pale eye-ring", + "legs: long and slender; pinkish-gray or brown, with strong feet", + "wings: brown; barred with fine, pale streaks; rounded shape", + "nape: light brown and streaked, similar to back", + "tail: long and narrow; brown with faint pale barring; rounded tip", + "throat: pale buff or cream; faint streaking near the base of the neck" + ], + "eastern buzzard": [ + "back: brownish-cream feathers with dark streaks", + "beak: dark, hooked upper mandible, lighter lower mandible", + "belly: white with brown spots and bands", + "breast: creamy-white with brown streaks", + "crown: uniform brown with subtle streaks", + "forehead: white with faint brown streaks", + "eyes: piercing yellow, surrounded by light feathers", + "legs: yellow with sharp black talons", + "wings: dark brown with light fringes, distinct barring", + "nape: creamy brown with slight streaks", + "tail: brown with dark bars, white at the base", + "throat: white with faint brown markings" + ], + "eastern chanting goshawk": [ + "back: pale gray with visible feather edging", + "beak: dark, hooked, strong", + "belly: white with fine dark bars", + "breast: white with fine dark streaks", + "crown: pale gray with a slight crest", + "forehead: pale gray, blending with crown", + "eyes: bright yellow, piercing", + "legs: long, yellow with sharp talons", + "wings: broad, pale gray with black tips on the flight feathers", + "nape: pale gray, blending with the back", + "tail: pale gray with dark bars, squared off", + "throat: white, unmarked" + ], + "eastern chat tanager": [ + "back: olive-green hue", + "beak: slightly curved, grayish-black", + "belly: whitish-gray shade", + "breast: grayish-white with a greenish tinge", + "crown: soft olive-green color", + "forehead: subtly lighter olive-green", + "eyes: dark, encircled by thin pale eyering", + "legs: slender, dark gray", + "wings: olive-green with grayish edges", + "nape: olive-green, connecting crown and back", + "tail: long, olive-green with grayish undertail coverts", + "throat: pale gray, blending into breast color" + ], + "eastern clapper lark": [ + "back: brownish-grey with streaks", + "beak: short, slightly curved, greyish-brown", + "belly: pale buff or greyish-brown", + "breast: buff to greyish-brown with streaks", + "crown: brownish-grey with faint streaks", + "forehead: light brownish-grey", + "eyes: black, surrounded by a faint white eye-ring", + "legs: long, slender, pale grey", + "wings: brownish-grey with faint white bars", + "nape: brownish-grey, streaked", + "tail: brownish-grey, with a distinct white outer edge", + "throat: pale buff or greyish-brown, with indistinct streaks" + ], + "eastern crested guineafowl": [ + "back: grayish-brown plumage with bold white spots", + "beak: short, stout and slightly curved, pale pink", + "belly: smooth, ash gray feathers with circular white spots", + "breast: round, covered in white speckled gray feathers", + "crown: prominent feathered crest, dark bluish gray", + "forehead: dusky blue with a slight gray tint", + "eyes: bright red-orange orbital skin, white iris", + "legs: strong, bluish-gray with sharp claws", + "wings: rounded, gray with conspicuous white spots", + "nape: dark gray feathers, blending with the crown", + "tail: relatively short, gray with white spots", + "throat: bare bluish-gray skin with a small wattle" + ], + "eastern crowned warbler": [ + "back: olive-green with subtle streaks", + "beak: slender, grayish-black", + "belly: whitish with pale yellow hues", + "breast: yellowish-green, blending with belly", + "crown: olive-green with bold yellow stripe", + "forehead: bright-yellow, contrasting with subtle eye stripes", + "eyes: dark with pale eyering and dark eye stripe", + "legs: pale pinkish-gray", + "wings: olive-green with distinct white bars", + "nape: olive-green, connected to the crown", + "tail: olive-green with a hint of yellow, slightly forked", + "throat: bright yellow, contrasting with breast" + ], + "eastern double collared sunbird": [ + "back: vibrant green feathers with iridescent sheen", + "beak: slender, long, and curved for nectar-feeding", + "belly: pale yellow underbelly with contrasting dark spots", + "breast: bright metallic blue plumage extending across the chest", + "crown: shiny emerald green feathers atop the head", + "forehead: velvety black feathers transitioning into green crown", + "eyes: small, dark, and alert, encircled by subtle grey feathers", + "legs: thin, delicate, and agile for perching on branches", + "wings: glossy green feathers with subtle yellow accents", + "nape: shimmering green plumage blending into the back", + "tail: elongated and forked with dark-edged green feathers", + "throat: dazzling metallic blue patch, defining the double collar" + ], + "eastern long billed lark": [ + "back: streaked brown with white markings", + "beak: long, slender, and slightly curved", + "belly: whitish with fine brown streaking", + "breast: pale buff with light streaking", + "crown: brown with a streaked pattern", + "forehead: smooth and light brown", + "eyes: small and dark, with a white eyering", + "legs: slender and pale pinkish-brown", + "wings: brown with white-edged flight feathers", + "nape: buff-brown with a streaked pattern", + "tail: brown with white outer feathers and a slight fork", + "throat: pale buff with minimal streaking" + ], + "eastern marsh harrier": [ + "back: brownish-grey plumage", + "beak: yellow, hooked tip", + "belly: pale cream, lightly streaked", + "breast: rusty-orange, streaked with brown", + "crown: dark brown, slightly raised", + "forehead: pale cream, blending into the crown", + "eyes: bright yellow, piercing", + "legs: yellow, slender with sharp talons", + "wings: long, grey-brown with a hint of blue", + "nape: dark brown, sharply contrasting with the pale forehead", + "tail: grey with black bands, fanned out slightly", + "throat: pale cream, blending into the breast" + ], + "eastern miombo sunbird": [ + "back: olive-green plumage with iridescent sheen", + "beak: long, slender, and curved for nectar-feeding", + "belly: grayish-white or pale-yellow under-feathering", + "breast: vibrant metallic green or bluish sheen", + "crown: bright green or blue with shining plumage", + "forehead: iridescent green or blue matching the crown", + "eyes: small, dark, and round with a curious gaze", + "legs: slender, dark, and adapted for perching", + "wings: olive or brown feathers with darker flight feathers", + "nape: green or blue iridescent feathers blending with the back", + "tail: olive-brown with forked or squared-off end for agile flight", + "throat: gleaming metallic green or blue in males, duller in females" + ], + "eastern mountain greenbul": [ + "back: greenish-brown with subtle streaks", + "beak: short and stout, pale yellowish", + "belly: light yellowish-green", + "breast: greenish-yellow, slightly streaked", + "crown: olive-green, slightly darker than back", + "forehead: greenish-yellow, merging with crown", + "eyes: small, dark brown with pale eyerings", + "legs: short, light brown with strong feet", + "wings: greenish-brown with faint barring", + "nape: olive-green, blending with crown and back", + "tail: greenish-brown, rounded with faint bars", + "throat: pale yellow, smooth and unmarked" + ], + "eastern nicator": [ + "back: olive-green with brownish tinge", + "beak: stout, slightly hooked upper mandible", + "belly: pale yellow with grayish-green flanks", + "breast: dull yellow, mottling with gray", + "crown: dark olive-green, slight crest", + "forehead: olive-green, blending into crown", + "eyes: dark brown with pale eyering", + "legs: grayish-pink with strong, sharp claws", + "wings: olive-green with darker flight feathers", + "nape: olive-green, continuous with crown color", + "tail: long, olive-green central feathers, white-tipped outer feathers", + "throat: yellow, fading into breast color" + ], + "eastern olivaceous warbler": [ + "back: olive-green with brownish shades", + "beak: thin, black, and slightly curved", + "belly: pale yellow-white", + "breast: grey-green with subtle pale streaks", + "crown: olive-green and smooth", + "forehead: light greyish-green", + "eyes: dark brown with white eye-ring", + "legs: pale pinkish-grey", + "wings: olive-brown with faint barring", + "nape: greyish-green and slightly streaked", + "tail: brownish-grey with white outer edges", + "throat: pale yellow-white" + ], + "eastern orphean warbler": [ + "back: olive-brown plumage", + "beak: thin and pointed", + "belly: off-white with a yellowish tint", + "breast: pale and slightly streaked", + "crown: uniformly grey", + "forehead: light grey blending into crown", + "eyes: dark, surrounded by pale eye-ring", + "legs: pale pinkish-grey", + "wings: edged with pale wing-bars", + "nape: continuous grey with the crown", + "tail: brownish-grey with a subtle fork", + "throat: white, contrast with breast" + ], + "eastern paradise whydah": [ + "back: black with a hint of green iridescence", + "beak: long and black", + "belly: white and fluffy", + "breast: white blending with chestnut brown", + "crown: black with blue-green shimmer", + "forehead: black fading to chestnut brown", + "eyes: dark, surrounded by black feathers", + "legs: grayish-black and slender", + "wings: black with white streaks", + "nape: black with blue-green iridescence", + "tail: elongated with black and white feather patterns", + "throat: white with streaks of chestnut brown" + ], + "eastern plantain eater": [ + "back: light blue-grey plumage", + "beak: strong, black and slightly hooked", + "belly: whitish-grey feathering", + "breast: pale grey with white streaks", + "crown: black head crest", + "forehead: black contrasting line", + "eyes: dark brown, surrounded by bare blue skin", + "legs: strong and greyish", + "wings: blue-grey, white streaked flight feathers", + "nape: blue-grey with contrasting black line", + "tail: long, blue-grey central feathers, white-tipped outer feathers", + "throat: white, streaked with black and grey" + ], + "eastern rock nuthatch": [ + "back: grayish-blue covers", + "beak: long, slender, and slightly curved", + "belly: whitish-gray hue", + "breast: bluish-gray plumage", + "crown: pale gray-blue with fine streak-like patterns", + "forehead: smooth, gray-blue", + "eyes: black bead-like with white outlines", + "legs: sturdy and gray-colored", + "wings: bluish-gray, pointed, with white-tipped flight feathers", + "nape: gray-blue with streaked patterns", + "tail: long, square-ended with white outer feathers", + "throat: white, with fine gray-blue streaks" + ], + "eastern shrike tit": [ + "back: olive-green and black striped", + "beak: robust and hooked", + "belly: pale yellow", + "breast: creamy white with black band", + "crown: black with a small gray crest", + "forehead: black", + "eyes: large and dark", + "legs: slender and gray", + "wings: black with white patches", + "nape: gray", + "tail: black with white outer feathers", + "throat: white with black markings" + ], + "eastern spinebill": [ + "back: olive-green with darker streaks", + "beak: long, slender, and curved", + "belly: creamy-white with faint grey streaks", + "breast: cinnamon-brown fading to white", + "crown: black with a white stripe near the eye", + "forehead: black with paler streaks", + "eyes: dark brown with a white crescent underneath", + "legs: grey and sturdy", + "wings: dark grey with white-tipped feathers", + "nape: black with paler streaks", + "tail: dark grey with white tips and black bar", + "throat: black and glossy with white stripe on sides" + ], + "eastern spot billed duck": [ + "back: grey-brown with black streaks", + "beak: black with yellow-orange patch", + "belly: light grey-white", + "breast: grey-brown, speckled pattern", + "crown: blackish-brown", + "forehead: dark grey to black", + "eyes: dark brown with white eye-ring", + "legs: orange-yellow", + "wings: grey-brown, white-bordered stripe", + "nape: grey-brown with black streaks", + "tail: black, short and pointed", + "throat: light grey-white" + ], + "eastern striolated puffbird": [ + "back: olive-brown with light streaks", + "beak: short, black, and hooked", + "belly: pale cream with subtle barring", + "breast: light buff with fine black streaks", + "crown: dark greyish-brown with fine streaks", + "forehead: pale buff with light streaks", + "eyes: dark brown with thin pale eye-ring", + "legs: short and pale yellowish-brown", + "wings: short, olive-brown with faint barring", + "nape: greyish-brown with thin streaks", + "tail: square, olive-brown with faint bands", + "throat: whitish with sparse dark streaks" + ], + "eastern subalpine warbler": [ + "back: olive-grey with a tinge of brown", + "beak: thin, pointy and black", + "belly: pale grey-white", + "breast: light rose-pink with some shading", + "crown: greyish-brown fading to nape", + "forehead: light grey with a rounded appearance", + "eyes: dark with a faint white eye-ring", + "legs: light pinkish-grey", + "wings: olive-grey with slightly darker flight feathers", + "nape: greyish-brown, matching the crown", + "tail: dark brownish-grey with white outer feathers", + "throat: pale grey-white, blending into the breast" + ], + "eastern violet backed sunbird": [ + "back: iridescent violet-blue feathers", + "beak: slender, curved, and dark-colored", + "belly: off-white to pale yellow", + "breast: vibrant violet-blue sheen", + "crown: shimmering violet-blue", + "forehead: iridescent violet-blue", + "eyes: small and dark, with a white eye-ring", + "legs: thin, black, and delicate", + "wings: dark with a violet-blue tinge", + "nape: vibrant violet-blue sheen", + "tail: dark, with violet-blue feather tips", + "throat: bright violet-blue sheen" + ], + "eastern wattled honeyeater": [ + "back: olive-green with subtle streaks", + "beak: long, slender, and curved", + "belly: pale yellow with fine streaks", + "breast: bright yellow with dark streaks", + "crown: olive-green fading to gray", + "forehead: greenish-yellow with fine streaks", + "eyes: dark brown with pale yellow eyering", + "legs: sturdy and gray", + "wings: olive-green with off-white wing bars", + "nape: olive-green with subtle streaks", + "tail: long and olive-green with pale tips", + "throat: bright yellow with dark streaks" + ], + "eastern whip poor will": [ + "back: dark, mottled brown and gray feathers", + "beak: small, hooked, and dark in color", + "belly: light brown with grayish-white barring", + "breast: brownish-gray with darker vertical streaks", + "crown: dark brown, blending with the back", + "forehead: grayish-brown, blending with the crown", + "eyes: large, dark, with a prominent white eyering", + "legs: short, feathered, and brownish-gray", + "wings: long, rounded, with dark brown and gray mottling", + "nape: mottled brown and gray, blending with the back", + "tail: dark brown, fan-shaped, with white outer feathers", + "throat: pale gray, with darker streaks near the neck" + ], + "eastern whipbird": [ + "back: dark olive-green plumage", + "beak: short and stout, blackish-gray", + "belly: creamy-white with brownish streaks", + "breast: olive-green with spotted feathers", + "crown: black with a prominent crest", + "forehead: black and slightly rounded", + "eyes: dark brown with a white eye ring", + "legs: long and sturdy, grayish-blue", + "wings: olive-green with a long, curved shape", + "nape: dark olive-green blended into the back", + "tail: long and dark green with a slight curve", + "throat: white with dark streaks" + ], + "eastern yellow wagtail": [ + "back: bright olive-green feathers", + "beak: small and narrow, black in color", + "belly: pale yellow feathers", + "breast: bright yellow plumage", + "crown: olive-green feathers with a faint stripe", + "forehead: yellowish-green feathers", + "eyes: dark, round, surrounded by faint eyering", + "legs: thin, grayish-brown", + "wings: dark, with contrasting white and yellow patches", + "nape: olive-green with a pale stripe", + "tail: dark, long, with white sides, constantly wagging", + "throat: bright yellow plumage" + ], + "eastern yellow billed hornbill": [ + "back: light grayish-brown feathers", + "beak: long, curved, striking yellow color", + "belly: creamy white undertones", + "breast: white feathers with hints of pale gray", + "crown: dark grayish-black plumage", + "forehead: sleek black feathers", + "eyes: dark brown with a yellow eye-ring", + "legs: sturdy, grayish-brown", + "wings: broad, white-trimmed grayish-brown feathers", + "nape: hint of dark gray feathers", + "tail: elongated, white-tipped grayish-brown feathers", + "throat: lightly feathered with white plumage" + ], + "eaton pintail": [ + "back: sleek and narrow, with brownish-grey feathers", + "beak: bluish-grey, slightly elongated, with a black tip", + "belly: light buff color, finely barred with dark grey", + "breast: chestnut-colored and well-rounded", + "crown: dark brown with a slight greenish sheen", + "forehead: light buff, blending into the brownish-grey of the crown", + "eyes: dark, with a subtle black eye-ring", + "legs: bluish-grey, strong and robust", + "wings: brownish-grey with a greenish-black speculum bordered by white", + "nape: brownish-grey, transition from crown to back", + "tail: black and pointed, with elongated central feathers", + "throat: white, blending into the buff-colored belly" + ], + "echo parakeet": [ + "back: green feathered upper body", + "beak: curved, reddish-orange", + "belly: lighter green plumage", + "breast: rich green with hints of blue", + "crown: bright green feathers", + "forehead: vibrant green", + "eyes: dark, surrounded by thin featherless skin", + "legs: short and grey", + "wings: green and blue feathers with black edges", + "nape: lush green plumage", + "tail: long, tapered with blue and green feathers", + "throat: greenish-grey feathers" + ], + "eclectus parrot": [ + "back: bright green or red feathers", + "beak: strong, curved upper bill in orange or black", + "belly: vibrant red, purple, or green plumage", + "breast: full colorful feathers varying from deep red to bright green", + "crown: patch of bright feathers covering top of head", + "forehead: vividly colored plumage extending to the eyes", + "eyes: circular with dark, intelligent gaze, surrounded by thin eye rings", + "legs: sturdy legs with zygodactylous feet for gripping", + "wings: long, broad feathers for strong flight capabilities", + "nape: coat of vibrant feathers, connecting head to back", + "tail: lengthy, colorful feathers aiding in balance and flight", + "throat: brightly-colored feathers leading down to the chest" + ], + "ecuadorian cacique": [ + "back: olive-green with black streaks", + "beak: strong, black, and slightly curved", + "belly: bright yellow feathers", + "breast: yellowish-green with black streaking", + "crown: glossy black plumage", + "forehead: vibrant yellow feathers", + "eyes: dark brown surrounded by a light blue ring", + "legs: gray, strong, with sharp claws", + "wings: black with green edging and small yellow patches", + "nape: olive-green, transitioning to black towards the crown", + "tail: long black feathers with yellow band near the tip", + "throat: brilliant yellow feathers, fading to green on sides" + ], + "ecuadorian ground dove": [ + "back: soft brown feathers with subtle patterning", + "beak: short, curved, greyish tone", + "belly: light beige feathers with a hint of grey", + "breast: delicate light brown with subtle speckles", + "crown: slightly darker brown, smoothly transitioning into the nape", + "forehead: soft greyish-brown feathers, blending into the crown", + "eyes: dark, medium-sized, surrounded by thin pale eyering", + "legs: thin, dark grey, with well-defined scaled texture", + "wings: earthy brown with faint black barring and tawny edges", + "nape: gradual transition from the crown, with faint spotting", + "tail: squarish, dark brown with black barring and white-tipped outer feathers", + "throat: soft beige, blending into the breast area" + ], + "ecuadorian piculet": [ + "back: olive-green feathers", + "beak: short, pointed, and black", + "belly: creamy white with fine black bars", + "breast: pale yellowish-green with faint black bars", + "crown: brownish-black with white speckles", + "forehead: olive-green", + "eyes: dark with pale white eye-ring", + "legs: light-greyish-blue with curved sharp claws", + "wings: olive-green with black streaks", + "nape: olive-green", + "tail: short, black, and stiff with white edges", + "throat: creamy white with black bars" + ], + "ecuadorian piedtail": [ + "back: vibrant green feathers covering the upper body", + "beak: long, slender, and slightly curved for nectar feeding", + "belly: soft white feathers with a touch of beige", + "breast: white with a hint of greenish shimmer", + "crown: bold green with a brilliant metallic sheen", + "forehead: green feathers transitioning to white near the beak", + "eyes: small, dark, and lively, surrounded by a white eye-ring", + "legs: short, delicate, and grayish with well-defined scales", + "wings: iridescent green with conspicuous white spots", + "nape: rich green feathers blending into the back", + "tail: unique white-tipped feathers, resembling paddles", + "throat: bright white, contrasting with the vibrant head and breast" + ], + "ecuadorian tapaculo": [ + "back: dark gray feathers", + "beak: small and black", + "belly: light gray plumage", + "breast: grayish-white feathers", + "crown: dark gray shading", + "forehead: smooth gray feathers", + "eyes: black with gray outline", + "legs: thin and dark", + "wings: short, rounded with gray feathers", + "nape: gray area at base of head", + "tail: short, stubby with dark gray feathers", + "throat: pale gray feathers" + ], + "ecuadorian thrush": [ + "back: olive-brown feathers with a smooth texture", + "beak: straight, slender, and dark-colored", + "belly: pale gray or off-white feathers", + "breast: gray or light brown with subtle streaking", + "crown: reddish-brown with a slightly raised crest", + "forehead: smooth with slightly lighter feathers than the crown", + "eyes: dark and round, surrounded by a narrow eye-ring", + "legs: strong and grayish-blue, with sharp claws", + "wings: medium length with dark brown flight feathers and lighter-edged coverts", + "nape: same reddish-brown color as the crown, transitioning to olive-brown on the back", + "tail: relatively long, with dark brown feathers and lighter edges", + "throat: off-white or pale gray, softly blending with the breast color" + ], + "ecuadorian trogon": [ + "back: glossy green upperparts", + "beak: short, straight, and serrated", + "belly: white or pale blue lowerparts", + "breast: rich yellow or orange band", + "crown: iridescent green or blue-black", + "forehead: matching with the crown", + "eyes: large, dark, and round", + "legs: short and sturdy", + "wings: patterned with black and white bars", + "nape: glossy green, connecting with the back", + "tail: long, squared-off, black and white banded", + "throat: colorful, ranging from blues to purples and reds" + ], + "ecuadorian tyrannulet": [ + "back: olive-green to golden-brown", + "beak: small, thin, black", + "belly: light yellow-gray", + "breast: grayish-white with faint streaking", + "crown: olive-green to golden-brown like back", + "forehead: faint grayish-white median stripe", + "eyes: dark with white eye-ring", + "legs: slender, pale", + "wings: olive-brown with two pale wing-bars", + "nape: olive-green to golden-brown, consistent with back", + "tail: square, olive-brown with subtle pale edges", + "throat: grayish-white" + ], + "edwards fig parrot": [ + "back: vibrant green with blue streaks", + "beak: short and sturdy, ivory-colored", + "belly: deep green with blue undertones", + "breast: bright turquoise-green feathers", + "crown: intricate blue, green, and yellow pattern", + "forehead: vivid yellow and blue markings", + "eyes: surrounded by thin, white eye-ring", + "legs: short and gray, with zygodactyl toes", + "wings: lush green top, red and blue underside", + "nape: yellow and green striped feathers", + "tail: short and squared, green and blue feathers", + "throat: green with yellow-tinged feathers" + ], + "egyptian nightjar": [ + "back: sandy-brown plumage with subtle patterns", + "beak: short, wide and pointed, grayish-black", + "belly: pale, mottled with gray and buff", + "breast: buff-colored with brown streaks and spots", + "crown: pale, finely streaked with dark brown", + "forehead: buff with dark speckles", + "eyes: large, dark brown, surrounded by white markings", + "legs: long, slender and grayish, with bristles", + "wings: long, pointed, pale with darker bars and spots", + "nape: sandy brown with darker streaks", + "tail: elongated, mottled brown and buff, with white outer feathers", + "throat: pale buff with brown speckles" + ], + "egyptian plover": [ + "back: light brown with faint white streaks", + "beak: long, slender, and black", + "belly: white, sometimes tinged with pale pink", + "breast: white or pale grey", + "crown: black cap extending to the nape", + "forehead: white, framed by black cap and eye-line", + "eyes: dark, alert, surrounded by narrow black stripes", + "legs: long, thin, and pale pink", + "wings: white, edged with light brown and black feathers", + "nape: continuation of black crown cap", + "tail: black and white with long central feathers", + "throat: white, connecting with breast and belly" + ], + "egyptian vulture": [ + "back: light to dark gray feathers", + "beak: large, curved, yellowish-white", + "belly: white or whitish-gray feathers", + "breast: white to light gray plumage", + "crown: sparse white feathers, balding appearance", + "forehead: smooth, white, and featherless", + "eyes: bright yellow to orange, surrounded by bare skin", + "legs: long, scaly, gray to black", + "wings: long, broad, with dark tips and light undersides", + "nape: white feathers, extending to the shoulders", + "tail: squared-off, white with dark outer edges", + "throat: slightly feathered, white or light gray" + ], + "el oro parakeet": [ + "back: vibrant green feathers", + "beak: short, hooked, and ivory-colored", + "belly: yellowish-green plumage", + "breast: bright green feathers", + "crown: deep blue, gradient pattern", + "forehead: orange-yellow, slightly rounded", + "eyes: dark, encircled by white ring", + "legs: grayish-brown, zygodactyl", + "wings: green, with hints of blue on tips", + "nape: vivid green, transitions to blue crown", + "tail: long, tapering green feathers", + "throat: bright green, blending into breast" + ], + "elegant crescentchest": [ + "back: olive-green plumage", + "beak: slender, slightly curved", + "belly: pale buff-colored feathers", + "breast: vibrant orange crescent", + "crown: grayish-blue plumage", + "forehead: lighter shade of blue-gray", + "eyes: small and black", + "legs: slender, dark gray", + "wings: olive-green with black details", + "nape: grayish-blue like the crown", + "tail: relatively short, olive-green", + "throat: white feathering" + ], + "elegant crested tinamou": [ + "back: sleek olive-brown feathers", + "beak: slightly curved black bill", + "belly: soft whitish-gray plumage", + "breast: pale bluish-gray with delicate streaks", + "crown: pointed crest of elongated brown feathers", + "forehead: smooth grayish-brown transition", + "eyes: small, dark, and alert", + "legs: strong, bluish-gray with sharp claws", + "wings: rounded, olive-brown with short flight feathers", + "nape: blending of brown and gray feathers", + "tail: short, tapered with dark brown hues", + "throat: delicate grayish-white with subtle markings" + ], + "elegant euphonia": [ + "back: vibrant blue coloration", + "beak: short, stout, and conical", + "belly: bright yellow hue", + "breast: golden yellow plumage", + "crown: radiant blue crest", + "forehead: deep blue shade", + "eyes: small, black, and lively", + "legs: thin, grayish-blue", + "wings: mix of rich blue and green feathers", + "nape: subtle transition from blue crown to yellow body", + "tail: medium length, blue and green feathers", + "throat: eye-catching yellow fluff" + ], + "elegant honeyeater": [ + "back: sleek, olive-green feathers", + "beak: slender, slightly curved black bill", + "belly: pale yellow with faint gray markings", + "breast: striking yellow with fine gray striations", + "crown: radiant yellow with darker streaks", + "forehead: vibrant yellow, blending seamlessly with the crown", + "eyes: piercing, dark with a subtle, white eye-ring", + "legs: slender, gray and well-adapted for perching", + "wings: olive-green with darker flight feathers and white bar", + "nape: olive-green, transitioning smoothly from the back", + "tail: elongated, olive-gray feathers with faint white edging", + "throat: bright yellow with delicate gray streaks" + ], + "elegant imperial pigeon": [ + "back: sleek and smooth dark gray plumage", + "beak: short and sturdy, pale grayish-yellow", + "belly: soft and creamy white feathers", + "breast: light gray with a slightly purplish sheen", + "crown: dark gray with a glossy sheen", + "forehead: slightly paler gray with faint blue tinges", + "eyes: prominent and dark, encircled by a thin skin patch", + "legs: pinkish-red, short and strong with scaly texture", + "wings: dark gray, broad, and rounded", + "nape: slightly lighter gray with a bluish-purple sheen", + "tail: long and dark gray with paler fringes", + "throat: creamy white with a slight blue iridescence" + ], + "elegant parrot": [ + "back: vibrant green feathers", + "beak: slender curved tip", + "belly: light yellow plumage", + "breast: soft greenish-yellow hue", + "crown: deep green crest", + "forehead: brilliant blue patch", + "eyes: dark, small, and expressive", + "legs: slim, gray, and sturdy", + "wings: rich emerald green with blue edges", + "nape: smooth, green transition to body", + "tail: elongated, blue-tipped feathers", + "throat: pale yellow with fine green streaks" + ], + "elegant pitta": [ + "back: vibrant emerald green with shimmering blue highlights", + "beak: sleek and strong, black with a slight downward curve", + "belly: bright azure merging into shades of purple", + "breast: rich golden yellow with mottled designs", + "crown: deep blue-violet with contrasting black edges", + "forehead: bold, gleaming red-orange", + "eyes: black with an intense, watchful gaze", + "legs: sturdy and silver-grey, ending in sharp claws", + "wings: multicolored, marked by rich blues, greens, and yellows", + "nape: interwoven hues of greens, blues, and purple", + "tail: long and slender, vivid blue-green with dark barring", + "throat: brilliant scarlet red, giving way to golden breast" + ], + "elegant quail": [ + "back: brownish-grey plumage with subtle feather patterns", + "beak: short, stout, and curved, with a creamy hue", + "belly: buff-colored with black speckling", + "breast: reddish-brown with delicate white markings", + "crown: chestnut-brown crest with a forward-curving plume", + "forehead: rich chestnut with a unique white stripe", + "eyes: small, black, and expressive, encircled with white rings", + "legs: sturdy, feathered with grey-brown hues, ending in strong toes", + "wings: brownish-grey with fine white streaks and spots", + "nape: grey-brown with intricate white feather edges", + "tail: relatively short, brown with fine white markings", + "throat: white patch bordered by chestnut-brown streaks" + ], + "elegant sunbird": [ + "back: vibrant blue and green feathers", + "beak: slender, curved, and black", + "belly: golden yellow plumage", + "breast: iridescent purple and blue feathers", + "crown: shining metallic green", + "forehead: bright green with a hint of blue", + "eyes: small, round, and black", + "legs: thin and light gray", + "wings: mix of iridescent blue and green feathers", + "nape: radiant green feathers", + "tail: long, slender feathers with a metallic sheen", + "throat: brilliant purple plumage" + ], + "elegant tit": [ + "back: greenish-yellow with subtle black streaks", + "beak: short, pointy, and black", + "belly: pale, yellowish-white color", + "breast: bright yellow with black central banding", + "crown: bluish-black glossy color", + "forehead: bluish-black and smooth", + "eyes: round and dark, encircled by a white ring", + "legs: slim and blue-gray", + "wings: black with greenish-blue edgings", + "nape: dark blue-black", + "tail: black with white outer feathers", + "throat: bright yellow hue" + ], + "elegant woodcreeper": [ + "back: smooth, reddish-brown feathers", + "beak: long, slender, and slightly curved", + "belly: creamy-white with subtle streaks", + "breast: light brown with fine streaks", + "crown: reddish-brown, merging with the back", + "forehead: rusty-brown and slightly paler", + "eyes: dark and alert, encircled by a light eye-ring", + "legs: sturdy and pale pinkish-gray", + "wings: brown with a banded pattern", + "nape: buff streaks over reddish-brown feathers", + "tail: stiff, long and banded, with a slightly pointed end", + "throat: pale, with a hint of brown smudges" + ], + "eleonora falcon": [ + "back: dark grayish-brown with small white speckles", + "beak: sharply curved, blackish-gray, hooked", + "belly: white, with dark streaks and spots", + "breast: white, with dark streaks and spots", + "crown: dark grayish-brown, with a few white streaks and spots", + "forehead: dark gray-brown, blending into the crown", + "eyes: large, dark brown with a yellow-orange ring", + "legs: featherless, long, and yellow", + "wings: long, pointed, with dark grayish-brown feathers and white speckles", + "nape: dark grayish-brown with a few white streaks and spots", + "tail: long, dark grayish-brown with narrow white bands", + "throat: white, with dark streaks and spots" + ], + "elfin myzomela": [ + "back: vibrant red to orange plumage", + "beak: long, slender, and black", + "belly: light gray to white feathers", + "breast: bright red or orange coloring", + "crown: vivid red feathers, slightly raised", + "forehead: blazing red or orange plumage", + "eyes: dark, round, and shiny with white eyering", + "legs: slim and gray with small, sharp claws", + "wings: blackish-brown feathers with orange tints", + "nape: red or orange feathers extending from crown to back", + "tail: blackish-brown feathers, slightly forked", + "throat: vibrant red or orange feathers matching the breast" + ], + "elfin woods warbler": [ + "back: olive-colored with faint streaks", + "beak: short, thin, and dark", + "belly: white and streak-free", + "breast: pale yellow and slightly streaked", + "crown: grayish-olive with faint streaks", + "forehead: yellowish-green and unmarked", + "eyes: large and dark, surrounded by white eye-ring", + "legs: pinkish-gray and slender", + "wings: olive-green with two bold, white wing bars", + "nape: grayish-olive without distinct markings", + "tail: dark, square-tipped with olive-green edges", + "throat: bright yellow and unmarked" + ], + "elgon francolin": [ + "back: brown feathers with black and white speckles", + "beak: short, sharp, and light gray", + "belly: pale gray with black stripes", + "breast: reddish-brown with white spots", + "crown: dark brown with white streaks", + "forehead: buff color merging with the brown crown", + "eyes: small, round, and black", + "legs: long, thin, and yellowish", + "wings: brown with black and white markings", + "nape: brown blending into the back feathers", + "tail: short, brown with black and white banding", + "throat: light gray with a hint of reddish-brown" + ], + "elliot laughingthrush": [ + "back: olive-brown with dark streaks", + "beak: strong, slightly curved, blackish", + "belly: white with black streaks", + "breast: white with heavy black streaks", + "crown: dark gray with faint streaks", + "forehead: gray with faint streaks", + "eyes: prominent, black with pale ring", + "legs: sturdy, pinkish-gray", + "wings: olive-brown with white-tipped feathers", + "nape: gray with dark streaks", + "tail: long, black with white spots", + "throat: white with black streaks" + ], + "elliot storm petrel": [ + "back: dark grey, streamlined feathers", + "beak: fine, black, hook-tipped", + "belly: light grey plumage", + "breast: soft grey, slender feathers", + "crown: dark slate-grey feathers", + "forehead: smooth grey transition to beak", + "eyes: small, round, black", + "legs: slender, dark grey, webbed feet", + "wings: long, narrow, dark grey", + "nape: grey, sleek feathers", + "tail: forked, greyish-black feathers", + "throat: pale grey, slightly curved" + ], + "elliot woodpecker": [ + "back: black and white striped pattern", + "beak: long, chisel-like and black", + "belly: white with black speckles", + "breast: white with horizontal black stripes", + "crown: red patch on top of the head", + "forehead: white with black spots", + "eyes: black with white eye-ring", + "legs: grayish-blue with sharp claws", + "wings: checkered black and white pattern", + "nape: black with white streaks", + "tail: black with white outer feathers", + "throat: white with black markings" + ], + "emei leaf warbler": [ + "back: olive-green upperparts", + "beak: thin, pointy, and black", + "belly: yellowish-white underside", + "breast: yellowish-white with streaks of olive-green", + "crown: bright yellow with dark central stripe", + "forehead: vibrant yellow", + "eyes: small, dark, with white eye-ring", + "legs: long and slender, pale pinkish", + "wings: olive-green with blackish flight feathers", + "nape: olive-green with slight yellowish tint", + "tail: dark, forked, with white outer tail feathers", + "throat: bright yellow" + ], + "emerald starling": [ + "back: vibrant emerald feathers", + "beak: black, slender, and pointed", + "belly: shimmering green-blue hue", + "breast: iridescent emerald green", + "crown: glossy green with a metallic sheen", + "forehead: radiant emerald feathers", + "eyes: dark brown with a thin white ring", + "legs: black, thin, and wiry", + "wings: gleaming green with hints of blue", + "nape: brilliant metallic green feathers", + "tail: elongated, green-blue streamers", + "throat: dazzling green feathers" + ], + "emerald bellied puffleg": [ + "back: iridescent green feathers", + "beak: thin, slightly curved, black", + "belly: shimmering emerald green", + "breast: bright, metallic green", + "crown: glossy violet-blue", + "forehead: greenish-gold feathers", + "eyes: dark, round, and expressive", + "legs: slender, black, with scaled feet", + "wings: rounded, with bronzed green feathers", + "nape: greenish-blue, tapered feathers", + "tail: straight, short, dark green", + "throat: vibrant, glossy blue-green" + ], + "emerald chinned hummingbird": [ + "back: vibrant green feathers", + "beak: long, slender, and black", + "belly: iridescent white", + "breast: shimmering emerald green", + "crown: sparkling greenish-blue", + "forehead: gleaming emerald hue", + "eyes: small, round, and black", + "legs: short and delicate", + "wings: rapid, translucent flutter", + "nape: glistening green shades", + "tail: rounded, iridescent feathers", + "throat: dazzling, emerald-chinned brilliance" + ], + "emerald spotted wood dove": [ + "back: greenish-bronze feathers with iridescent sheen", + "beak: short, stout, and black with curved tip", + "belly: pale gray with subtle purple shimmer", + "breast: rosy-pink fading to gray near abdomen", + "crown: bluish-gray atop head with green iridescence", + "forehead: light bluish-gray color, blending into crown", + "eyes: deep brown, surrounded by pale eye-ring", + "legs: pinkish-gray, short, with three forward-facing toes", + "wings: intricate pattern of emerald-green spots and black bars", + "nape: greenish-bronze feathers with slight iridescent shine", + "tail: long, gray, with black band and white-tipped feathers", + "throat: light gray, with thin white streaks running down" + ], + "emin shrike": [ + "back: slate-colored with a hint of blue", + "beak: strong, black, hooked tip", + "belly: off-white with delicate gray markings", + "breast: faint grayish-white, speckled", + "crown: bluish-gray with a slight crest", + "forehead: pale gray, blending into the crown", + "eyes: dark, alert, encircled by a thin white ring", + "legs: slender, black, powerful", + "wings: bluish-gray with black markings", + "nape: pale gray, smoothly transitioning from the crown", + "tail: black with white outer edges, slightly forked", + "throat: delicate off-white, blending into the breast" + ], + "emperor bird of paradise": [ + "back: vibrant emerald-green feathers", + "beak: short, black, and sharply curved", + "belly: soft grayish-white plumage", + "breast: iridescent azure-blue feathers", + "crown: gleaming golden-yellow crest", + "forehead: bright red and yellow markings", + "eyes: large, dark, and expressive", + "legs: long, black, and slender", + "wings: elongated and adorned with plumage", + "nape: reddish-brown feathers at the base of the neck", + "tail: two elongated, ornate, wire-like feathers", + "throat: brilliant golden-yellow tufts" + ], + "emperor fairywren": [ + "back: striking royal blue plumage", + "beak: small, pointy black beak", + "belly: pale gray underparts", + "breast: vibrant blue feathers", + "crown: distinct purple-blue cap", + "forehead: deep blue plumage continuation", + "eyes: tiny, round, black eyes", + "legs: slim black legs and feet", + "wings: rich blue with dark edges", + "nape: purple-blue hue transition", + "tail: elongated black central feathers", + "throat: vibrant blue plumage" + ], + "emperor goose": [ + "back: bluish-gray with faint barring", + "beak: short, stout, and orange", + "belly: white with black barring", + "breast: grayish-white with black spotting", + "crown: white with a touch of gray", + "forehead: white with a hint of gray", + "eyes: dark and slightly beady", + "legs: strong, orange, and webbed", + "wings: bluish-gray with white edging", + "nape: white with some gray mixed in", + "tail: short, white, and slightly squared", + "throat: white with grayish-black patch" + ], + "empress brilliant": [ + "back: vibrant, iridescent plumage", + "beak: sharp, elegant curve", + "belly: soft, majestic feathers", + "breast: regal, vibrant colors", + "crown: ornate, jeweled crest", + "forehead: sleek, smooth plumage", + "eyes: piercing, intelligent gaze", + "legs: strong, slender limbs", + "wings: expansive, awe-inspiring span", + "nape: gracefully arched, delicate", + "tail: long, sweeping, majestic plumes", + "throat: melodic, enchanting song" + ], + "enggano cuckoo dove": [ + "back: muted brown with subtle feather patterns", + "beak: short, curved black beak", + "belly: light beige with a hint of lavender", + "breast: pale grayish-lilac with fine black streaks", + "crown: soft brown with a slight green sheen", + "forehead: light gray fading into the crown", + "eyes: deep black with a thin white eye-ring", + "legs: slender, dull pinkish-gray", + "wings: brownish-gray with hints of iridescent green", + "nape: earthy brown fading from the crown", + "tail: elongated, dark brown with greenish iridescence", + "throat: pale gray with a tint of lavender and fine black streaks" + ], + "enggano imperial pigeon": [ + "back: greyish-blue plumage", + "beak: robust, silver-white", + "belly: creamy-white feathers", + "breast: pale grey with pinkish hue", + "crown: dark grey-blue feathers", + "forehead: bluish-grey coloration", + "eyes: dark and round with a grey eye-ring", + "legs: sturdy, pinkish-red", + "wings: broad, dark blue feathers", + "nape: slightly darker grey-blue than crown", + "tail: relatively long, dark grey-blue feathers", + "throat: pale grey merging into the breast" + ], + "enggano scops owl": [ + "back: earthy brown with fine black streaks", + "beak: sharp, curved, pale grayish-horn color", + "belly: whitish with dark brown bars and spots", + "breast: white with fine brown streaks and bars", + "crown: dark brown with small blackish spots and streaks", + "forehead: slightly paler brown with faint black streaks", + "eyes: large, round, bright yellow", + "legs: feathered, light brown with dark bars", + "wings: dark brown with prominent black barring and white spots", + "nape: earthy brown with blackish streaks", + "tail: dark brown with thin black bars and white spots", + "throat: whitish with fine dark brown streaks and bars" + ], + "enggano thrush": [ + "back: sleek, dark brown feathers", + "beak: strong, slightly curved, and black", + "belly: creamy white with dark streaks", + "breast: white with black spots and streaks", + "crown: dark brown with lighter streaks", + "forehead: boldly streaked, light brown", + "eyes: small, dark, and alert", + "legs: slender and dark gray", + "wings: dark brown with lighter wing-bars", + "nape: uniformly dark brown", + "tail: long and dark brown with white tips", + "throat: pale with fine streaks" + ], + "epaulet oriole": [ + "back: vivid yellow with black streaks", + "beak: sharp, long, and black", + "belly: bright yellow with some black markings", + "breast: vibrant yellow with black edges", + "crown: black with yellow side streaks", + "forehead: yellow and black striping", + "eyes: small and black with white borders", + "legs: thin and black", + "wings: black with yellow shoulder patches (epaulets", + "nape: yellow-black pattern of feathers", + "tail: black with yellow sides detailing", + "throat: brilliant yellow and unmarked" + ], + "equatorial akalat": [ + "back: olive-brown feathered", + "beak: short, stout and black", + "belly: white with grayish-olive flanks", + "breast: warm orange-brown", + "crown: olive-brown with rounded feathers", + "forehead: smooth olive-brown", + "eyes: dark brown and intense gaze", + "legs: long, strong, and slate-gray", + "wings: olive-brown with distinct white wing-bars", + "nape: olive-brown transitioning from crown", + "tail: long, olive-brown with subtle white tips", + "throat: bright white contrasting breast" + ], + "equatorial antpitta": [ + "back: olive-brown plumage", + "beak: short, hooked, black", + "belly: pale yellow with dark streaks", + "breast: tawny, lightly spotted", + "crown: dark gray with white streak", + "forehead: slate gray, slightly crested", + "eyes: dark, large, round", + "legs: orange, long, sturdy", + "wings: olive-green, short, round", + "nape: olive-brown with white streaks", + "tail: short, dark-striped, rounded", + "throat: cream-colored with dark spots" + ], + "equatorial graytail": [ + "back: olive-gray plumage with greenish tint", + "beak: sharp, slightly curved black bill", + "belly: pale gray feathers", + "breast: soft gray plumage", + "crown: dark olive-green tinted with gray", + "forehead: slightly lighter gray-green tone", + "eyes: round, dark, small with white rings", + "legs: thin, dark gray, strong", + "wings: greenish-gray, long, and tapered", + "nape: olive-gray with faint greenish hue", + "tail: dark gray, long and forked", + "throat: light gray fading to white towards the chest" + ], + "erckel spurfowl": [ + "back: earthy brown with subtle black barring", + "beak: slightly curved, greyish-brown bill", + "belly: light brown and greyish-white shades", + "breast: warm chestnut with white speckles", + "crown: reddish-brown with fine black stripes", + "forehead: light reddish-brown, blending into crown", + "eyes: dark brown with a thin white eye-ring", + "legs: sturdy, greyish-brown with long curved spurs", + "wings: brown with white spotting on coverts, long and broad", + "nape: reddish-brown with fine black barring", + "tail: earthy brown with black barring, medium-length", + "throat: light greyish-white with faint barring" + ], + "erect crested penguin": [ + "back: sleek, black and shiny-feathered", + "beak: strong, black, and slightly curved", + "belly: clean, white, and smooth-feathered", + "breast: curved, white, and puffy", + "crown: elongated, black feathers forming crest", + "forehead: white, with pronounced eyebrow stripe", + "eyes: beady, black, and slightly sad-looking", + "legs: short, thick, and pinkish in color", + "wings: black, stiff, and flipper-like", + "nape: black and blends into the crest", + "tail: short, broad, and predominantly black", + "throat: white and sharply demarcated from the black feathers" + ], + "esmeraldas antbird": [ + "back: greenish-gray feathers", + "beak: strong, grayish-black", + "belly: creamy-white with gray markings", + "breast: grayish-white feathers", + "crown: black, contrasted plumes", + "forehead: short, black feathers", + "eyes: deep brown with gray eye-ring", + "legs: dark gray, thin and long", + "wings: greenish-gray with darker flight feathers", + "nape: greenish-gray, plumage transition", + "tail: long, greenish-gray feathers", + "throat: whitish-gray, clear demarcation" + ], + "esmeraldas woodstar": [ + "back: vibrant green plumage", + "beak: short, thin, and black", + "belly: white with greenish flanks", + "breast: shining green with a white center", + "crown: dazzling green with iridescent tones", + "forehead: bright emerald green", + "eyes: small, black, and shiny", + "legs: thin and dark gray", + "wings: long, narrow, and greenish-brown", + "nape: rich emerald green", + "tail: short, square, and tarnished green", + "throat: iridescent violet-blue patch" + ], + "espa\u00f1ola ground finch": [ + "back: brownish-gray with streaks", + "beak: short, broad, and powerful", + "belly: off-white with soft dark streaks", + "breast: pale gray-brown with streaks", + "crown: dark brown with fine streaks", + "forehead: lighter brown with fine streaks", + "eyes: dark, round, and alert", + "legs: strong and grayish-brown", + "wings: brownish-gray with darker brown feathers", + "nape: brown with paler streaks", + "tail: brownish-gray with pointed feathers", + "throat: off-white with subtle streaks" + ], + "espa\u00f1ola mockingbird": [ + "back: brownish-gray feathers", + "beak: long, slender, and slightly curved", + "belly: pale white or creamy color", + "breast: light gray feathers", + "crown: dark gray with faint streaks", + "forehead: smooth, grayish-brown plumage", + "eyes: large, dark, and expressive", + "legs: strong and pale pinkish-gray", + "wings: brownish-gray with darker tips", + "nape: gray with faint darker streaks", + "tail: long and fan-shaped, brownish-gray", + "throat: light gray plumage" + ], + "ethiopian bee eater": [ + "back: vibrant green with hints of blue", + "beak: black, slender, and slightly curved", + "belly: light pinkish-white with soft feathering", + "breast: bright turquoise-blue feathers", + "crown: deep green, transitioning to blue", + "forehead: striking yellow-orange band", + "eyes: black and round, with a white outline", + "legs: grayish-brown and slim", + "wings: elongated, green and blue with black flight feathers", + "nape: rich green fading into lighter shades", + "tail: long and streaming, green and blue feathers", + "throat: fiery orange-red with a contrasting white border" + ], + "ethiopian black headed oriole": [ + "back: vibrant yellow feathers", + "beak: black, slightly curved", + "belly: bright yellow underside", + "breast: yellow, blending into belly", + "crown: black, slicked-back plumage", + "forehead: black and smooth", + "eyes: dark, framed by black mask", + "legs: black, slender", + "wings: black, with yellow and white markings", + "nape: black, connecting the crown and back", + "tail: black, long and graduated", + "throat: yellow, with slight dark mottling" + ], + "ethiopian boubou": [ + "back: dark, reddish-brown plumage", + "beak: short, strong, black", + "belly: white and feathery", + "breast: white with cinnamon-brown edges", + "crown: inconspicuous black cap", + "forehead: black, blending into dark brown plumage", + "eyes: dark brown, slightly almond-shaped", + "legs: slender, grayish-beige", + "wings: dark brown with white patches", + "nape: brownish-black, meeting crown", + "tail: long, black with white side feathers", + "throat: white, sharply contrasting with dark head" + ], + "ethiopian cisticola": [ + "back: light brown with faint streaks", + "beak: slim, dark-colored, slightly curved", + "belly: pale, buffy-white with sparse streaks", + "breast: buffy-white with light brown streaks", + "crown: warm brown with faint streaks", + "forehead: pale buffy-white", + "eyes: small, dark, surrounded by pale feathers", + "legs: thin, light brown, with sharp claws", + "wings: brown with black and white markings", + "nape: light brown with subtle streaks", + "tail: russet-brown with black and white bands", + "throat: pale buffy-white, unmarked" + ], + "ethiopian siskin": [ + "back: olive green with streaks of black", + "beak: sharp, pointed and black", + "belly: bright yellow with faint streaks", + "breast: yellow with black streaks", + "crown: olive green with a black cap", + "forehead: olive green with black streaks", + "eyes: small, dark with thin white eye-ring", + "legs: light pink with strong feet", + "wings: olive green with black streaks and a yellow patch", + "nape: olive green with black streaks", + "tail: olive-green tinged with black bars", + "throat: bright yellow with light streaks" + ], + "ethiopian swallow": [ + "back: iridescent blue-green feathers", + "beak: sleek, dark and pointed", + "belly: creamy white with a slight bluish hue", + "breast: vibrant, dark-blue plumage", + "crown: bright, blue-green shimmering feathers", + "forehead: small white crescent marking above the beak", + "eyes: dark and alert, surrounded by soft white feathers", + "legs: strong and grey, ending in sharp claws", + "wings: long and pointed, with blue-black feathers", + "nape: blue-green, merging into the iridescent back", + "tail: forked, elongated with white outer feathers", + "throat: metallic blue with a narrow line of white feathers" + ], + "ethiopian thrush": [ + "back: olive-brown with subtle streaks", + "beak: stout, black, and slightly curved", + "belly: white with faint brown spotting", + "breast: pale rufous with blackish spotting", + "crown: olive-brown with indistinct streaks", + "forehead: olive-brown with slight streaking", + "eyes: prominent white eye ring", + "legs: long and slender, pinkish-brown", + "wings: olive-brown with white feather edges", + "nape: olive-brown with faint streaking", + "tail: olive-brown, straight and moderately long", + "throat: white with some brown spotting" + ], + "euler flycatcher": [ + "back: olive-brown feathers", + "beak: short, wide and flat", + "belly: creamy yellow hue", + "breast: pale yellow with streaks", + "crown: grayish-brown with faint crest", + "forehead: unmarked grayish-brown", + "eyes: dark with narrow white eye-ring", + "legs: black with sharp claws", + "wings: two white wing bars and blackish-brown feathers", + "nape: slightly paler olive-brown", + "tail: square-ended, blackish with white outer edges", + "throat: pale yellow and unmarked" + ], + "eungella honeyeater": [ + "back: olive-green feathered covering", + "beak: thin, curved, dark gray", + "belly: bright yellowish-white plumage", + "breast: rich golden-yellow feathers", + "crown: dark cap with bluish sheen", + "forehead: bold, blue-tinged strip", + "eyes: small, dark, expressive orbs", + "legs: thin, grayish-blue appendages", + "wings: elongated, olive-green with a slight blue iridescence", + "nape: bluish-black gradient transitioning to green", + "tail: long, blueish feathers with white tips", + "throat: golden-yellow plumage bordering facial features" + ], + "eurasian blackbird": [ + "back: dark brown feathers", + "beak: thin, slightly curved, yellow-orange", + "belly: light brown to grayish", + "breast: deep brown with soft gradient", + "crown: smooth dark brown", + "forehead: flat, dark brown feathers", + "eyes: small, black, with a pale-yellow eye-ring", + "legs: slender, brownish-gray", + "wings: dark brown, slightly rounded", + "nape: dark brown feathers, smooth transition to crown", + "tail: long, dark brown, with slightly rounded tips", + "throat: light brown to grayish, softer than breast" + ], + "eurasian blackcap": [ + "back: olive-grey with a slight brownish tint", + "beak: slim, pointed, and dark grey", + "belly: pale grey-white with soft brown tinges", + "breast: grey-white with an occasional light brown hue", + "crown: distinctive black cap (in males) or chestnut-brown (in females", + "forehead: merges with the crown's black or chestnut coloring", + "eyes: small, dark, and bright with white eye-ring", + "legs: slim and blue-grey, with strong toes for perching", + "wings: olive-grey with faint brown edges and white tips on the secondaries", + "nape: olive-grey, connecting seamlessly with the bird's back", + "tail: olive-grey with a slightly darker shade in the center", + "throat: soft grey-white, leading into the breast area" + ], + "eurasian blue tit": [ + "back: vibrant blue-green feathers", + "beak: small, black, and pointed", + "belly: yellow with thin black stripes", + "breast: bright yellow and plump", + "crown: bright blue with black outlines", + "forehead: bold blue coloration", + "eyes: dark with lighter blue-grey rings", + "legs: thin and blue-grey", + "wings: blue with white and black stripes", + "nape: blue with black borders", + "tail: short with blue and white feathers", + "throat: yellow with a slight black line" + ], + "eurasian coot": [ + "back: dark grey plumage", + "beak: short, white, and conical", + "belly: grey feathers with a lighter shade than the back", + "breast: dark grey, well-rounded", + "crown: black feathers with a slight hint of shine", + "forehead: white frontal shield above beak", + "eyes: small, round, and reddish-brown", + "legs: long, greenish-grey with lobed toes", + "wings: broad with dark grey feathers", + "nape: dark grey with a subtle transition from the back", + "tail: short, dark grey, and slightly upturned", + "throat: grey feathers, lighter than the back, well-defined" + ], + "eurasian crag martin": [ + "back: brownish-grey feathering", + "beak: short and robust, dark color", + "belly: pale brown to greyish-white", + "breast: light-colored with brownish-grey feathers", + "crown: dark brown feathers", + "forehead: brownish-gray feathers", + "eyes: black with faint white eye-ring", + "legs: short and sturdy, blackish-brown", + "wings: pointed and long, dark grey-brown", + "nape: brownish-grey plumage", + "tail: forked, dark grey-brown feathers", + "throat: pale greyish-white" + ], + "eurasian curlew": [ + "back: streaked brown with varying shades", + "beak: long, curved, and slender", + "belly: pale and mottled brown", + "breast: buff-brown with dark streaks", + "crown: dark and streaked with rufous", + "forehead: light brown with fine streaks", + "eyes: dark, positioned midway on the head", + "legs: long and bluish-grey", + "wings: long, broad, and dark brown with subtle patterning", + "nape: streaked with rufous and dark brown", + "tail: long and wedge-shaped with dark bars", + "throat: pale with fine, dark streaks" + ], + "eurasian dotterel": [ + "back: light brown with white streaks", + "beak: short, straight, and sharp", + "belly: whitish-gray with dull brown wash", + "breast: chestnut band", + "crown: dark brown with a white border", + "forehead: white, contrasting with black lores", + "eyes: small, dark, slightly sunken", + "legs: yellowish-green, short, and sturdy", + "wings: brownish-gray with white bars", + "nape: bordered by a white collar", + "tail: dark brown with white edges and corners", + "throat: plain white" + ], + "eurasian eagle owl": [ + "back: brownish-grey plumage with dark markings", + "beak: strong, black, hooked", + "belly: pale buff with dark streaks", + "breast: tawny-brown with bold vertical streaks", + "crown: slightly raised, brownish with black markings", + "forehead: broad, brownish-grey, streaked with black", + "eyes: large, vivid yellow-orange", + "legs: feathered, tawny-orange with thick claws", + "wings: broad, rounded, dark brown with pale spots", + "nape: brownish-grey, streaked with dark lines", + "tail: short, brown, barred with dark bands", + "throat: pale buff, streaked with dark lines" + ], + "eurasian green woodpecker": [ + "back: green, streaked with black horizontal bars", + "beak: long, strong, and grayish black", + "belly: light grayish green with black markings, sometimes yellowish", + "breast: grayish-green, faintly mottled with dark spots", + "crown: reddish with black sides on males, grayish-green on females", + "forehead: greenish-black, transitioning into the red or gray-green crown", + "eyes: dark brown with a thin white eye-ring", + "legs: short, strong with a grayish-green hue, and zygodactyl feet", + "wings: green with black bars and yellowish flight feathers", + "nape: green, extending into the black and red crown", + "tail: green with black barring; strong, characteristically square shape for support during drilling", + "throat: pearly white to gray, sometimes with darker mottling" + ], + "eurasian griffon": [ + "back: tawny brown feathers", + "beak: robust hooked, pale yellow", + "belly: pale whitish-brown feathers", + "breast: tawny brown feathers with hints of white", + "crown: white feathers with a tawny brown tone", + "forehead: bold white with tawny brown streaks", + "eyes: piercing yellow circles surrounded by white feathers", + "legs: powerful pale-yellow, scaly", + "wings: wide, tawny brown with white streaks, splotches, and feather tips", + "nape: tawny brown with white streaks", + "tail: tawny brown and pale white feathers in a fan shape", + "throat: thick white feathers with a tawny brown undertone" + ], + "eurasian hobby": [ + "back: slate-grey, elongated feathers", + "beak: short, hooked, dark-grey", + "belly: off-white, streaked with rust-brown", + "breast: pale buff, streaked with brown", + "crown: slate-grey, distinctively curved", + "forehead: white, narrow black eyebrow", + "eyes: dark, piercing, yellow-ringed", + "legs: yellow, powerful, short", + "wings: long, narrow, dark-grey, pointed tips", + "nape: slate-grey, dark feathers", + "tail: dark-grey, barred with white and black bands", + "throat: pale buff, finely-streaked" + ], + "eurasian hoopoe": [ + "back: earthy brown with black and white bands", + "beak: long, slender, and curved", + "belly: light buff to beige hue", + "breast: pale orange-brown with black streaks", + "crown: elongated, black-tipped crest feathers", + "forehead: buff-colored, blending into the crest", + "eyes: dark brown, encircled by a narrow black band", + "legs: short and grayish-pink", + "wings: broad and rounded, with black and white bars", + "nape: pale orange-brown, merging with the crest", + "tail: long, black and white banded, fan-shaped", + "throat: buff-colored, transitioning into the breast" + ], + "eurasian jackdaw": [ + "back: dark grey covering the top portion of the body", + "beak: straight, pointed, and dark-colored", + "belly: slightly lighter grey than the back", + "breast: silvery grey and well-rounded", + "crown: darker grey or black, with slight crest", + "forehead: black, blending into the crown", + "eyes: strikingly pale, often appearing whitish or light blue", + "legs: short and sturdy, with black feathers", + "wings: dark grey to black feathers with rounded tips", + "nape: lighter grey than crown, transitioning to silvery grey breast", + "tail: dark grey to black feathers, short and fan-shaped", + "throat: slightly lighter grey than breast, fading to belly color" + ], + "eurasian jay": [ + "back: blue and black barred pattern", + "beak: black, medium-sized and slightly curved", + "belly: creamy white with brownish flanks", + "breast: pale pinkish-grey", + "crown: streaked with brown and black", + "forehead: whitish-grey", + "eyes: dark with pale eyering", + "legs: long and slender, greyish-black", + "wings: vibrant blue with black and white bands", + "nape: streaked with brown and black", + "tail: black with a white terminal band", + "throat: whitish-grey" + ], + "eurasian kestrel": [ + "back: light brown with dark streaks", + "beak: sharp and hooked, grayish-black", + "belly: creamy white with brown spots", + "breast: pale with dark spots", + "crown: light brown with dark streaks", + "forehead: white with dark vertical stripe", + "eyes: dark, round, and surrounded by yellow skin", + "legs: yellow with sharp talons", + "wings: light brown with dark bands and white tips", + "nape: light brown with dark streaks", + "tail: long and slender, barred with dark bands and white tip", + "throat: white and unmarked" + ], + "eurasian linnet": [ + "back: olive-brown feathers", + "beak: sharp, dark gray", + "belly: bright white to pale gray", + "breast: pinkish-red flush", + "crown: reddish-brown with gray streaks", + "forehead: gray fading to brown", + "eyes: small, dark, with prominent white eye-ring", + "legs: slender, gray-blue", + "wings: dark brown with white-edged flight feathers", + "nape: brownish-gray with light streaks", + "tail: forked, dark with white outer edges", + "throat: pale gray or white" + ], + "eurasian marsh harrier": [ + "back: strong, brown feathers with lighter streaks", + "beak: curved, sharp, yellowish-gray", + "belly: light cream with reddish-brown streaks", + "breast: buff-colored with brown speckles", + "crown: flat, medium brown with lighter streaks", + "forehead: slightly paler brown than crown", + "eyes: intense, reddish-yellow with a dark pupil", + "legs: powerful, yellow with long, sharp talons", + "wings: wide, brown with a conspicuous white patch at the base", + "nape: medium brown, blending into the back and crown", + "tail: long, barred brown and cream feathers", + "throat: light cream with reddish-brown streaks" + ], + "eurasian moorhen": [ + "back: olive-brown feathers with a sleek appearance", + "beak: short, red and yellow, with a red forehead shield", + "belly: greyish-white with pale streaks", + "breast: bluish-grey, subtly blending with the belly", + "crown: dark blackish-brown feathers", + "forehead: red shield-like structure extending from the beak", + "eyes: small and round, with a reddish-brown iris", + "legs: yellow-green with long, sturdy toes for walking on vegetation", + "wings: olive-brown with white stripes visible during flight", + "nape: blackish-brown, similar to the crown", + "tail: short, black, with white outer feathers visible when flicked up", + "throat: blue-grey, matching the color of the breast" + ], + "eurasian nightjar": [ + "back: mottled gray-brown feathers", + "beak: short and wide, adapted for catching insects", + "belly: pale grayish-brown with darker speckles", + "breast: grayish-brown with light streaks and spots", + "crown: mottled grayish-brown, blending with back feathers", + "forehead: pale gray-brown, sometimes with a slight buff tinge", + "eyes: large and dark, for enhanced night vision", + "legs: short and thin, well-adapted for a ground-dwelling lifestyle", + "wings: long and pointed, with cryptic brown patterning", + "nape: mottled grayish-brown, similar to the crown and back", + "tail: long and fan-shaped, with patterned feather barring", + "throat: pale grayish-brown with dark streaks and speckles" + ], + "eurasian nutcracker": [ + "back: dark brown-gray feathers", + "beak: strong and pointy, black", + "belly: off-white with gray-brown streaks", + "breast: pale gray-brown with streaks", + "crown: dark brown, feathers slightly raised", + "forehead: dark brown-gray feathers", + "eyes: small and black, piercing gaze", + "legs: strong, gray-black talons", + "wings: dark brown-gray, rounded tips", + "nape: slightly lighter brown-gray feathers", + "tail: medium length, wedge-shaped, brown-gray", + "throat: whitish streaked with gray-brown" + ], + "eurasian nuthatch": [ + "back: blue-grey feathers with subtle striping", + "beak: sharp, strong, pointed, black", + "belly: buff-white with reddish shading", + "breast: pale, warm-toned plumage", + "crown: blue-grey with black eye stripe", + "forehead: white, blending into the crown", + "eyes: deep black with bold white eyestripe", + "legs: short, sturdy, yellow-orange", + "wings: slate-blue with black striping", + "nape: blue-grey, blending with crown and back", + "tail: short, square, blue-grey feathers", + "throat: white, contrasting with breast and beak" + ], + "eurasian oystercatcher": [ + "back: black upperpart with subtle white stripes", + "beak: long, straight, orange or red color", + "belly: solid white underside", + "breast: black feathers meeting the white belly", + "crown: black head top with sleek feathering", + "forehead: smooth, black transition to the beak", + "eyes: beady and red with a yellow eye-ring", + "legs: pink or flesh-colored, moderately long", + "wings: black with white patches and dark tips", + "nape: black, connecting the crown to the back", + "tail: black with a bold white stripe", + "throat: black, blending with the breast feathers" + ], + "eurasian penduline tit": [ + "back: light brown with darker streaks", + "beak: short, conical, and black", + "belly: pale yellowish-white", + "breast: light brown with thin streaks", + "crown: dark brown with a pale central stripe", + "forehead: dark brown, blending into crown", + "eyes: small, black, and surrounded by a white eyering", + "legs: slender, pale, and featherless", + "wings: brownish-gray with light and dark bands", + "nape: light brown with dark streaks", + "tail: short, slightly forked, and dark brown", + "throat: pale yellowish-white" + ], + "eurasian pygmy owl": [ + "back: small, rounded, reddish-brown feathers", + "beak: short, sharp, grayish hooked beak", + "belly: light gray with white streaks", + "breast: pale grayish-white with reddish-brown streaks", + "crown: reddish-brown with white spots", + "forehead: light gray with reddish-brown markings", + "eyes: bright yellow with dark round pupils", + "legs: feathered, short, grayish-white", + "wings: short, broad, reddish-brown with white bars", + "nape: reddish-brown with white spots", + "tail: reddish-brown with white bars and rounded shape", + "throat: pale grayish-white with faint streaks" + ], + "eurasian scops owl": [ + "back: brownish-grey, camouflaged feathers", + "beak: small, hooked, pale yellow", + "belly: buff-colored with dark streaks", + "breast: pale with dark spots", + "crown: rounded, well-feathered, with ear tufts", + "forehead: short, often concealed by feathers", + "eyes: large, yellow-orange, forward-facing", + "legs: feathered, light grey, sharp talons", + "wings: mottled brown and grey, slightly rounded", + "nape: feathered, continuous with the crown", + "tail: medium length, barred with pale and dark bands", + "throat: pale, finely streaked with brown" + ], + "eurasian siskin": [ + "back: olive-green with black streaks", + "beak: slender, pointed, and pale", + "belly: pale yellow and lightly streaked", + "breast: bright yellow with black streaks", + "crown: black stripe on bright yellow", + "forehead: deep yellow with a small black spot", + "eyes: dark, round, with a thin white eye-ring", + "legs: pale and thin with sharp claws", + "wings: black with yellow and white markings", + "nape: olive-green and lightly streaked with black", + "tail: black and forked with white outer edges", + "throat: vibrant yellow with black markings" + ], + "eurasian skylark": [ + "back: light brown with dark streaks", + "beak: short, conical, pale yellow", + "belly: pale brownish-white", + "breast: light brown with dark spots", + "crown: light brown with dark streaks", + "forehead: pale with light brown streaks", + "eyes: small, black, almond-shaped", + "legs: long, thin, pale pink", + "wings: brown with dark markings, elongated", + "nape: light brown with dark streaks", + "tail: short, brown with dark bands", + "throat: pale brownish-white with dark streaks" + ], + "eurasian sparrowhawk": [ + "back: slate-grey to brownish-grey feathers", + "beak: short, hooked, and dark-colored", + "belly: buff-white with rufous-brown bars", + "breast: creamy-white with rufous-brown streaks", + "crown: dark grey to brown plumage", + "forehead: pale supercilium above dark eye stripe", + "eyes: bright yellow to orange-red", + "legs: yellow, long, and slender with sharp talons", + "wings: short and slightly pointed with dark barring", + "nape: grey or brown feathers, lighter than the crown", + "tail: long, narrow, and dark with 3-4 light horizontal bands", + "throat: pale buff with light streaks" + ], + "eurasian spoonbill": [ + "back: sleek, smooth feathers in white", + "beak: long, black, and spoon-shaped", + "belly: white with occasional grey streaks", + "breast: white, puffy plumage", + "crown: variable; black or white, occasionally with green or purple sheens", + "forehead: smooth, white feathers transitioning to bare skin", + "eyes: small, bright, and black or dark brown", + "legs: black or grey, tall and slender", + "wings: white feathers with black tips on primary feathers", + "nape: arched, with long, fine white plumes", + "tail: short, white and fan-shaped", + "throat: white with a slight curve towards the chest" + ], + "eurasian thick knee": [ + "back: brown and streaked plumage", + "beak: short and stout, yellowish-brown", + "belly: pale, buff-colored feathers", + "breast: light brown with streaks", + "crown: dark brown with buff stripes", + "forehead: mixed brown and white", + "eyes: large and yellow", + "legs: long, gray, and slender", + "wings: broad with brown, buff, and white markings", + "nape: streaked brown and buff", + "tail: short with brown and white bars", + "throat: pale buff with slight streaks" + ], + "eurasian three toed woodpecker": [ + "back: blackish or dark gray with thin white bars", + "beak: straight, sharp, and chisel-like, darkish grey", + "belly: white or light grey with sparse dark streaks", + "breast: white or light grey with small dark speckles", + "crown: black with a bright yellow cap on males, black on females", + "forehead: black or dark gray, feathers merging with the crown", + "eyes: round and dark, surrounded by black feathers", + "legs: short, strong, and gray, adapted for climbing tree trunks", + "wings: blackish or dark gray with white barred secondary feathers", + "nape: black or dark gray, connecting to the crown", + "tail: stiff, black, with sharp pointed central feathers", + "throat: white or light grey with dark streaks near the base of beak" + ], + "eurasian tree sparrow": [ + "back: brown feathers with white streaks", + "beak: small, black and cone-shaped", + "belly: creamy white with light brown markings", + "breast: light brown with black central spot", + "crown: chocolate brown with white cheek patches", + "forehead: rich chestnut-brown", + "eyes: black and round with white eye-ring", + "legs: pale pinkish-brown with sharp claws", + "wings: brown with white bars and black streaks", + "nape: chocolate brown with slight white markings", + "tail: brown, short and slightly forked", + "throat: creamy white with light brown markings" + ], + "eurasian treecreeper": [ + "back: brown, streaked with fine, pale markings", + "beak: slim, curved with a point", + "belly: pale greyish-white", + "breast: light greyish-white", + "crown: streaked, brown and beige", + "forehead: pale beige with subtle streaks", + "eyes: small, black and bright", + "legs: thin, brown and strong", + "wings: brown, streaked with white markings", + "nape: beige-brown, darker than the crown with streaks", + "tail: short, pale brown with barred patterns", + "throat: light, greyish-white" + ], + "eurasian woodcock": [ + "back: intricately patterned with shades of brown", + "beak: long, flexible, and slender probing tool", + "belly: light brownish ochre with faint striping", + "breast: warm chestnut color with dark brown speckles", + "crown: dark chocolate with pale white stripes", + "forehead: white thin stripe alongside patterned head feathers", + "eyes: large, dark, glossy, and close to their crown", + "legs: short, robust, earthy, and scaled", + "wings: rounded in shape with brown plumage and streaking patterns", + "nape: subtle dark and light striping", + "tail: short, rounded, and finely barred", + "throat: light buff with a few dark stripes" + ], + "eurasian wren": [ + "back: brown and lightly barred", + "beak: slender, downward-curving", + "belly: dull white or cream", + "breast: faintly spotted, light brown", + "crown: rufous brown", + "forehead: light brown and unmarked", + "eyes: black and bright", + "legs: thin, light brown", + "wings: short, rounded, with brown bars", + "nape: rufous brown, faintly streaked", + "tail: short, dark brown and upturned", + "throat: pale with fine brown spots" + ], + "eurasian wryneck": [ + "back: grayish-brown with fine black and white barring", + "beak: slightly decurved, dark upper mandible, pale lower mandible", + "belly: pale cream with dark spots and barring", + "breast: beige with black spots and bars", + "crown: grayish-brown with white streaks", + "forehead: pale with dark streaks and spots", + "eyes: small and dark, surrounded by whitish eye-ring", + "legs: pale pinkish-gray with thin toes", + "wings: brownish-gray with black-and-white barring and small white spots", + "nape: grayish-brown with white streaks and dark bars", + "tail: brown with black and white bars, slightly fan-shaped", + "throat: pale buff with dark streaks and spots" + ], + "european bee eater": [ + "back: vibrant green plumage", + "beak: slightly curved, slender black", + "belly: bright yellow feathers", + "breast: orange-yellow tinted feathers", + "crown: green and blue head plumage", + "forehead: lime green and turquoise", + "eyes: dark beady with an orange rim", + "legs: short, grey-blue legs", + "wings: multicolored, elongated feathers", + "nape: turquoise-blue striped", + "tail: narrow and elongated, blue-green feathers", + "throat: rich golden-yellow hue" + ], + "european golden plover": [ + "back: golden-brown with black speckles", + "beak: short and slightly curved", + "belly: white with black streaks", + "breast: creamy white with black markings", + "crown: golden-brown with black streaks", + "forehead: white with a black border", + "eyes: small, black, and round", + "legs: dark gray", + "wings: golden-brown with black spots and white wingbars", + "nape: golden-brown with black speckles", + "tail: black with white outer feathers", + "throat: white, framed by a black crescent shape" + ], + "european greenfinch": [ + "back: olive-green with slight yellowish tint", + "beak: strong, grayish-black, and conical-shaped", + "belly: yellowish-green with gray-brown streaks", + "breast: bright yellow-green with brown edges", + "crown: olive-green with yellow tinge", + "forehead: greenish-yellow with a slight black marking", + "eyes: dark brown with faint gray outline", + "legs: pale pinkish-gray with strong clawed feet", + "wings: dark gray with prominent yellow bars", + "nape: olive-green shading to gray", + "tail: dark gray with yellow edges", + "throat: yellow-green fading to white towards the chest" + ], + "european honey buzzard": [ + "back: brownish-grey feathered upper body", + "beak: short, curved, dark grayish hook", + "belly: light greyish-brown with dark vertical streaks", + "breast: pale with dark horizontal bars", + "crown: brownish-grey head feathers", + "forehead: slightly paler brownish-grey feathers", + "eyes: piercing yellow, surrounded by bare yellow skin", + "legs: sturdy yellow with sharp talons", + "wings: wide brown with dark barring; finger-like feather tips", + "nape: light brownish-grey with dark streaks", + "tail: long, broad, dark brown with greyish bars", + "throat: pale with dark brown vertical streaks" + ], + "european pied flycatcher": [ + "back: olive-brown feathered", + "beak: small, pointed, black", + "belly: white and smooth", + "breast: white, slightly speckled", + "crown: black, white streaks", + "forehead: black, blending into crown", + "eyes: black, surrounded by white stripe", + "legs: short, black", + "wings: blackish-grey with white patches", + "nape: olive-brown, like the back", + "tail: black, forked with white edges", + "throat: white, fading into breast" + ], + "european robin": [ + "back: olive-brown with a hint of gray", + "beak: dark, small, slightly curved", + "belly: light, pastel orange fading into white", + "breast: vibrant reddish-orange", + "crown: brownish-gray, rounded shape", + "forehead: brownish-gray", + "eyes: beady black with a white outline", + "legs: thin, dark grayish-brown", + "wings: olive-brown with two white wing bars", + "nape: grayish-brown, blending with crown", + "tail: square-ended, olive-brown with white outer corners", + "throat: bright reddish-orange, transitioning from breast" + ], + "european roller": [ + "back: vibrant blue plumage", + "beak: strong, black and slightly curved", + "belly: soft, light blue feathers", + "breast: deep indigo plumage", + "crown: bright blue with a green sheen", + "forehead: blue-green transition from crown to face", + "eyes: black, surrounded by light blue feathers", + "legs: short and dark gray", + "wings: striking dark blue with black primary feathers", + "nape: vivid blue-green feathers", + "tail: long, blue with black outer feathers", + "throat: pale blue transitioning to the belly" + ], + "european serin": [ + "back: olive-green with dark streaks", + "beak: conical, sharp, and pale yellow", + "belly: bright yellow", + "breast: vibrant, yellow-orange hue", + "crown: olive-green with yellow tones", + "forehead: bright yellow", + "eyes: small, dark brown, with a fine pale eye-ring", + "legs: pinkish-brown with thin, sharp claws", + "wings: olive-green with dark flight feathers and bold yellow edges", + "nape: olive-green with faint dark streaks", + "tail: forked, dark with white outer edges", + "throat: intense golden-yellow" + ], + "european shag": [ + "back: dark greenish-black plumage", + "beak: long, black, and hooked", + "belly: greenish-black, slightly lighter than back", + "breast: dark greenish-black feathers", + "crown: defined, slightly raised, dark feathers", + "forehead: prominent, black and sloping", + "eyes: piercing green or yellow", + "legs: webbed feet, black in color", + "wings: dark greenish-black, wide and long", + "nape: greenish-black feathered, distinct from crown", + "tail: dark, short and wedge-shaped", + "throat: dark greenish-black feathers, distinguished from breast" + ], + "european stonechat": [ + "back: brownish-grey, speckled with darker spots", + "beak: short, straight, black", + "belly: white, fading to orange-brown", + "breast: vibrant orange-brown, blending into belly", + "crown: dark brown, covering top of head", + "forehead: blending with crown color, slightly lighter", + "eyes: small, black, encircled by white eye-ring", + "legs: thin, dark grey", + "wings: brown with patches of white, black and orange-brown", + "nape: darker brown, transitioning into back color", + "tail: short, square-shaped, black with white outer feathers", + "throat: off-white, contrasting with vivid breast color" + ], + "european storm petrel": [ + "back: sleek dark grey-brown plumage", + "beak: short, black, hooked tip", + "belly: pale greyish-white underside", + "breast: greyish-white feathering", + "crown: dark grey-brown top of head", + "forehead: smooth greyish-white merging into crown", + "eyes: small, round, black, and alert", + "legs: short, black, with partially webbed feet", + "wings: long, slender, dark grey-brown, with white accents", + "nape: dark grey-brown continuation from crown", + "tail: short, squared off, dark grey-brown feathers", + "throat: lighter greyish-white plumage meeting breast" + ], + "everett scops owl": [ + "back: light brown feathers with dark markings", + "beak: sharp, curved, grayish-black", + "belly: creamy white with thick, fine brown streaks", + "breast: whitish-brown speckled with blackish-brown spots", + "crown: uniform brown with dark streaks", + "forehead: light brown mottled with dark speckles", + "eyes: large, yellow-orange with dark outline", + "legs: feathered, brown with thin dark barring", + "wings: mottled brown with dark markings, rounded edges", + "nape: brown with dark striations", + "tail: brown with dark horizontal banding", + "throat: whitish with brown streaks" + ], + "everett thrush": [ + "back: olive-brown upperparts", + "beak: slender, straight, pale yellowish", + "belly: off-white, lightly spotted", + "breast: grayish-white with dark speckles", + "crown: brownish-gray", + "forehead: subtly paler than crown", + "eyes: beady black, encircled in light feathers", + "legs: light brown, sturdy", + "wings: olive-brown with faint wing bars", + "nape: brownish-gray, continuous with the crown", + "tail: olive-brown, slightly rounded", + "throat: grayish-white, unmarked" + ], + "everett white eye": [ + "back: sleek, grayish-white feathers", + "beak: small, black, pointed tip", + "belly: off-white with faint gray speckles", + "breast: soft, pale white feathers", + "crown: slightly raised, white with gray streaks", + "forehead: smooth, white, continuation of the crown", + "eyes: bright, white-ringed, black pupils", + "legs: thin, grayish-black, and short", + "wings: grayish-white with black underwing tips", + "nape: light gray, blending with crown", + "tail: short, fan-shaped, white with black tips", + "throat: white feathers meeting at the chest" + ], + "evergreen forest warbler": [ + "back: vibrant olive-green feathers", + "beak: slender, pointed, and black", + "belly: pale yellow underside", + "breast: light yellow fading to white", + "crown: greenish-yellow streaks", + "forehead: bright yellow patch", + "eyes: small, dark, and alert", + "legs: thin, blue-gray, and agile", + "wings: olive-green with faint yellow markings", + "nape: yellowish-white with green streaks", + "tail: olive-green, narrow, and forked", + "throat: bright yellow and striking" + ], + "exclamatory paradise whydah": [ + "back: vibrant bronze and gold hues", + "beak: sharp and dark, curved for seed-cracking", + "belly: off-white underside with light feathering", + "breast: golden-yellow with dramatic black streaks", + "crown: sleek black head feathers, shimmering in sunlight", + "forehead: subtly outlined by a lustrous golden crest", + "eyes: large, dark, and observant, framed by faint and short white stripe", + "legs: strong, black spindly legs with clawed feet", + "wings: striking black with golden-brown undertones", + "nape: stunning, long plumage of black and gold", + "tail: extraordinary elongated plumes with cross-shaped pattern", + "throat: intense contrast between black and bright golden-yellow" + ], + "eye ringed flatbill": [ + "back: vibrant green feathers", + "beak: short and thin, dark color", + "belly: whitish-yellow plumage", + "breast: bright green with spots", + "crown: iridescent violet-blue", + "forehead: small, shiny green", + "eyes: dark with white eye-ring", + "legs: relatively short, pale gray", + "wings: green with small blue spots", + "nape: brilliant green feathers", + "tail: long, thin feathers, green with white tips", + "throat: iridescent purple-blue" + ], + "eye ringed thistletail": [ + "back: olive-brown and streaked", + "beak: short, strong, and pointed", + "belly: pale gray or white", + "breast: gray with darker streaks", + "crown: rufous with bold black stripes", + "forehead: gray with light streaks", + "eyes: black with white eye-ring", + "legs: strong and pale pink", + "wings: olive-brown with faint barring", + "nape: gray with rufous collar", + "tail: long and thistle-like, brownish-black", + "throat: gray with darker streaks" + ], + "eye ringed tody tyrant": [ + "back: olive-green feathering", + "beak: black and short", + "belly: pale yellow undertone", + "breast: yellowish-green blending", + "crown: light olive-green crest", + "forehead: slight yellow touch", + "eyes: faint white eye ring", + "legs: thin, greyish-blue limbs", + "wings: vibrant olive-green with fine barring", + "nape: greenish-yellow tinge", + "tail: short, dark with white edges", + "throat: soft, pale yellow hue" + ], + "eyebrowed jungle flycatcher": [ + "back: olive-brown plumage", + "beak: short and sharp, black", + "belly: off-white with faint streaks", + "breast: subtle yellow hue", + "crown: greyish-brown with eyebrows", + "forehead: light grey, slight stripe", + "eyes: dark brown, expressive", + "legs: long, slender, grey", + "wings: dark brown with visible bars", + "nape: greyish brown with streaks", + "tail: long and brown, with white tips", + "throat: off-white, slightly streaked" + ], + "eyebrowed thrush": [ + "back: olive-brown plumage", + "beak: dark, slender, and slightly curved", + "belly: creamy white with blackish spots", + "breast: buff-to-orange with distinct dark markings", + "crown: grayish-brown with fine streaks", + "forehead: pale with indistinct eyebrow markings", + "eyes: small, dark, with faint white eye-ring", + "legs: pinkish-gray and sturdy", + "wings: brownish with pale-edged feathers", + "nape: grayish-olive with fine streaks", + "tail: medium-length, dark with white outer feathers", + "throat: creamy white with dark streaks" + ], + "eyebrowed wren babbler": [ + "back: grayish-brown with subtle dark bars", + "beak: slim, slightly curved, and black", + "belly: off-white or pale gray with dark brown streaks", + "breast: similar to belly, off-white with brown streaks and spots", + "crown: dark brown with a grayish hue", + "forehead: white supercilium forming an \"eyebrow\" above each eye", + "eyes: round and dark with a distinctive white eyebrow above", + "legs: thin, sturdy and black", + "wings: grayish-brown with white, black, and chestnut bands or spots", + "nape: grayish-brown blending with the back and crown", + "tail: fairly long, with blackish and white bars", + "throat: white or pale gray, slightly lighter than the breast and belly" + ], + "eyrean grasswren": [ + "back: olive-brown with dark streaks", + "beak: short and cone-shaped", + "belly: pale and lightly streaked", + "breast: buff-colored with brown spots", + "crown: dark brown with pale streaks", + "forehead: light brown with pale streaks", + "eyes: small and surrounded by a pale eyering", + "legs: slender and pale brown", + "wings: brown with dark barring", + "nape: olive-brown with dark streaks", + "tail: long and dark brown with white tips", + "throat: pale buff with light brown markings" + ], + "fairy flycatcher": [ + "back: sleek, olive-grey feathers", + "beak: short, sharp, and pointed", + "belly: white, sometimes with a light yellow hue", + "breast: pale grey with a slight yellow tint", + "crown: grey color, occasionally olive or brown", + "forehead: lighter grey, with fine streaks", + "eyes: round, dark, and expressive", + "legs: thin, long, and dark grey", + "wings: medium-length, grey with white wing-bars", + "nape: similar shade as the crown, with olive-grey overtones", + "tail: rounded, dark grey, with some white outer feathers", + "throat: white or pale grey, contrasting against the darker breast" + ], + "fairy gerygone": [ + "back: olive-green with slight streaks", + "beak: slender and pointy, dark grey", + "belly: pale, creamy yellowish-white", + "breast: creamy white with olive tints", + "crown: reddish-brown with faint streaks", + "forehead: olive-brown blending into the crown", + "eyes: dark, relatively large with pale eyebrow", + "legs: slender, light pinkish-grey", + "wings: olive-brown, slightly rounded with faint wing bars", + "nape: olive-green with fine streaks, blending into the back", + "tail: olive-brown, relatively long and slightly forked", + "throat: creamy white with slight olive tinges" + ], + "fairy lorikeet": [ + "back: vibrant green feathers covering the upper body", + "beak: curved, sharp, and bright orange", + "belly: light green transitioning to yellowish-green", + "breast: stunning orange feathers, occasionally with hints of yellow", + "crown: rich violet-blue plumage on the top of the head", + "forehead: intense red feathers above the beak and around the eyes", + "eyes: small, dark, with a piercing gaze", + "legs: short and sturdy, light grey-blue in color", + "wings: mix of magnificent blue, green, and yellow feathers", + "nape: bright green feathers transition from the crown to the back", + "tail: long, narrow feathers, varying shades of green with a blue tip", + "throat: brilliant red and orange feathers below the beak" + ], + "fairy martin": [ + "back: sleek, tawny-brown", + "beak: short, pointed", + "belly: pale white-gray", + "breast: light gray", + "crown: tawny-brown", + "forehead: white-to-light gray", + "eyes: small, black", + "legs: short, dark", + "wings: long, pointed, tawny-brown", + "nape: tawny-brown", + "tail: forked, tawny-brown", + "throat: creamy-white" + ], + "fairy pitta": [ + "back: vibrant green plumage", + "beak: short, stout, black tip", + "belly: pale yellow feathers", + "breast: light blue and orange hues", + "crown: deep blue-green shading", + "forehead: blended blue-green feathers", + "eyes: dark with white outlines", + "legs: strong, grayish-blue", + "wings: rich blue-green with dark markings", + "nape: subtle green-blue transition", + "tail: strong, blue-green with black banding", + "throat: pale, creamy white" + ], + "fairy prion": [ + "back: blue-gray feathers with distinct black stripes", + "beak: small, hooked, and black", + "belly: white with soft, fluffy feathers", + "breast: white and plump", + "crown: blue-gray with black streaks", + "forehead: white with hints of gray", + "eyes: black and beady, surrounded by white feathers", + "legs: pale pink, thin and wiry", + "wings: blue-gray with black-edged feathers", + "nape: blue-gray plumage with slight black streaks", + "tail: short, blue-gray with black tips", + "throat: white feathers meeting gray plumage at chest" + ], + "falcated duck": [ + "back: sleek, grayish-brown feathers", + "beak: black, medium-length with a slight curve", + "belly: off-white with faint gray markings", + "breast: light brown with subtle darker spots", + "crown: dark brown with a green iridescent sheen", + "forehead: creamy white stripe between eyes", + "eyes: black, surrounded by thin white feathers", + "legs: orange-red, webbed feet", + "wings: elongated, curved back feathers with iridescent green highlights", + "nape: dark brown, transitioning to the greenish crown", + "tail: short and pointed, coordinating with the back color", + "throat: white, transitioning to the light brown breast" + ], + "falcated wren babbler": [ + "back: olive-brown plumage", + "beak: short, pointed, and pale", + "belly: buff-white with faint brown streaks", + "breast: grayish-brown feathers", + "crown: reddish-brown with fine streaks", + "forehead: pale buff streaks", + "eyes: small, black, in grayish-white eyering", + "legs: strong, pinkish-brown", + "wings: falcated and olive-brown", + "nape: grayish-brown with fine streaks", + "tail: short and curved, with olive-brown feathers", + "throat: pale buff with fine brown streaks" + ], + "falkland steamer duck": [ + "back: blueish-grey feathers covering upper body", + "beak: short, stout and greyish-black", + "belly: whitish plumage on the lower abdomen", + "breast: dusky grey feathered chest", + "crown: dark grey feathers on the top of the head", + "forehead: steep sloping forehead", + "eyes: small, dark eyes on each side of the head", + "legs: short, thick, feather-covered legs", + "wings: small, rounded with blueish-grey feathers", + "nape: dark grey feathers at the back of the neck", + "tail: fan-shaped, greyish-blue tail feathers", + "throat: greyish-white feathers at the base of the neck" + ], + "familiar chat": [ + "back: dark olive-green feathers", + "beak: small, sharp, and black", + "belly: pale yellow plumage", + "breast: grayish-yellow feathers", + "crown: dark blue-black feathers", + "forehead: white stripe above eyes", + "eyes: small, round, and black", + "legs: thin and dark gray", + "wings: bluish-gray with white streaks", + "nape: olive-green blending into blue-black", + "tail: long, dark blue-black feathers", + "throat: grayish-white with distinct markings" + ], + "fan tailed berrypecker": [ + "back: vibrant green feathers with a subtle sheen", + "beak: short and hooks, black in color", + "belly: light grayish-green feathers for camouflage", + "breast: bright green and puffed out, effortlessly merging with belly", + "crown: luminous green with flecked highlights", + "forehead: striking plumage, dark green to match the crown", + "eyes: deep black, surrounded by thin green rings", + "legs: thin, wiry, and strong, supporting the agile bird", + "wings: mid-length, green with a flash of luminous white", + "nape: a faded olive-green hue for ease in blending with surroundings", + "tail: long, bristly, and fanned out, showcasing bright green and white feathers", + "throat: adorned with a vibrant lime-green plumage, adding to the bird's allure" + ], + "fan tailed cuckoo": [ + "back: olive-grey feathers", + "beak: curved, dark gray", + "belly: pale grey or white", + "breast: light gray with faint barring", + "crown: grayish-green plumage", + "forehead: olive-gray with a slightly darker line above eye", + "eyes: dark color with a white ring around", + "legs: sturdy, grayish-brown", + "wings: olive-grey with white-tipped inner flight feathers", + "nape: grayish-green feathers", + "tail: long, broad, and fan-shaped with white tips", + "throat: light grey or white with light bars" + ], + "fan tailed gerygone": [ + "1. back: olive-green feathers covering the rear upper body", + "2. beak: thin, pointed, blackish beak for insect-catching", + "3. belly: creamy-white feathers with a slight yellow tint", + "4. breast: soft, white feathers with light grey streaks", + "5. crown: olive-green feathers atop the head, streaked with black", + "6. forehead: narrow black bands on a creamy-white backdrop", + "7. eyes: small, black eyes with white eye-rings", + "8. legs: short, strong, and black, with sharp claws", + "9. wings: greenish-brown with white wing-bars, ideal for swift flight", + "10. nape: olive-green feathers that continue along the back", + "11. tail: fan-like, long, and white-tipped, with dark bars and rufous edges", + "12. throat: clear, white feathers with a sharp contrast to the breast" + ], + "fan tailed grassbird": [ + "back: light brown with faint streaks", + "beak: strong, thin and pointed", + "belly: creamy-white with brown speckles", + "breast: pale yellow with faint streaks", + "crown: brownish-gray with a crest", + "forehead: buff-colored with a slight crest", + "eyes: beady black with a white eye-ring", + "legs: long, slender and grayish-brown", + "wings: brown with slightly darker stripes", + "nape: grayish-brown with faint streaks", + "tail: long and fan-shaped with white outer feathers", + "throat: creamy-white with brown speckles" + ], + "fan tailed monarch": [ + "back: vibrant black plumage", + "beak: small and hooked, dark grey", + "belly: white with hints of pale yellow", + "breast: contrast of dark black and white", + "crown: striking black with a hint of blue iridescence", + "forehead: dark black, blending into the crown", + "eyes: alert and bright, surrounded by black feathers", + "legs: slender and greyish, built for perching", + "wings: long and black with streaks of vibrant blue", + "nape: black with a blue sheen, connecting the crown to the back", + "tail: extravagantly fanned, black and blue with white tips", + "throat: sharp white coloring, contrasting with the breast" + ], + "fan tailed raven": [ + "back: sleek black feathers", + "beak: strong, sharp, black", + "belly: smooth dark plumage", + "breast: black and glossy", + "crown: jet-black feathers", + "forehead: small, dark plumage", + "eyes: piercing, dark brown", + "legs: sturdy, black", + "wings: broad, black, fan-like", + "nape: dark feathers extending to neck", + "tail: long, black, distinctive fan shape", + "throat: sleek black feathers" + ], + "fan tailed warbler": [ + "back: olive-green coloration", + "beak: thin, curved, and pointed", + "belly: white with faint streaks", + "breast: yellow with black streaks", + "crown: olive-toned with a faint stripe", + "forehead: olive-hued, blending with the crown", + "eyes: small, dark orbs surrounded by a faint eye-ring", + "legs: thin, grayish-brown", + "wings: olive-brown with a faint feather pattern", + "nape: greenish-yellow hue", + "tail: long, fanned, and boldly patterned", + "throat: bright yellow with black speckles" + ], + "fan tailed widowbird": [ + "back: striking glossy black", + "beak: small, curved, and black", + "belly: white, prominent patch", + "breast: deep black plumage", + "crown: shimmering deep green", + "forehead: glossy black feathers", + "eyes: small and round, dark-colored", + "legs: long, slender, and gray", + "wings: wide-spreading, black with rounded tips", + "nape: glossy black with green iridescence", + "tail: elongated, extravagant, fan-like feathers", + "throat: velvety black plumage" + ], + "fanti drongo": [ + "back: dark glossy plumage covering upper body", + "beak: slightly hooked and black in color", + "belly: smoother, paler feathers on lower body", + "breast: dark feathers transitioning to lighter belly", + "crown: glossy feathers covering top of the head", + "forehead: smooth dark feathers above the eyes", + "eyes: alert and bright, surrounded by black plumage", + "legs: slender and black, with well-defined joints", + "wings: long and pointed, with iridescent black feathers", + "nape: dark feathers converging at base of the neck", + "tail: forked shape with elongated central feathers", + "throat: dark-colored contour feathers meeting the breast" + ], + "fanti sawwing": [ + "back: sleek feathered with shades of gray-blue", + "beak: sharp, pointed, and black", + "belly: light gray, soft feathers", + "breast: pale gray with subtle streaks", + "crown: smooth, gray-blue feathers", + "forehead: prominent with gray-blue hue", + "eyes: bright, piercing, and dark", + "legs: slender, long, and dark gray", + "wings: elongated, gray-blue with white accents", + "nape: smooth transition from crown, gray-blue", + "tail: long, fan-shaped with white outer edges", + "throat: pale gray, slightly darker than breast" + ], + "far eastern curlew": [ + "back: long and brownish-gray, with dark streaks", + "beak: extremely long, curved downwards, dark grey", + "belly: white with brown speckles", + "breast: light brown with dark streaks", + "crown: brownish-gray with dark streaks, slightly raised", + "forehead: light brownish-gray, smooth feathers", + "eyes: small, black with white eye-ring", + "legs: long, grayish-blue, with large feet", + "wings: broad with brownish-gray color, dark stripes on the feathers", + "nape: brownish-gray with dark streaks, smooth feather transition", + "tail: long, tapered with dark barring, brownish-gray color", + "throat: light brownish-white, unmarked feathers" + ], + "fasciated antshrike": [ + "back: black and white striped pattern", + "beak: strong, hooked, and black", + "belly: white with black streaks", + "breast: white with black bands", + "crown: black with white streaks", + "forehead: black and white striped", + "eyes: dark and piercing", + "legs: sturdy and pale gray", + "wings: black with rufous edges and white spots", + "nape: black and white striped", + "tail: long, black with white tips", + "throat: white with black streaks" + ], + "fasciated snake eagle": [ + "back: brownish-black plumage with white streaks", + "beak: sharp, hooked, blackish-gray", + "belly: white with dark vertical stripes", + "breast: white with fine gray streaks", + "crown: dark brown with white streaks", + "forehead: dark brown with white streaks", + "eyes: piercing yellow orbs", + "legs: strong, yellow, featherless", + "wings: broad, brown, with white bars", + "nape: dark brown with white streaks", + "tail: long, barred with brown and white bands", + "throat: white with thin gray streaks" + ], + "fasciated tiger heron": [ + "back: dark green, long and slender", + "beak: long, pointed, and yellowish", + "belly: white with black, thick stripes", + "breast: white with thin, black striping", + "crown: black with streaks of blue-green", + "forehead: white, slightly raised", + "eyes: large, dark, and prominent", + "legs: robust and yellow-orange", + "wings: dark green with white bars", + "nape: blue-green, long feathers extending", + "tail: black with broad, white bands", + "throat: white with narrow, black stripes" + ], + "fatuhiva monarch": [ + "back: dark grayish-blue feathers", + "beak: small, sharp, and black", + "belly: pale gray with faint black speckles", + "breast: light grayish-white feathers", + "crown: deep black with bluish sheen", + "forehead: dark blackish-blue feathers", + "eyes: small and round with black pupils", + "legs: thin, black, and slightly webbed", + "wings: dark gray with lighter gray fringes", + "nape: dark blue-black feathers", + "tail: long and tapered, black and gray feathers", + "throat: light grayish-white feathers" + ], + "fawn breasted bowerbird": [ + "back: olive-brown with a metallic sheen", + "beak: short, curved, and black", + "belly: pale orange-fawn color", + "breast: fawn-colored with a slight greenish iridescence", + "crown: dark olive-green with a slight sheen", + "forehead: olive-green with a subtle metallic tint", + "eyes: small, round, and dark brown", + "legs: relatively short, light gray to black", + "wings: olive-brown with greenish-blue highlights", + "nape: slightly lighter shade of olive-brown", + "tail: long and olive-brown with a greenish-blue sheen", + "throat: fawn-colored, transitioning into the breast area" + ], + "fawn breasted brilliant": [ + "back: vibrant green iridescent", + "beak: short, straight, black", + "belly: soft, beige hues", + "breast: warm, fawn-colored", + "crown: shiny, emerald green", + "forehead: brilliant, metallic green", + "eyes: round, dark, expressive", + "legs: thin, black, sturdy", + "wings: green, shimmering", + "nape: green with a reddish tint", + "tail: long, green feathers", + "throat: fawn-colored, bordered with green" + ], + "fawn breasted tanager": [ + "back: olive-green feathers", + "beak: sharp and conical", + "belly: creamy white", + "breast: pale fawn coloration", + "crown: glossy blue-black", + "forehead: glossy blue-black", + "eyes: dark with white eye-ring", + "legs: grayish-black", + "wings: olive-green with black edging", + "nape: olive-green", + "tail: olive-green with black tips", + "throat: pale fawn coloration" + ], + "fawn breasted thrush": [ + "back: brownish-gray upper back", + "beak: relatively long, pale-greyish bill", + "belly: creamy-white lower belly", + "breast: warm, orange-rust-colored breast", + "crown: greyish-brown head with slight crest", + "forehead: smooth, greyish-brown", + "eyes: brown with faded white eye-ring", + "legs: thin and long, dark grey", + "wings: brown-gray with faint, white-wing bars", + "nape: grey-brown coloration", + "tail: brownish-grey with white outer tail feathers", + "throat: smooth white with softly speckled gray markings" + ], + "fawn breasted waxbill": [ + "back: light brown, slightly streaked feathers", + "beak: sharp, silver-gray with a dark tip", + "belly: pale fawn with subtle hints of white", + "breast: soft fawn color blending into cream", + "crown: reddish-brown with fine dark streaks", + "forehead: dark reddish-brown, slightly streaked", + "eyes: dark, round with thin white eye-ring", + "legs: slender, dark gray with scaled appearance", + "wings: light brown, streaked with darker feathers", + "nape: fawn color with slight dark streaks", + "tail: long, slightly forked with dark brown feathers", + "throat: pale cream-white, blending into breast color" + ], + "fawn breasted whistler": [ + "back: olive-brown with a hint of golden shimmer", + "beak: relatively short, sharp, and black", + "belly: light fawn color with faint streaks", + "breast: pale fawn shading into white", + "crown: olive-brown with golden speckles", + "forehead: olive-brown and finely streaked", + "eyes: dark brown with a touch of white around them", + "legs: relatively skinny and black", + "wings: olive-brown with distinct golden-yellow edges", + "nape: olive-brown with faint golden speckles", + "tail: olive-brown with noticeable golden-yellow tips", + "throat: bright white and well defined" + ], + "fawn breasted wren": [ + "back: light brown with subtle streaks", + "beak: sharp, straight, dark color", + "belly: pale fawn with faint markings", + "breast: soft fawn shade with slight speckles", + "crown: brown with fine darker streaks", + "forehead: chestnut-brown, blending into crown", + "eyes: small, dark, and alert", + "legs: slender, pale brown or pinkish-brown", + "wings: brown with black-edged feathers", + "nape: light brown, fading into back", + "tail: elongated, brown with darker bands", + "throat: pale fawn, blending into breast" + ], + "fawn colored lark": [ + "back: light brown with subtle streaks", + "beak: short and pale", + "belly: cream-colored", + "breast: off-white with brownish spots", + "crown: light brown with faint streaks", + "forehead: pale with light brown markings", + "eyes: small and dark", + "legs: slender, pale brown", + "wings: light brown with darker stripes", + "nape: light brown with thin streaks", + "tail: brownish with white edges", + "throat: white with brown speckles" + ], + "fea petrel": [ + "back: dark grey with sleek feathers", + "beak: black, sharp, and curved slightly", + "belly: soft white with light grey streaks", + "breast: white and puffy", + "crown: slightly raised with dark grey feathers", + "forehead: smooth, blending into crown and beak", + "eyes: small and dark, with a sharp gaze", + "legs: thin, black, and webbed feet", + "wings: long, slender, and pointed with grey and black feathers", + "nape: grey feathers blending into the back", + "tail: short, wedge-shaped with black and grey feathers", + "throat: white, blending into the breast" + ], + "fearful owl": [ + "back: sleek, grey feathers interspersed with white patterns", + "beak: sharp, black, hooked beak for tearing prey", + "belly: pale, soft feathers with faint striped accents", + "breast: white and grey feathers forming a heart-shaped facial disc", + "crown: tufts of long feathers on the head, resembling \"horns", + "forehead: smooth, flat area with lighter shades of grey", + "eyes: intense, yellow, unblinking orbs for exceptional night vision", + "legs: strong, feathered limbs with sharp, black talons", + "wings: broad, expansive, and silent for stealthy hunting", + "nape: mix of grey and white feathers meeting at the base of the skull", + "tail: long, fan-like feathers used for balance and maneuverability", + "throat: soft, white feathers tapering towards the belly" + ], + "feline owlet nightjar": [ + "back: mottled dark brown and gray feathers", + "beak: short, black, and slightly hooked", + "belly: varied shades of brown, gray, and white with vertical streaks", + "breast: mottled brown and white feathers", + "crown: dark gray or brown feathers with patterned patches", + "forehead: grayish-white feathers with darker hints", + "eyes: large, dark, and forward-facing", + "legs: short and covered in brownish-gray feathers", + "wings: mottled dark brown and gray with white specks", + "nape: dark gray-brown feathers with lighter striped pattern", + "tail: mottled gray and brown feathers with prominent white spots", + "throat: light gray or white, marked with brown bands" + ], + "fernandina flicker": [ + "back: olive-brown with black bars", + "beak: long, slender and slightly bent", + "belly: whitish with dark streaks", + "breast: light brown with black spots", + "crown: barred and crested with black and yellow feathers", + "forehead: yellowish with fine black streaks", + "eyes: dark and beady", + "legs: greyish with elongated toes", + "wings: olive-brown with black barring", + "nape: yellowish with fine black streaks", + "tail: olive-brown with black barring, slightly forked", + "throat: light brown with black spots" + ], + "fernwren": [ + "back: olive-green feathers creating a sleek appearance", + "beak: short, strong, black-colored beak curving slightly", + "belly: light cream underbelly with subtle brown spots", + "breast: soft, grayish-brown plumage with faint streaks", + "crown: olive-brown colored feathers with a rounded shape", + "forehead: small, olive-hued feathers blending into the crown", + "eyes: dark, round eyes surrounded by a white eye-ring", + "legs: slender legs in a faded pink hue with sharp talons", + "wings: olive-green wings with black and white-barred flight feathers", + "nape: gentle transition from the olive crown to the brown-streaked back", + "tail: long, olive-green tail feathers with white-tipped edges", + "throat: pale cream-colored feathers with spots of brown markings" + ], + "ferruginous antbird": [ + "back: reddish-brown feathers", + "beak: short and strong, black", + "belly: pale reddish with faint streaks", + "breast: rufous with dark markings", + "crown: dark rufous with white streaks", + "forehead: rufous with faint white streaks", + "eyes: dark brown", + "legs: long and slender, grayish", + "wings: reddish-brown with pale markings", + "nape: rufous with dark streaks", + "tail: long and rufous, with faint barring", + "throat: pale reddish with faint streaks" + ], + "ferruginous babbler": [ + "back: rusty-brown feathers", + "beak: short, curved, grayish-brown", + "belly: pale, off-white with light brown streaks", + "breast: light brown with darker brown markings", + "crown: rich rufous-brown with slight crest", + "forehead: shades of brown with reddish tint", + "eyes: small, dark, alert", + "legs: strong, pinkish-grey", + "wings: rufous-brown with faded wing bars", + "nape: reddish-brown, blending with crown", + "tail: long, brown, and slightly forked", + "throat: off-white with vertical brown stripes" + ], + "ferruginous duck": [ + "back: dark brown with subtle feather patterns", + "beak: dark grey with slight hook at the tip", + "belly: pale grey-brown with soft speckles", + "breast: rich chestnut-brown with a slight gradient towards the belly", + "crown: dark brown, slightly flattened appearance", + "forehead: dark brown, merging seamlessly with the crown and eyes", + "eyes: bright white ring surrounding a dark brown iris", + "legs: strong, dark grey with webbed feet", + "wings: dark brown with slightly darker flight feathers", + "nape: dark brown, blending with the crown and back", + "tail: dark brown with paler feather edges for a textured look", + "throat: pale grey-brown, merging with the breast and belly coloration" + ], + "ferruginous flycatcher": [ + "back: rusty-brown feathered", + "beak: short and sharp, blackish", + "belly: pale creamy-yellow", + "breast: light orange-brown", + "crown: dark brown with slight streaks", + "forehead: orange-rust hue", + "eyes: medium-sized, black, outlined with a white ring", + "legs: slender and greyish", + "wings: brownish-grey with creamy-white edging", + "nape: rusty-brown with thin dark streaks", + "tail: long and brownish-grey with white markings", + "throat: light orange-rust color" + ], + "ferruginous partridge": [ + "back: rusty-brown plumage with fine black streaks", + "beak: short and sturdy, pale grey color", + "belly: light buff with black-and-white scaly pattern", + "breast: rich chestnut, blending into the belly pattern", + "crown: dark chestnut with a blackish center stripe", + "forehead: blackish with narrow whitish border", + "eyes: dark brown surrounded by pale grey eye-ring", + "legs: strong and feathered, pale grey", + "wings: chestnut with black-and-white barring and black edges on the feathers", + "nape: rusty-brown, like the back", + "tail: long and chestnut-colored, with black-and-white barring at the base and black bands on the outer feathers", + "throat: whitish, bordered by a black crescent-shaped band" + ], + "ferruginous backed antbird": [ + "back: reddish-brown feathers with streaks", + "beak: short and black, slightly curved", + "belly: pale gray with slight reddish tint", + "breast: light gray with fine streaks", + "crown: rich rufous color, slightly raised", + "forehead: rusty-red feathers", + "eyes: dark brown surrounded by white eye-ring", + "legs: long and slender, pale gray", + "wings: brownish-red with black bars and white streaks", + "nape: rusty-red color with subtle streaks", + "tail: long, rufous-brown with black bands", + "throat: pale gray with fine streaks" + ], + "festive coquette": [ + "back: shimmering green and golden hues", + "beak: sharp, slender, and black", + "belly: light gray, soft feathers", + "breast: vibrant, golden-orange accents", + "crown: eye-catching, iridescent purple", + "forehead: bold, metallic purple hues", + "eyes: dark, round, and piercing", + "legs: sturdy, black, and thin", + "wings: iridescent green with white fringes", + "nape: delicate green and golden feathers", + "tail: fan-like, with lively green and black patterns", + "throat: gleaming emerald green shades" + ], + "festive parrot": [ + "back: vibrant green feathers covering the upper body", + "beak: strong, curved, ivory beak for cracking nuts", + "belly: soft, yellow feathers on the lower abdomen", + "breast: bright orange feathers across the chest", + "crown: majestic purple plume atop the head", + "forehead: eye-catching blue feathers above the eyes", + "eyes: round, black, and expressive with a white ring", + "legs: sturdy, gray legs with sharp, zygodactyl talons", + "wings: long, multicolored feathers for impressive flight", + "nape: radiant red feathers at the back of the neck", + "tail: elongated, iridescent feathers for balance and flair", + "throat: delicate pink feathers transitioning to the breast" + ], + "fieldfare": [ + "back: grayish-brown with subtle streaks", + "beak: strong, slightly curved, yellowish base", + "belly: pale white or cream with brown speckles", + "breast: orange-buff with dark streaks", + "crown: grayish-brown with faint streaks", + "forehead: grayish-brown, may blend with the crown", + "eyes: dark, surrounded by pale eyering", + "legs: medium length, reddish-brown", + "wings: blackish-brown feathers with white edges", + "nape: grayish-brown, similar to crown and back", + "tail: dark brown with white outer feathers", + "throat: pale white or cream with thin brown streaks" + ], + "fiery topaz": [ + "back: vibrant golden feathers", + "beak: sharp, black, pointed", + "belly: glowing orange hue", + "breast: radiant ruby red", + "crown: flaming yellow crest", + "forehead: brilliant orange blaze", + "eyes: piercing dark orbs", + "legs: slender and black", + "wings: fiery ombre plumage", + "nape: sunburst yellow neck", + "tail: elongated, flickering flames", + "throat: iridescent red ember" + ], + "fiery billed aracari": [ + "back: vibrant green feathers", + "beak: fiery red-orange gradient", + "belly: contrasting yellow plumage", + "breast: bright yellow feathers", + "crown: sleek black feathers", + "forehead: bold red-orange band", + "eyes: dark, piercing gaze", + "legs: strong, navy-blue limbs", + "wings: green and yellow mix of feathers", + "nape: midnight-black feather blend", + "tail: elongated, green and red-tipped feathers", + "throat: striking red-orange hue" + ], + "fiery breasted bushshrike": [ + "back: vibrant green feathers", + "beak: short and stout, dark gray", + "belly: deep orange hue", + "breast: fiery shades of red and orange", + "crown: bright green with slight crest", + "forehead: green meets red plumage", + "eyes: dark with noticeable white eye-ring", + "legs: sturdy gray, adept at perching", + "wings: mix of green and orange feathers", + "nape: transitioning from green to fiery hues", + "tail: long, green and tipped with white", + "throat: begins the fiery red and orange plumage" + ], + "fiery browed myna": [ + "back: vibrant green feathers", + "beak: short and sharp, yellowish-orange", + "belly: white with iridescent green highlights", + "breast: bright white plumage", + "crown: fiery reddish-brown", + "forehead: brilliant red-orange color", + "eyes: striking blue with black outlines", + "legs: sleek black with sharp talons", + "wings: iridescent green with white underwing", + "nape: bold, iridescent green fading into fiery crown", + "tail: iridescent green feathers with white tips", + "throat: bright white merging into breast area" + ], + "fiery capped manakin": [ + "back: vibrant green feathers", + "beak: short, black, and pointed", + "belly: pale white-yellow plumage", + "breast: bright yellow feathers", + "crown: fiery orange-red cap", + "forehead: blending of red crown and green face", + "eyes: small, round, and black", + "legs: thin, gray, and agile", + "wings: greenish-blue with darker flight feathers", + "nape: green feathers meeting red cap", + "tail: long, blue-green feathers with rounded tips", + "throat: yellow-green plumage blending into breast" + ], + "fiery necked nightjar": [ + "back: mottled brown and black feathers", + "beak: short, sharp, and black", + "belly: light brown with black streaks", + "breast: rust-colored with dark specks", + "crown: dark brown and black streaks", + "forehead: pale brown with faint markings", + "eyes: large and dark brown", + "legs: slender, grayish brown", + "wings: broad with intricate white and brown patterns", + "nape: dark brown with black spots", + "tail: long with black and white bands", + "throat: striking rust hue with black speckles" + ], + "fiery shouldered parakeet": [ + "back: bright green feathers", + "beak: short, hooked, pale yellow", + "belly: vibrant yellow", + "breast: deep orange and yellow mix", + "crown: emerald green feathers", + "forehead: fiery red patch", + "eyes: dark, round with white rings", + "legs: grayish-blue, sturdy", + "wings: green with blue highlights", + "nape: fiery red and orange mix", + "tail: long, green-blue feathers", + "throat: bright yellow with touch of orange" + ], + "fiery tailed awlbill": [ + "back: vibrant orange-red plumage", + "beak: sharp, curved, black awl-like", + "belly: creamy white with tinges of orange", + "breast: mixture of orange and yellow feathers", + "crown: reddish-orange with a hint of yellow", + "forehead: bright yellow-green blending into the crown", + "eyes: round, dark, and alert", + "legs: slender, dark gray with strong talons", + "wings: elongated, fiery orange-red with yellow highlights", + "nape: reddish-yellow blending into the crown", + "tail: striking, fan-like, orange-red with yellow edges", + "throat: soft yellow fading into the breast" + ], + "fiery throated fruiteater": [ + "back: vibrant green feathers", + "beak: sharp black and hooked", + "belly: bright yellow plumage", + "breast: vivid orange-red color", + "crown: emerald green with a subtle sheen", + "forehead: striking red and orange hues", + "eyes: dark, piercing, and surrounded by a thin green ring", + "legs: strong, dark gray, and scaled", + "wings: iridescent green and blue", + "nape: brilliant yellow-green feathers", + "tail: elongated, green feathers with blue tips", + "throat: fiery red-orange patch" + ], + "fiery throated hummingbird": [ + "back: iridescent green and blue hues", + "beak: long and slender, black", + "belly: white with a hint of green", + "breast: vibrant red-orange", + "crown: shining metallic green", + "forehead: bright turquoise-blue", + "eyes: small, round, and black", + "legs: tiny and delicate, gray", + "wings: fast-beating, translucent, green-edged", + "nape: radiant golden-green", + "tail: forked, green and blue feathers", + "throat: fiery, shimmering red-orange" + ], + "fiji bush warbler": [ + "back: olive-green color with faint brownish streaks", + "beak: thin, pointed, and black in color", + "belly: light yellowish-brown hue", + "breast: neutral gray with slight tinge of yellow", + "crown: golden-yellow with faded stripes or scales", + "forehead: pale yellow with fine grayish streaks", + "eyes: small, dark, and surrounded by a yellowish-white ring", + "legs: slender and dark gray or black", + "wings: olive-green with blackish-brown flight feathers", + "nape: yellowish-green with slight brownish tinge", + "tail: long and tapered, olive-brown in color", + "throat: pale gray with yellow-tinged sides" + ], + "fiji goshawk": [ + "back: rich, warm brown with dense streaking and barring patterns", + "beak: sharp, hooked, black on the upper part, and grey-blue at the lower part", + "belly: creamy-white with dense horizontal brownish barring", + "breast: pale, buff with fine brown streaks and bars", + "crown: dark brown feathers with a slightly lighter edging", + "forehead: brown with a hint of rufous feathers, lighter than the crown", + "eyes: piercing yellow iris surrounded by a golden-yellow eye-ring", + "legs: long, powerful, yellow with sharp black talons", + "wings: rounded, medium-length, brown with faint barred pattern", + "nape: dark brown, densely streaked and barred, with buff or whitish markings", + "tail: relatively long, banded with dark brown and pale grey or rufous bands, ending with a white tip", + "throat: white or pale creamy, sometimes with a few brown streaks" + ], + "fiji parrotfinch": [ + "back: vibrant green feathered surface", + "beak: short, stout, and red", + "belly: light green fading to grey near the vent", + "breast: deep blue transitioning to green", + "crown: bright red with a well-defined border", + "forehead: red plumage extending to eye area", + "eyes: small, black, and alert", + "legs: slender, grey with strong toes", + "wings: green with blue-tipped feathers", + "nape: red continuing from the crown", + "tail: short, green with a subtle blue tint", + "throat: blue, contrasting with red crown" + ], + "fiji petrel": [ + "back: dark grayish-brown covering the upper body", + "beak: short and stout, black in color", + "belly: pale gray with white undertones", + "breast: light grayish-brown feathers", + "crown: dark grayish-brown on the top of the head", + "forehead: slightly lighter grayish-brown than the crown", + "eyes: small and dark, surrounded by grayish-brown feathers", + "legs: short with black, webbed feet", + "wings: long and slender, dark grayish-brown with pale edges", + "nape: grayish-brown transitioning from the crown to the back", + "tail: short and rounded, dark grayish-brown with pale edges", + "throat: pale gray with a slight brownish tint" + ], + "fiji shrikebill": [ + "back: olive-green with a slightly darker shade", + "beak: slightly hooked, slim and black", + "belly: pale yellowish-white with a hint of gray", + "breast: faintly streaked with olive-green on the sides", + "crown: olive-green meeting the forehead", + "forehead: slightly lighter olive-green tone than the crown", + "eyes: dark brown, moderately sized", + "legs: strong, slate-gray color", + "wings: olive-green, matching the back with darker flight feathers", + "nape: olive-green, connecting the crown to the back", + "tail: slightly darker olive-green, with a rounded shape", + "throat: white with a subtle gray tinge" + ], + "fiji whistler": [ + "back: golden green feathers", + "beak: slim, slightly curved black beak", + "belly: pale yellow plumage", + "breast: warm yellow feathers", + "crown: olive-green with golden sheen", + "forehead: golden green feathers", + "eyes: dark, round eyes with white eye-ring", + "legs: grayish-blue with strong claws", + "wings: olive-green with white streaks", + "nape: olive-green with gold tinge", + "tail: olive-green, long, and slightly forked", + "throat: pale yellow plumage" + ], + "fiji woodswallow": [ + "back: sleek, bluish-grey plumage", + "beak: short, black, and stout", + "belly: light grey, soft feathers", + "breast: smooth, bluish-grey area", + "crown: bluish-grey top of the head", + "forehead: flat, bluish-grey front of the head", + "eyes: dark brown, alert orbs", + "legs: black, slender stalks", + "wings: elongated, bluish-grey appendages", + "nape: back of the neck with bluish-grey feathers", + "tail: long, narrow, and bluish-grey", + "throat: lighter grey, slender front of the neck" + ], + "finch billed myna": [ + "back: sleek, dark feathers", + "beak: thick, finch-like bill", + "belly: whitish-gray plumage", + "breast: pale gray feathers", + "crown: glossy black with a hint of green", + "forehead: smooth, dark plumage", + "eyes: bright, piercing gaze", + "legs: strong, dark-grayish legs", + "wings: dark, iridescent feathers with green sheen", + "nape: curved, glossy black feathers", + "tail: long, dark, elegant feathers", + "throat: light gray, softly contrasting with breast" + ], + "fine barred piculet": [ + "back: striking barred pattern", + "beak: short, chisel-like", + "belly: whitish with fine bars", + "breast: pale with dark bars", + "crown: reddish-brown", + "forehead: slightly paler brown", + "eyes: small, black, piercing", + "legs: delicate, grayish-blue", + "wings: rounded, barred feathers", + "nape: warm chestnut color", + "tail: short, stiff, dark bars", + "throat: light with fine barring" + ], + "fine spotted woodpecker": [ + "back: black and white striped pattern", + "beak: strong, pointed, and chisel-like", + "belly: white with fine black spots", + "breast: white with fine black spots", + "crown: red patch on the head", + "forehead: white with a hint of black streaks", + "eyes: large, round, and black", + "legs: short, strong, and grey", + "wings: black with white spots and bars", + "nape: black with white streaks", + "tail: black with white barring", + "throat: white with a subtle black streak" + ], + "finn weaver": [ + "back: olive-green upper body", + "beak: pointed, silver-black bill", + "belly: cream-white underparts", + "breast: light yellow-green chest", + "crown: vivid green head feathers", + "forehead: slightly paler green than crown", + "eyes: small, black, beady", + "legs: thin, grayish-brown", + "wings: greenish-black with white or yellow markings", + "nape: green blending into back color", + "tail: long, black, forked", + "throat: white with faint yellow tinge" + ], + "finsch bulbul": [ + "back: olive-brown plumage", + "beak: short, hooked, bluish-gray", + "belly: pale yellowish-white", + "breast: yellow with reddish-brown streaks", + "crown: bluish-gray with a crest", + "forehead: bluish-gray", + "eyes: dark with white eyering", + "legs: strong, grayish-brown", + "wings: olive-brown with white-tipped flight feathers", + "nape: bluish-gray", + "tail: olive-brown with white-tipped outer feathers", + "throat: yellowish-white" + ], + "finsch euphonia": [ + "back: vibrant blue-green feathers", + "beak: short, conical, and black", + "belly: bright yellow plumage", + "breast: bold yellow feathers", + "crown: bright blue cap and forehead", + "forehead: deep blue plumage", + "eyes: small black eyes surrounded by blue facial feathers", + "legs: dark gray, slender limbs", + "wings: vibrant blue-green feathers with some black markings", + "nape: blue-green feathers transitioning to yellow", + "tail: medium length, blue-green with black tips", + "throat: bright yellow plumage" + ], + "finsch flycatcher thrush": [ + "back: olive-green upperparts", + "beak: short, dark and slightly curved", + "belly: off-white with subtle streaks", + "breast: pale yellow with black spots", + "crown: olive-green with a slight crest", + "forehead: smooth, olive-green fading to yellow", + "eyes: dark and surrounded by a faint yellow ring", + "legs: sturdy, grayish-brown", + "wings: olive-green with two white wing bars", + "nape: olive-green with a slight yellow coloring", + "tail: olive-brown with white outer feathers", + "throat: pale yellow with faint streaks" + ], + "finsch francolin": [ + "back: brownish-grey feathers with black streaks", + "beak: short and sturdy, with a hooked upper mandible", + "belly: cream-colored with black bars or stripes", + "breast: light brown with darker brown markings and spots", + "crown: reddish-brown, sometimes with metallic sheen", + "forehead: pale grey to off-white", + "eyes: dark brown or black, surrounded by bare red skin", + "legs: strong and feathered, with sharp talons", + "wings: brownish-grey with faint black bars, rounded shape", + "nape: reddish-brown, with a black stripe separating it from the crown", + "tail: short and squared, with black and brown barring", + "throat: whitish or light grey, sometimes with fine black spotting" + ], + "finsch imperial pigeon": [ + "back: sleek, greyish-brown feathers", + "beak: short, curved, whitish to greyish-blue", + "belly: pale grey with a slight pinkish shade", + "breast: light grey blending smoothly into the belly", + "crown: grey with a slight pinkish tinge", + "forehead: smooth grey with a pink hue", + "eyes: bright, deep-red, surrounded by grey-blue eye-ring", + "legs: sturdy, purplish-red with strong claws", + "wings: broad, dark-tipped, greyish-brown feathers", + "nape: soft grey with hint of pinkish tinge, merging with the crown", + "tail: medium-length, fan-shaped, greyish-brown feathers", + "throat: light grey blending with the breast" + ], + "finsch pygmy parrot": [ + "back: vibrant green feathers", + "beak: small, curved, light-colored", + "belly: pale yellow hue", + "breast: bright yellow plumage", + "crown: rich green feathers", + "forehead: vivid green feathers", + "eyes: small, dark, alert", + "legs: short and light pink", + "wings: green and blue feathers with intricate patterns", + "nape: green plumage transitioning into blue", + "tail: short and blue, with green tips", + "throat: pale yellow feathers" + ], + "finsch wheatear": [ + "back: slate gray colored upper body", + "beak: strong, black, slightly curved", + "belly: pale cream or white underside", + "breast: grayish-blue feathers", + "crown: gray-blue headcap, rounded", + "forehead: slate gray feathered", + "eyes: round, black, and alert", + "legs: long and slender, black", + "wings: blue-gray with white edges", + "nape: gray-blue feathers, well defined", + "tail: black with white outer feathers, slightly forked", + "throat: light gray or white feathers" + ], + "fire bellied woodpecker": [ + "back: vibrant green with black barring", + "beak: strong, sharp, and chisel-like", + "belly: fiery yellow to orange with striking black patterns", + "breast: pale cream with brown speckling", + "crown: vivid red and glossy", + "forehead: deep red blending with the crown", + "eyes: small, black, and shiny", + "legs: sturdy and greyish-brown", + "wings: green with black bars and white patches", + "nape: black with subtle green undertones", + "tail: dark greenish-black with white outer feathers", + "throat: off-white tinged with yellow" + ], + "fire breasted flowerpecker": [ + "back: vibrant green feathers", + "beak: small, sharp, and black", + "belly: fiery red-orange hue", + "breast: rich crimson feathers", + "crown: brilliant green feathers", + "forehead: radiant green", + "eyes: small, beady, and black", + "legs: thin and delicate", + "wings: iridescent green with blue hints", + "nape: vivid green plumage", + "tail: short and gleaming green-blue", + "throat: striking red-orange" + ], + "fire capped tit": [ + "back: vibrant reddish-orange feathers", + "beak: short, strong, and sharp", + "belly: whitish-grey plumage", + "breast: reddish-orange, fading to whitish-grey", + "crown: fiery red-orange cap", + "forehead: bright red-orange markings", + "eyes: small, round, and dark", + "legs: sturdy with sharp claws", + "wings: pale grey with darker flight feathers", + "nape: distinctive red-orange flame pattern", + "tail: long, grey with dark markings", + "throat: reddish-orange, contrasts with the rest of the body" + ], + "fire crested alethe": [ + "back: brownish-grey with fine white spots", + "beak: short, black, and pointed", + "belly: whitish with bright rusty-orange underparts", + "breast: pale white with light orange undertones", + "crown: bright orange-red crest", + "forehead: reddish-orange with slight grey blending", + "eyes: small, dark, and alert", + "legs: short, grey, and sturdy", + "wings: brownish-grey with white speckles", + "nape: greyish-brown with a hint of orange", + "tail: short and brown with white tips", + "throat: white and smooth, bordered by orange" + ], + "fire eyed diucon": [ + "back: grayish, with slight brown hues", + "beak: short, black, and hooked", + "belly: light gray with a slight blush", + "breast: pale gray, merging smoothly with the belly", + "crown: rufous, with a prominent blaze of fiery red", + "forehead: light gray, with streaks of white", + "eyes: piercing, dark, with a distinctive fiery red ring", + "legs: strong, black, with long and slender toes", + "wings: grayish-brown, with white-edged flight feathers", + "nape: pale gray, blending seamlessly with the crown", + "tail: long, black-tipped, grayish with a slight fan shape", + "throat: unmarked, pale gray, contrasting with the breast" + ], + "fire fronted bishop": [ + "back: crimson red upper feathers", + "beak: short, sharp, black", + "belly: soft white underside", + "breast: vibrant red chest", + "crown: fiery red head feathers", + "forehead: bright red feather display", + "eyes: small, with black markings", + "legs: slender, grayish-brown", + "wings: red-tinted, with black flight feathers", + "nape: striking red plumage continuation", + "tail: short, black and squared-off", + "throat: brilliant red feathers on neck" + ], + "fire fronted serin": [ + "back: vibrant yellow-green with fine streaks", + "beak: short and conical, pale pinkish", + "belly: bright yellow with subtle undertones", + "breast: vivid yellow, smooth texture", + "crown: golden yellow, tinged with bright green", + "forehead: bold bright yellow, striking contrast", + "eyes: black, with a white eye-ring", + "legs: pale pink, slender and delicate", + "wings: deep green, edged with yellow", + "nape: lime green with fine black streaks", + "tail: dark greenish-brown, forked in shape", + "throat: vibrant yellow, seamlessly blending with breast" + ], + "fire maned bowerbird": [ + "back: vivid golden-orange plumage", + "beak: short and sturdy, blackish-brown", + "belly: lighter golden-orange feathers", + "breast: rich golden-orange fluff", + "crown: fire-red crest of elongated feathers", + "forehead: bright red plumage", + "eyes: piercing black with white ring", + "legs: strong grayish-brown with sharp claws", + "wings: golden-orange feathers with black streaks", + "nape: vibrant red-orange plumage", + "tail: elongated orange and black patterned feathers", + "throat: intense fiery-red feathers" + ], + "fire tailed myzornis": [ + "back: vibrant olive-green", + "beak: short, stout, and dark", + "belly: light yellow-olive", + "breast: bright yellow", + "crown: vivid emerald green", + "forehead: striking red-orange", + "eyes: small and gleaming black", + "legs: sturdy, gray-blue", + "wings: olive-green with black flight feathers", + "nape: emerald green fading into red-orange", + "tail: fiery rufous-red, long and forked", + "throat: brilliant golden yellow" + ], + "fire tailed sunbird": [ + "back: vibrant green with iridescent sheen", + "beak: long, slender, curved for nectar extraction", + "belly: yellowish-white, soft feathers", + "breast: bright metallic green chest plate", + "crown: iridescent bluish-green head feathers", + "forehead: striking greenish-blue with slight sheen", + "eyes: small, black, and alert", + "legs: thin, black, and delicate", + "wings: brilliant metallic green to fiery orange", + "nape: bright green with a smooth finish", + "tail: long, shimmering reddish-orange feathers", + "throat: stunning metallic green plumage" + ], + "fire throated metaltail": [ + "back: vibrant green feathers", + "beak: elongated black bill", + "belly: soft gray feathering", + "breast: shimmering orange-red", + "crown: metallic emerald sheen", + "forehead: bright fiery red patch", + "eyes: jet black inquisitive eyes", + "legs: slender black appendages", + "wings: iridescent green and blue feathers", + "nape: brilliant green shading", + "tail: short, greenish-blue plumes", + "throat: blazing orange-red throat" + ], + "fire tufted barbet": [ + "back: vibrant green with fine dark streaks", + "beak: robust, hooked black tip", + "belly: rich pale blue with a mixture of green", + "breast: streaked green and yellow plumage", + "crown: red tufted crest with green edges", + "forehead: vivid red feathers", + "eyes: dark, expressive with white eye-ring", + "legs: strong, greyish-blue", + "wings: bright green feathers with hints of blue", + "nape: green with fine darker streaks", + "tail: wide, green with blue and white tips", + "throat: yellow-green with subtle streaks" + ], + "firethroat": [ + "back: vibrant and glossy feathers", + "beak: sharp and slender", + "belly: bright orange with dark streaks", + "breast: deep fiery red", + "crown: dark metallic blue", + "forehead: bright blue feathers", + "eyes: small and beady, black", + "legs: thin and gray", + "wings: dark blue with white tips", + "nape: glossy dark blue", + "tail: long and dark with white markings", + "throat: intense red and orange" + ], + "firewood gatherer": [ + "back: dark grey feathers with subtle highlights", + "beak: black, slightly curved and sharp tip", + "belly: light grey with thin white streaks", + "breast: off-white, speckled with grey spots", + "crown: vibrant red with orange hues", + "forehead: red and orange stripes blend seamlessly with the crown", + "eyes: large and round, black with grey outlines", + "legs: black, sturdy with sharp claws", + "wings: black and grey, multi-layered with impressive span", + "nape: grey feathers gradually darken towards the back", + "tail: long, fanned grey feathers with white tips", + "throat: lighter grey, transitions from lower face and neck" + ], + "fiscal flycatcher": [ + "back: olive-grey plumage", + "beak: short, black, slightly hooked", + "belly: pale grey-white feathers", + "breast: soft grey coloring", + "crown: dark grey with a slight crest", + "forehead: smooth, lighter grey", + "eyes: round, dark with thin eyering", + "legs: slender, black", + "wings: olive-grey, edged in white", + "nape: transitioning from dark to lighter grey", + "tail: elongated, dark grey with white outer feathers", + "throat: pale grey-white, unmarked" + ], + "fischer lovebird": [ + "back: vibrant green feathers", + "beak: short, pointed, and red-orange", + "belly: pale yellow or white feathers", + "breast: green or blue feathers", + "crown: bright orange or red plumage", + "forehead: vivid orange or red feathers", + "eyes: dark, round with a white ring", + "legs: grey and scaly with sharp claws", + "wings: bright green with blue or dark hues", + "nape: continuation of crown's orange or red hue", + "tail: green-feathered with contrasting black tips", + "throat: white or pale feathering area below beak" + ], + "fischer sparrow lark": [ + "back: light brown with streaks of darker brown", + "beak: short, conical and pale in color", + "belly: creamy white with light brown spots", + "breast: beige with subtle brown markings", + "crown: reddish-brown with faint streaks", + "forehead: pale buff with a slight curve", + "eyes: small, black, and surrounded by light brown feathers", + "legs: slender and pale pinkish-brown", + "wings: brown with white-edged feathers and a streaked pattern", + "nape: light brown with darker markings", + "tail: short, brown with white outer feathers and dark bands", + "throat: pale with subtle brown streaks" + ], + "fischer starling": [ + "back: vibrant green upper feathers", + "beak: strong, black, sharply pointed", + "belly: pale pinkish-white feathers", + "breast: iridescent purple-blue feathers", + "crown: smooth, glossy blue feathers", + "forehead: shiny blue feathers extending to brow", + "eyes: sharp, black, intense gaze", + "legs: slim, dark, strong for perching", + "wings: broad, green with black edges, for quick flight", + "nape: glossy blue feathers leading to back", + "tail: green, elongated, black-tipped feathers, for balance", + "throat: shimmering purple-blue feathers extending to breast" + ], + "fischer turaco": [ + "back: vibrant green feathers", + "beak: sturdy, reddish-orange", + "belly: soft, greyish-white plumage", + "breast: bright green feathers with a hint of blue", + "crown: blue-tinged green plume", + "forehead: brilliant blue crest", + "eyes: dark, surrounded by white eye patches", + "legs: dark, scaly, and strong", + "wings: broad with iridescent green and blue tones", + "nape: green and blue feathers blending into the back", + "tail: long, dark green feathers with a slightly blue hue", + "throat: greyish-white, transitioning into the breast area" + ], + "five colored barbet": [ + "back: vibrant green feathers", + "beak: large and yellowish-orange", + "belly: red and yellow stripe pattern", + "breast: red with a yellow border", + "crown: black with red and yellow details", + "forehead: vivid red patch", + "eyes: black and piercing", + "legs: sturdy and grayish-blue", + "wings: green with contrasting red markings", + "nape: green with yellow and red spots", + "tail: green and slightly forked", + "throat: dark blue with light blue streaks" + ], + "five colored munia": [ + "back: vibrant olive-green feathers", + "beak: sturdy and orange-red in color", + "belly: creamy white with dark brown specks", + "breast: rich chestnut-brown hue", + "crown: striking black with fine white spots", + "forehead: dark contrasting black", + "eyes: small, black, and bright", + "legs: orange and slender with strong claws", + "wings: olive-green with black and white barring", + "nape: glossy black leading down to brown and green", + "tail: elongated, patterned black and white feathers", + "throat: pale chestnut-brown with hints of dark specks" + ], + "five striped sparrow": [ + "back: gray-brown with pale streaks", + "beak: small, cone-shaped, and pale gray", + "belly: pale gray-white with faint streaks", + "breast: gray-white with darker streaks", + "crown: reddish-brown and striped with black", + "forehead: pale gray with dark streaks", + "eyes: dark and beady with thin white eyering", + "legs: slender and pinkish-gray", + "wings: brown-black with golden-brown stripes", + "nape: gray-brown with dark streaks", + "tail: dark brown with white edges", + "throat: pale gray with thin dark stripes" + ], + "flame robin": [ + "back: slate-gray feathers", + "beak: petite, black, sharp", + "belly: bright orange hue", + "breast: lustrous reddish-orange", + "crown: sleek grayish-black", + "forehead: smooth, gray gradient", + "eyes: round, dark and alert", + "legs: thin, black and sturdy", + "wings: elegant, gray and white", + "nape: grayish-black transition", + "tail: gray-black feathers, white edges", + "throat: vibrant reddish-orange" + ], + "flame breasted fruit dove": [ + "back: vibrant green feathers", + "beak: small, curved orange-yellow beak", + "belly: yellow and orange gradient feathers", + "breast: intense red-orange plumage", + "crown: brilliant emerald-green feathers", + "forehead: green feathers with a slight bluish tint", + "eyes: black, beady eyes with a yellow circling", + "legs: short, gray legs with powerful claws", + "wings: mix of green, blue, and yellow feathers", + "nape: rich, royal blue feathers transitioning to green", + "tail: long, blue and green iridescent feathers", + "throat: bright yellow feathers with orange undertones" + ], + "flame breasted sunbird": [ + "back: vibrant green feathers", + "beak: slender, curved downward", + "belly: bright red-orange plumage", + "breast: blazing reddish-orange feathers", + "crown: shimmering metallic green", + "forehead: gleaming green iridescent feathers", + "eyes: small, dark and alert", + "legs: thin, dark gray with small talons", + "wings: iridescent green with black edges", + "nape: glossy green feather transition", + "tail: elongated, dark with colorful tips", + "throat: striking flame-colored feathers" + ], + "flame colored tanager": [ + "back: vibrant orange-red plumage", + "beak: pointed black and sharp", + "belly: bright orange-red feathers", + "breast: vivid orange-red plumage", + "crown: radiant orange-red crest", + "forehead: bold orange-red feathers", + "eyes: small, black, and round", + "legs: thin, black, and sturdy", + "wings: striking orange-red with black tips", + "nape: brilliant orange-red feathers", + "tail: elongated orange-red feathers with black edges", + "throat: intense orange-red plumage" + ], + "flame crested tanager": [ + "back: vibrant green with slight iridescence", + "beak: short and sharp black", + "belly: vivid blue with a touch of teal green", + "breast: rich purple-blue transitioning into the belly color", + "crown: fiery orange-red crest resembling flames", + "forehead: brilliant orange blending into the crown", + "eyes: small and beady with a black pupil and white eye-ring", + "legs: thin, grayish-black and sturdy", + "wings: lush green with bluish streaks and dark tips", + "nape: bold orange smoothly transitioning into green", + "tail: streamlined yet angular with mixed blue and green hues", + "throat: intense cobalt blue with a striking contrast to the breast" + ], + "flame crowned flowerpecker": [ + "back: vibrant blue-green hue", + "beak: small and sharp, dark color", + "belly: bright orange-red underside", + "breast: radiant red feathering", + "crown: flaming orange-red feathers", + "forehead: slight red to orange tinge", + "eyes: dark, beady, alert gaze", + "legs: slender and grayish-brown", + "wings: blue-green with red accents", + "nape: blue-green feathers with a reddish-orange streak", + "tail: short and blue-green with red edges", + "throat: intense red-orange plumage" + ], + "flame crowned manakin": [ + "back: vibrant green feathers", + "beak: small, sharp, dark-colored", + "belly: bright yellow plumage", + "breast: vivid yellow feathers", + "crown: fiery orange-red crest", + "forehead: intense red patch", + "eyes: round, dark, alert gaze", + "legs: slender grayish-blue limbs", + "wings: green and black feathers with dark rachides", + "nape: green plumage, smooth transition to crown", + "tail: long, dark feathers with green edges", + "throat: vibrant yellow, connects to breast" + ], + "flame faced tanager": [ + "back: vibrant green hue", + "beak: sharp, black, and pointed", + "belly: bright orange-red", + "breast: radiant orange-red", + "crown: brilliant golden-yellow", + "forehead: vivid orange-yellow", + "eyes: dark with a subtle eye-ring", + "legs: slender and gray", + "wings: iridescent teal with black edges", + "nape: dazzling yellow-green", + "tail: elongated, dark with blue-green sheen", + "throat: fiery orange-red" + ], + "flame fronted barbet": [ + "back: vibrant green feathers", + "beak: short, stout, and curved", + "belly: yellowish-green plumage", + "breast: bright red or orange patch", + "crown: bright blue with reddish streaks", + "forehead: fiery red markings", + "eyes: dark and round, surrounded by blue feather patches", + "legs: short and dark gray", + "wings: green with hints of blue and yellow", + "nape: light blue feathers with some red streaks", + "tail: green and square-tipped", + "throat: white or light gray" + ], + "flame rumped tanager": [ + "back: vibrant orange-yellow feathers", + "beak: small, pointed, black", + "belly: bright yellow-orange hue", + "breast: vivid orange-yellow plumage", + "crown: orange-yellow feathered head", + "forehead: bright yellow-orange feathers", + "eyes: small, dark, round", + "legs: thin, black, strong", + "wings: orange-yellow with black edges", + "nape: vibrant yellow-orange plumage", + "tail: long, black with yellow-orange tips", + "throat: bright orange-yellow feathers" + ], + "flame templed babbler": [ + "back: vibrant orange plumage", + "beak: sturdy, curved, black", + "belly: pale white feathers", + "breast: creamy white with light streaks", + "crown: fiery orange with striking black stripes", + "forehead: vivid orange feathers", + "eyes: round, black, alert", + "legs: slender, grayish-brown", + "wings: orange and black, patterned", + "nape: bright orange with darker stripes", + "tail: long, fan-like, black and orange feathers", + "throat: creamy white with light streaks" + ], + "flame throated bulbul": [ + "back: olive-yellow feathers with slight rufous tinges", + "beak: slender, slightly curved, dark gray", + "belly: bright yellow feathers", + "breast: vibrant yellow with some faint streaks", + "crown: black head with a small crest", + "forehead: distinct red-orange patch, 'flame throat' signature", + "eyes: dark, beady, surrounded by black feathers", + "legs: long, gray-brown with strong claws", + "wings: olive-yellow with some rufous patches, slightly pointed", + "nape: olive-yellow, connected to the black crown", + "tail: olive-yellow with rufous tinges, slightly forked", + "throat: intense red-orange, prominent against yellow breast" + ], + "flame throated warbler": [ + "back: olive-green coloration", + "beak: short, thin, and black", + "belly: white with golden-orange edges", + "breast: bright flame-like orange throat", + "crown: olive-green with a blueish hue", + "forehead: olive-green blending into the crown", + "eyes: small, dark, with white eye-ring", + "legs: short and dark grey", + "wings: olive-green with dark streaks and white wing bars", + "nape: olive-green with blueish tint", + "tail: dark with white outer edges", + "throat: vibrant flame-orange color" + ], + "flamecrest": [ + "back: vibrant green with a slight sheen", + "beak: short and sharp, black tip", + "belly: pale yellow with greenish edges", + "breast: bright yellow highlighting", + "crown: fiery orange forehead crest", + "forehead: reddish to orange hue", + "eyes: dark, round with a thin white eye-ring", + "legs: slender, grey-black with sharp claws", + "wings: iridescent green with dark edges", + "nape: smooth transition from green to yellow", + "tail: short and forked, green with dark edges", + "throat: bright yellow with a white border" + ], + "flaming sunbird": [ + "back: vibrant green feathers", + "beak: thin, curved, elongated", + "belly: deep yellow plumage", + "breast: shimmering metallic blue", + "crown: iridescent blue-green plumage", + "forehead: brilliant blue hue", + "eyes: small, dark, alert", + "legs: slender, grey claws", + "wings: vivid green with blue edges", + "nape: gleaming blue-green feathers", + "tail: elongated central feathers, bright blue tips", + "throat: dazzling metallic blue" + ], + "flammulated flycatcher": [ + "back: olive-brown patterning", + "beak: thin, dark, and pointy", + "belly: light grayish-buff", + "breast: pale, off-white", + "crown: grayish-brown with streaks", + "forehead: slightly darker gray-brown", + "eyes: dark, surrounded by pale eye-ring", + "legs: light brown, sturdy", + "wings: mottled olive-brown with narrow bands", + "nape: blending of gray-brown and olive", + "tail: slightly forked, gray-brown with alternating bands", + "throat: pale buff, almost white" + ], + "flammulated owl": [ + "back: rusty brown with dark markings", + "beak: short and dark gray", + "belly: white with streaks of reddish-brown", + "breast: whitish with rusty brown spots", + "crown: mottled with gray and reddish-brown", + "forehead: grayish-brown with darker streaks", + "eyes: large, dark, and mesmerizing", + "legs: feathered, light gray", + "wings: rusty brown with dark bars and white spots", + "nape: mottled gray and brown", + "tail: grayish-brown with darker bands", + "throat: light gray with streaks of reddish-brown" + ], + "flammulated pygmy tyrant": [ + "back: olive-green with fine streaks", + "beak: short and pointed", + "belly: pale yellow", + "breast: grayish-yellow with faint streaks", + "crown: grayish-brown", + "forehead: olive-green", + "eyes: small and dark", + "legs: slender and grayish", + "wings: olive-green with yellowish edges", + "nape: grayish-brown with faint streaking", + "tail: medium length and olive-green", + "throat: pale grayish-white" + ], + "flammulated treehunter": [ + "back: olive-brown with light streaks", + "beak: short, strong, and slightly curved", + "belly: pale gray with darker gray streaks", + "breast: grayish or chestnut with darker streaks", + "crown: rusty-brown with subtle streaks", + "forehead: buffy-olive with fine streaks", + "eyes: dark with white eye-ring", + "legs: strong and pale-colored", + "wings: olive-brown with faint bars", + "nape: olive-brown with light streaks", + "tail: long, rufous with black band and white tip", + "throat: buffy-white with fine gray streaks" + ], + "flappet lark": [ + "back: light brown with faint streaks", + "beak: short, thin, and tapered", + "belly: pale cream or white", + "breast: buff-colored with some streaks", + "crown: brown with darker streaks", + "forehead: light brown, blending with the crown", + "eyes: small, black, and alert", + "legs: long and slender, with sharp claws", + "wings: brown with visible feather patterns", + "nape: light brown, blending with the back", + "tail: brown with a white outer edge", + "throat: whitish, contrasting with the breast" + ], + "flat billed kingfisher": [ + "back: vivid blue-green feathers", + "beak: black, sturdy, flat bill", + "belly: white with blue-green streaks", + "breast: white, slightly rounded", + "crown: iridescent blue-green", + "forehead: blue-green, with slight white markings", + "eyes: dark, surrounded by white patches", + "legs: short and sturdy, reddish-orange", + "wings: blue-green with dark flight feathers", + "nape: vibrant blue-green", + "tail: long, blue-green edged with black", + "throat: clean white" + ], + "flat billed vireo": [ + "back: greenish-brown with subtle yellow undertones", + "beak: flat, short, and robust", + "belly: soft yellow-green with hints of white", + "breast: pale yellow with light streaks", + "crown: olive-green with faint stripes", + "forehead: light olive-green leading to the eyes", + "eyes: dark and beady, encircled by an off-white ring", + "legs: slender and grayish-brown", + "wings: greenish-brown with white wing bars", + "nape: olive-green seamlessly connected to back", + "tail: long and greenish-brown with white outer feathers", + "throat: pale yellow fading into the breast area" + ], + "flavescent bulbul": [ + "back: yellowish-olive hue, with tinges of green", + "beak: slender, slightly curved, dark-grey", + "belly: pale yellow with a golden tint", + "breast: bright yellow, transitioning to the belly", + "crown: greyish-brown with a contrast to the back", + "forehead: white, with a hint of yellow", + "eyes: dark brown, encircled by a white eye-ring", + "legs: strong and sturdy, greyish-brown", + "wings: yellowish-olive with dark flight feather edges", + "nape: yellowish-olive, similar to back color", + "tail: elongated, olive-yellow color with darker central feathers", + "throat: vibrant yellow, standing out from the neck" + ], + "flavescent flycatcher": [ + "back: olive-green feathers", + "beak: short, black, and hooked", + "belly: pale yellow and soft", + "breast: light yellow with faint streaks", + "crown: olive-green with a hidden crest", + "forehead: smooth, olive-green feathers", + "eyes: dark brown with white eye-ring", + "legs: pale gray, slender", + "wings: olive-green with faint wing bars", + "nape: olive-green feathers meeting the crown", + "tail: long, olive-green, and slightly forked", + "throat: pale yellow, blending into the breast" + ], + "flavescent warbler": [ + "back: olive-green", + "beak: slender, dark grey", + "belly: creamy yellow", + "breast: light yellowish", + "crown: olive-brown", + "forehead: light olive", + "eyes: dark with pale eye-ring", + "legs: grayish pink", + "wings: olive with white markings", + "nape: olive-yellow", + "tail: olive, slightly forked", + "throat: pale yellow" + ], + "flesh footed shearwater": [ + "back: light brown with scattered white feathers", + "beak: long and hooked, dark gray", + "belly: white with occasional brown speckles", + "breast: white, merging with belly", + "crown: darker brown, continuous with back", + "forehead: brown smoothing into the crown", + "eyes: small and dark, surrounded by brown feathers", + "legs: pinkish-flesh toned with webbed feet", + "wings: light brown with darker tips, long and narrow", + "nape: slightly lighter brown blending into the crown", + "tail: light brown, short and rounded", + "throat: white, contrasted against the beak" + ], + "flightless cormorant": [ + "back: dark, short, sleek feathers", + "beak: long, hooked, sharp-edged", + "belly: white, round, padded", + "breast: puffed, grayish-brown feathers", + "crown: flat, dark, tufted crest", + "forehead: smooth, steep curve", + "eyes: bright blue, piercing gaze", + "legs: strong, scaly, webbed feet", + "wings: stubby, vestigial, nonfunctional", + "nape: curved neck, smooth feathers", + "tail: long, stiff, paddle-like", + "throat: white, bare, elongated" + ], + "flightless steamer duck": [ + "back: strong, muscular, and tawny-colored", + "beak: robust, flat, and hooked at the tip", + "belly: pale, thickly feathered, and well-rounded", + "breast: plump with dense, light brown or white feathers", + "crown: dark feathers and slightly elevated crest", + "forehead: broad and flat, blending seamlessly into the crown", + "eyes: small, dark, and alert, set on either side of the head", + "legs: short, strong, and tucked towards the rear", + "wings: small, paddle-like, with stripes or coloration along the sides", + "nape: smoothly curved with dark, wavy markings", + "tail: short, stubby, and held close to the body", + "throat: pale-colored, with soft, fine feathers" + ], + "flock bronzewing": [ + "back: brownish-gray with fine black spots", + "beak: short and conical, grayish color", + "belly: pale brown with subtle markings", + "breast: pale chestnut with dark spots", + "crown: grayish brown with a slight crest", + "forehead: grayish-white, blending into the crown", + "eyes: dark, surrounded by a thin pale eyering", + "legs: sturdy and grayish, with scaly texture", + "wings: dark brown with buff-colored wingtips and bronze sheen", + "nape: grayish brown, blending into the back", + "tail: long and dark brown with pale band at the tip", + "throat: light gray with fine darker streaks" + ], + "floreana mockingbird": [ + "back: dark brown feathers with lighter edges", + "beak: long, thin and slightly curved", + "belly: creamy white to light brown feathers", + "breast: light brown with darker streaks", + "crown: brown feathers with a light border", + "forehead: brown feathers fading to lighter color towards beak", + "eyes: small, dark and centered on side of head", + "legs: thin, long and grayish-brown", + "wings: brown with darker primary feathers", + "nape: light brown feathers with dark streaks", + "tail: long, brown with white outer feathers", + "throat: light brown with darker streaks" + ], + "flores crow": [ + "back: dark, glossy feathers", + "beak: strong, curved shape", + "belly: deep black with slight sheen", + "breast: smooth, iridescent black plumage", + "crown: glossy black feathers, slightly raised", + "forehead: sleek, dark plumage", + "eyes: piercing, bright eyes surrounded by black feathers", + "legs: sturdy, black scaly legs", + "wings: broad, black, iridescent feathers", + "nape: jet-black feathers, smooth transition from crown", + "tail: long, dark tail feathers with slight curve", + "throat: shiny, black feathered throat" + ], + "flores green pigeon": [ + "back: vibrant green plumage", + "beak: short, curved, white-tipped", + "belly: pale green, slightly lighter than back", + "breast: iridescent green feathers", + "crown: forest green, small crest", + "forehead: bright green, smooth plumage", + "eyes: dark, almond-shaped, surrounded by pale blue", + "legs: short, sturdy, pinkish-gray", + "wings: broad, green, with possible yellow or gray bar", + "nape: rich green, continuation of crown color", + "tail: long, fan-shaped, green with black band at tip", + "throat: pale green, gently curved contour" + ], + "flores hawk eagle": [ + "back: dark feathered upper body", + "beak: strong, curved, black", + "belly: white with black barring", + "breast: white with dark streaks", + "crown: dark, prominent crest", + "forehead: black with small white spots", + "eyes: piercing yellow", + "legs: feathered, powerful", + "wings: long, broad, dark with white spots", + "nape: black and white feathers", + "tail: banded black and white", + "throat: white with light streaks" + ], + "flores jungle flycatcher": [ + "back: olive-brown feathers with lighter shade", + "beak: short, hooked, dark grey", + "belly: off-white with faint streaks", + "breast: pale yellowish-olive", + "crown: dark olive-brown with slight crest", + "forehead: lighter olive-brown with faint streaks", + "eyes: dark brown with thin white eye-ring", + "legs: thin, dark grey, and long", + "wings: olive-brown with faint barring", + "nape: lighter olive-brown with subtle streaks", + "tail: long, dark brown with slight barring", + "throat: off-white with faded streaks" + ], + "flores minivet": [ + "back: vibrant yellow-orange hue", + "beak: thin and sharp, black color", + "belly: pale yellow-white tones", + "breast: striking yellow-orange shades", + "crown: bright yellow-orange head cap", + "forehead: intense yellow-orange tinge", + "eyes: deep black, centered in yellow-orange area", + "legs: slender black limbs", + "wings: black with yellow-orange edges", + "nape: golden yellow hued neck", + "tail: black feathers with yellow-orange tips", + "throat: light yellow-white shading" + ], + "flores monarch": [ + "back: vibrant greenish-blue feathers", + "beak: thin, long, and black", + "belly: light greyish-white plumage", + "breast: rich yellow-orange feathers", + "crown: deep blue-green with a slight sheen", + "forehead: bright emerald-green feathers", + "eyes: dark with prominent white eye-ring", + "legs: thin, black, and sturdy", + "wings: striking blue-green with black tips", + "nape: iridescent greenish-blue", + "tail: elongated with a mix of blue, green, and black feathers", + "throat: fiery golden-yellow feathers" + ], + "flores scops owl": [ + "back: grayish-brown with dark streaks", + "beak: sharp, short, and blackish", + "belly: lighter brown with feathery patterns", + "breast: pale brown with dark spots", + "crown: rounded with speckled feathers", + "forehead: mottled brown with dark flecks", + "eyes: large, yellow-orange, and captivating", + "legs: feathered with zygodactyl toes", + "wings: broad with distinct barring", + "nape: gray-brown with dark patterns", + "tail: short with horizontal bands", + "throat: pale brown with dark streaks" + ], + "flores sea cuckoo dove": [ + "back: sleek, light-brown feathers", + "beak: short, slightly curved, blackish-gray", + "belly: soft, lavender-grey plumage", + "breast: subtle, dusky-pink hue", + "crown: faint, bluish tinge, smoothly rounded", + "forehead: pale grey, blending into crown", + "eyes: dark, alert, encircled by thin pale eye-ring", + "legs: slender, light-gray with scaled texture", + "wings: elongated, rounded tips, patterned with dark spots", + "nape: gentle gradient from crown to back coloration", + "tail: long, broad, dark-tipped, with white outer feathers", + "throat: delicate, off-white, with a smooth texture" + ], + "flores shortwing": [ + "back: olive-brown feathers", + "beak: short and stout", + "belly: pale gray plumage", + "breast: subtle brownish-gray shades", + "crown: darker olive-brown", + "forehead: indistinct eyebrow-like markings", + "eyes: piercing dark gaze", + "legs: short and gray", + "wings: olive-brown with hints of blue", + "nape: brownish-gray blending with crown", + "tail: short and dark olive-brown", + "throat: pale gray-white contrast" + ], + "flores white eye": [ + "back: light olive-green feathers", + "beak: short, curved, black", + "belly: yellowish-white underparts", + "breast: pale yellow feathers", + "crown: greenish-gray plumage", + "forehead: whiteish or off-white ring surrounding eyes", + "eyes: piercing black with white eyering", + "legs: grayish-blue with sharp claws", + "wings: olive-green with white edgings", + "nape: greenish-gray feathers", + "tail: olive-green with white tips", + "throat: pale yellow, blending with breast" + ], + "fluffy backed tit babbler": [ + "back: fluffy, cream-colored feathers", + "beak: short, curved, and black", + "belly: white and lightly streaked", + "breast: pale, grayish-white plumage", + "crown: gray with rust-colored streaks", + "forehead: gray and slightly fluffy", + "eyes: small, dark, alert orbs", + "legs: thin, black, and sturdy", + "wings: rounded, with black-cream patterning", + "nape: gray, with a subtle rufous tinge", + "tail: long and black, with white outer feathers", + "throat: white and streaked with gray" + ], + "flutist wren": [ + "back: sleek, brown feathers", + "beak: small, thin, and pointed", + "belly: creamy-white with subtle streaks", + "breast: slightly buff-colored with darker spots", + "crown: russet-brown with prominent streaks", + "forehead: rich chestnut hue", + "eyes: small, dark, and alert", + "legs: slender, grey-blue with three forward toes and a single back toe", + "wings: brownish-black with white spots and reddish-brown edges", + "nape: reddish-brown with light streaking", + "tail: short and boxy, with black and white barred feathers", + "throat: white with dark streaks and tinges of buff" + ], + "fluttering shearwater": [ + "back: sleek grayish-brown feathers", + "beak: slender, dark hooked bill", + "belly: whitish underbelly plumage", + "breast: white with hints of gray", + "crown: dark gray-brown head top", + "forehead: slightly paler gray-brown", + "eyes: small black beads", + "legs: pinkish-gray with webbed feet", + "wings: long, narrow, dark upper-wing feathers", + "nape: grayish-brown with smooth transition to back", + "tail: short, square-shaped, dark gray feathers", + "throat: white with thin gray bordering" + ], + "fly river grassbird": [ + "back: brownish-green with faint streaks", + "beak: long, slender, and sharp", + "belly: pale cream with subtle markings", + "breast: golden-yellow with fine streaks", + "crown: olive-brown with a faint crest", + "forehead: olive-green blending into the crown", + "eyes: small, dark, and alert", + "legs: strong and thin; pale flesh color", + "wings: brownish-green with faint bars", + "nape: olive-brown, blending with the crown", + "tail: long and tapered; brown with faint barring", + "throat: golden-yellow with spots on the sides" + ], + "flying steamer duck": [ + "back: sleek, brownish-grey feathers", + "beak: strong, black, slightly hooked", + "belly: creamy white, soft plumage", + "breast: white with greyish speckles", + "crown: dark brown, smooth feathers", + "forehead: brownish-grey, slight crest", + "eyes: small, piercing, dark brown", + "legs: thick, orangish-red, webbed feet", + "wings: brownish-grey, short, powerful", + "nape: dark brown, smooth feathers", + "tail: blackish-grey, fan-shaped, short", + "throat: light grey, soft feathers" + ], + "foothill elaenia": [ + "back: olive-green feathers with brown tinges", + "beak: small, thin, and pointed in black color", + "belly: pale yellow with subtle streaks", + "breast: grayish-white with light streaks", + "crown: plain olive-brown with a well-defined crest", + "forehead: olive-brown with subtle streaks", + "eyes: dark, surrounded by pale white eyering", + "legs: slender, pale pinkish-gray", + "wings: elongated, olive-brown with prominent wing bars", + "nape: olive-green feathers blending into the back", + "tail: long and dusky with pale yellow tips and edges", + "throat: grayish-white, unmarked" + ], + "foothill schiffornis": [ + "back: olive-brown feathers", + "beak: medium-sized, dark grey", + "belly: light olive-brown coloring", + "breast: paler olive-brown plumage", + "crown: olive-brown with faint streaks", + "forehead: smooth olive-brown feathers", + "eyes: dark brown with light eyering", + "legs: strong, dark grey", + "wings: olive-brown with faint barring", + "nape: solid olive-brown plumage", + "tail: long, olive-brown with faint bars", + "throat: light olive-brown feathers" + ], + "foothill screech owl": [ + "back: light brown feathers with black streaks", + "beak: short and curved, yellowish-gray", + "belly: white with dark brown vertical streaks", + "breast: pale beige with brown barring", + "crown: reddish-brown with faint black streaks", + "forehead: light brown with scattered dark markings", + "eyes: large and yellow with dark outlines", + "legs: feathered gray-brown with sharp talons", + "wings: mottled brown with darker brown barring", + "nape: light brown with faint black streaks", + "tail: brownish-gray with dark brown bands", + "throat: white with sparse brown streaks" + ], + "foothill stipplethroat": [ + "back: olive-brown feathers with subtle streaks", + "beak: broad, slightly curved, dark gray color", + "belly: whitish with light brown streaks", + "breast: whitish-gray with blurry streaks", + "crown: olive-brown feathers with streaks", + "forehead: slightly paler olive-brown feathers", + "eyes: medium-sized and expressive, dark brown color", + "legs: strong and flexible, pale pinkish-gray", + "wings: olive-brown color with soft barring", + "nape: olive-brown feathers with faint streaks", + "tail: short and broad, olive-brown with grayish accents", + "throat: distinct grayish stippling, setting it apart from the breast" + ], + "forbes watson swift": [ + "back: olive-green feathered upper back", + "beak: blackish, slender, and pointed", + "belly: pale yellow with faint streaks", + "breast: light grayish-yellow with streaks", + "crown: olive color with a slight crest", + "forehead: light olive-green blending into crown", + "eyes: dark brown surrounded by faint white eyering", + "legs: grayish-blue with sharp claws", + "wings: olive-green with white-edged secondary feathers", + "nape: olive-green transitioning to back", + "tail: dark olive-green with square tip", + "throat: pale grayish-white, slightly streaked" + ], + "forbes blackbird": [ + "back: dark glossy black feathers", + "beak: powerful, sharp-edged, black", + "belly: slightly lighter black or gray feathers", + "breast: puffed out, shiny black plumage", + "crown: black feathers, slightly raised", + "forehead: smooth, flat, glossy black", + "eyes: round, bright, dark brown or black", + "legs: strong, dark grey color, scaled", + "wings: relatively long, black, glossy", + "nape: black feathers, transitioning to gray", + "tail: fan-shaped, black, with slightly curved feathers", + "throat: black, with lighter gray edges" + ], + "forbes plover": [ + "back: light brown with subtle white speckles", + "beak: short and slender, blackish-brown", + "belly: white, gently transitioning from breast", + "breast: sandy-buff tone, lighter on the sides", + "crown: light brown with white streaks", + "forehead: white to light brown gradient", + "eyes: small, beady, dark brown", + "legs: long and slender, dull yellowish-orange", + "wings: light brown with bold white bars", + "nape: light brown with faint white streaks", + "tail: brown with white outer feathers and dark cross-bands", + "throat: white, distinct from breast color" + ], + "forbes rail": [ + "back: olive-brown with black streaks", + "beak: slender, slightly curved, pale yellow", + "belly: white with brown streaks", + "breast: buffy with dark spots", + "crown: dark olive-brown", + "forehead: olive-brown, paler than crown", + "eyes: dark, surrounded by faint white ring", + "legs: long and slender, pale yellow", + "wings: short, olive-brown with black barring", + "nape: olive-brown, slightly darker than back", + "tail: short, olive-brown with black barring", + "throat: pale buffy, unmarked" + ], + "forest bittern": [ + "back: greenish-brown with dark streaks", + "beak: long, slender, and yellowish-green", + "belly: off-white with brown markings", + "breast: buff-colored with brown speckles", + "crown: black with green sheen", + "forehead: green-brown with dark streaks", + "eyes: bright yellow with dark outline", + "legs: long, yellow-green with slight webbing", + "wings: green-brown with dark stripes and white spots", + "nape: buff-colored with greenish-brown streaking", + "tail: greenish-brown with wide, dark band", + "throat: creamy white with light streaks" + ], + "forest buzzard": [ + "back: brownish-grey plumage with a slightly lighter pattern", + "beak: powerful, curved, greyish-black hook", + "belly: white with dark brown barring", + "breast: pale with dark brown vertical streaks", + "crown: dark brown with fine lighter spots", + "forehead: brownish-grey with fine lighter spots", + "eyes: piercing yellow with a dark brown outline", + "legs: yellowish with sharp black talons", + "wings: brown with a noticeable white patch on the lower edge", + "nape: brownish-grey with fine lighter spots", + "tail: dark brown with narrow lighter bands", + "throat: white with dark brown streaks" + ], + "forest canary": [ + "back: olive-green feathered coverage", + "beak: small and cone-shaped, yellowish-orange", + "belly: light yellow with slight greenish tinge", + "breast: vibrant yellow with greenish streaks", + "crown: greenish-yellow and slightly rounded", + "forehead: bright yellow merging into the crown", + "eyes: black and beady, surrounded by a white eye-ring", + "legs: short and strong, with scaled bluish-gray skin", + "wings: elongated, greenish-yellow with black streaks", + "nape: yellow-green feathers with a slight blue hue", + "tail: long, dark green with yellow edges", + "throat: bright yellow, appearing almost luminous" + ], + "forest double collared sunbird": [ + "back: vibrant green feathers", + "beak: elongated, curved black bill", + "belly: pale yellow plumage", + "breast: iridescent purple-blue band", + "crown: metallic green cap", + "forehead: bright emerald-green feathers", + "eyes: small, dark, and alert", + "legs: thin, grayish-black limbs", + "wings: shiny green feathers with elongated tips", + "nape: rich green hue adjoining crown and back", + "tail: elongated central feathers, black with greenish tint", + "throat: bright red-orange gorget with purple-blue borders" + ], + "forest elaenia": [ + "back: olive-green with subtle streaks", + "beak: sharp, slender, and black", + "belly: light yellowish-white with grayish edges", + "breast: pale gray with faint streaks", + "crown: grayish-olive with slight crest", + "forehead: pale, almost white, with slight grayish tinge", + "eyes: dark brown with thin white eyering", + "legs: long, slender, and black", + "wings: dark grayish-brown with two distinct white wing bars", + "nape: uniform olive-green", + "tail: dusky grayish-brown with white outer feathers", + "throat: pale grayish-white with slight streaking" + ], + "forest fody": [ + "back: vibrant green covering upper body", + "beak: short, stout, and pointed", + "belly: pale yellow with thin streaks", + "breast: yellowish-green blending to belly", + "crown: bright green with slight crest", + "forehead: luminous green fading into crown", + "eyes: small, black, and bead-like", + "legs: slim, grey with sharp claws", + "wings: greenish-brown with darker flight feathers", + "nape: iridescent green fading to back", + "tail: medium length, fan-shaped, greenish-brown", + "throat: bright yellow with fine streaks" + ], + "forest honeyeater": [ + "back: olive-green, with a slight gloss", + "beak: slender, curved, and black", + "belly: off-white with a yellow tinge", + "breast: pale yellow, subtly streaked", + "crown: black with greenish sheen", + "forehead: yellow with thin white streaks", + "eyes: dark, encircled by pale yellow", + "legs: slender, black or dark gray", + "wings: olive-green, with distinct white tips", + "nape: olive-green, transitioning from crown", + "tail: blackish-green, with rounded, white-tipped feathers", + "throat: white, bordered by black chin" + ], + "forest kingfisher": [ + "back: vibrant blue feathers", + "beak: strong, large, black", + "belly: white with slight blue tinge", + "breast: white plumage", + "crown: striking blue feathers", + "forehead: bold, bright blue", + "eyes: dark and round, piercing gaze", + "legs: thin, sturdy, and black", + "wings: long, blue with black stripes", + "nape: rich blue plumage", + "tail: elongated, blue feathers with black tips", + "throat: bright white feathers" + ], + "forest owlet": [ + "back: grayish-brown plumage with white speckles", + "beak: short, sharp, and hooked, with a yellowish tint", + "belly: pale white and grey with dark brown streaks", + "breast: light grey with contrasting dark brown streaks", + "crown: greyish-brown with faint white spots", + "forehead: light grey with slight white speckling", + "eyes: large, dark, and round, with a piercing gaze", + "legs: stout and feathered, with strong, yellow talons", + "wings: rounded and broad, with greyish-brown coloration and white markings", + "nape: light grey with slight white speckling", + "tail: dark brown with white bands and a rounded tip", + "throat: light grey with fine, dark brown streaks" + ], + "forest penduline tit": [ + "back: patterned dark brown with subtle white streaks", + "beak: short, sharp, and pointed for seed picking", + "belly: creamy white with brownish sides", + "breast: pale brownish-grey with fine streaks", + "crown: greyish-brown with a faint crest", + "forehead: light grey, blending into the crown", + "eyes: small, dark, and lively, with a pale thin eye ring", + "legs: light pink and slender, adapted for perching", + "wings: brown with a contrasting white wing bar", + "nape: greyish-brown, continuous with crown coloration", + "tail: brown with white outer tail feather tips, often fanned", + "throat: pale and unmarked, visually distinguishable from the breast" + ], + "forest raven": [ + "back: sleek black feathers", + "beak: strong, sharp, and black", + "belly: smooth black plumage", + "breast: slightly raised black feathers", + "crown: glossy black crest", + "forehead: flat and black", + "eyes: dark brown with a sharp gaze", + "legs: sturdy, black, and scaly", + "wings: large, black, and powerful", + "nape: gleaming black feathers", + "tail: long black feathers with a slight curve", + "throat: glossy black plumage" + ], + "forest rock thrush": [ + "back: olive-grey feathers", + "beak: slender, pointy, black", + "belly: pale orange", + "breast: orangish-red", + "crown: slate-grey", + "forehead: greyish-white", + "eyes: small and dark", + "legs: thin, black", + "wings: olive-grey, black-edged", + "nape: slate-grey", + "tail: olive-grey with black bars", + "throat: greyish-white" + ], + "forest scimitarbill": [ + "back: sleek, elongated dark feathers", + "beak: long, curved scimitar-shaped bill", + "belly: light grey or white plumage", + "breast: pale grey or white feathers", + "crown: dark feathered head", + "forehead: black or grey plumage", + "eyes: small, round, and black", + "legs: slender grey or dark legs", + "wings: dark feathers with white trim", + "nape: black or grey, thick plumage", + "tail: long, dark feathers with white or grey tips", + "throat: grey or white, smooth feathers" + ], + "forest scrub robin": [ + "back: olive-brown feathers with slight greyish hue", + "beak: slender, curved, blackish-grey", + "belly: off-white with reddish streaks", + "breast: pale reddish-brown with darker speckles", + "crown: greyish-brown with faint streaks", + "forehead: slightly paler grey-brown", + "eyes: dark brown surrounded by white eye-ring", + "legs: long and slender, flesh-coloured", + "wings: olive-brown with buff edges on feathers", + "nape: greyish-brown blending into back", + "tail: long, brownish-grey with white outer feathers", + "throat: pale off-white with greyish-brown speckles" + ], + "forest swallow": [ + "back: iridescent blue-green feathers", + "beak: small and black, slightly hooked tip", + "belly: creamy white with faint grey streaks", + "breast: pale grey blending into white on lower part", + "crown: shining blue-black plumage", + "forehead: glistening steel-blue feathers", + "eyes: round and black, encircled by thin white ring", + "legs: short and sturdy, dark grey in color", + "wings: long and pointed, shimmering blue-black feathers", + "nape: bright blue feathers transitioning to green towards the back", + "tail: forked shape, composed of dark blue and green feathers", + "throat: white with a thin black band separating it from the breast" + ], + "forest thrush": [ + "back: olive-brown plumage", + "beak: thin, straight, and dark-colored", + "belly: pale with speckled spots", + "breast: off-white with dark spots", + "crown: uniform olive-brown", + "forehead: slightly lighter olive-brown", + "eyes: dark with white eye-ring", + "legs: slender and pale pink", + "wings: olive-brown with faint wing-bars", + "nape: smooth olive-brown feathers", + "tail: rich, reddish-brown", + "throat: white with soft spotting" + ], + "forest weaver": [ + "back: vibrant green feathers", + "beak: strong, pointed, and black", + "belly: light cream or yellowish hue", + "breast: bright yellow or orange coloring", + "crown: greenish-yellow with black streaks", + "forehead: deep golden-yellow plumage", + "eyes: dark, beady, and alert", + "legs: slender, gray or black", + "wings: mix of green, yellow, and black feathers", + "nape: green feathers with streaks of deep gold", + "tail: elongated, black, and white-tipped", + "throat: vibrant yellow or orange, contrasting with breast" + ], + "forest white eye": [ + "back: olive-green feathers with smooth texture", + "beak: short, sharp, dark gray beak for eating insects and fruits", + "belly: pale yellowish-gray with soft plumage", + "breast: light grayish-yellow covering upper body", + "crown: greenish-yellow feathers on top of the head", + "forehead: small white patch above the beak", + "eyes: prominent white eye rings surrounding dark eyes", + "legs: short, dark gray, clawed legs for perching on branches", + "wings: olive-green with darker flight feathers", + "nape: yellowish-green feathers at the back of the neck", + "tail: short, squared, olive-green tail feathers for balance", + "throat: light yellowish-gray area below the beak" + ], + "fork tailed drongo cuckoo": [ + "back: sleek black feathers", + "beak: sharp, curved, and black", + "belly: grayish-white underside", + "breast: dark gray plumage", + "crown: glossy black head", + "forehead: smooth, jet black", + "eyes: piercing dark with white rings", + "legs: slim black and perching", + "wings: elongated, black, and pointed", + "nape: subtly glossed black feathers", + "tail: split, long, and black; forked tail feathers", + "throat: grayish-white lower end" + ], + "fork tailed flycatcher": [ + "back: sleek, black feathers", + "beak: small, pointed, black", + "belly: white, soft-looking", + "breast: white, slightly fluffy", + "crown: black, with crest-like tuft", + "forehead: black, feathers smoothly transitioning into crown", + "eyes: round, dark, alert", + "legs: slender, black, for perching", + "wings: long, slender, black with white edges", + "nape: black, distinct from white neck", + "tail: elongated, forked, black with white outer feathers", + "throat: white, sharply contrasting with black head" + ], + "fork tailed palm swift": [ + "back: sleek dark gray feathers", + "beak: small, thin, and pointed", + "belly: pale grayish-white plumage", + "breast: light gray feathers", + "crown: dark gray with a slight crest", + "forehead: smooth dark gray plumage", + "eyes: small, dark, and round", + "legs: short, gray, and slender", + "wings: long, pointed, and dark gray", + "nape: dark gray with a subtle downward curve", + "tail: long, black, and deeply forked", + "throat: pale grayish-white feather patch" + ], + "fork tailed pygmy tyrant": [ + "back: olive-green feathers", + "beak: short, hooked, and black", + "belly: pale yellow with light streaks", + "breast: pale yellowish-green", + "crown: olive-green with hidden yellow patch", + "forehead: olive-green", + "eyes: dark brown, small", + "legs: short and slender with black claws", + "wings: olive-green with yellow edges on flight feathers", + "nape: olive-green with white spots", + "tail: elongated, forked, and black", + "throat: pale yellow with white streaks" + ], + "fork tailed storm petrel": [ + "back: sleek, streamlined gray feathers", + "beak: short, sharp, and black", + "belly: light gray with white under-feathers", + "breast: soft gray plumage", + "crown: dark gray feathers curving to the nape", + "forehead: smooth gray with a prominent eye line", + "eyes: round, dark, and alert", + "legs: thin, black, and webbed feet", + "wings: narrow, pointed, and long gray feathers", + "nape: blending gray crown feathers into back", + "tail: deeply forked, dark gray feathers", + "throat: light gray with subtle feather patterning" + ], + "fork tailed sunbird": [ + "back: iridescent blue-green back", + "beak: slender, curved bill", + "belly: bright yellow underside", + "breast: vibrant yellow chest", + "crown: glossy blue-green cap", + "forehead: shiny blue-green plumage", + "eyes: small, dark eyes", + "legs: thin, black legs", + "wings: blue-green feathers with black edges", + "nape: iridescent blue-green nape", + "tail: elongated, distinctive forked tail", + "throat: metallic blue-purple gloss" + ], + "fork tailed woodnymph": [ + "back: iridescent green feathers", + "beak: slender and straight black bill", + "belly: white to pale gray hues", + "breast: shimmering violet plumage", + "crown: bright green, shining cap", + "forehead: glittering violet sheen", + "eyes: dark and round, black pupils", + "legs: tiny skinny twigs, dark gray", + "wings: long and elegant, green and blue hues", + "nape: bright green curve connecting head and back", + "tail: double-tiered design, two long central feathers", + "throat: luminous violet with blue nuances" + ], + "forty spotted pardalote": [ + "back: greenish-yellow with white spots", + "beak: short and pointed, brownish-orange", + "belly: light greyish-white", + "breast: greyish-white", + "crown: greenish-yellow with white spots", + "forehead: greenish-yellow", + "eyes: dark with white eye-ring", + "legs: orange-brown", + "wings: greenish-yellow with bold white spots", + "nape: greenish-yellow with white spots", + "tail: greenish-yellow with white tips", + "throat: greyish-white" + ], + "four banded sandgrouse": [ + "back: mottled brown and black feathers", + "beak: stout, short, and light gray", + "belly: creamy white with dark banding", + "breast: light sandy brown with dark bands", + "crown: sandy brown with fine black streaks", + "forehead: grayish-white blending into crown", + "eyes: dark, round, and alert", + "legs: short, feathered, with grayish-brown scales", + "wings: mottled brown and black with broad white stripe", + "nape: sandy brown, consistent with crown", + "tail: fan-shaped, dark brown with faint barring", + "throat: buff-colored with a hint of black markings" + ], + "four colored bushshrike": [ + "back: olive-green upper body", + "beak: strong, black hooked bill", + "belly: pale yellow underbelly", + "breast: vibrant orange chest", + "crown: olive-green cap", + "forehead: dark olive-brown", + "eyes: piercing black eyes", + "legs: sturdy dark gray legs", + "wings: olive-green with black barring", + "nape: olive-green, slightly paler than crown", + "tail: olive-green, long and square-tipped", + "throat: golden-yellow throat patch" + ], + "fox kestrel": [ + "back: sleek reddish-brown feathers", + "beak: strong, sharp, black hooked beak", + "belly: light cream with black streaks", + "breast: lightly-streaked white feathers", + "crown: greyish-brown feathers with streaks", + "forehead: greyish-white with slight streaks", + "eyes: large, dark, piercing gaze", + "legs: powerful, yellow-skinned, sharp-taloned", + "wings: large, tapered, reddish-brown with black spots", + "nape: greyish-brown feathers with streaks", + "tail: long, banded black and white feathers", + "throat: white with dark streaks" + ], + "fox weaver": [ + "back: brownish-orange feathers", + "beak: long, slender, and curved", + "belly: creamy white with orange hints", + "breast: reddish-orange plumage", + "crown: dark-colored feathers with slight crest", + "forehead: bright orange stripe", + "eyes: dark black with a thin white ring", + "legs: strong, grayish, and scaled", + "wings: brown with white and orange markings", + "nape: orange-brown feathers", + "tail: long and pointed, with a mix of orange and brown feathers", + "throat: creamy-white feathers with orange undertones" + ], + "foxy cisticola": [ + "back: brown and streaked with black", + "beak: short and conical, black or dark gray", + "belly: off-white or pale gray", + "breast: tan or light brown with subtle streaks", + "crown: reddish-brown with streaks", + "forehead: pale buff or grayish-brown", + "eyes: small, round and black", + "legs: short and slender, gray or black", + "wings: brown and gray with white or buff streaks", + "nape: reddish-brown with dark streaks", + "tail: short and notched, brown with darker bands", + "throat: off-white or pale gray" + ], + "frances sparrowhawk": [ + "back: blue-grey plumage with dark stripes", + "beak: short, hooked, and sharp-edged", + "belly: off-white with orange-brown streaks", + "breast: pale with fine, reddish-brown barring", + "crown: blue-gray with dark streaks", + "forehead: blue-gray with dark streaks", + "eyes: bright yellow with dark, circular pupils", + "legs: yellow and scaly with sharp talons", + "wings: long, narrow, and pointed with black barring", + "nape: blue-gray with dark streaks", + "tail: long with dark horizontal bars and white tip", + "throat: off-white with faint reddish-brown streaks" + ], + "fraser eagle owl": [ + "back: dark brown feathers with white flecks", + "beak: strong, black, hooked", + "belly: creamy white with dark brown barring", + "breast: pale brown with white streaks", + "crown: dark brown and slightly tufted", + "forehead: brownish-grey with white streaks", + "eyes: large, deep orange", + "legs: thick, feathered, and yellowish-grey in color", + "wings: broad and rounded, dark brown with white markings", + "nape: dark brown with white streaks", + "tail: barred, dark brown with white bands", + "throat: creamy white with sparse brown spots" + ], + "fraser sunbird": [ + "back: vibrant green feathers", + "beak: long, thin, and curved", + "belly: golden-yellow plumage", + "breast: orange-red chest", + "crown: shining metallic green", + "forehead: iridescent green-blue", + "eyes: small black dots", + "legs: slender and brown-ish", + "wings: green with contrasting black edges", + "nape: shimmering green-blue", + "tail: elongated, green feathers with black tips", + "throat: bright orange-red patch" + ], + "freckle breasted thornbird": [ + "back: brownish-olive feathers", + "beak: long, slender, curved", + "belly: creamy-white with freckles", + "breast: pale buff with dense freckles", + "crown: brownish-olive with streaks", + "forehead: streaked with whitish-brown", + "eyes: dark with white eyering", + "legs: long, slender, grayish", + "wings: brownish-olive with faint bars", + "nape: brownish-olive with streaks", + "tail: long, brownish-olive with dark bars", + "throat: creamy-white with sparse freckles" + ], + "freckle breasted woodpecker": [ + "back: intricately patterned with black and white stripes", + "beak: long, slender, and chisel-tipped for pecking", + "belly: creamy white with yellowish tinge", + "breast: adorned with reddish freckles, prominent on males", + "crown: vibrant red patch on the back of the head", + "forehead: black and white striped, merging into the crown", + "eyes: dark and beady, surrounded by white feathers", + "legs: strong and grayish, suited for gripping and climbing", + "wings: black and white barred, distinctive in flight", + "nape: striped pattern, connecting the crown and back", + "tail: black and white barring, stiff for support on tree trunks", + "throat: white with small black and white stripes on the sides" + ], + "freckled duck": [ + "back: brownish-gray with light freckling", + "beak: pale bluish-gray with dark spots", + "belly: creamy white with sparse freckling", + "breast: light gray with dark freckles", + "crown: dark brown with light freckling", + "forehead: brownish-gray with small dark freckles", + "eyes: red or orange with a dark center", + "legs: grayish-blue with dark webbed feet", + "wings: brownish-gray with dark freckling and white tips", + "nape: brownish-gray with light freckling", + "tail: short and dark brown with white edges", + "throat: creamy white with faint freckles" + ], + "freckled nightjar": [ + "back: brownish-grey, speckled pattern", + "beak: short, curved, greyish-brown", + "belly: lighter grey with dark spots", + "breast: greyish-brown, mottled appearance", + "crown: dark grey, freckled feathers", + "forehead: lighter grey, spotted pattern", + "eyes: large, dark, and round", + "legs: short, greyish-brown", + "wings: long, brown, with white-tipped freckles", + "nape: grey-brown, spotted texture", + "tail: brown-grey with fine barring", + "throat: pale grey, with tiny spots" + ], + "friedmann lark": [ + "back: light brown with dark streaks", + "beak: short and pointed, pale in color", + "belly: cream or white with sparse brown spots", + "breast: pale brown with dark streaks", + "crown: dark brown with greyish tinge", + "forehead: light brown blending into crown", + "eyes: small, dark and semi-hidden by feathers", + "legs: thin, long and pale brown", + "wings: brown with distinct white edges", + "nape: light brown, transitioning from crown", + "tail: long, brown with white edges", + "throat: pale brown with sparse streaks" + ], + "friendly bush warbler": [ + "back: olive-green with subtle grey streaks", + "beak: short, slender, brownish-grey", + "belly: creamy-white with light brown specks", + "breast: beige-white with brownish-grey smudges", + "crown: rusty-brown with faint black stripes", + "forehead: light buff-yellow with delicate tan streaks", + "eyes: round, shiny black with white eyebrows", + "legs: thin, light grey with scaly patterns", + "wings: olive-brown with dark brown feathers and white bars", + "nape: mottled greyish-brown with soft beige undertones", + "tail: elongated, dark brown with subtle white-grey edges", + "throat: soft white with touches of light brown spots" + ], + "friendly fantail": [ + "back: smooth, sleek feathers", + "beak: small, curved and pointy", + "belly: light, fluffy feathers", + "breast: rounded, slightly puffed out", + "crown: subtly raised, feathered crest", + "forehead: smooth, rounded contours", + "eyes: bright, alert, and curious", + "legs: slender, delicate with small claws", + "wings: gracefully spread with intricate patterns", + "nape: soft, feathered curve transitioning to the back", + "tail: long, fan-shaped feathers, often in motion", + "throat: smooth, delicate feathers in a gentle curve" + ], + "frill necked monarch": [ + "back: vibrant blue-black feathers", + "beak: sharp, black, slightly hooked", + "belly: vivid orange-rust hue", + "breast: bright orange-rust plumage", + "crown: blue-black feathers with a slight crest", + "forehead: smooth black feathers with bluish iridescence", + "eyes: dark, piercing, with a pale eye-ring", + "legs: sturdy, dark grey with sharp claws", + "wings: long, blue-black feathers with hints of orange and white", + "nape: blue-black feathers transitioning to orange-rust near the throat", + "tail: long, wide, blue-black feathers with white tips", + "throat: striking orange-rust coloration" + ], + "frilled coquette": [ + "back: vibrant green with golden highlights", + "beak: slender, short, and slightly curved", + "belly: white to pale gray feathers, soft and fluffy", + "breast: rich chestnut-brown color, prominent frills", + "crown: shiny green with golden reflections", + "forehead: vibrant bronze-green color, distinctive tuft", + "eyes: small, dark, and alert", + "legs: delicate and slender, light pinkish-gray", + "wings: short, rounded, and greenish-bronze", + "nape: metallic green with a bronze sheen", + "tail: orange-rufous shade, narrow and slightly forked", + "throat: iridescent purple-blue plumage, visually striking" + ], + "frilled monarch": [ + "back: greenish-yellow feathers with slight brown shades", + "beak: sharp, black, and slightly curved", + "belly: yellowish-white with fine brown streaks", + "breast: bright yellow feathers transitioning to white", + "crown: black and elongated feathers, forming a crest", + "forehead: black feathers with a greenish tinge", + "eyes: small, dark, and surrounded by a patch of bare skin", + "legs: greyish with sharp talons for perching on branches", + "wings: greenish-brown feathers adorned with black and white markings", + "nape: black feathers extending to the upper back", + "tail: long, broad, and brown with white edges and green tips", + "throat: bright yellow feathers blending into the breast area" + ], + "fringe backed fire eye": [ + "back: vivid, greenish-black plumage", + "beak: short, sharp, black", + "belly: intense reddish-orange hue", + "breast: fiery red with black edges", + "crown: black, round, smooth", + "forehead: sleek black feathers", + "eyes: fierce dark brown, well-defined", + "legs: strong grayish-blue with sharp claws", + "wings: greenish-black with subtle red band", + "nape: rich black hue, narrow feathers", + "tail: long black feathers with red highlights", + "throat: deep red fading to lighter orange" + ], + "fruit hunter": [ + "back: greenish-blue feathered covering", + "beak: orange, slightly curved", + "belly: sky-blue under feathers", + "breast: bright blue chest plumage", + "crown: orange crest on the head", + "forehead: deep blue forehead patch", + "eyes: dark, piercing gaze", + "legs: slim, yellow-orange", + "wings: green-to-blue gradient on feathers", + "nape: greenish-blue rear head", + "tail: elongated, sky-blue and green feathers", + "throat: vibrant blue chin feathers" + ], + "fuegian snipe": [ + "back: brownish-black with white spots", + "beak: long, thin, and slightly curved", + "belly: white with brown streaks", + "breast: brownish-yellow and spotted", + "crown: pale-toned with dark stripes", + "forehead: white with a small brown patch", + "eyes: small and dark", + "legs: thin and bright orange", + "wings: darker brown with white and rust-colored markings", + "nape: pale with dark stripes", + "tail: barred with black and white", + "throat: whitish-yellow with fine dark streaks" + ], + "fuerteventura stonechat": [ + "back: brownish-grey with streaks", + "beak: small, straight, black", + "belly: off-white to light grey", + "breast: dull orange to pale buff", + "crown: dark brown, faint streaks", + "forehead: small and light brown", + "eyes: dark, medium size, encircled by white eye-ring", + "legs: slim, long, dark", + "wings: brownish-black with pale wingbars", + "nape: brownish-grey, streaked", + "tail: short, dark with white edges", + "throat: pale greyish-white" + ], + "fujian niltava": [ + "back: vibrant blue feathers", + "beak: short, stout, and black", + "belly: white with blue-black streaks", + "breast: rich blue fading to white", + "crown: deep electric blue", + "forehead: bright azure hue", + "eyes: dark with a white eye-ring", + "legs: sturdy, grey-black", + "wings: brilliant blue with black edges", + "nape: brilliant blue, continuing from crown", + "tail: long, blackish-blue with white corners", + "throat: deep blue transitioning to white belly" + ], + "f\u00fclleborn boubou": [ + "back: dark feathers covering the upper body", + "beak: strong, slightly hooked black beak", + "belly: lighter gray or white feathers on lower body", + "breast: gray or white feathers on chest", + "crown: black or dark gray feathers covering the head", + "forehead: black or dark gray feathers starting above the beak", + "eyes: small, round with black pupil and yellow or white surrounding", + "legs: slender, dark legs with sharp talons for perching", + "wings: black or dark gray feathers, slightly rounded for quick flight", + "nape: dark feathers transitioning from the crown to the back", + "tail: long, dark feathers extending from the base of the back", + "throat: gray or white feathers below the beak, leading to the breast" + ], + "f\u00fclleborn longclaw": [ + "back: olive-brown plumage with streaking", + "beak: strong, conical-shaped and black", + "belly: white with light streaking", + "breast: white with a bright yellow patch", + "crown: grey with slight streaks", + "forehead: grey, blending into the crown", + "eyes: dark with a white eye-ring", + "legs: long and slender, with black coloration", + "wings: olive-brown with white and black markings", + "nape: grey with olive-brown streaks", + "tail: black with white outer feathers", + "throat: bright yellow, contrasting with breast" + ], + "fulmar prion": [ + "back: pale grey feathers with a streamlined shape", + "beak: short and slightly hooked, bluish-gray color", + "belly: white with soft, downy feathers", + "breast: white feathers with a plump, rounded shape", + "crown: pale grey feathers, slightly darker than back", + "forehead: white feathers blending into pale grey crown", + "eyes: black, round, and alert, surrounded by white and grey feathers", + "legs: blue-gray, short and sturdy with webbed feet", + "wings: long, slender, and pointed with pale grey feathers", + "nape: white feathers extending from the crown to the back", + "tail: short and wedge-shaped with grey feathers", + "throat: white feathers covering a small, plump area" + ], + "fulvous antshrike": [ + "back: rusty-brown with streaks", + "beak: short, hooked, grayish-black", + "belly: buff-colored with slight streaks", + "breast: pale brownish-orange with fine streaks", + "crown: gray-brown with a crest", + "forehead: buff-colored, blending into the crown", + "eyes: dark, medium-sized, surrounded by a pale eye-ring", + "legs: strong, grayish-brown, with four toes", + "wings: rusty-brown with black bars and white spots", + "nape: gray-brown, blending with crown", + "tail: long, rusty-brown with black bars", + "throat: pale buff with fine streaks" + ], + "fulvous chatterer": [ + "back: tawny brown feathers", + "beak: short and sturdy, yellowish", + "belly: pale chestnut-brown", + "breast: light brown with darker streaks", + "crown: reddish-brown, slightly crested", + "forehead: rufous with faint streaks", + "eyes: dark brown with light eyerings", + "legs: short and strong, brownish-grey", + "wings: brown with pale feather edges", + "nape: tawny brown, blending with crown", + "tail: rufous-brown, moderately long", + "throat: pale whitish-brown, streaked" + ], + "fulvous owl": [ + "back: dark brown and reddish plumage", + "beak: sharp, black and hooked", + "belly: creamy-white with dark barring", + "breast: rusty-orange with dark streaks", + "crown: reddish-brown and densely feathered", + "forehead: pale brown with creamy-white markings", + "eyes: large, dark, and piercing", + "legs: feathered with strong yellow talons", + "wings: dark brown with buff-edged feathers", + "nape: reddish-brown with dark streaks", + "tail: long, dark brown with lighter bands", + "throat: pale with dark brown streaking" + ], + "fulvous parrotbill": [ + "back: olive brown with subtle streaks", + "beak: short, thick, and pale", + "belly: pale buff color with fine streaks", + "breast: creamy buff with faint streaks", + "crown: warm brown with slight streaks", + "forehead: light brownish-yellow", + "eyes: small, round, and black", + "legs: pale and slender", + "wings: rounded, olive brown with white-tipped secondaries", + "nape: brownish-yellow with faint streaks", + "tail: long and olive brown", + "throat: creamy white with fine streaks" + ], + "fulvous shrike tanager": [ + "back: golden-olive hue", + "beak: dark, stout, and conical", + "belly: bright yellow shade", + "breast: vibrant yellow coloring", + "crown: grayish-black pattern", + "forehead: black or grayish band", + "eyes: dark and prominently encircled", + "legs: sturdy and dark gray", + "wings: golden-green with darker tips", + "nape: continuous golden-olive tone", + "tail: long and olive-green", + "throat: striking yellow tinge" + ], + "fulvous wren": [ + "back: light brown with faint streaks", + "beak: small, thin, and pointy", + "belly: creamy white with light brown spots", + "breast: pale with subtle brown striations", + "crown: dark chestnut with prominent streaks", + "forehead: light chestnut with faint streaks", + "eyes: small, dark, and round", + "legs: slender, greyish-brown", + "wings: reddish-brown, barrier pattern of light and dark feathers", + "nape: chestnut with noticeable streaks", + "tail: long, reddish-brown with faint barring", + "throat: pale, creamy white" + ], + "fulvous breasted flatbill": [ + "back: olive-brown feathers", + "beak: broad, short, pale yellow", + "belly: warm ochre color", + "breast: fulvous-orange with faint barring", + "crown: olive-brown with slight crest", + "forehead: paler olive-brown", + "eyes: dark, encircled by pale eye-ring", + "legs: pale, sturdy limbs", + "wings: olive-brown with faint bars", + "nape: olive-brown blending into crown", + "tail: long, olive-brown with faint barring", + "throat: pale fulvous-white, barred" + ], + "fulvous breasted woodpecker": [ + "back: shades of brown with streaks of white", + "beak: chisel-shaped, strong and grayish", + "belly: creamy white with dark brown specks", + "breast: pale yellowish-brown with brown streaks", + "crown: dull-red in males, plain brown in females", + "forehead: light to dark brown", + "eyes: sharp, round, and dark", + "legs: grayish-blue, strong and sturdy", + "wings: brown and white, with patches of red", + "nape: grayish-brown with a faint white stripe", + "tail: barred pattern with brown and white feathers", + "throat: light creamy-white, speckled with brown" + ], + "fulvous chested jungle flycatcher": [ + "back: deep olive-brown plumage", + "beak: sharp, straight, blackish-brown", + "belly: pale fulvous coloring", + "breast: vibrant fulvous-orange hue", + "crown: dark brown with faint streaks", + "forehead: slightly lighter brown than crown", + "eyes: dark, piercing gaze surrounded by white eye-ring", + "legs: sturdy, blackish-brown", + "wings: olive-brown with prominent white wing-bars", + "nape: olive-brown, blending into the back", + "tail: olive-brown with white-tipped edges", + "throat: pale fulvous coloring, merging into the breast" + ], + "fulvous chinned nunlet": [ + "back: rusty brown plumage", + "beak: short and black", + "belly: whitish with light brown streaks", + "breast: pale orange-brown", + "crown: rich chestnut color", + "forehead: smooth and rounded", + "eyes: small, beady, and dark", + "legs: thin, short, and blue-gray", + "wings: brownish with slight wing bars", + "nape: chestnut with grayish streaks", + "tail: brown with slightly rounded edges", + "throat: creamy white with rusty brown streaks" + ], + "fulvous crested tanager": [ + "back: rusty orange feathers with black markings", + "beak: sharp, black, and pointed", + "belly: white with faint orange streaks", + "breast: vibrant orange fading to white", + "crown: prominent deep orange crest", + "forehead: orange with black around the eyes", + "eyes: small, dark, and expressive", + "legs: slender and dark gray", + "wings: black feathers with orange edges", + "nape: orange and black striped pattern", + "tail: long, black feathers with orange highlights", + "throat: lighter orange blending into white on the chest" + ], + "fulvous crowned scrub tyrant": [ + "back: medium brown with faint black streaks", + "beak: short and dark gray", + "belly: pale buff-yellow with thin black stripes", + "breast: tawny-orange with light streaks", + "crown: bright fulvous with black stripes", + "forehead: pale fulvous blending into crown", + "eyes: dark with white eyering", + "legs: dark gray and slender", + "wings: brownish-black with white and buff wingbars", + "nape: brownish-black streaks on fulvous background", + "tail: dark brown with white outer edges", + "throat: whitish with thin black streaks" + ], + "fulvous dotted treerunner": [ + "back: olive-brown with darker streaks", + "beak: short, curved, and black", + "belly: pale yellow with rusty spots", + "breast: warm buff with fine streaks", + "crown: rufous-brown with fine streaks", + "forehead: pale creamy-brown", + "eyes: dark, medium-sized, with white eye-ring", + "legs: long, sturdy, and gray", + "wings: olive-brown with spotted pattern", + "nape: rufous-brown with darker streaks", + "tail: long and olive-brown with white tips", + "throat: creamy-white with faint streaks" + ], + "fulvous faced scrub tyrant": [ + "back: olive-brown feathers", + "beak: short and hooked, black color", + "belly: light cream or buff feathers", + "breast: pale yellowish-brown feathers", + "crown: rusty brown with bold streaks", + "forehead: faintly streaked, fulvous color", + "eyes: black with a noticeable white eye-ring", + "legs: greyish-yellow, sturdy", + "wings: olive-brown with pale edges on flight feathers", + "nape: matching rusty brown crown color", + "tail: olive-brown with faint barring, slightly forked", + "throat: whitish with light streaks" + ], + "fulvous headed brushfinch": [ + "back: olive-brown with subtle streaks", + "beak: strong and conical, grayish-black", + "belly: pale yellow with grayish-white undertail coverts", + "breast: grayish-olive blending into pale yellow", + "crown: bright fulvous-orange", + "forehead: bright fulvous-orange", + "eyes: dark, surrounded by thin yellowish eye-ring", + "legs: grayish-black and sturdy", + "wings: olive-brown with two pale yellow wing-bars", + "nape: olive-brown with fulvous-orange blend", + "tail: olive-brown and forked", + "throat: pale yellow and unmarked" + ], + "fulvous headed tanager": [ + "back: olive-green, vermiculated with black", + "beak: short, thick, black", + "belly: bright yellow", + "breast: vibrant blue", + "crown: fulvous-orange, with a slight crest", + "forehead: lighter orange-yellow", + "eyes: dark, with a thin white eye-ring", + "legs: grayish-blue, slender", + "wings: dark blue-black, with blue-turquoise highlights", + "nape: golden-olive, transitioning into the crown color", + "tail: long, black-blue, with narrow blue edging", + "throat: bright yellow, contrasting with the blue breast" + ], + "fulvous vented euphonia": [ + "back: olive-green feathers", + "beak: short, stout, light-colored", + "belly: canary yellow hue", + "breast: bright yellow plumage", + "crown: deep blue shade", + "forehead: dark blue feathers", + "eyes: small and black with white feathered outlines", + "legs: grayish-blue slender legs", + "wings: olive-green with hints of blue", + "nape: olive-yellow blend", + "tail: short and blue-tipped", + "throat: yellow feathers transitioning into belly color" + ], + "furtive flycatcher": [ + "back: olive-green upper body", + "beak: thin, pointed, black", + "belly: pale white feathers", + "breast: light greyish-white", + "crown: dark brow streaks", + "forehead: narrow eye-line stripe", + "eyes: small, dark bead-like", + "legs: long, slender, dark", + "wings: olive-brown with faint markings", + "nape: smooth olive-toned", + "tail: tapered, dark brown with white outer edges", + "throat: white with greyish tinge" + ], + "fuscous flycatcher": [ + "back: fuscous-gray coloration and slightly streaked", + "beak: black and slender for catching insects", + "belly: pale with light streaks", + "breast: light grayish-brown with faint streaks", + "crown: dark grayish-brown with faint streaks", + "forehead: paler than crown and slightly streaked", + "eyes: black with a faint pale eye-ring", + "legs: dark gray and slender for perching", + "wings: fuscous with lighter brown wing-bars", + "nape: grayish-brown blending with crown", + "tail: fuscous with lighter outer feathers", + "throat: pale and streaked, contrasting with breast" + ], + "fuscous honeyeater": [ + "back: brownish-grey feathers", + "beak: thin, curved black bill", + "belly: light grey and streaked", + "breast: greyish-brown, streaked front", + "crown: brownish-grey feathers, slightly raised", + "forehead: greyish-brown, blending with crown", + "eyes: dark, rounded with a white eye-ring", + "legs: slender, greyish-black legs", + "wings: brownish-grey with faint darker markings", + "nape: greyish-brown, continuous with the crown", + "tail: long, brownish-grey with subtle darker bands", + "throat: greyish-white, streaked plumage" + ], + "fynbos buttonquail": [ + "back: tawny brown with black streaks", + "beak: short and stout, dark gray", + "belly: creamy white with faint brown markings", + "breast: pale brown with black spots", + "crown: dark rusty brown, slightly striped", + "forehead: buff-colored with black eye stripe", + "eyes: dark brown with pale eyering", + "legs: sturdy and dark grayish-brown", + "wings: mottled brown with black and white spots", + "nape: dark reddish-brown with black stripes", + "tail: medium length, brown with black barring", + "throat: buff with fine black streaks" + ], + "gabar goshawk": [ + "back: bluish-grey feathers with dark streaks", + "beak: strong, hooked, black with a yellow cere", + "belly: white with fine rufous barring", + "breast: pale grey with dark streaks", + "crown: bluish-grey with dark streaks", + "forehead: bluish-grey with dark streaks", + "eyes: bright yellow with a black pupil", + "legs: long yellow legs with sharp talons", + "wings: short, broad, bluish-grey with dark streaks and light feather tips", + "nape: bluish-grey with dark streaks", + "tail: long, barred grey-and-white feathers with a broad black band", + "throat: white with some fine rufous barring" + ], + "gabela akalat": [ + "back: olive-brown with understated markings", + "beak: black, short, and stout", + "belly: pale white, contrasting", + "breast: orange and bright", + "crown: dark olive-brown, rounded", + "forehead: slightly lighter brown with faint streaks", + "eyes: dark with bold white eyering", + "legs: long, greyish-blue", + "wings: dark brown with pale markings", + "nape: olive-brown, blending with the crown", + "tail: elongated, dark brown with faint bars", + "throat: bright orange, defining feature" + ], + "gabela bushshrike": [ + "back: vibrant green coloration", + "beak: strong, grayish-black hooked bill", + "belly: light yellow hues", + "breast: bright yellow-orange shades", + "crown: rich emerald green", + "forehead: bright green, mix of emerald and lime", + "eyes: dark brown with grayish-white eye ring", + "legs: sturdy, pale gray claws", + "wings: green upperparts, with dark flight feathers", + "nape: green transitioning into orange-yellow", + "tail: long, green with black-tipped feathers", + "throat: intense orange-yellow vibrancy" + ], + "gabon boubou": [ + "back: glossy black with some green or blue iridescence", + "beak: strong, straight, black, and slightly hooked at the tip", + "belly: white with faint barring on flanks", + "breast: white, transitioning to black towards the lower breast", + "crown: solid black with a slight crest", + "forehead: uncrested, black", + "eyes: dark brown with a pale yellow eye-ring", + "legs: short, black, with strong feet", + "wings: black, white-tipped, with a narrow white patch on the primaries", + "nape: black, connecting the crown and back", + "tail: black, long, with a broad white band near the tip", + "throat: white, contrasting sharply with the black head" + ], + "gabon coucal": [ + "back: dark reddish-brown plumage", + "beak: black, robust, and slightly curved", + "belly: creamy-white with faint dark bars", + "breast: rusty-brown feathers with darker bars", + "crown: glossy black with slight crest", + "forehead: glossy black feathers", + "eyes: dark brown with thin white eyering", + "legs: grayish-blue, strong, and scaly", + "wings: dark brown with rufous and blackish bands", + "nape: glossy black with a slight crest", + "tail: long, broad, and rufous with black bars", + "throat: creamy-white with fine dark bars" + ], + "gabon woodpecker": [ + "back: black and white striped pattern", + "beak: long, robust, and chisel-shaped, black in color", + "belly: cream-colored with black, horizontal barring", + "breast: white with black speckles or streaks", + "crown: red or orange-red in males, black and white in females", + "forehead: white with black lines", + "eyes: dark beady with white eyering", + "legs: grayish-blue with sharp claws", + "wings: black with white spots or patches", + "nape: black and white stripes or checkered pattern", + "tail: black with white patches or bars", + "throat: white or light cream-colored" + ], + "galah": [ + "back: pinkish-grey feathers", + "beak: short, bone-colored, curved", + "belly: rosy pink plumage", + "breast: pale pink feathers", + "crown: pinkish crest atop head", + "forehead: pink feathers blending into grey", + "eyes: dark, surrounded by pale eye-ring", + "legs: sturdy, greyish-brown", + "wings: grey with pink accents", + "nape: pinkish-grey feathers", + "tail: grey feathers with white tips", + "throat: pale pink plumage" + ], + "galapagos dove": [ + "back: grayish-brown toned feathers", + "beak: short, stout, slightly curved", + "belly: pale pink-beige coloration", + "breast: rosy-pink with speckles", + "crown: blue-purple with grayish-brown tones", + "forehead: light blue-gray feathers", + "eyes: dark pupil surrounded by bright orange eye-ring", + "legs: short, strong, and reddish-orange", + "wings: grayish-brown with spotted pattern", + "nape: vibrant blue-purple sheen", + "tail: long, gray-brown with outer white-feathered markings", + "throat: light beige with speckled appearance" + ], + "galapagos flycatcher": [ + "back: brown with subtle streaks", + "beak: short, narrow, and dark", + "belly: creamy-white with light streaks", + "breast: pale with light streaks", + "crown: brown and slightly streaked", + "forehead: pale brown and smooth", + "eyes: dark and alert", + "legs: thin and dark gray", + "wings: brown with lighter edges on feathers", + "nape: pale brown with light streaks", + "tail: long and brown with light feather tips", + "throat: creamy-white and smooth" + ], + "galapagos hawk": [ + "back: dark brown feathers", + "beak: strong, hooked, grayish-black", + "belly: creamy white with dark brown streaks", + "breast: white with brown speckles", + "crown: dark brown with a slight crest", + "forehead: white, blending into brown crown", + "eyes: sharp, yellow-orange", + "legs: yellow, powerful, featherless", + "wings: dark brown, broad, and rounded", + "nape: white, transitioning to brown down the back", + "tail: long, horizontal, banded with dark brown and white", + "throat: white with some dark speckling" + ], + "galapagos martin": [ + "back: sleek bluish-black feathers", + "beak: sharp, pointed black bill", + "belly: light grayish-white underside", + "breast: grayish-blue plumage", + "crown: dark, bluish-black feathers", + "forehead: slightly lighter blue-black feathers", + "eyes: small, bright black eyes", + "legs: slim, grayish-black legs", + "wings: dark blue, long, pointed wings", + "nape: bluish-black, smooth feathers", + "tail: moderately long, dark blue-black feathers", + "throat: light grayish-blue feathers" + ], + "galapagos mockingbird": [ + "back: grayish-brown with streaked feathers", + "beak: long, thin, and slightly curved", + "belly: whitish with faint streaks", + "breast: pale gray with subtle streaking", + "crown: grayish-brown with fine streaks", + "forehead: slightly paler gray-brown", + "eyes: black, surrounded by white eye-ring", + "legs: long, thin, and blackish", + "wings: grayish-brown with distinct white bars", + "nape: grayish-brown with fine streaking", + "tail: long and dark with white tips on outer feathers", + "throat: light gray with faint streaks" + ], + "galapagos penguin": [ + "back: sleek, black feathers", + "beak: sharp, mostly black with orange base", + "belly: white, rounded underside", + "breast: smooth, white feathers", + "crown: black, rounded head feathers", + "forehead: small, white markings above eyes", + "eyes: dark, round, with white outlines", + "legs: short, sturdy, with dark scales", + "wings: streamlined, black flippers", + "nape: black, smooth, connecting head to back", + "tail: short, black, with distinct feathers", + "throat: white with occasional speckled black feathers" + ], + "galapagos petrel": [ + "back: blue-gray feathers with a smooth texture", + "beak: long, sharp, and black, used for catching prey", + "belly: light grayish-white in color, for insulation", + "breast: soft and fluffy white feathers, aiding in flotation", + "crown: blue-gray coloration with slight striping, for camouflage", + "forehead: blue-gray feathers blending into the rest of the head", + "eyes: dark and round, equipped for excellent vision", + "legs: strong and black, ending in webbed feet for swimming", + "wings: long and slender, with blue-gray and white feathers for swift flight", + "nape: marked by a transition from blue-gray to lighter-colored feathers", + "tail: blue-gray feathers, forked and designed for agile movement", + "throat: light grayish-white feathers, complementing the breast and belly" + ], + "galapagos rail": [ + "back: dark brown, streaked feathers", + "beak: short, stout, slightly curved", + "belly: pale buff, with black bars", + "breast: light brown, spotted pattern", + "crown: dark brown, with faint streaks", + "forehead: pale buff, blending with crown", + "eyes: small, black, alert gaze", + "legs: sturdy, slender, greenish-yellow", + "wings: short, rounded, barred brown", + "nape: dark brown, streaked like back", + "tail: black, relatively short, slightly rounded", + "throat: pale buff, faint streaking" + ], + "galapagos shearwater": [ + "back: sleek, grayish-brown upper feathers", + "beak: slender, hooked, black bill", + "belly: light whitish-gray underside", + "breast: soft, grayish-white plumage", + "crown: dark grayish-brown head feathers", + "forehead: smooth, grayish-brown fading to white", + "eyes: small, dark, and piercing", + "legs: relatively short, pinkish-gray", + "wings: long, narrow, dark gray with white edges", + "nape: grayish-brown transitioning to lighter shades", + "tail: medium-length, dark gray, v-shaped", + "throat: white, blending to gray on the breast" + ], + "gambaga flycatcher": [ + "back: olive-green with faint streaks", + "beak: short, black, and hooked", + "belly: light yellow with brownish tinge", + "breast: pale yellow, blending into belly", + "crown: dark gray, slightly crested", + "forehead: gray, extending to eye line", + "eyes: small, black, surrounded by pale eyering", + "legs: long, slender, blackish-gray", + "wings: brownish-gray, with light wing bars", + "nape: gray, bordering dark crown", + "tail: black-brown, with white outer feathers", + "throat: pale gray, contrasting with breast" + ], + "ganongga white eye": [ + "back: sleek gray feathers", + "beak: small, pointed, black", + "belly: light gray underbelly", + "breast: pale gray chest feathers", + "crown: vibrant white cap", + "forehead: bright white patch", + "eyes: large, dark, encircled by white", + "legs: thin, pale gray", + "wings: dark gray with white markings", + "nape: smooth gray feathers", + "tail: elongated gray tail feathers", + "throat: soft white plumage" + ], + "gansu leaf warbler": [ + "back: olive-green feathers", + "beak: thin and pointed", + "belly: pale yellowish", + "breast: yellowish-white with blurry streaks", + "crown: olive-green with a yellow tint", + "forehead: pale yellowish-green", + "eyes: dark brown with an eye-ring", + "legs: long and slender, pale pinkish-brown", + "wings: greenish-brown with pale wing bars", + "nape: olive-green", + "tail: greenish-brown with a white tip", + "throat: bright yellow" + ], + "garden emerald": [ + "back: vibrant green feathers", + "beak: slim, black, and curved", + "belly: pale emerald green", + "breast: bright emerald green", + "crown: radiant green plumage", + "forehead: shimmering green", + "eyes: dark, round, and alert", + "legs: thin, black, and delicate", + "wings: iridescent green with black tips", + "nape: brilliant green with slight turquoise", + "tail: elongated, narrow, emerald green feathers", + "throat: gleaming green with subtle yellow hues" + ], + "garden warbler": [ + "back: olive-brown and smooth feathers", + "beak: slim, pointed, and dark-colored", + "belly: pale buff with minimal markings", + "breast: light brownish-grey", + "crown: plain brown with a flat shape", + "forehead: light olive-brown hue", + "eyes: small, dark, and beady with faint pale eyering", + "legs: slender, pale pinkish-grey", + "wings: rounded, olive-brown with no strong wing bars", + "nape: unmarked olive-brown", + "tail: short and square-ended, olive-brown", + "throat: light greyish-white" + ], + "garganey": [ + "back: dark, scalloped feathers", + "beak: short and pointed, blue-gray", + "belly: pale, streaked with gray", + "breast: chestnut brown with subtle spotting", + "crown: dark brown, slightly crested", + "forehead: white, tinged with green", + "eyes: dark, surrounded by white eye rings", + "legs: yellow-orange, webbed feet", + "wings: iridescent green speculum with white trailing edge", + "nape: dark brown, blending into the crown", + "tail: short, dark brown with white outer feathers", + "throat: pale, slightly streaked with gray" + ], + "garnet pitta": [ + "back: vibrant blue with greenish tinge", + "beak: short, strong, black", + "belly: pale-blue hue", + "breast: reddish-orange", + "crown: bright blue with white streaks", + "forehead: deep-blue color", + "eyes: well-defined, black and white", + "legs: sturdy, long, pale pink", + "wings: rich blue, hints of green", + "nape: greenish-blue, white streaks", + "tail: short, vivid blue", + "throat: bright reddish-orange" + ], + "garnet robin": [ + "back: bright reddish-orange plumage", + "beak: small, pointed, and black", + "belly: pale gray feathers", + "breast: vibrant garnet red", + "crown: rich garnet-red color", + "forehead: bold red-garnet hue", + "eyes: small, round, with black pupils", + "legs: slender and dark gray", + "wings: brownish-gray with reddish tinge", + "nape: deep red-garnet feathers", + "tail: long, brownish-gray with red undertones", + "throat: striking garnet-red plumage" + ], + "garnet throated hummingbird": [ + "back: iridescent green feathers", + "beak: long, slender, and straight", + "belly: white or light gray plumage", + "breast: metallic red to garnet-colored feathers", + "crown: vibrant green sheen", + "forehead: gleaming green plumage", + "eyes: small, dark, and beady", + "legs: short and delicate", + "wings: long, pointed, and fast-moving", + "nape: shimmering green feathers", + "tail: forked with red and green tail feathers", + "throat: brilliant garnet hue with iridescence" + ], + "gartered trogon": [ + "back: vibrant green plumage", + "beak: short, stout, pale-yellow", + "belly: pale blue-gray with fine barring", + "breast: bold orange-red band", + "crown: dark glossy blue", + "forehead: abruptly lighter blue", + "eyes: dark, piercing gaze", + "legs: short, sturdy, grayish", + "wings: green feathers with black border", + "nape: deep blue, iridescent", + "tail: black and white horizontal bands", + "throat: glossy dark blue" + ], + "geelvink fruit dove": [ + "back: vibrant green feathers", + "beak: short, curved, dull orange", + "belly: grayish blue, softly feathered", + "breast: deep pink, plush plumage", + "crown: bright green, sleek feathers", + "forehead: yellow-green, smooth transition", + "eyes: dark, small, and round", + "legs: strong, pale gray with sharp claws", + "wings: green and blue, with some purple accents", + "nape: green with a hint of iridescence", + "tail: short, blue-gray with white tips", + "throat: delicate, light blue feathers" + ], + "geelvink imperial pigeon": [ + "back: smooth feathers, pale bluish-gray", + "beak: short, curved, pale orange", + "belly: white, soft feathers", + "breast: white, fluffy feathers", + "crown: rounded, pale bluish-gray feathers", + "forehead: pale bluish-gray, smooth feathers", + "eyes: dark, round eyes surrounded by white feathers", + "legs: short, pale-scaled legs with strong black claws", + "wings: long, strong, pale bluish-gray feathers", + "nape: white, slightly curved feathers on the neck", + "tail: broad, white feathers with subtle bluish-gray tips", + "throat: white, smooth feathers covering the throat area" + ], + "geelvink pygmy parrot": [ + "back: vibrant green feathers", + "beak: small and curved, grayish color", + "belly: bright yellow plumage", + "breast: brilliant green feathers", + "crown: emerald green coverage", + "forehead: lime green hue", + "eyes: round and dark with white eye ring", + "legs: short with strong gray claws", + "wings: bold green with blue accents", + "nape: rich green feathers", + "tail: short and teal with distinct blue ends", + "throat: bright yellow feathering" + ], + "genovesa cactus finch": [ + "back: greenish-brown feathers", + "beak: short, wide and hooked", + "belly: white to yellowish-gray plumage", + "breast: pale greenish-brown with light streaks", + "crown: dark gray-brown feathers", + "forehead: slightly lighter gray-brown", + "eyes: small, black, surrounded by white ring", + "legs: short, grayish-black", + "wings: round, greenish-brown with darker flight feathers", + "nape: gray-brown with light streaks", + "tail: short, dark brown with white edges on feathers", + "throat: white with fine streaks of gray-brown" + ], + "genovesa ground finch": [ + "back: dull brownish-gray plumage", + "beak: small, sharp black cone", + "belly: pale gray-white feathers", + "breast: light grayish-brown hue", + "crown: dark gray-brown feathers", + "forehead: smooth grayish-brown appearance", + "eyes: dark and alert, with a white eye-ring", + "legs: sturdy, short black legs", + "wings: brownish-gray, with faint white markings", + "nape: grayish-brown, blending with the back", + "tail: dark gray-brown feathers, with a slight curve", + "throat: soft gray-white coloration" + ], + "gentoo penguin": [ + "back: sleek grey-black feathers", + "beak: orange-red beak, slightly curved", + "belly: bright white feathers", + "breast: smooth white plumage", + "crown: black head feathers extending to neck", + "forehead: black feathers reaching to eyes", + "eyes: expressive, orange eye ring", + "legs: strong, webbed orange feet", + "wings: short, flipper-like grey-black", + "nape: white band extending to ears", + "tail: short, stiff dark feathers", + "throat: white, curved from beak to chest" + ], + "geoffroy daggerbill": [ + "back: olive-brown with darker markings", + "beak: long, curved, and black", + "belly: whitish-yellow with faint streaks", + "breast: pale-yellowish with dark spots", + "crown: black with a white stripe", + "forehead: black with white streaks", + "eyes: dark brown with cream-colored eye-ring", + "legs: grayish-blue with sharp claws", + "wings: olive-brown with dark stripes and white tips", + "nape: black with white stripes", + "tail: long, dark brown with white spots", + "throat: white with thin black streaks" + ], + "geomalia": [ + "back: dark brown with gray streaks", + "beak: short, curved, blackish-brown", + "belly: lighter brown with faint streaks", + "breast: grayish-brown with streaks", + "crown: deep brown with reddish highlights", + "forehead: slightly lighter brown with gray streaks", + "eyes: dark, beady, surrounded by gray feathers", + "legs: long, slender, reddish-brown", + "wings: brown with black barring and white patches", + "nape: reddish-brown with faint streaks", + "tail: long, rounded, brown with white tips", + "throat: grayish-brown with streaks" + ], + "germain peacock pheasant": [ + "back: beautiful iridescent green-blue feathers", + "beak: short, sturdy, and slightly curved", + "belly: pale white or gray feathers with black markings", + "breast: dotted purplish-blue plumage in a crescent shape", + "crown: striking crest with blue and green feathers", + "forehead: smooth, pale plumage with black markings", + "eyes: bright, alert, and dark in color", + "legs: strong, long, and grayish-blue", + "wings: edged with iridescent blue-green feathers and eye-catching spots", + "nape: colorful blue-green feathers blending into the back", + "tail: long, feathery plumes with dotted markings and eye spots", + "throat: pale plumage contrasted with breast markings" + ], + "germain swiftlet": [ + "back: smooth, dark gray feathers", + "beak: short and black, slightly curved", + "belly: lighter gray feathers with a tint of brown", + "breast: pale grayish-white feathers", + "crown: dark gray, rounded feathers", + "forehead: slightly lighter gray feathers", + "eyes: small, black dots on the head", + "legs: short and thin, with black curved claws", + "wings: long, slender, dark gray feathers", + "nape: dark gray feathers transitioning from crown to back", + "tail: short, forked tail with dark gray feathers", + "throat: white to light gray feathers" + ], + "ghana cuckooshrike": [ + "back: dark grayish-green upperparts", + "beak: slim, slightly hooked black bill", + "belly: yellow hue with white underparts", + "breast: yellowish-green coloring", + "crown: blackish-green with dense feathers", + "forehead: greenish-black feathering", + "eyes: dark brown with white eye-ring", + "legs: bluish-gray and slender", + "wings: greenish-black with yellow-edged feathers", + "nape: darker grayish-green shade", + "tail: long, blackish-green with white tips", + "throat: yellowish-white coloration" + ], + "giant antpitta": [ + "back: mossy-green feathers", + "beak: long and thin, black", + "belly: cream-colored, streaked with brown", + "breast: whitish-gray, blending to brown on sides", + "crown: grayish-brown with lighter streaks", + "forehead: light gray, fading to brown", + "eyes: black, encircled by pale eye-ring", + "legs: sturdy, orange-yellow", + "wings: brown with black barring and white spots", + "nape: grayish-brown, streaked with lighter hues", + "tail: long and black with white barring on tips", + "throat: creamy white, speckled with gray" + ], + "giant antshrike": [ + "back: soft, grayish-brown feathers", + "beak: thick, hooked, black tip", + "belly: pale gray-white plumage", + "breast: grayish-white with faint streaks", + "crown: blackish feathers with crest", + "forehead: black and flat feathers", + "eyes: round, pale yellow with black pupils", + "legs: strong, grayish-blue", + "wings: black with white wing bars", + "nape: black, short, dense feathers", + "tail: black, long, and fan-shaped", + "throat: white with a black collar" + ], + "giant babax": [ + "back: greenish-brown plumage", + "beak: robust, slightly curved", + "belly: whitish-gray feathers", + "breast: grayish-brown, streaked pattern", + "crown: dark gray with crest", + "forehead: lighter gray crest base", + "eyes: bright, inquisitive expression", + "legs: sturdy, well-feathered", + "wings: large, with slight rufous tinge", + "nape: greenish-brown hue, matching back", + "tail: lengthy and graduated, brown feathers", + "throat: white with distinct gray barring" + ], + "giant conebill": [ + "back: deep slate-blue feathers", + "beak: short, thick, and black", + "belly: light gray with subtle blue tint", + "breast: grayish-blue plumage", + "crown: vibrant blue crest", + "forehead: deep blue feathers blending into crown", + "eyes: small, dark, and alert", + "legs: sturdy black limbs with sharp claws", + "wings: slate-blue feathers with white-edged coverts", + "nape: continuous deep blue from head to back", + "tail: long, slate-blue feathers with white tips", + "throat: light gray, blending into breast" + ], + "giant coot": [ + "back: dark grey, strong feathers", + "beak: thick, stubby, blackish-white", + "belly: light grey, soft feathers", + "breast: broad, dark grey feathers", + "crown: dark grey, rounded feathers", + "forehead: black shield-like marking", + "eyes: small, sharp, red or brown", + "legs: thick, dark green, lobed toes", + "wings: large, half-dark grey, half-white feathers", + "nape: slightly lighter grey, structured feathers", + "tail: short, dark grey, fan-like feathers", + "throat: white, soft feathers, bare skin at base" + ], + "giant coua": [ + "back: vibrant blue feathers", + "beak: stout, slightly hooked, black", + "belly: pure white plumage", + "breast: azure blue covering", + "crown: rich chestnut crest", + "forehead: deep blue feathers", + "eyes: bright red, encircled by blue", + "legs: lengthy, grayish-blue", + "wings: broad, blue with coppery reflections", + "nape: blue, transitioning to chestnut", + "tail: long, blue feathers with white tips", + "throat: white, complementing blue chest" + ], + "giant cowbird": [ + "back: strong, glossy black feathers", + "beak: sturdy, curved, dark bill", + "belly: slightly rounded, black feathers", + "breast: broad, black plumage", + "crown: glossy black, slightly raised feathers", + "forehead: smooth, black feathers merging with the crown", + "eyes: dark, sharp gaze, framed by black plumage", + "legs: dark, robust with sharp claws", + "wings: large, powerful shiny black feathers", + "nape: silky black feathers connecting head and back", + "tail: slightly forked, black, long feathers", + "throat: elongated black feathers" + ], + "giant hummingbird": [ + "back: iridescent green with hints of bronze", + "beak: long, slender, and slightly curved", + "belly: pale grey with subtle green tinge", + "breast: soft buff with pale green streaks", + "crown: shimmering violet-blue", + "forehead: bright green and slightly iridescent", + "eyes: small, dark, and alert", + "legs: short and sturdy with strong claws", + "wings: large, pointed, and rapid in movement", + "nape: shiny green with a blue-violet sheen", + "tail: broad and forked, with grayish-green feathers", + "throat: vibrant gorget of iridescent purple-blue" + ], + "giant ibis": [ + "back: large curved body", + "beak: long, thin, slightly curved", + "belly: rounded, light grey", + "breast: full, light grey-feathered", + "crown: flat with thin crest", + "forehead: smooth, light grey color", + "eyes: small, dark, round", + "legs: long, thin, greyish-black", + "wings: broad, dark tipped feathers", + "nape: short, light grey feathers", + "tail: elongated, tapered black feathers", + "throat: slender, light grey patch" + ], + "giant kingbird": [ + "back: sleek gray feathers", + "beak: long, black, and slightly curved", + "belly: silvery-white plumage", + "breast: pale gray with a touch of yellow", + "crown: smooth, gray crest", + "forehead: flat with gray feathers", + "eyes: dark, alert, and surrounded by white feathers", + "legs: strong, black, and prepared for perching", + "wings: large, dark gray with bold white markings", + "nape: covered in smooth, gray feathers", + "tail: elongated, dark gray with white edges", + "throat: pale gray and sharply contrasted" + ], + "giant kingfisher": [ + "back: dark blue feathers with metallic sheen", + "beak: large, black, and slightly hooked", + "belly: clean, white feathers", + "breast: white with a thick blue-black band", + "crown: blue-black with middle crest", + "forehead: royal blue feathers", + "eyes: dark, rounded, and piercing", + "legs: stout and red-orange", + "wings: iridescent blue with dark spots", + "nape: metallic blue with light speckling", + "tail: elongated and blue-black with white spots", + "throat: white with a slight furrow" + ], + "giant laughingthrush": [ + "back: rich brown feathers", + "beak: strong, curved, black", + "belly: fluffy white-gray", + "breast: chestnut-colored plumage", + "crown: brownish-gray crest", + "forehead: smooth, light gray", + "eyes: piercing black orbs", + "legs: sturdy, dark gray", + "wings: brown, patterned feathers", + "nape: spotted mingling colors", + "tail: long, tapering feathers", + "throat: vibrant white patch" + ], + "giant nuthatch": [ + "back: blue-grey plumage", + "beak: strong, sharp, blackish", + "belly: white and pale grey feathers", + "breast: bluish-grey, with a dark streak", + "crown: dark blue-grey with noticeable white streak", + "forehead: bluish-grey with a paler shade than the crown", + "eyes: dark and surrounded by white eyering", + "legs: strong, dark-colored legs with small claws", + "wings: short, round, with dark primary and blue-grey secondary feathers", + "nape: blue-grey lightly blending with crown", + "tail: long, sturdy, bluish-grey with white tips", + "throat: white with a hint of grey" + ], + "giant pitta": [ + "back: vibrant green upper body feathers", + "beak: sturdy, blackish, slightly curved beak", + "belly: pale whitish-blue underbelly feathers", + "breast: golden-yellow chest feathers", + "crown: deep blue-black head top", + "forehead: multi-hued patch between eye and beak", + "eyes: alert, black, bead-like orbs", + "legs: strong, medium-length gray-to-brown", + "wings: striking, boldly patterned with greenish-gray and black bars", + "nape: greenish-blue upper-back neck", + "tail: broad, blue-black with greenish hints, short", + "throat: light blue plumage with unmarked chest" + ], + "giant scops owl": [ + "back: dark brown feathers with black and white speckles", + "beak: small, sharp, and curved, with a yellowish tint", + "belly: light brown with white streaks and spots", + "breast: small brown feathers with white spots and streaks", + "crown: dark brown feathers with white speckles", + "forehead: lighter brown with a more sparse arrangement of small white spots", + "eyes: large, yellow-orange, and piercing with a black pupil", + "legs: feathered with light brown and white stripes, ending in sharp talons", + "wings: dark brown with intricate black and white patterns", + "nape: dark brown feathers with white speckling", + "tail: long, dark brown feathers with horizontal bands of white and black", + "throat: light brown with white streaks and spots" + ], + "giant shrike": [ + "back: dark gray with slight white streaks", + "beak: strong, hooked, black tip", + "belly: pale gray with fine, black striations", + "breast: soft gray, slightly speckled", + "crown: bold black with a white patch", + "forehead: fine white streaks on black", + "eyes: deep black, surrounded by white feathers", + "legs: sturdy, yellowish-brown", + "wings: black with white bars and tips", + "nape: dark gray, smoothly blending into the crown", + "tail: long, black with white outer feathers and tips", + "throat: white with faint gray shading" + ], + "giant snipe": [ + "back: long, narrow, and covered in striped feathers", + "beak: robust, long, and straight with a slightly downward curve", + "belly: pale and mottled with brown, gray, and white plumage", + "breast: streaked with dark brown and white feathers, blending with the belly", + "crown: dark brown with a streaked pattern that extends towards the nape", + "forehead: white, sometimes with a few dark spots or streaks", + "eyes: dark and circular, placed more toward the side of the head", + "legs: long, slender, and yellowish-green in color", + "wings: broad and rounded with intricate brown, black, and white markings", + "nape: rich brown with white streaks, transitioning from the crown", + "tail: short and fan-shaped with alternating patterns of brown and white feathers", + "throat: white with fine, dark streaks, mainly on the sides" + ], + "giant weaver": [ + "back: olive-green feathers with a slight sheen", + "beak: strong, conical-shaped, and silver-grey", + "belly: bright yellow plumage with subtle streaks", + "breast: boldly patterned with black and yellow feathers", + "crown: vibrant orange-yellow crest atop the head", + "forehead: smooth black feathers complementing the eyes", + "eyes: dark and piercing with a narrow white eye-ring", + "legs: sturdy and greyish-blue, with strong claws for perching", + "wings: broad and strong with black and yellow-green feathers", + "nape: olive-green feathers transitioning into the crown", + "tail: long and forked, with black and pale yellow feathers", + "throat: striking black plumage with a contrasting yellow border" + ], + "giant white eye": [ + "back: sleek white feathers", + "beak: slightly curved, slender black beak", + "belly: soft, pure white fluff", + "breast: smooth and radiant white plumage", + "crown: rounded white cap", + "forehead: clean, flat white surface", + "eyes: large, blinking black orbs", + "legs: slender, long pale legs", + "wings: expansive white fans, reaching outwards", + "nape: smooth white neck arching gracefully", + "tail: elongated, elegant white feathers", + "throat: delicate white front, curving to meet the breast" + ], + "giant wood rail": [ + "back: a dark brown plumage with a slightly greenish sheen", + "beak: long, curved, and dark reddish-brown", + "belly: soft grayish-white with faint brown speckling", + "breast: light brown with black and white barring", + "crown: dark brown featuring a prominent rear crest", + "forehead: smooth, dark brown with lighter brown streaks", + "eyes: small, piercing, and reddish-brown", + "legs: long, strong, and orange-yellow", + "wings: broad, rounded, with dark brown feathers and thin white bars", + "nape: a mixture of dark brown and light brown feathers", + "tail: short and strong, with thick, black and white bars", + "throat: whitish with faint brown speckling" + ], + "giant wren": [ + "back: golden-brown feathers with dark spots", + "beak: long, thin, sharp, and slightly curved", + "belly: pale cream with faint markings", + "breast: richer cream color with dark speckles", + "crown: chestnut color with a hint of bronze", + "forehead: golden-brown with faint streaks", + "eyes: large, black, and alert", + "legs: strong with sharp, talon-like claws", + "wings: broad, golden-brown with distinctive barring", + "nape: chestnut-colored with short, narrow stripes", + "tail: long, wide, and golden-brown with dark barring", + "throat: creamy in color with sparse speckles" + ], + "gibber chat": [ + "back: olive-green feathers", + "beak: short, sharp, dark-colored", + "belly: pale yellowish hue", + "breast: orange-buff tint", + "crown: dark grey-plumage", + "forehead: bright white streaks", + "eyes: shiny black, encircled with white", + "legs: long, brown, slender", + "wings: olive-green, rounded edges", + "nape: dark grey with white streaks", + "tail: short, olive-green, white tips", + "throat: creamy-white, flecked with grey" + ], + "gilbert honeyeater": [ + "back: olive-green with subtle streaks", + "beak: long, slender, and curved", + "belly: pale yellow with faint markings", + "breast: bright yellow with fine streaks", + "crown: deep green with a slight crest", + "forehead: bright yellow-green", + "eyes: dark brown with white eye-ring", + "legs: thin and dark gray", + "wings: olive-green with pale wing-bar", + "nape: olive-green transitioning from crown", + "tail: olive-green with white tips", + "throat: bright yellow with faint streaks" + ], + "gilbert whistler": [ + "back: blue-green with darker spots", + "beak: elongated and slender, slightly curved", + "belly: white with minimal markings", + "breast: light grayish-brown with distinct streaks", + "crown: blue-gray with faint lines", + "forehead: blue-gray with a slight white line", + "eyes: small and black with white eyering", + "legs: sturdy and gray", + "wings: blue-green with white bars and black tips", + "nape: blue-gray with darker lines", + "tail: long and narrow with white edges", + "throat: white with distinct gray streaks" + ], + "gilded barbet": [ + "back: vibrant green feathers", + "beak: short and stout, ivory yellow", + "belly: yellowish-green with feather detail", + "breast: bright yellow merging to green", + "crown: deep blue with shiny metallic texture", + "forehead: vivid red to yellow gradient", + "eyes: small and dark, encircled by blue and green", + "legs: slender light gray with sharp claws", + "wings: striking green with subtle blue and yellow accents", + "nape: blue-green transitioning to yellow-green", + "tail: long and tapered, emerald green feathers", + "throat: golden-yellow with a hint of red" + ], + "gilded hummingbird": [ + "back: shimmering golden-green feathers", + "beak: elongated, slender, and straight", + "belly: pale cream with soft speckles", + "breast: iridescent golden-green hues", + "crown: radiant gold and green feathers", + "forehead: brilliant green-gold plumage", + "eyes: small, dark, and alert", + "legs: dainty and twig-like", + "wings: rapid flutter, glistening green-gold edges", + "nape: bright golden-green feathers", + "tail: long, tapered, with shining golden-green feathers", + "throat: dazzling ruby-red with iridescence" + ], + "gillett lark": [ + "back: light brown with dark streaks", + "beak: slender, slightly curved", + "belly: whitish with pale brown streaks", + "breast: light brown, spotted", + "crown: light brown with dark streaks", + "forehead: pale brown, unmarked", + "eyes: small, dark brown", + "legs: long, pinkish-brown", + "wings: brown, marked with dark streaks", + "nape: light brown with dark streaks", + "tail: long, brown, outer feathers white-tipped", + "throat: whitish, unmarked" + ], + "gilt edged tanager": [ + "back: vibrant yellow-green hue", + "beak: short, black, pointed", + "belly: luminous silver-blue", + "breast: radiant silver-blue", + "crown: striking yellow-green", + "forehead: bright yellow-green", + "eyes: small, black, alert", + "legs: thin, dark gray", + "wings: yellow-green, blue edges", + "nape: rich yellow-green", + "tail: long, blue-edged", + "throat: glistening silver-blue" + ], + "glacier finch": [ + "back: light grey plumage, streaked with black", + "beak: convex, strong black beak for crushing seeds", + "belly: cream-white feathers with grey streaks", + "breast: pale grey with faint brown streaks", + "crown: greyish-white with black crown patch", + "forehead: smooth greyish-white feathers", + "eyes: dark brown, surrounded by white eye-ring", + "legs: short, sturdy black legs", + "wings: black with white wing bars and edging", + "nape: grey, blending into back plumage", + "tail: black, forked, with white outer rectrices", + "throat: pale grey, blending into breast area" + ], + "glaucous tanager": [ + "back: dark blue-green feathers", + "beak: black, cone-shaped", + "belly: turquoise blue", + "breast: bright glaucous-blue", + "crown: dark blue", + "forehead: vibrant blue-green", + "eyes: black with white eye-ring", + "legs: dark gray", + "wings: glaucous-blue with dark flight feathers", + "nape: blue-green coloration", + "tail: long, dark blue feathers", + "throat: bright glaucous-blue" + ], + "glaucous blue grosbeak": [ + "back: vibrant blue feathers", + "beak: stout and conical, black hue", + "belly: pale blue soft plumage", + "breast: bright blue chest feathers", + "crown: striking blue crest on head", + "forehead: bold blue coloration", + "eyes: round and dark, alert expression", + "legs: sturdy grey-blue limbs", + "wings: vivid blue flight feathers", + "nape: brilliant blue, connecting crown to back", + "tail: long, blue, fan-shaped feathers", + "throat: lighter blue, blending into breast" + ], + "glistening green tanager": [ + "back: vibrant emerald feathers", + "beak: sleek black, sharp", + "belly: shimmering lime hue", + "breast: iridescent green plumage", + "crown: gleaming verdant crest", + "forehead: dazzling green patch", + "eyes: piercing black gaze", + "legs: slate grey, slender", + "wings: radiant green, fluttering", + "nape: glossy green curve", + "tail: trailing green, elongated", + "throat: lustrous light-green" + ], + "glittering bellied emerald": [ + "back: vibrant green feathers", + "beak: slender, elongated black beak", + "belly: shimmering emerald green", + "breast: iridescent turquoise-blue", + "crown: gleaming green cap", + "forehead: bright green with a slight shine", + "eyes: dark, round, and alert", + "legs: slender and dark grey", + "wings: vibrant green with hints of blue", + "nape: brilliant green continuing from the crown", + "tail: elongated, forked, and iridescent green-blue", + "throat: glistening turquoise-blue" + ], + "glittering throated emerald": [ + "back: vibrant green hues", + "beak: slender and slightly curved", + "belly: shining white plumage", + "breast: iridescent green feathers", + "crown: radiant emerald green", + "forehead: glittering green shimmer", + "eyes: small, dark, and alert", + "legs: slender and twig-like", + "wings: rapid, blurred movement", + "nape: brilliant green shimmer", + "tail: forked and iridescent", + "throat: sparkling emerald brilliance" + ], + "glossy antshrike": [ + "back: dark grey with a slight sheen", + "beak: black, short and stout", + "belly: pale grey with lighter streaks", + "breast: charcoal grey with lighter streaks", + "crown: ash grey with a subtle shine", + "forehead: slightly lighter grey than the crown", + "eyes: dark brown with a thin white eyering", + "legs: black, sturdy and long", + "wings: grey-black with faint white bars", + "nape: similar to the back, dark grey with a slight sheen", + "tail: dark grey with lighter edges", + "throat: light grey with traces of white" + ], + "glossy black cockatoo": [ + "back: sleek glossy black feathers", + "beak: strong, prominent, dark gray", + "belly: slightly lighter black hue, feathered", + "breast: deep black, shielding robust chest", + "crown: glossy black, smooth feathers", + "forehead: deep black, continuous with crown", + "eyes: dark with brownish-black iris", + "legs: sturdy gray, scaling texture", + "wings: elongated, glossy black feathers", + "nape: rich black, flowing to upper back", + "tail: long black feathers, finishing touch", + "throat: pure black, contrasts with light beak" + ], + "glossy flowerpiercer": [ + "back: iridescent blue-black feathers", + "beak: short, hooked, and black", + "belly: light-gray to white plumage", + "breast: grayish-blue feathers", + "crown: shining blue-black cap", + "forehead: bright blue-black plumage", + "eyes: piercing dark with white eye-ring", + "legs: thin, long, and black", + "wings: dark blue-black with lighter highlights", + "nape: glossy blue-black feathers", + "tail: long, blue-black with white outer tips", + "throat: light gray with white tuft" + ], + "glossy swiftlet": [ + "back: sleek, iridescent bluish-black", + "beak: small, dark, and slightly curved", + "belly: light gray with minimal markings", + "breast: glossy, grayish-white", + "crown: shiny, dark bluish-black", + "forehead: glossy dark blue with slight curve", + "eyes: dark, round, with white eye-ring", + "legs: short, gray, and feathered", + "wings: long, slender, and strong for agile flight", + "nape: glossy bluish-black, smooth transition from crown", + "tail: dark, forked, with white tips on outer feathers", + "throat: pale gray, blends into breast feathers" + ], + "glossy backed becard": [ + "back: shiny deep green with feathered texture", + "beak: hooked, black, and sharp-edged", + "belly: vibrant yellow with smooth plumage", + "breast: rich yellow to golden hue, soft feathers", + "crown: glossy dark green, sleek contour", + "forehead: vivid green with a smooth appearance", + "eyes: dark brown with a sharp, alert gaze", + "legs: sturdy and gray, with sharp, black claws", + "wings: iridescent green, elegantly curved", + "nape: shimmering green, seamlessly blending with the back", + "tail: elongated, glossy green with black barring", + "throat: brilliant yellow, transitioning smoothly from the breast" + ], + "glossy backed drongo": [ + "back: shiny black feathers with blue-green sheen", + "beak: stout, black, and slightly hooked", + "belly: slightly paler black feathers with some glossy sheen", + "breast: dark black feathers with a glossy appearance", + "crown: smooth black feathers with reflective shine", + "forehead: sleek, shiny black feathers", + "eyes: dark, rounded with a black pupil", + "legs: strong, black and scaly", + "wings: long, pointed black with glossy feathers", + "nape: shiny black feathers transitioning from crown to back", + "tail: long, forked, and black with iridescent feathers", + "throat: smooth black feathers with a subtle gloss" + ], + "glossy black thrush": [ + "back: glossy black feathers", + "beak: sharp, dark-colored", + "belly: sleek black plumage", + "breast: shining black chest feathers", + "crown: smooth, black head feathers", + "forehead: glistening black area above the eyes", + "eyes: piercing, dark-colored", + "legs: strong, blackbird legs", + "wings: iridescent black, elongated feathers", + "nape: lustrous black feathers at the back of the neck", + "tail: fan-shaped, black shimmering feathers", + "throat: gleaming black, with a slight curve" + ], + "glossy mantled manucode": [ + "back: iridescent blue-green sheen", + "beak: short, black, and wide", + "belly: glossy dark blue", + "breast: intense azure blue", + "crown: deep blue sheen", + "forehead: shimmering blue-green shine", + "eyes: small, dark, and alert", + "legs: slender black limbs", + "wings: radiant blue-green hues", + "nape: vibrant blue shine", + "tail: elongated, opalescent blue-green", + "throat: gleaming deep blue" + ], + "glowing puffleg": [ + "back: iridescent green feathers", + "beak: slender, straight, black", + "belly: soft white plumage", + "breast: vibrant turquoise feathers", + "crown: gleaming green-gold cap", + "forehead: shimmering emerald green", + "eyes: sharp, black, and attentive", + "legs: slender, delicate, gray", + "wings: radiant green with flashes of bronze", + "nape: shining golden-green feathers", + "tail: elongated, metallic green-blue", + "throat: glistening royal blue patch" + ], + "godlewski bunting": [ + "back: vibrant turquoise hue with black streaks", + "beak: short and stout; black color", + "belly: white with distinct gray markings", + "breast: deep cobalt blue in males; gray-blue in females", + "crown: rich blue top of the head for males, gray-blue in females", + "forehead: bright blue in males, duller blue in females", + "eyes: beady and dark with a faint white eyering", + "legs: sturdy and black, with well-defined claws", + "wings: strong and pointed lined with black and white edging", + "nape: merging of blue and turquoise shades", + "tail: blue with black bands and white outer edges", + "throat: intense blue color in males, lighter blue in females" + ], + "goeldi antbird": [ + "back: olive-brown with delicate black barring", + "beak: short, stout, and black", + "belly: white with black streaks", + "breast: white with black streaks", + "crown: black with a slight crest", + "forehead: black with dense feathering", + "eyes: dark with faint white eyering", + "legs: pale pinkish-gray", + "wings: brownish with white wingbars", + "nape: black with light streaks", + "tail: long and black with white tips", + "throat: unmarked white" + ], + "gold fronted fulvetta": [ + "back: olive-green, blending with the wings", + "beak: short, stout, pale yellowish-brown", + "belly: pale gray-white, slightly fluffy", + "breast: warm gray, mixing with the belly", + "crown: golden-yellow, distinctively bright", + "forehead: continuation of the golden-yellow crown", + "eyes: dark, beady, surrounded by dark feathers", + "legs: slender, pale pinkish-brown", + "wings: olive-green, rounded, with faint pale edgings", + "nape: olive-gray, contrasting with the golden crown", + "tail: olive-green, slightly forked, graduating in length", + "throat: off-white, blending with the breast and belly" + ], + "gold naped finch": [ + "back: vibrant olive-green tone", + "beak: short, pointed, light pinkish hue", + "belly: pale yellow with faint streaks", + "breast: bright yellow with brown streaks", + "crown: shiny golden-yellow crest", + "forehead: gold-tinted yellow, smooth contour", + "eyes: small, dark beads surrounded by faint white rings", + "legs: slender, pinkish-brown, and well-adapted", + "wings: rich, olive-green with black feather tips", + "nape: gleaming golden-yellow stripe", + "tail: elongated, blackish-brown with white outer feathers", + "throat: bright yellow with light streaks" + ], + "gold ringed tanager": [ + "back: vibrant emerald green", + "beak: short and black", + "belly: bright yellow", + "breast: sparkling golden ring", + "crown: deep black with green hues", + "forehead: black with fine green streaks", + "eyes: deep black, framed by thin white circle", + "legs: slender and dark gray", + "wings: emerald green with black primary feathers", + "nape: rich green transitioning to black", + "tail: elongated black with green iridescence", + "throat: intense golden hue" + ], + "gold whiskered barbet": [ + "back: vibrant green feathers", + "beak: stout, slightly curved, yellow-orange", + "belly: yellowish-green with streaks", + "breast: red patch surrounded by yellow-green", + "crown: blue head with streaks of red", + "forehead: metallic blue-green", + "eyes: round, black, with a white ring", + "legs: grayish-blue, strong with gripping toes", + "wings: bright green with blue-tipped feathers", + "nape: green fading to blue on hindneck", + "tail: green and blue with black-tipped feathers", + "throat: bright yellow with red whisker-like markings" + ], + "goldcrest": [ + "back: olive-green feathers with slight yellow tint", + "beak: thin and pointy for insect-catching", + "belly: pale yellow with faint greyish streaks", + "breast: light golden-yellow plumage", + "crown: vibrant yellow crest with black border", + "forehead: pale yellow with a touch of grey", + "eyes: small and black, surrounded by white eyering", + "legs: thin and delicate with strong, sharp claws", + "wings: brownish with two white wingbars", + "nape: olive-green with a hint of yellow", + "tail: short and brown with narrow white edges", + "throat: ivory white with faint grey streaks" + ], + "golden babbler": [ + "back: golden-brown plumage", + "beak: short, slightly curved", + "belly: cream with light streaks", + "breast: yellowish-brown", + "crown: golden-yellow", + "forehead: bright golden-yellow", + "eyes: dark, small, beady", + "legs: slender, pale pinkish-grey", + "wings: golden-yellow, round-edged", + "nape: yellowish-brown", + "tail: long, rufous-golden", + "throat: cream with brown streaks" + ], + "golden bowerbird": [ + "back: olive-green feathers", + "beak: short and stout, grayish", + "belly: pale yellow hue", + "breast: bright golden-yellow plumage", + "crown: golden-yellow crest", + "forehead: yellow feathers blending into olive-green", + "eyes: small and dark", + "legs: slender, grayish-black", + "wings: olive-green with hints of vibrant yellow", + "nape: olive-green transitioning to golden-yellow towards the head", + "tail: medium length, olive-green feathers", + "throat: golden-yellow, vibrant contrast to breast" + ], + "golden bush robin": [ + "back: golden-yellow with slight olive tinge", + "beak: small, thin, and black", + "belly: vibrant golden-yellow fading to pale yellow", + "breast: bright golden-yellow", + "crown: golden-yellow with some olive-brown markings", + "forehead: bold golden-yellow with slight olive tinge", + "eyes: small, round, and black with white eye-ring", + "legs: robust and pinkish-brown", + "wings: olive-brown with streaks of golden-yellow", + "nape: golden-yellow with slightly darker olive tone", + "tail: olive-brown with yellow edges, slightly forked", + "throat: striking golden-yellow color" + ], + "golden cuckooshrike": [ + "back: olive-green with a slight golden hue", + "beak: black, short, strong, and slightly hooked", + "belly: creamy white with pale yellow undertones", + "breast: pale golden-yellow with fine black streaks", + "crown: olive-green with a touch of gold, slightly rounded", + "forehead: bright golden-yellow, smooth, fading into the crown", + "eyes: dark brown, round, surrounded by a thin white eye-ring", + "legs: grayish-black, slender, with powerful feet", + "wings: olive-green with golden edges, long, and broad", + "nape: olive-green, blending into the back and crown", + "tail: olive-green with black barring, fan-shaped, medium-length", + "throat: golden-yellow, prominent, with a clean line separating it from the breast" + ], + "golden dove": [ + "back: glistening golden plumage", + "beak: petite, curved yellow tip", + "belly: warm, sunlit golden shades", + "breast: radiant gold feathers", + "crown: shimmering halo-like crest", + "forehead: smooth, metallic gold gradient", + "eyes: deep, dark, gleaming gems", + "legs: slender golden stems", + "wings: elegant drapes of gilded feathers", + "nape: polished gold neckline", + "tail: cascading golden fan", + "throat: glowing golden collar" + ], + "golden greenbul": [ + "back: vibrant green feathers", + "beak: short and pointed, yellowish color", + "belly: warm golden-yellow hue", + "breast: golden-yellow with greenish tinge", + "crown: deep green with slight metallic sheen", + "forehead: bright green blending into the crown", + "eyes: small and black, surrounded by white eye-ring", + "legs: slender and grayish-brown", + "wings: green with yellowish edge on flight feathers", + "nape: green transitioning to golden-yellow", + "tail: long and green, with yellow edges on feathers", + "throat: bright golden-yellow" + ], + "golden grosbeak": [ + "back: vibrant yellow-green hue", + "beak: short, thick, and conical", + "belly: golden yellow with a tinge of orange", + "breast: bright yellow-orange", + "crown: contrasting black or greenish-black", + "forehead: vivid deep yellow", + "eyes: dark and piercing", + "legs: sturdy grey with strong talons", + "wings: rich olive-green with black streaks", + "nape: yellow-green merging with the crown", + "tail: long, olive-green with black central feathers", + "throat: brilliant golden yellow" + ], + "golden masked owl": [ + "back: golden-brown plumage with white speckles", + "beak: sharp, hooked, dark gray", + "belly: light cream with dark brown markings", + "breast: creamy-white with brown speckles", + "crown: golden-brown with light speckles", + "forehead: pale cream with darker streaks", + "eyes: large, dark, and striking", + "legs: feathered, beige with brown bands", + "wings: golden-brown with white spots on upperwing coverts", + "nape: golden-brown with light speckles", + "tail: dark brown with light bands", + "throat: pale, creamy-white with subtle markings" + ], + "golden monarch": [ + "back: vibrant golden-yellow feathers", + "beak: slender, slightly curved, black", + "belly: pale golden-yellow hue", + "breast: golden-yellow plumage", + "crown: bright golden-yellow crest", + "forehead: sun-kissed yellow feathers", + "eyes: beady, black, surrounded by yellow", + "legs: thin, black, strong", + "wings: elongated, golden-yellow feathers with black accents", + "nape: rich golden-yellow plumage", + "tail: long, narrow, golden-yellow feathers with black tips", + "throat: soft, golden-yellow feathers" + ], + "golden myna": [ + "back: vibrant golden hue", + "beak: strong, slightly curved, black", + "belly: shimmering golden-yellow", + "breast: bright golden-yellow feathers", + "crown: lustrous golden crest", + "forehead: gold-colored plumage", + "eyes: piercing, dark brown", + "legs: dark gray, slender", + "wings: glistening gold, sleek", + "nape: rich golden-yellow feathers", + "tail: iridescent gold, elongated", + "throat: gleaming golden-yellow" + ], + "golden nightjar": [ + "back: golden-brown feathers with dark patterning", + "beak: short, pointed, and dark in color", + "belly: pale with brown speckling or striping", + "breast: golden-brown with black or dark streaks", + "crown: golden-brown feathers with dark, elongated spots", + "forehead: typically a lighter, sandy color with fine streaks", + "eyes: large and dark, adapted for night vision", + "legs: long, slender, and pale with small, dull claws", + "wings: speckled golden-brown with intricate patterns", + "nape: feathers transition from golden-brown to lighter tones near the neck", + "tail: long with golden-brown feathers and darker bands or spots", + "throat: pale feathers with fine, dark streaks" + ], + "golden palm weaver": [ + "back: vibrant yellow-green feathers", + "beak: strong, conical-shaped and black", + "belly: light yellow with streaks of olive-brown", + "breast: bright yellow with olive-brown streaks", + "crown: vivid yellow-green, slightly raised", + "forehead: bright yellow, fading into crown", + "eyes: dark, medium-sized with a white eye-ring", + "legs: black and slender, with strong claws", + "wings: olive-brown with yellow-green edges", + "nape: vibrant yellow-green, blending with the crown", + "tail: olive-brown feathers with yellow-green tips", + "throat: bright yellow with faint olive-brown streaks" + ], + "golden parrotbill": [ + "back: vibrant golden-yellow feathers", + "beak: short, strong, silver-grey", + "belly: pale yellow with light streaks", + "breast: bright golden-yellow plumage", + "crown: striking golden-yellow crest", + "forehead: gleaming golden-yellow", + "eyes: small, dark, and alert", + "legs: sturdy, grey with scaly texture", + "wings: gold-edged greenish-brown", + "nape: smooth golden-yellow feathers", + "tail: elongated with alternating gold and brown", + "throat: soft golden-yellow feathers" + ], + "golden swallow": [ + "back: shimmering gold-green feathers", + "beak: slender, black, and slightly curved", + "belly: creamy pale-yellow plumage", + "breast: iridescent blue-green feathers", + "crown: glossy golden-green crest", + "forehead: bright glowing-yellow patch", + "eyes: dark and beady with a black iris", + "legs: short and sturdy, black with claws", + "wings: long, pointed golden feathers with flashes of green", + "nape: gleaming golden-green with a slight metallic shine", + "tail: long and forked, with gold and green feathers", + "throat: bluish-green iridescent feathers with hints of gold" + ], + "golden tanager": [ + "back: bright golden-yellow hue", + "beak: black and conical shape", + "belly: vibrant golden-yellow color", + "breast: rich golden-yellow plumage", + "crown: golden-yellow feathers", + "forehead: golden-yellow with smooth plumage", + "eyes: small, black and expressive", + "legs: black and slender", + "wings: golden-yellow with darker flight feathers", + "nape: rich golden-yellow plumage", + "tail: golden-yellow with long, flowing feathers", + "throat: golden-yellow, smooth feathers" + ], + "golden vireo": [ + "back: olive-green with subtle yellow highlights", + "beak: short, slightly curved, dark grey", + "belly: creamy yellow and white blend", + "breast: vibrant yellow", + "crown: olive with touches of grey", + "forehead: olive-green, gradient fades into crown", + "eyes: beady black with thin, white eyering", + "legs: bluish-grey with strong claws", + "wings: olive-green, outlined with white wing bars", + "nape: olive-green, seamlessly merges with crown", + "tail: olive-green, white outer edges and notched tip", + "throat: bright, unblemished yellow" + ], + "golden whistler": [ + "back: bright golden-yellow hue", + "beak: slender black bill", + "belly: creamy-white underbelly", + "breast: vibrant yellow chest", + "crown: rich black plumage", + "forehead: dark black feathers", + "eyes: piercing white eye-rings", + "legs: thin, grayish-brown legs", + "wings: black with white trailing edges", + "nape: black feathered neck area", + "tail: black with white outer feathers", + "throat: striking yellow patch" + ], + "golden white eye": [ + "back: vibrant green feathers", + "beak: short and black", + "belly: pale, yellowish-white", + "breast: bright yellow plumage", + "crown: greenish-yellow with a fine pattern", + "forehead: yellow-green feathers", + "eyes: prominent, encircled by white feathers and black pupil", + "legs: slim and grayish", + "wings: green with hints of yellow", + "nape: yellowish-green", + "tail: long and green, fanned out", + "throat: bright yellow feathers" + ], + "golden backed bishop": [ + "back: vibrant yellow plumage", + "beak: black and cone-shaped", + "belly: white with black barring", + "breast: bright yellow feathers", + "crown: glossy black top of the head", + "forehead: black plumage, yellow highlights", + "eyes: dark brown with white eyerings", + "legs: dark grey and slender", + "wings: black with gold-yellow edges", + "nape: distinctive yellow band", + "tail: black with yellow streaks", + "throat: black individual feathers tapering to neck" + ], + "golden backed mountain tanager": [ + "back: vibrant yellow-gold feathers", + "beak: sharp and slender, charcoal-black", + "belly: deep blue with bright yellow highlights", + "breast: rich, cobalt blue feathers", + "crown: radiant golden-yellow plumage", + "forehead: gleaming golden-yellow feathers", + "eyes: black with a thin, white eye-ring", + "legs: strong, gray-black limbs", + "wings: deep blue with gold-fringed flight feathers", + "nape: brilliant golden-yellow plumage", + "tail: elongated, blue feathers with golden tips", + "throat: bright yellow with a cobalt blue patch" + ], + "golden backed weaver": [ + "back: vibrant golden yellow", + "beak: sturdy, conical shape", + "belly: creamy white feathers", + "breast: bright golden hue", + "crown: radiant gold coloring", + "forehead: vivid golden tone", + "eyes: round, dark and alert", + "legs: slender, grayish", + "wings: black with golden-yellow edging", + "nape: brilliant golden feathers", + "tail: short, black feathers", + "throat: soft golden color" + ], + "golden bellied euphonia": [ + "back: vibrant blue plumage", + "beak: small, pointed, black", + "belly: bright golden-yellow", + "breast: rich yellow feathers", + "crown: deep cobalt blue", + "forehead: striking electric blue", + "eyes: tiny, round, black", + "legs: slender, grayish", + "wings: bold blue with black edges", + "nape: light blue hue", + "tail: short, blue with black tips", + "throat: brilliant yellow patch" + ], + "golden bellied flycatcher": [ + "back: golden-brown and olive-toned feathers", + "beak: short, strong, and dark-colored", + "belly: vibrant golden-yellow plumage", + "breast: soft yellow with hints of olive", + "crown: olive-green with golden tinges", + "forehead: golden to olive-green shades", + "eyes: dark, round, and alert", + "legs: slender and dark in color", + "wings: olive-brown with lighter, golden edges", + "nape: golden-brown feather transition", + "tail: elongated with olive-brown coloring", + "throat: pale golden hue and soft plumage" + ], + "golden bellied flyrobin": [ + "back: olive-brown with slight golden sheen", + "beak: slender, black, and curved downward", + "belly: bright golden-yellow", + "breast: golden-yellow transitioning to white", + "crown: olive-brown with golden edges", + "forehead: slight white line above eyes", + "eyes: large, dark, and expressive", + "legs: slender and dark gray", + "wings: brownish-black with golden edging", + "nape: olive-brown with golden highlights", + "tail: brownish-black with white corners", + "throat: white with golden-yellow sides" + ], + "golden bellied gerygone": [ + "back: olive-green feathers with pale edges", + "beak: petite and sharp, dark upper mandible", + "belly: vibrant golden-yellow hue", + "breast: golden-yellow plumage", + "crown: olive-green feathers with a dark streak", + "forehead: subtle olive-green hue transitioning into golden", + "eyes: small, round, and dark brown with pale eye-ring", + "legs: slender, pale gray with sharp claws", + "wings: olive-green with pale-yellow edges and dark tips", + "nape: olive-green hue fading into golden-yellow", + "tail: long, slender, olive-green with dark bands and white tips", + "throat: light golden-yellow with olive-green hints" + ], + "golden bellied starfrontlet": [ + "back: iridescent green feathers", + "beak: long, straight, and black", + "belly: vibrant golden-yellow", + "breast: shimmering green plumage", + "crown: metallic green with purple accents", + "forehead: shining violet stripe", + "eyes: small and dark", + "legs: thin and black", + "wings: iridescent green with white tips", + "nape: shiny green with purple hues", + "tail: elongated, green feathers with white edges", + "throat: radiant violet sheen" + ], + "golden billed saltator": [ + "back: olive-green covering the upper body", + "beak: stout, golden-yellow with a slightly curved upper mandible", + "belly: creamy white blending into a rich olive-brown", + "breast: yellowish-green transitioning into the white belly", + "crown: dark gray with a hint of green", + "forehead: dark gray extending to the eyes", + "eyes: small, black, and sharp with a white ring", + "legs: robust, grayish-brown", + "wings: deep olive-green with dark brown primaries", + "nape: dark gray with subtle greenish hues", + "tail: olive-green feathers with white outer edges", + "throat: gray with a tinge of yellowish-green" + ], + "golden breasted bunting": [ + "back: vibrant olive-green and brown with subtle streaks", + "beak: short, pointed, and conical", + "belly: bright yellow, extending across the underparts", + "breast: brilliant golden-orange coloring", + "crown: olive-brown with thin streaks", + "forehead: light olive with brown streaks", + "eyes: dark, beady, encircled by thin white eye-ring", + "legs: delicate, pale pinkish-grey", + "wings: olive-brown with white-edged feathers", + "nape: olive-brown with fine streaks", + "tail: dark brown with light outer edges", + "throat: bright golden-yellow, leading to the breast" + ], + "golden breasted fruiteater": [ + "back: vibrant green feathers", + "beak: short, hooked, black", + "belly: golden-yellow plumage", + "breast: bright golden-yellow feathers", + "crown: green with blue-black cap", + "forehead: blue-black coloration", + "eyes: dark brown with a touch of blue", + "legs: strong, grayish-blue", + "wings: iridescent green with blue-black edge", + "nape: green area between the crown and the back", + "tail: green with blue-black tips", + "throat: golden-yellow feathers transitioning to green" + ], + "golden breasted fulvetta": [ + "back: olive-green feathers", + "beak: short and sharp, black", + "belly: pale golden-yellow", + "breast: bright golden-yellow", + "crown: grayish-brown", + "forehead: grayish-brown", + "eyes: round and black", + "legs: thin and gray", + "wings: olive-green with subtle stripes", + "nape: grayish-brown", + "tail: olive-green, slightly forked", + "throat: white with streaks" + ], + "golden breasted puffleg": [ + "back: vibrant green with golden highlights", + "beak: long, thin, and straight black", + "belly: iridescent golden-yellow", + "breast: shimmering golden-yellow plumage", + "crown: glossy green with hints of blue", + "forehead: lighter green fading into golden-yellow", + "eyes: small, round, and dark", + "legs: delicate gray with black talons", + "wings: iridescent green-blue, elongated feathers", + "nape: rich green with golden-yellow edges", + "tail: dark green with blue iridescence, forked shape", + "throat: glistening golden-yellow feathers" + ], + "golden breasted starling": [ + "back: iridescent blue-green feathers", + "beak: slender, sharp black beak", + "belly: shimmering golden-yellow plumage", + "breast: bright golden-yellow feathers", + "crown: dazzling blue-green head feathers", + "forehead: metallic blue-green sheen", + "eyes: dark, round eyes with thin white eye-ring", + "legs: skinny, dark gray legs and feet", + "wings: cobalt blue with metallic green hues", + "nape: brilliant blue-green feathers", + "tail: long, iridescent blue and green tail feathers", + "throat: contrasting black plumage" + ], + "golden browed chat tyrant": [ + "back: vibrant olive-green feathers", + "beak: small, black, and pointy", + "belly: light creamy-yellow", + "breast: slightly brighter yellow than belly", + "crown: intense golden-yellow streak", + "forehead: golden-yellow plumage", + "eyes: small, round, and dark", + "legs: slim, grayish-black", + "wings: olive-green with blackish-brown flight feathers", + "nape: golden-yellow with olive-green blending", + "tail: olive-green with blackish-brown tips", + "throat: pale yellow, contrasting with vibrant breast" + ], + "golden browed chlorophonia": [ + "back: vibrant emerald green plumage", + "beak: short, black, and conical", + "belly: bright yellow feathers", + "breast: rich yellow plumage", + "crown: striking golden-yellow feathers", + "forehead: golden-yellow hue", + "eyes: small, dark, and alert", + "legs: slender and grayish", + "wings: green feathers with black edges", + "nape: emerald green coloration", + "tail: elongated, green with black tips", + "throat: brilliant golden-yellow feathers" + ], + "golden browed warbler": [ + "back: olive-green with a subtle sheen", + "beak: thin, pointed, and black", + "belly: pale yellow with light streaks", + "breast: vibrant yellow-orange with fine streaks", + "crown: bright golden-yellow with a bushy crest", + "forehead: vibrant golden-yellow, blending into the crown", + "eyes: dark, beady, framed by thin white eye rings", + "legs: slim and grayish-blue", + "wings: olive-green with blackish edges and two white wing bars", + "nape: olive-green, continuing the color from the back", + "tail: olive-green with blackish tips and white outer feathers", + "throat: bright yellow, blending into the breast color" + ], + "golden capped parakeet": [ + "back: vibrant green feathers", + "beak: small, curved, and light orange", + "belly: yellowish-green feathers", + "breast: bright yellow plumage", + "crown: striking golden-yellow cap", + "forehead: vivid golden-yellow feathers", + "eyes: round and dark, surrounded by white eye-ring", + "legs: light gray with strong, zygodactyl feet", + "wings: green with blue-tinted flight feathers", + "nape: green transitioning to the golden crown", + "tail: long, green upper feathers with a touch of blue on the underside", + "throat: yellowish-green feathers fading to bright yellow breast" + ], + "golden cheeked woodpecker": [ + "back: black and white striped patterns", + "beak: strong, straight, and pointed", + "belly: soft white feathers", + "breast: white with black horizontal stripes", + "crown: vibrant golden-yellow", + "forehead: bright yellow feathers", + "eyes: beady, black, with a white eye-ring", + "legs: sturdy, grayish with sharp claws", + "wings: black spotted with white barring", + "nape: golden-yellow patch, black and white striped", + "tail: stiff, black feathers with white bars", + "throat: white with black streaks" + ], + "golden chested tanager": [ + "back: vibrant green plumage", + "beak: short, sharp black", + "belly: pale golden-yellow", + "breast: rich golden-orange", + "crown: bright green with hints of blue", + "forehead: emerald green contour", + "eyes: dark, beady, and expressive", + "legs: thin and grayish", + "wings: green with hints of blue, and black edges", + "nape: green transitioning to golden-orange", + "tail: long, green and black-tipped feathers", + "throat: bright golden-yellow color" + ], + "golden chevroned tanager": [ + "back: vibrant green with golden streaks", + "beak: sharp and black", + "belly: bright yellow", + "breast: radiant golden-orange", + "crown: striking emerald green", + "forehead: shimmering turquoise", + "eyes: small and black", + "legs: sturdy and black", + "wings: vivid green with golden chevron marks", + "nape: radiant green and golden blend", + "tail: elongated with green and golden patterns", + "throat: brilliant yellow" + ], + "golden collared honeycreeper": [ + "back: vibrant green feathers", + "beak: curved, black and slender", + "belly: bright yellow plumage", + "breast: radiant yellow feathers", + "crown: iridescent green-blue", + "forehead: shining green-blue", + "eyes: small, dark, and round", + "legs: short and grayish", + "wings: greenish-blue with black edges", + "nape: lustrous green-blue", + "tail: elongated, black-tipped feathers", + "throat: gleaming golden-yellow" + ], + "golden collared manakin": [ + "back: vibrant green feathers", + "beak: black, short, and stout", + "belly: bright yellow plumage", + "breast: golden-yellow patch", + "crown: green feathers with slight sheen", + "forehead: shiny green with golden tones", + "eyes: dark, round, and alert", + "legs: slender with grayish-brown color", + "wings: vibrant green with full coverage", + "nape: greenish-yellow transition from crown", + "tail: long, green feathers with slight curve", + "throat: bright golden-yellow plumage" + ], + "golden collared tanager": [ + "back: vibrant green upper body", + "beak: short and sharp, blackish-grey", + "belly: bright yellow underside", + "breast: radiant yellow chest", + "crown: deep green head", + "forehead: greenish-yellow front", + "eyes: small, black, and curious", + "legs: slender and dark grey", + "wings: bright green with black edges", + "nape: greenish-yellow neck", + "tail: long, green with black tips", + "throat: brilliant yellow front" + ], + "golden collared toucanet": [ + "back: vibrant green feathers", + "beak: long, curved golden-yellow", + "belly: rich emerald green", + "breast: shimmering turquoise blue", + "crown: metallic green sheen", + "forehead: bold golden-yellow stripe", + "eyes: deep black with light blue ring", + "legs: sturdy, pale greyish-blue", + "wings: green with a hint of gold", + "nape: glossy green encircled by gold", + "tail: long, green with gold-edged tips", + "throat: bright golden-yellow hue" + ], + "golden collared woodpecker": [ + "back: vibrant shades of green and black", + "beak: strong, slightly curved, and black", + "belly: soft, pale yellow with black markings", + "breast: bold black-and-white stripes", + "crown: deep red with black tips", + "forehead: bright red with white markings", + "eyes: dark, beady, surrounded by black markings", + "legs: sturdy black with sharp talons", + "wings: green feathers with black and white bars", + "nape: white with black markings", + "tail: long, green feathers with black, white, and red bands", + "throat: white with black stripes" + ], + "golden crested myna": [ + "back: dark black feathers with a glossy shine", + "beak: short, slightly curved, and yellow", + "belly: black plumage with a slight iridescence", + "breast: gleaming black feathers", + "crown: bright golden crest adorning the head", + "forehead: black and seamlessly blending into the crest", + "eyes: small, round, and dark brown or black", + "legs: sturdy, yellow, with sharp claws", + "wings: black with a shimmering green tint", + "nape: dark black feathers flowing to the crown", + "tail: long, black feathers with hints of green iridescence", + "throat: deep black with a faintly glossy texture" + ], + "golden crowned babbler": [ + "back: olive-brown feathers with hints of gold", + "beak: short, curved, pale gray beak", + "belly: creamy-white with light brown streaks", + "breast: beige with light brown streaks", + "crown: striking golden-yellow plumage", + "forehead: golden-yellow feathers blending into crown", + "eyes: dark, rounded, alert", + "legs: sturdy, pale pinkish-gray", + "wings: olive-brown with lighter beige edging", + "nape: olive-brown, blending into back", + "tail: long, olive-brown with paler beige tips", + "throat: creamy-white, bordered by light brown streaks" + ], + "golden crowned emerald": [ + "back: vibrant emerald green feathers", + "beak: slender, curved black bill", + "belly: soft white plumage", + "breast: bright green iridescence", + "crown: striking golden-yellow tuft", + "forehead: vivid golden crest", + "eyes: beady black with thin white ring", + "legs: slender, dark gray", + "wings: emerald green with black tips", + "nape: green feathers transitioning to golden crown", + "tail: long, iridescent green with black banding", + "throat: white with hints of green sheen" + ], + "golden crowned flycatcher": [ + "back: olive-green feathers", + "beak: straight, slender, black", + "belly: off-white and pale yellow", + "breast: subtle yellowish-brown", + "crown: striking golden-yellow", + "forehead: distinct yellow feathers", + "eyes: dark and round", + "legs: long and grayish-blue", + "wings: olive-brown with faint wing bars", + "nape: olive-green blending into the crown", + "tail: olive-brown, slightly forked", + "throat: off-white and unmarked" + ], + "golden crowned manakin": [ + "back: vibrant green feathers", + "beak: short and black", + "belly: light yellow hue", + "breast: bright yellow plumage", + "crown: golden crest on the head", + "forehead: vivid golden feathers", + "eyes: small and black", + "legs: slender and grey", + "wings: green feathers with white spots", + "nape: green with light yellow accents", + "tail: green with white-tipped feathers", + "throat: bright yellow coloration" + ], + "golden crowned spadebill": [ + "back: olive-green feathers", + "beak: short, thin, upturned black bill", + "belly: pale yellow underparts", + "breast: light olive-green plumage", + "crown: vibrant golden-yellow crest", + "forehead: black band separating crown and eyes", + "eyes: small, dark brown", + "legs: slender, pale pink-gray", + "wings: olive-green, medium-length, rounded", + "nape: olive-green, smooth feathers", + "tail: short, notched, dark gray", + "throat: white, slightly streaked with olive-green" + ], + "golden crowned tanager": [ + "back: vibrant blue feathers", + "beak: short, strong black beak", + "belly: rich blue shade", + "breast: bright blue plumage", + "crown: striking golden crest", + "forehead: prominent gold patch", + "eyes: small, black, and alert", + "legs: slender black legs", + "wings: vivid blue with black highlights", + "nape: blue feathers with gold streaks", + "tail: long blue feathers with black tips", + "throat: intense blue hue" + ], + "golden crowned warbler": [ + "back: olive-green feathers", + "beak: thin, pointed, blackish", + "belly: pale yellowish white", + "breast: grayish-white with faint streaks", + "crown: bright yellow with black border", + "forehead: prominent yellow stripe", + "eyes: black with a faint white eyering", + "legs: pinkish-gray, slender", + "wings: olive-green with two white wingbars", + "nape: olive-green and gray mix", + "tail: olive-green with faint white tips", + "throat: grayish-white" + ], + "golden crowned woodpecker": [ + "back: dark brown with black and white streaks", + "beak: sturdy, chisel-like, dark gray", + "belly: pale white with beige undertones", + "breast: buff white with dark black spots", + "crown: vibrant golden-yellow patch", + "forehead: pale white with dark black stripes", + "eyes: dark round eyes with a black stripe through them", + "legs: long and sturdy, gray-colored", + "wings: brown with white and black bars", + "nape: golden crown extending to nape, dark black stripe", + "tail: brown with black and white bars, stiff feathers", + "throat: buff white with faint streaks" + ], + "golden eared tanager": [ + "back: vibrant green feathers", + "beak: short and curved, black", + "belly: rich yellow with hints of green", + "breast: bright yellow and green mix", + "crown: golden-yellow feathers", + "forehead: striking golden-yellow", + "eyes: small, dark, and alert", + "legs: thin, grayish-black", + "wings: green with unique yellow patterns", + "nape: golden-yellow, transitioning to green", + "tail: elongated green feathers with yellow accents", + "throat: bright yellow with green undertones" + ], + "golden faced tyrannulet": [ + "back: olive-green with subtle gold sheen", + "beak: short, slender, and grayish-black", + "belly: pale yellow with light gray flanks", + "breast: golden-yellow with feathered fluffiness", + "crown: shimmering gold mixed with olive-green", + "forehead: bright golden-yellow smooth feathers", + "eyes: small, dark, with a narrow eye-ring", + "legs: thin and grayish-black with sharp claws", + "wings: olive-green with dappled yellow highlights", + "nape: golden-green with a subtle yellow tint", + "tail: olive-green with slightly forked appearance", + "throat: vibrant golden-yellow with soft feathers" + ], + "golden fronted greenlet": [ + "back: vibrant olive-green feathers", + "beak: sturdy, straight, and dark gray", + "belly: pale yellow underside", + "breast: soft yellow with greenish tints", + "crown: bright golden-orange patch", + "forehead: golden-yellow feathers", + "eyes: dark, beady, surrounded by white eye-ring", + "legs: sturdy, dark gray, and powerful", + "wings: olive-green with dark feather edges", + "nape: rich green transitioning from crown", + "tail: olive-green feathers, slightly forked", + "throat: pale yellow, contrasting with breast" + ], + "golden fronted leafbird": [ + "back: vibrant green with subtle turquoise hues", + "beak: slightly curved, black with a yellow outline", + "belly: light yellow transitioning to white", + "breast: bright yellow blending with the belly", + "crown: radiant teal-blue", + "forehead: golden-yellow strip above the beak", + "eyes: small, sharp, and black with a thin, white outline", + "legs: thin and gray, with strong grip", + "wings: vivacious green mixed with blue shades, tapered shape", + "nape: bright green fading into the back", + "tail: elongated, v-shaped, green with a hint of blue", + "throat: vibrant yellow extending towards the breast" + ], + "golden fronted redstart": [ + "back: vibrant yellow-green feathers", + "beak: small, pointed, and black", + "belly: bright yellow-orange hues", + "breast: vivid orange-red plumage", + "crown: golden yellow patch on top", + "forehead: golden yellow coloration", + "eyes: beady and black, surrounded by pale feathers", + "legs: thin, dark, and well-adapted for perching", + "wings: black with yellow-orange edging", + "nape: greenish-yellow with blending to orange-red", + "tail: blackish with bold yellow-orange tips", + "throat: fiery orange-red markings" + ], + "golden green woodpecker": [ + "back: vibrant green feathers", + "beak: long, pointy, and chisel-like", + "belly: pale white with yellowish tint", + "breast: white with greenish-yellow sheen", + "crown: dazzling red crest", + "forehead: smooth, green feathers", + "eyes: piercing yellow, encircled by black", + "legs: grayish-brown and strong", + "wings: bright green with yellow and black barring", + "nape: green with hints of gold", + "tail: greenish-yellow with black bars", + "throat: creamy white with green tinges" + ], + "golden headed cisticola": [ + "back: golden-brown, streaked plumage", + "beak: short, sharp, and black", + "belly: creamy white, with some brown streaking", + "breast: white, blending with golden head", + "crown: vibrant golden-yellow", + "forehead: golden-yellow, matching crown", + "eyes: small, dark, and piercing", + "legs: slender, pale, and long", + "wings: brown, with black and white markings", + "nape: golden-yellow, blending with crown", + "tail: rounded, with dark band and white tips", + "throat: pale, transitioning to the white breast" + ], + "golden headed manakin": [ + "back: vibrant green coloration", + "beak: small, black, and pointed", + "belly: pale yellow soft feathers", + "breast: bright yellow plumage", + "crown: golden head with a shiny finish", + "forehead: glowing gold hue", + "eyes: circular, black, and alert", + "legs: thin, dark, slightly feathered", + "wings: green with black edges", + "nape: smooth transition from gold to green", + "tail: long, green feathers with slight curve", + "throat: golden yellow hidden by the breast feathers" + ], + "golden headed quetzal": [ + "back: vibrant green feathers", + "beak: strong, black, slightly hooked", + "belly: iridescent green scaling down", + "breast: shimmering golden-yellow", + "crown: gleaming golden crest", + "forehead: gold-green transition", + "eyes: large, dark, expressive", + "legs: sturdy, grayish, scaly", + "wings: elongated, green-blue feathers", + "nape: luminous green plumage", + "tail: lengthy, emerald green, streamer-like", + "throat: bright golden-yellow" + ], + "golden hooded tanager": [ + "back: vibrant turquoise hue", + "beak: short and sharply-pointed", + "belly: bright yellow feathers", + "breast: vivid golden-yellow", + "crown: shimmering golden hood", + "forehead: glistening gold hue", + "eyes: dark with a thin white ring", + "legs: slender and grayish", + "wings: blue-green with black edges", + "nape: rich yellow bordering the gold hood", + "tail: turquoise blue with black tips", + "throat: brilliant golden-yellow" + ], + "golden mantled racquet tail": [ + "back: vibrant green feathers", + "beak: black, small, and pointed", + "belly: pale yellow plumage", + "breast: bright yellow with green tinges", + "crown: shimmering green-blue feathers", + "forehead: iridescent green and blue hues", + "eyes: dark and round, set in white circles", + "legs: slim, dark grey with sharp claws", + "wings: green-blue with shades of gold and turquoise", + "nape: brilliant green and blue gradient", + "tail: elongated, dark blue racquet-shaped feathers", + "throat: bright green fading into yellow" + ], + "golden naped barbet": [ + "back: vibrant green feathers", + "beak: short, sharp, and curved", + "belly: light green with faint streaks", + "breast: blend of yellow and green hues", + "crown: golden-yellow patch on head", + "forehead: bright green with slight curve", + "eyes: small, dark, and round", + "legs: grayish-blue with strong claws", + "wings: shades of green with blue tips", + "nape: brilliant golden-yellow band", + "tail: long, green-blue feathers tapering to a point", + "throat: pale, creamy-yellow color" + ], + "golden naped tanager": [ + "back: vibrant green plumage", + "beak: short, sharp, and black", + "belly: deep blue with green hues", + "breast: bright turquoise-blue", + "crown: golden-yellow patch", + "forehead: green fading into golden crown", + "eyes: small, dark, and round", + "legs: black and slender", + "wings: green, slightly elongated", + "nape: golden-yellow band", + "tail: blue-green with darker tips", + "throat: rich blue coloration" + ], + "golden naped woodpecker": [ + "back: black feathers with white spots", + "beak: strong, chisel-like, black", + "belly: warm cream-colored feathers", + "breast: slightly pale, with cream and spotted black feathers", + "crown: bright crimson-red feathers", + "forehead: red patch extending onto the face", + "eyes: dark, wide with a vibrant white ring", + "legs: robust, grayish-blue, two toes forward and two toes backward", + "wings: black with white spotted pattern, golden-yellow nape", + "nape: distinct golden-yellow stripe", + "tail: black with white barring, stiff feathers for support", + "throat: cream-colored, smooth feathering" + ], + "golden olive woodpecker": [ + "back: golden-olive streaked with dark lines", + "beak: long, straight, robust, and pale-colored", + "belly: pale yellow with olive-green shading", + "breast: hooded with dark green and black shades", + "crown: crimson red, blends with black nape", + "forehead: dusky black transitioning to the red crown", + "eyes: black, with a white eye-ring", + "legs: pale gray, strong, and agile", + "wings: olive-green with golden speckles", + "nape: black, connecting to the crimson crown", + "tail: olive-green with dark bands and white markings", + "throat: white, contrasting with the dark-brown breast" + ], + "golden plumed parakeet": [ + "back: vibrant green feathers", + "beak: strong, curved, and orange-red", + "belly: bright yellow-green", + "breast: emerald green with a golden hue", + "crown: bright green and prominent", + "forehead: vivid blue-green plumage", + "eyes: dark, encircled by white eye-ring", + "legs: sturdy grey with sharp claws", + "wings: iridescent green-blue plumage", + "nape: radiant green blending into the crown", + "tail: long, green-blue feathers", + "throat: golden-green shimmering feathers" + ], + "golden rumped euphonia": [ + "back: bright golden yellow", + "beak: small, pointed, black", + "belly: creamy white", + "breast: rich golden yellow", + "crown: vivid orange-yellow", + "forehead: bright yellow", + "eyes: small, black, surrounded by thin white eyering", + "legs: slender, dark gray", + "wings: black with blue edging", + "nape: golden yellow", + "tail: black with yellow sides", + "throat: deep golden yellow" + ], + "golden rumped flowerpecker": [ + "back: olive-green feathers", + "beak: short and curved", + "belly: pale yellow plumage", + "breast: brighter yellow feathers", + "crown: striking golden-orange rump", + "forehead: blue-gray color", + "eyes: small, dark, and rounded", + "legs: slender and pale gray", + "wings: olive-green with short span", + "nape: blue-gray feathering", + "tail: short and greenish-blue", + "throat: lighter gray hue" + ], + "golden shouldered parrot": [ + "back: vibrant blue and green feathers", + "beak: small, slightly curved, black", + "belly: light blue and yellow plumage", + "breast: rich turquoise and yellow feathers", + "crown: golden yellow and blue crest", + "forehead: bright golden-yellow patch", + "eyes: small, dark with white eye-ring", + "legs: slender, greyish-purple", + "wings: striking blue and green feathers", + "nape: golden yellow blending into blue", + "tail: long, tapered, blue and green feathers", + "throat: vibrant yellow and blue feathers" + ], + "golden sided euphonia": [ + "back: vibrant blue with yellow patch", + "beak: short and stout, gray-black", + "belly: rich yellow hue", + "breast: bright yellow coloration", + "crown: deep blue tint", + "forehead: intense blue shade", + "eyes: small, black, with white eye-ring", + "legs: grayish-black, slender", + "wings: mix of blue and black with yellow details", + "nape: brilliant blue shade", + "tail: blue-black with yellow sides", + "throat: bright yellow contrast" + ], + "golden spangled piculet": [ + "back: olive-green with subtle streaks", + "beak: slender, curved, black", + "belly: pale yellow with faint barring", + "breast: yellowish with dark spots", + "crown: golden-yellow spangled with small, dark dots", + "forehead: vibrant golden-yellow", + "eyes: dark brown with white eye ring", + "legs: pale gray with strong claws", + "wings: olive-green with faint barring", + "nape: golden-yellow with dark streaks", + "tail: olive-brown with pale tips", + "throat: yellowish-white with dark speckles" + ], + "golden spotted ground dove": [ + "back: olive-brown with golden spots", + "beak: short and dark grey", + "belly: light greyish-brown", + "breast: pale pink with golden spots", + "crown: bluish-grey with golden spots", + "forehead: bluish-grey", + "eyes: dark with a pale grey eye-ring", + "legs: short and pinkish-brown", + "wings: olive-brown with golden spots and black bars", + "nape: bluish-grey with golden spots", + "tail: dark brown with white-tip outer feathers", + "throat: pale pink" + ], + "golden tailed parrotlet": [ + "back: vibrant green feathers", + "beak: small, curved, pale peach", + "belly: lime-green plumage", + "breast: vivid turquoise green", + "crown: sky blue feathers", + "forehead: bright blue patch", + "eyes: shining black orbs, white rings", + "legs: short, grayish, strong", + "wings: lush green, golden-yellow highlights", + "nape: deep green with blue hues", + "tail: elongated, golden-tipped feathers", + "throat: soft yellow-green feathers" + ], + "golden tailed sapphire": [ + "back: iridescent green feathers", + "beak: thin and curved black bill", + "belly: vibrant light green hue", + "breast: bright turquoise plumage", + "crown: shimmering blue-green head", + "forehead: blue-green feathers with a hint of gold", + "eyes: small, black, and beady", + "legs: slender, gray, well-adapted for perching", + "wings: gold-tipped elongated feathers with shades of blue and green", + "nape: glossy blue-green feathers", + "tail: long, golden forked extensions", + "throat: radiant turquoise down to the chest" + ], + "golden tailed woodpecker": [ + "back: black and white barred pattern", + "beak: long and chisel-shaped", + "belly: white or lightly streaked", + "breast: white or lightly streaked", + "crown: red in males, black in females", + "forehead: white or light-colored", + "eyes: small and dark", + "legs: short and sturdy", + "wings: black with white spots", + "nape: golden-yellow plumage", + "tail: black with a prominent golden-yellow streak", + "throat: white or light-colored" + ], + "golden throated barbet": [ + "back: vibrant green plumage", + "beak: short, stout, and orange", + "belly: light yellow feathers", + "breast: bright yellow plumage", + "crown: green and blue striped pattern", + "forehead: striking blue markings", + "eyes: dark brown, encircled in blue", + "legs: short and stout, grayish-blue", + "wings: green feathers, with hints of blue", + "nape: green and blue striped pattern", + "tail: green feathers, with blue tips", + "throat: vivid golden hue" + ], + "golden tufted grackle": [ + "back: iridescent black-purple feathers", + "beak: sharp, pointed, black", + "belly: shimmering dark blue-green", + "breast: glossy purple-blue tinge", + "crown: rich golden tufts on the head", + "forehead: narrow golden plumes", + "eyes: piercing, bright yellow", + "legs: sturdy, black, and clawed", + "wings: shiny dark with hints of bronze", + "nape: radiant gold and velvety black", + "tail: elongated, fan-shaped, dark shimmer", + "throat: gleaming deep blue-green" + ], + "golden winged cacique": [ + "back: vibrant golden highlights on black feathers", + "beak: sharp and slightly curved, charcoal black", + "belly: sleek black with a hint of iridescence", + "breast: contrasting bright gold, blending with black", + "crown: shimmering black, slightly raised", + "forehead: deep black, accentuating gleaming eyes", + "eyes: round and piercing, dark brown", + "legs: sturdy and slender, slate grey", + "wings: striking black, streaked with golden bars", + "nape: smooth black feathers meeting gold crown", + "tail: long, black cascading feathers with a golden trim", + "throat: rich golden hue, transitioning into black" + ], + "golden winged laughingthrush": [ + "back: golden-brown feathers", + "beak: short, sturdy, and black", + "belly: pale gray with soft yellow undertones", + "breast: light gray with golden-yellow patches on sides", + "crown: brilliant gold feathers", + "forehead: golden-yellow plumage", + "eyes: dark, round with a white eye-ring", + "legs: long, slender and black", + "wings: golden-yellow with dark flight feathers", + "nape: golden-yellow hues blending into back color", + "tail: lengthy, predominantly dark with golden-yellow edges", + "throat: pale gray with soft yellow undertones" + ], + "golden winged manakin": [ + "back: vibrant green with subtle stripes", + "beak: short, sharp, and black", + "belly: light yellow and fluffy", + "breast: bright golden-yellow feathers", + "crown: glossy black with a slight crest", + "forehead: smooth shiny black", + "eyes: small, round and black", + "legs: thin and gray with strong feet", + "wings: green with bold golden-yellow patches", + "nape: dark green with thin black lines", + "tail: long, black, with greenish shades", + "throat: white with fine golden markings" + ], + "golden winged parakeet": [ + "back: vibrant green feathers", + "beak: sharp, black curved edges", + "belly: light green with streaks of yellow", + "breast: bright yellow plumage", + "crown: golden-yellow feathers", + "forehead: striking yellow with narrow black lines", + "eyes: round, black, and shiny", + "legs: slender grayish-blue", + "wings: bold green with a golden wing-bar", + "nape: vibrant green, blending into the back", + "tail: long, green with darker blue tips", + "throat: yellow, transitioning to the breast" + ], + "golden winged sparrow": [ + "back: light brown with faint streaks", + "beak: short, conical, and dark gray", + "belly: soft white and lightly streaked", + "breast: warm pale yellow with gentle streaks", + "crown: bright yellow with black border", + "forehead: vibrant golden-yellow", + "eyes: black, small, surrounded by yellowish-white", + "legs: slender, pale pinkish-gray", + "wings: grayish-blue with golden-yellow wing bars", + "nape: light brown with subtle streaking", + "tail: short, dark grayish-blue with white-edged feathers", + "throat: clear white transitioning into the pale yellow breast" + ], + "golden winged sunbird": [ + "back: vibrant green feathers with a golden sheen", + "beak: long, slender curved bill for nectar feeding", + "belly: iridescent yellow-green underbelly", + "breast: striking orange-gold plumage", + "crown: bright golden-yellow feathers adorn the head", + "forehead: shiny green and gold feathered area above beak", + "eyes: small, black, and alert", + "legs: thin, delicate legs with sharp claws for perching", + "wings: shimmering golden and green feathers with dark tips", + "nape: green-gold plumed region between the back and head", + "tail: elongated, iridescent green and gold feathers", + "throat: dazzling gold and green display of feathers" + ], + "golden winged tody flycatcher": [ + "back: vibrant golden-yellow hue", + "beak: small, sharp, and black", + "belly: creamy white with soft yellow tones", + "breast: bright yellow with subtle white streaks", + "crown: striking iridescent green", + "forehead: shimmering green sheen", + "eyes: small, dark, and alert", + "legs: thin and black with curved claws", + "wings: vivid golden-yellow with bold green edges", + "nape: radiant, golden-green transition", + "tail: green feathers with contrasting yellow highlights", + "throat: brilliant yellow with white accents" + ], + "goldenface": [ + "back: vibrant golden feathers", + "beak: sharp black curve", + "belly: warm golden hue", + "breast: glistening gold", + "crown: radiant golden crest", + "forehead: smooth golden arc", + "eyes: black, piercing gaze", + "legs: slender, dark perches", + "wings: golden fans in flight", + "nape: subtle golden transition", + "tail: long, shimmering gold", + "throat: gleaming golden facade" + ], + "goldie bird of paradise": [ + "back: vibrant olive-green feathers", + "beak: long, slender, black", + "belly: bright yellow plumage", + "breast: rich golden-orange", + "crown: glossy red crest", + "forehead: shiny emerald green", + "eyes: alert, dark and piercing", + "legs: sturdy black with strong claws", + "wings: blue and purple with striking patterns", + "nape: gold and green iridescence", + "tail: elaborate, long, wire-like extensions", + "throat: brilliant golden-yellow" + ], + "goldie lorikeet": [ + "back: vibrant green feathers", + "beak: strong, short, orange beak", + "belly: light yellow and green mix", + "breast: bright yellow and orange feathers", + "crown: vivid orange with bluish tint on sides", + "forehead: intense orange near beak, fading to green", + "eyes: piercing, black, surrounded by blue rings", + "legs: short, grayish, strong", + "wings: green with hints of blue and yellow", + "nape: bluish-green feathers", + "tail: long, greenish-blue feathers with yellow tips", + "throat: bright yellow, transitioning to orange" + ], + "goliath coucal": [ + "back: dark reddish-brown with black streaks", + "beak: strong, black, and slightly curved", + "belly: pale cinnamon-brown with dark streaks", + "breast: deep chestnut-red with lighter streaks", + "crown: dark brown with dense black streaks", + "forehead: lighter reddish-brown with some streaks", + "eyes: bright red-orange with black pupil", + "legs: long, dark, and sturdy with sharp talons", + "wings: dark reddish-brown with bold black markings", + "nape: lighter cinnamon-brown with black streaks", + "tail: long, dark brown with broad black bands", + "throat: pale cinnamon-brown with fine black streaks" + ], + "goliath heron": [ + "back: blue-grey feathers with dark streaks", + "beak: long, dagger-like, and yellow", + "belly: pale buff with dark streaks", + "breast: blue-grey, striped with rufous-buff", + "crown: dark slate-blue, elongated feathers", + "forehead: striped with pale markings", + "eyes: bright yellow and piercing", + "legs: long and sturdy, pale yellow-orange", + "wings: broad, spanning 7.5 ft, with dark flight feathers", + "nape: streaks of dark blue-grey and rufous-buff", + "tail: dark blue-grey with rufous-buff bars", + "throat: pale buff with thin dark streaks" + ], + "gorgeted puffleg": [ + "back: iridescent green", + "beak: thin and slightly curved", + "belly: light, golden green", + "breast: vibrant turquoise blue", + "crown: shining golden-green", + "forehead: gleaming orangish-yellow", + "eyes: small and black", + "legs: slender and grayish-white", + "wings: shimmering green with bronze", + "nape: iridescent bluish-green", + "tail: elongated central feathers, bronzy-green", + "throat: fiery gorget with metallic red-orange spots" + ], + "gorgeted sunangel": [ + "back: iridescent green feathers", + "beak: thin, pointy, and black", + "belly: whitish-gray with subtle yellow hue", + "breast: golden-orange shimmering feathers", + "crown: bright green with a shine", + "forehead: gleaming emerald green", + "eyes: small, black, and round", + "legs: thin and grayish-black", + "wings: greenish-blue with a metallic sheen", + "nape: radiant green-gold feathers", + "tail: short, forked, with iridescent blue-green feathers", + "throat: fiery orange-red gorget (iridescent throat patch" + ], + "gorgeted wood quail": [ + "back: vibrant russet-brown feathers", + "beak: short, stout, and pale", + "belly: cinnamon-tawny hue", + "breast: light-colored bars on chestnut feathers", + "crown: black feathers with white streaks", + "forehead: reddish-brown tones", + "eyes: alert, dark brown gaze", + "legs: sturdy, light gray with sharp claws", + "wings: rich chestnut with russet scales", + "nape: deep chestnut with white streaks", + "tail: short, black with chestnut band", + "throat: distinctive black and white gorget pattern" + ], + "gorgeted woodstar": [ + "back: vibrant green feathers", + "beak: thin, long and black", + "belly: light green and white plumage", + "breast: white feathers with green highlights", + "crown: iridescent green", + "forehead: shiny metallic green", + "eyes: small, round and black", + "legs: thin and gray", + "wings: fast-moving with iridescent greens", + "nape: glittering green feathers", + "tail: fan-shaped with black and white feathers", + "throat (gorget): radiant deep purple or violet patch" + ], + "gosling apalis": [ + "back: light greenish-brown with delicate streaks", + "beak: small, sharp, and black", + "belly: pale yellow with soft fluff", + "breast: yellowish-brown with faint streaks", + "crown: olive green with a slight crest", + "forehead: light olive with thin streaks", + "eyes: small, round, dark brown", + "legs: short, grayish-blue with strong claws", + "wings: greenish-brown with faint bars and tiny fringes", + "nape: olive green with a smooth transition to the back", + "tail: short, square, with greenish-brown and white feathers", + "throat: pale yellow with slight brown markings" + ], + "gosling bunting": [ + "back: light brown with thin streaks", + "beak: short, conical, pale pinkish", + "belly: pale yellow with faint streaking", + "breast: soft yellow, transitioning to the belly", + "crown: grayish-brown with light edges", + "forehead: pale grayish-brown", + "eyes: small, dark, with faint pale eyering", + "legs: sturdy, pinkish-gray", + "wings: brown with pale wingbars and white-tipped feathers", + "nape: grayish-brown, matching the crown", + "tail: short, brown with white outer feathers", + "throat: clean, pale yellow" + ], + "gough island finch": [ + "back: olive-brown with streaks", + "beak: short, strong, and black", + "belly: pale grayish-white", + "breast: grayish-brown", + "crown: olive-brown with faint streaks", + "forehead: smooth olive-brown", + "eyes: dark brown with thin eyering", + "legs: sturdy and pinkish-brown", + "wings: olive-brown with pale wingbars", + "nape: olive-brown with faint streaks", + "tail: brown and slightly forked", + "throat: grayish-white" + ], + "gough moorhen": [ + "back: dark olive-brown plumage", + "beak: short, sharp, yellow-green", + "belly: greyish-brown feathers", + "breast: pale grey plumage", + "crown: blackish-brown color", + "forehead: creamy-white patch", + "eyes: small and bright red", + "legs: strong yellow-green", + "wings: dark brown with streaks", + "nape: olive-brown neck feathers", + "tail: short, blackish-brown", + "throat: lighter grey hue" + ], + "gould frogmouth": [ + "back: olive-brown with white speckles", + "beak: short and wide with a hooked tip", + "belly: pale cream with dark streaks", + "breast: light brown with dark spots", + "crown: dark brown with white streaks", + "forehead: pale brown with fine white markings", + "eyes: large, dark and forward-facing", + "legs: short and sturdy with scaly skin", + "wings: rounded with brown and white patterning", + "nape: deep brown with white lines", + "tail: dark brown with distinctive white bars", + "throat: pale beige with subtle brown streaks" + ], + "gould inca": [ + "back: vibrant green feathers", + "beak: curved, ivory white", + "belly: soft, yellow plumage", + "breast: bright yellow with black spots", + "crown: iridescent green and gold", + "forehead: green feathers with black markings", + "eyes: deep black, encircled by green feathers", + "legs: slim and gray", + "wings: green feathers with black edging", + "nape: golden feathers fading into green", + "tail: long, iridescent green and gold", + "throat: luminous yellow with black spots" + ], + "gould jewelfront": [ + "back: vibrant green with iridescent sheen", + "beak: long, slender, and black", + "belly: pale yellow with fine black barring", + "breast: golden yellow with iridescent turquoise streaks", + "crown: glossy green with golden highlights", + "forehead: bright red-orange forehead", + "eyes: almond-shaped, dark with thin white eye-rings", + "legs: slender, dark gray with sharp claws", + "wings: iridescent blue and green, short and rounded", + "nape: shimmering green with a hint of golden sheen", + "tail: long, iridescent blue-green with white tips", + "throat: brilliant metallic purple with turquoise sheen" + ], + "gould petrel": [ + "back: light grayish-blue with a darker sheen", + "beak: black, slender, and sharply pointed", + "belly: whitish with light gray streaks", + "breast: pale gray with white markings", + "crown: dark gray fading to a lighter shade towards neck", + "forehead: light gray blending into crown", + "eyes: black, round, and positioned on the sides", + "legs: pale pink with webbed feet", + "wings: light grayish-blue with a dark trailing edge", + "nape: light gray with a faint collar line", + "tail: long and wedge-shaped, with black-tipped feathers", + "throat: pale gray with a white chin area" + ], + "gould shortwing": [ + "back: vibrant blue and green feathers", + "beak: short, sharp, and black", + "belly: pale yellow with light blue markings", + "breast: cobalt blue with green undertones", + "crown: iridescent green and blue feathers", + "forehead: deep blue with a hint of metallic sheen", + "eyes: round with a dark piercing gaze", + "legs: thin and black with small talons", + "wings: bright, multicolored with a compact shape", + "nape: green-tinged blue feathers blending into the crown", + "tail: short and wide with blue, green, and yellow feathers", + "throat: electric blue with an iridescent shine" + ], + "gould toucanet": [ + "back: vibrant green feathers", + "beak: large, curved, multi-colored", + "belly: yellowish-green plumage", + "breast: bright yellow feathers", + "crown: greenish-black crest", + "forehead: green-feathered with black markings", + "eyes: dark with thin blue eye-ring", + "legs: sturdy, grayish-blue", + "wings: green with black edging", + "nape: greenish-black feathers", + "tail: long, green with black barring", + "throat: deep yellow with black streaks" + ], + "grace warbler": [ + "back: olive-green with yellow streaks", + "beak: thin, pointed, and black", + "belly: whitish-yellow with light streaking", + "breast: bright yellow with some faint streaking", + "crown: olive-green with a yellow central stripe", + "forehead: olive-yellow mix", + "eyes: black pupil with white eye-ring", + "legs: pale grayish-blue", + "wings: olive-green with broken white bars", + "nape: olive-green with yellow streaks", + "tail: olive-green with white outer feathers", + "throat: bright yellow and unmarked" + ], + "graceful honeyeater": [ + "back: sleek dark grey feathers", + "beak: slender, curved, and black", + "belly: pale yellow with subtle streaks", + "breast: vibrant yellow plumage", + "crown: striking black with contrasting yellow edges", + "forehead: bold yellow stripe", + "eyes: dark, alert, and expressive", + "legs: thin and sturdy, black in color", + "wings: dark grey, slightly elongated with fine yellow edging", + "nape: smooth transition from black to grey feathers", + "tail: long, gray, and slightly forked", + "throat: bright yellow with delicate markings" + ], + "graceful pitta": [ + "back: vibrant shades of blue and green", + "beak: short, stout, and black", + "belly: rich blue-grey hues", + "breast: vivid turquoise plumage", + "crown: deep blue with green tinges", + "forehead: vivid blue-green transition", + "eyes: black with white arcs above and below", + "legs: strong and pinkish-brown", + "wings: vibrant green with black edges", + "nape: a blend of striking blue and green", + "tail: deep blue with contrasting white tips", + "throat: soft pastel blue shades" + ], + "graceful prinia": [ + "back: light brown feathers with a hint of olive", + "beak: thin, curved, and sharp for insect hunting", + "belly: creamy-white with faint markings", + "breast: soft beige with light streaks", + "crown: striped brown and white pattern", + "forehead: slightly paler than the crown", + "eyes: small, black, and alert", + "legs: slender, pale pink, and adept for perching", + "wings: brown, edged with white, suitable for quick flight", + "nape: gently curved, blending into the crown", + "tail: long and slender, with subtle brown and white markings", + "throat: delicate white, contrasting with the breast" + ], + "gran canaria blue chaffinch": [ + "back: vibrant blue with subtle grayish streaks", + "beak: short, strong, and cone-shaped with a black color", + "belly: light gray fading to white on the lower parts", + "breast: rich blue blending with the grayish belly", + "crown: intense blue with a slight crest", + "forehead: bright blue fading into the crown", + "eyes: dark and expressive, surrounded by blue feathers", + "legs: sturdy and black, with sharp claws for perching", + "wings: striking blue with dark streaks, used for short flights", + "nape: deep blue, blending seamlessly with the crown and back", + "tail: blue with dark bars, short and wide, used for balance", + "throat: paler blue, contrasting with the richer blue on the breast" + ], + "grand comoro brush warbler": [ + "back: warm brown with subtle streaks", + "beak: sharp and pointed, blackish gray", + "belly: pale, buff-white with faint barring", + "breast: dull yellowish-brown with delicate markings", + "crown: dark brown, streaked pattern", + "forehead: light brown with fine streaks", + "eyes: round and black, outlined with faint eye-ring", + "legs: long and thin, pale gray", + "wings: slightly rounded, warm brown with buff streaks", + "nape: rich brown, streaked with buff", + "tail: medium-length, square-shaped, brown with light barring", + "throat: pale and buff-toned, with faint streaks" + ], + "grand comoro bulbul": [ + "back: olive-brown feathers", + "beak: short and black", + "belly: pale gray-white", + "breast: light gray", + "crown: dark gray-brown", + "forehead: slightly lighter gray-brown", + "eyes: dark, with thin white eye-ring", + "legs: strong and black", + "wings: olive-brown with faint patterns", + "nape: dark gray-brown", + "tail: long and olive-brown with white tips", + "throat: light gray" + ], + "grand comoro flycatcher": [ + "back: olive-grey feathers", + "beak: short, hooked, black", + "belly: white to pale-yellow underparts", + "breast: light-grey plumage", + "crown: dark-grey feathers", + "forehead: slightly lighter grey", + "eyes: dark, medium-sized, surrounded by grey feathers", + "legs: strong, greyish-blue", + "wings: olive-grey with black primary feathers", + "nape: dark-grey, blending into the back", + "tail: long, dark-grey feathers with white edges", + "throat: white, contrasting with the breast" + ], + "grand munia": [ + "back: sleek, greenish-black feathers", + "beak: short, sharp-pointed, silver-gray", + "belly: soft, pale-yellow plumage", + "breast: rich chestnut-brown feathers", + "crown: bright yellowish-green crest", + "forehead: vibrant emerald-green patch", + "eyes: small, dark, surrounded by faint circles", + "legs: strong, blue-gray with sharp claws", + "wings: greenish-black, well-rounded, slightly pointed", + "nape: golden-yellow, narrow streaks", + "tail: elongated, green-black feathering, slightly forked", + "throat: pale-yellow, contrasted with chestnut breast" + ], + "grass wren": [ + "back: brownish-grey with fine black streaks", + "beak: thin, pointed, and black", + "belly: whitish with greyish-brown streaks", + "breast: pale brown, spotted with darker brown", + "crown: rusty-brown with black streaks", + "forehead: plain greyish-brown", + "eyes: small, dark and circled with white", + "legs: slender, pinkish-grey", + "wings: brownish-grey with black streaks and white barring", + "nape: brownish-grey with fine black streaks", + "tail: short and brown with blackish barring", + "throat: pale greyish white" + ], + "grass green tanager": [ + "back: vibrant green feathers", + "beak: short, strong, and black", + "belly: pale green underside", + "breast: bright grassy green plumage", + "crown: iridescent green-golden headpiece", + "forehead: brilliant green feathers", + "eyes: small, dark, lively gaze", + "legs: slender grayish-black limbs", + "wings: lively green with black edges", + "nape: emerald green feathers", + "tail: elongated, forked, rich green feathers", + "throat: delicately shaded green plumage" + ], + "grasshopper buzzard": [ + "back: brownish-grey with blackish streaks", + "beak: short, hooked, and black", + "belly: white with dense dark streaks", + "breast: pale brown, barred or streaked", + "crown: grey-brown, streaked with black", + "forehead: light buff-brown", + "eyes: bright yellow surrounded by grey feathers", + "legs: yellow with sharp talons", + "wings: brown with prominent black and white bands", + "nape: light grey-brown with streaks", + "tail: brown with black bars, white tip", + "throat: white with thin dark streaks" + ], + "grassland sparrow": [ + "back: brown feathered with light streaks", + "beak: short, conical, and greyish-pink", + "belly: cream-colored with light brown streaks", + "breast: pale buff with minimal streaking", + "crown: reddish-brown with a central streak", + "forehead: pale grey and unmarked", + "eyes: dark, slightly round, with a thin white eyering", + "legs: pinkish-grey and slender", + "wings: brown with white wing bars", + "nape: brown with subtle streaks", + "tail: brownish-grey with a notched tip", + "throat: pale grey with a thin dark malar stripe" + ], + "grassland yellow finch": [ + "back: olive-green feathers", + "beak: short, conical, and grayish", + "belly: pale yellowish-white hue", + "breast: bright yellow plumage", + "crown: greenish-yellow with faint streaks", + "forehead: vibrant yellow patch", + "eyes: small, round, black", + "legs: slim, grayish-black", + "wings: blackish-brown with white markings", + "nape: greenish-yellow, streaked feathers", + "tail: forked, blackish-brown with white edges", + "throat: bright yellow feathers" + ], + "grauer broadbill": [ + "back: dark bluish-grey feathers", + "beak: short, stout, and black", + "belly: light blue-grey plumage", + "breast: pale blueish-grey plumage", + "crown: bluish-grey with lighter edges", + "forehead: pale blue-grey feathers", + "eyes: small, black, and round", + "legs: short, strong, and grey", + "wings: broad, rounded, dark bluish-grey", + "nape: bluish-grey feathers", + "tail: short, squared-off, dark bluish-grey", + "throat: pale blue-grey plumage" + ], + "grauer swamp warbler": [ + "back: olive-brown with faint streaks", + "beak: slender, pointed, and dark gray", + "belly: pale gray with slight yellow tinge", + "breast: grayish with light streaks", + "crown: olive-brown with faint streaks", + "forehead: slightly paler olive-brown", + "eyes: small, dark, and beady", + "legs: long, slender, and dark gray", + "wings: olive-brown with thin, pale edges", + "nape: olive-brown with light streaks", + "tail: long, thin, and olive-brown with faint bars", + "throat: pale gray with a hint of yellow" + ], + "grauer warbler": [ + "back: olive-green and well-feathered", + "beak: short and finely pointed", + "belly: pale yellow with fine streaks", + "breast: light yellowish-green with subtle markings", + "crown: grayish-green with slightly raised feathers", + "forehead: unmarked olive-green", + "eyes: small, dark, and alert", + "legs: thin and pale pinkish-brown", + "wings: olive-toned with faint bars", + "nape: grayish-olive, blending into the back", + "tail: short and slightly forked, olive-brown", + "throat: pale yellow with delicate streaks" + ], + "gray antbird": [ + "back: gray feathered with subtle streaks", + "beak: short, sharp, and black", + "belly: pale gray with some darker streaks", + "breast: smooth gray plumage", + "crown: dark gray with noticeable crest", + "forehead: lighter gray area above beak", + "eyes: small, round, and black", + "legs: thin and black with strong claws", + "wings: gray with intricate light and dark patterns", + "nape: gray with a slight gradient from the crown", + "tail: long, gray feathers with darker stripes", + "throat: pale gray without markings" + ], + "gray antwren": [ + "back: slate-gray feathers", + "beak: short, hooked, black", + "belly: pale grayish-white", + "breast: light gray plumage", + "crown: dark gray with white streaks", + "forehead: smooth gray feathers", + "eyes: small, black, surrounded by white eye-ring", + "legs: thin, black, and long", + "wings: gray with white wing bars", + "nape: uniform gray with slight white streaking", + "tail: gray, fan-shaped, with white tips", + "throat: pale gray, slightly lighter than breast" + ], + "gray apalis": [ + "back: grayish-brown plumage", + "beak: short, pointed, and black", + "belly: pale grayish-white", + "breast: light gray feathers", + "crown: dark gray with a shaggy crest", + "forehead: smooth, dark gray", + "eyes: small, round, black", + "legs: slender, pale pink or gray", + "wings: gray with darker tips and white bars", + "nape: gray, blending into back coloration", + "tail: long and graduated, dark gray with white tips", + "throat: paler gray than breast" + ], + "gray bunting": [ + "back: gray-blue feathers", + "beak: short, conical, blackish", + "belly: pale gray, lightly streaked", + "breast: light gray, blending into belly", + "crown: dark gray with white streaks", + "forehead: pale gray, blending into face", + "eyes: small, black, surrounded by white", + "legs: thin, black or dark gray", + "wings: gray-blue, with white and black markings", + "nape: gray-blue, blending into crown", + "tail: medium-length, gray-blue, with black and white bars", + "throat: pale gray, blending into breast" + ], + "gray bushchat": [ + "back: slate gray feathers", + "beak: small, black, and pointed", + "belly: light gray plumage", + "breast: soft gray with no patterning", + "crown: darker gray feathers", + "forehead: light gray, blending into crown", + "eyes: small, dark brown", + "legs: thin and long, with dark gray-black color", + "wings: slate gray with white wing patches", + "nape: lighter gray than crown", + "tail: dark gray with a forked shape", + "throat: pale gray sometimes fading to white" + ], + "gray butcherbird": [ + "back: sleek, grayish feathers", + "beak: strong, hooked, black", + "belly: light gray to white, soft feathers", + "breast: whitish gray, feathered", + "crown: gray or black, rounded", + "forehead: black to gray, small feathers", + "eyes: medium-sized, black, alert", + "legs: black, thin, strong", + "wings: gray, long, pointed feathers", + "nape: gray to black, short feathers", + "tail: black, white-tipped, medium-length", + "throat: light gray, feathered" + ], + "gray crowned crane": [ + "back: light grey plumage with elongated feathers", + "beak: moderately long and slightly curved, light grey", + "belly: white feathers blending with the grey back feathers", + "breast: primarily white with a hint of golden brown", + "crown: distinctive golden-yellow feathers in a fan shape", + "forehead: red and white striped patch", + "eyes: large, round, and dark with white surrounds", + "legs: long and slender, light grey, with black feathered \"stilts", + "wings: light grey with white primary feathers", + "nape: golden-yellow feathers rising from back of head", + "tail: grey feathers mixed with long, white, wispy feathers", + "throat: small patch of white, bordered by black feathers on the neck" + ], + "gray cuckooshrike": [ + "back: light gray feathers with a slightly darker hue", + "beak: black, medium-length and slightly curved", + "belly: pale gray with no distinctive markings", + "breast: soft gray plumage that blends with the belly color", + "crown: light gray, smooth feathers", + "forehead: matching gray color with a subtle sheen", + "eyes: dark brown, round and slightly recessed into the feathers", + "legs: black and slender, with lightly-scaled feet", + "wings: gray with blackish edges and white wingbars", + "nape: light gray feathers, similar to the crown and back", + "tail: gray, moderately long with thin black bands and white tips", + "throat: pale gray, blending with the breast color" + ], + "gray currawong": [ + "back: dark gray feathers covering the upper body", + "beak: strong, black, hook-shaped", + "belly: lighter gray shade with smooth plumage", + "breast: pale gray with slight streaks", + "crown: dark gray with sleek feathers", + "forehead: smooth dark gray feathers extending to the beak", + "eyes: small, black, sharp gaze", + "legs: sturdy black legs with clawed feet", + "wings: dark gray with white-tipped flight feathers", + "nape: slightly paler gray connecting the back and crown", + "tail: elongated, dark gray with white-tipped edges", + "throat: pale gray with faint streaking" + ], + "gray emutail": [ + "back: sleek gray feathers covering the upper body", + "beak: strong, slender and blackish-gray", + "belly: lighter gray feathers, softly blending with breast", + "breast: silvery-gray plumage with a slightly rounded shape", + "crown: smooth gray feathers with a subtle crest", + "forehead: pale gray plumage meeting the beak seamlessly", + "eyes: dark, round and alert, encircled by a thin gray ring", + "legs: long, scaly, and dark gray, ending with three adaptive toes", + "wings: elongated gray feathers for agile gliding and soaring", + "nape: smooth transition from the crown to the back feathers", + "tail: fan-shaped gray feathers, essential for steering during flight", + "throat: pale gray, contrasting delicately with the breast feathers" + ], + "gray falcon": [ + "back: smooth, gray feathers", + "beak: sharp, hooked, dark gray", + "belly: lighter gray, soft plumage", + "breast: pale gray, speckled feathers", + "crown: dark gray, sleek feathers", + "forehead: light gray, narrow markings", + "eyes: piercing yellow, sharp gaze", + "legs: sturdy, yellowish-gray, talons", + "wings: long, pointed, gray with bands", + "nape: lighter gray, thin streaks", + "tail: barred gray, squared-off tip", + "throat: pale gray, narrow stripes" + ], + "gray fantail": [ + "back: light gray with subtle darker streaks", + "beak: small and slim, blackish-brown", + "belly: pale white, slightly grayish", + "breast: white with light gray patches", + "crown: dark gray with white streaks", + "forehead: dark gray, almost merging with crown", + "eyes: small black dots with white outlines", + "legs: thin and brownish-gray", + "wings: gray with darker tips and edges", + "nape: light gray with slight dark streaks", + "tail: long, fanned gray feathers with white edges", + "throat: pale white, slightly grayish" + ], + "gray francolin": [ + "back: earthy brown with black and white streaks", + "beak: short and strong, pale gray", + "belly: buff-colored with dark brown speckles", + "breast: russet-toned with dark brown streaks", + "crown: soft gray with fine stripes", + "forehead: light gray blending into the crown", + "eyes: small and dark, surrounded by gray feathers", + "legs: sturdy and reddish-brown", + "wings: patterned with black, white, and brown feathers", + "nape: grayish-brown with delicate markings", + "tail: brownish-gray with black and white banding", + "throat: light buff with thin brown streaks" + ], + "gray friarbird": [ + "back: grayish-brown feathers", + "beak: long, hooked, and dark-colored", + "belly: pale, off-white", + "breast: light gray with some streaks", + "crown: smooth gray feathers", + "forehead: grayish-white", + "eyes: small, dark and beady", + "legs: long, thin, and gray", + "wings: gray with darker flight feathers", + "nape: pale gray with light streaking", + "tail: long and grayish-brown", + "throat: off-white with faint streaking" + ], + "gray gerygone": [ + "back: light gray plumage", + "beak: short, thin, and black", + "belly: pale gray with soft white undertones", + "breast: a blend of gray and white feathers", + "crown: medium gray crown extending to forehead", + "forehead: continuous medium gray from crown", + "eyes: small, round, with black pupils", + "legs: slim, dark gray legs and feet", + "wings: gray with defined feathers and white edges", + "nape: light gray transitioning from crown", + "tail: long and slender, gray with white edges", + "throat: white with faint gray streaking" + ], + "gray go away bird": [ + "back: light gray feathers", + "beak: strong, black, and hooked", + "belly: pale gray plumage", + "breast: soft gray feathers", + "crown: darker gray crest", + "forehead: smooth, light gray", + "eyes: bright, white-rimmed", + "legs: black, slender", + "wings: wide, gray with streaks", + "nape: medium gray shading", + "tail: dark gray, long, and forked", + "throat: lighter gray feathers" + ], + "gray goshawk": [ + "back: sleek gray feathers", + "beak: sharp, black hooked bill", + "belly: lighter gray plumage", + "breast: smooth gray feathers", + "crown: dark gray feathered crest", + "forehead: flat and gray", + "eyes: piercing, round, yellow-orange gaze", + "legs: strong, featherless, yellow", + "wings: broad, gray with white undersides", + "nape: subtly patterned gray plumage", + "tail: long, gray, and white barred", + "throat: pale gray feathers" + ], + "gray grasswren": [ + "back: brownish-gray with dark streaks", + "beak: slender and black", + "belly: creamy white with light barring", + "breast: light gray with fine streaks", + "crown: grayish-brown with subtle markings", + "forehead: pale gray with fine streaks", + "eyes: dark with thin white eyering", + "legs: strong with black", + "wings: brownish-gray with subtle markings", + "nape: grayish-brown with dark streaks", + "tail: long and brownish-gray with thin barring", + "throat: pale gray with faint streaks" + ], + "gray greenbul": [ + "back: greenish-brown with gentle streaks", + "beak: short and pointed, blackish-brown", + "belly: creamy-white with gray shades", + "breast: grayish, blending into belly", + "crown: olive-green with subtle streaks", + "forehead: greenish-gray, blending with the crown", + "eyes: small, black with a white outline", + "legs: slim, grayish-brown", + "wings: greenish-brown with primary feathers darker edged", + "nape: olive-green gradually blending with the back", + "tail: long and narrow, greenish-brown feathers", + "throat: pale grayish-white" + ], + "gray gull": [ + "back: light gray plumage", + "beak: long, narrow, and slightly curved", + "belly: white with soft gray spots", + "breast: pale gray with fine streaks", + "crown: smooth, light gray feathers", + "forehead: flat, light gray", + "eyes: dark orbs with white rings", + "legs: long, slender, and black", + "wings: gray with black tips and white edges", + "nape: light gray, blending into the back", + "tail: white with black vertical stripes", + "throat: white with thin, gray lines" + ], + "gray hawk": [ + "back: grayish-brown plumage", + "beak: sharp, hooked, dark color", + "belly: light gray feathers", + "breast: pale gray with fine barring", + "crown: light gray with faint streaks", + "forehead: whitish-gray plumage", + "eyes: bright yellow with a sharp gaze", + "legs: strong and yellow, with sharp talons", + "wings: broad and rounded, gray with dark tips", + "nape: grayish-white with lighter streaks", + "tail: long with horizontal bands of dark gray and white", + "throat: light gray, sometimes with faint streaks" + ], + "gray heron": [ + "back: long slender blue-gray feathers", + "beak: long, sharp, and pointed yellow beak", + "belly: light gray plumage", + "breast: blue-gray feathers with faint streaks", + "crown: dark gray with elongated feathers", + "forehead: white and flat with small feathers", + "eyes: small round yellow eyes", + "legs: long thin yellow legs", + "wings: wide blue-gray wings with black tips", + "nape: white and narrow with elongated feathers", + "tail: short, gray fan-shaped feathers", + "throat: white with faint streaks" + ], + "gray honeyeater": [ + "back: mottled gray feathers", + "beak: long, slender, and curved", + "belly: pale gray plumage", + "breast: light gray with faint streaks", + "crown: darker gray plumage", + "forehead: slightly lighter gray feathering", + "eyes: small, dark, and round", + "legs: grayish-black, slender limbs", + "wings: mottled gray with white edges", + "nape: gray plumage, lighter than crown", + "tail: long, straight feathers with white tip", + "throat: pale gray feathers, lighter than breast" + ], + "gray imperial pigeon": [ + "back: dark gray feathers with slight iridescence", + "beak: short and strong, light gray hue", + "belly: pale gray with soft plumage", + "breast: smooth light gray feathers", + "crown: round, gray head with no crest", + "forehead: flat and light gray", + "eyes: small, dark with pale eye-ring", + "legs: short and reddish, ending with sturdy claws", + "wings: broad with gray flight feathers", + "nape: slightly darker gray than the head", + "tail: long, gray feathers with occasional white tips", + "throat: lighter gray, smooth feathers" + ], + "gray junglefowl": [ + "back: dark gray with mottled brown patterns", + "beak: charcoal-black and sharp-edged", + "belly: light gray with subtle white streaks", + "breast: chestnut-brown with fine patterned streaks", + "crown: reddish-brown feathers forming a distinct crest", + "forehead: slightly darker shade of gray than the crown", + "eyes: prominent, round and deep amber-colored", + "legs: grayish-black with sturdy, scaly appearance", + "wings: gray with brown and white barred feathers", + "nape: russet and gray feathers mingling down the neck", + "tail: long, lance-like feathers with patterned gray and brown bands", + "throat: pale gray, contrasting with the richer, colorful upper body" + ], + "gray kestrel": [ + "back: pale gray with fine barring", + "beak: short and hooked, black with a yellow cere", + "belly: creamy white with dark gray streaks", + "breast: light gray with fine streaks", + "crown: pale gray, smooth feathering", + "forehead: white merging into pale gray", + "eyes: large, dark brown with yellow eye-ring", + "legs: yellow, slender with sharp talons", + "wings: pale gray with black flight feathers and white spots", + "nape: pale gray with fine barring", + "tail: long, banded gray and white with black terminal band", + "throat: pale gray, blending into white on the lower parts" + ], + "gray laughingthrush": [ + "back: soft gray feathers", + "beak: short, strong, black", + "belly: light gray feathers", + "breast: pale gray plumes", + "crown: dark gray cap", + "forehead: smooth gray feathers", + "eyes: small, round, black", + "legs: strong, greyish", + "wings: long, gray, barred", + "nape: gray feathers", + "tail: lengthy gray feathers, dark tips", + "throat: pale gray plumage" + ], + "gray longbill": [ + "back: light gray feathers with subtle streaks", + "beak: thin, elongated black beak", + "belly: soft gray with white undertones", + "breast: pale gray, merging with belly color", + "crown: smooth gray feathers, slightly darker than the back", + "forehead: light gray, continuous with crown color", + "eyes: small, round, black, embedded in gray feathers", + "legs: slim, dark gray with small claws", + "wings: gray feathers with darker flight feathers", + "nape: light gray, continuous with back and crown", + "tail: fan-shaped, gray with distinct black markings", + "throat: pale grayish-white, slightly lighter than the breast" + ], + "gray monjita": [ + "back: light gray plumage", + "beak: short and black", + "belly: whitish-gray feathers", + "breast: light gray plumage", + "crown: pale gray head", + "forehead: lighter gray hue", + "eyes: small and dark", + "legs: slender, black limbs", + "wings: gray with white-tipped secondary feathers", + "nape: light gray coloration", + "tail: long, dark gray with white edges", + "throat: pale gray plumage" + ], + "gray nightjar": [ + "back: mottled gray-brown with faint streaks", + "beak: short and wide, dark with pale tip", + "belly: pale gray with brownish speckles", + "breast: grayish-brown with darker streaks", + "crown: grayish-brown with slight crest", + "forehead: pale gray-brown with darker streaks", + "eyes: black with pale eyelids", + "legs: short and feathered, pale gray", + "wings: long and pointed, mottled gray-brown", + "nape: grayish-brown with pale streaks", + "tail: mottled gray-brown with white outer tips", + "throat: pale gray with brownish speckles" + ], + "gray parrot": [ + "back: grayish-feathered upper body", + "beak: curved, black, and strong", + "belly: light gray, soft feathers", + "breast: rounded, smooth, gray plumage", + "crown: gray feathers atop the head", + "forehead: flat, light gray area above the beak", + "eyes: round, dark, and expressive", + "legs: short, scaled, with sharp claws", + "wings: broad, gray, and powerful", + "nape: back of the neck with gray feathers", + "tail: long, gray, fanned feathers", + "throat: light gray feathers below the beak" + ], + "gray peacock pheasant": [ + "back: metallic green and bronze feathers", + "beak: sturdy, short, and grayish-white", + "belly: grayish-white feathers with black speckles", + "breast: metallic green feathers with pale blue spots", + "crown: grayish-blue with a bare red facial patch", + "forehead: grayish-blue and metallic green feathers", + "eyes: bright and yellowish-white", + "legs: long, strong, and dull gray", + "wings: metallic green and blue with bright blue spots", + "nape: grayish-blue with a slight metallic sheen", + "tail: long and rounded, gray with intricate black speckles", + "throat: grayish-white with black speckles" + ], + "gray petrel": [ + "back: sleek, gray-feathered back", + "beak: strong, hooked, pale-colored beak", + "belly: soft, light gray underbelly", + "breast: slightly puffed out, gray breast", + "crown: smooth, medium gray crown", + "forehead: smooth, light gray forehead", + "eyes: dark, round eyes", + "legs: sturdy, pinkish-gray legs", + "wings: long, gray, sharply pointed wings", + "nape: lighter gray, smooth nape", + "tail: fan-shaped, gray tail feathers", + "throat: light gray, slightly puffed out throat" + ], + "gray pratincole": [ + "back: grayish-brown plumage", + "beak: short, black, slightly hooked", + "belly: pale gray with darker patches", + "breast: light gray with brown streaks", + "crown: dark gray with slight crest", + "forehead: pale gray with darker gray feathers", + "eyes: dark, surrounded by white eyering", + "legs: long, yellowish-gray", + "wings: grayish-brown with white wing tips", + "nape: dark gray transitioning from crown", + "tail: forked, dark gray outer feathers with white edging", + "throat: pale gray with dark gray streaks" + ], + "gray seedeater": [ + "back: light gray with subtle brownish streaks", + "beak: short, conical, and black", + "belly: pale grayish-white", + "breast: light gray with a possible brown tinge", + "crown: dark gray with a hint of brown", + "forehead: light gray blending into the crown", + "eyes: small, black, surrounded by gray feathers", + "legs: thin, black, and delicate", + "wings: gray with brownish-black streaks and white wing-bars", + "nape: light gray, connecting to the crown", + "tail: medium-length, gray with brownish-black edges", + "throat: pale gray, lighter than the breast" + ], + "gray shrikethrush": [ + "back: slate gray feathers covering the upper body", + "beak: sharp, black, and slightly hooked", + "belly: creamy-white with some gray markings", + "breast: pale gray with faint streaks", + "crown: light gray feathers with subtle striping", + "forehead: smooth gray feathers joining the beak", + "eyes: dark, round with a black pupil, surrounded by a black eyestripe", + "legs: slender, black and strong with sharp claws", + "wings: gray and folded along the sides, with visible wing bars", + "nape: gray feathers transitioning from the crown to the back", + "tail: long and tapered with grayish-white outer edges", + "throat: pale gray leading to the breast area" + ], + "gray sibia": [ + "back: dark gray feathers", + "beak: slender and slightly curved", + "belly: lighter gray underside", + "breast: mix of gray and white feathers", + "crown: black feathers with slight crest", + "forehead: dark gray plumage", + "eyes: deep black and alert", + "legs: long, grayish-black legs", + "wings: gray plumage with white edging", + "nape: dark gray, smooth feathers", + "tail: long, black tail feathers with white tips", + "throat: whitish-gray with black streaks" + ], + "gray silky flycatcher": [ + "back: smooth gray plumage", + "beak: slender black beak", + "belly: soft pale gray feathers", + "breast: silky gray plumage", + "crown: sleek gray crest", + "forehead: gently sloping gray feathers", + "eyes: deep black eyes with white rings", + "legs: short black legs", + "wings: elegant gray with white wingbars", + "nape: seamless transition from crown to back", + "tail: long gray feathers with white tips", + "throat: light gray leading to the belly" + ], + "gray teal": [ + "back: medium gray with subtle feather texture", + "beak: black, slightly curved, narrow at tip", + "belly: pale gray, blending into white", + "breast: light gray, finely speckled pattern", + "crown: darker gray, smoothly transitioning from forehead", + "forehead: medium gray, smooth and slightly curved", + "eyes: deep black with thin white eye-ring", + "legs: long, slender, olive-gray with webbed feet", + "wings: medium gray with prominent white patches", + "nape: lighter gray, smooth transition from back", + "tail: elongated, gray feathers with white outer edges", + "throat: pale gray, fading into white towards breast" + ], + "gray thornbill": [ + "back: muted gray feathers", + "beak: slender, curved black beak", + "belly: pale gray-white underparts", + "breast: light gray plumage", + "crown: dark gray top of head", + "forehead: gray feathers blending into crown", + "eyes: small black eyes with white eye-ring", + "legs: pale pink-gray legs and feet", + "wings: gray feathers with white wing bars", + "nape: gray feathers transitioning from crown", + "tail: long gray feathers with white tips", + "throat: pale gray-white feathers" + ], + "gray thrasher": [ + "back: grayish-brown plumage", + "beak: long, slightly curved, black", + "belly: pale gray with brown undertones", + "breast: light gray with faint speckles", + "crown: grayish-brown with streaks", + "forehead: smooth light gray", + "eyes: dark with pale eye-ring", + "legs: black, thin, and long", + "wings: gray-brown with light wing-bars", + "nape: streaked grayish-brown", + "tail: long, grayish-brown with black bars", + "throat: pale gray with faint streaks" + ], + "gray tinamou": [ + "back: soft gray plumage", + "beak: straight, slender, and dark", + "belly: light gray with fine barring", + "breast: pale gray with horizontal stripes", + "crown: dark gray with faint streaks", + "forehead: slightly paler gray", + "eyes: dark, with thin gray eyering", + "legs: sturdy, blue-gray with strong claws", + "wings: rounded and gray with darker markings", + "nape: grayish-brown with stripe pattern", + "tail: short, dark gray with light bars", + "throat: pale grayish-white with slight streaks" + ], + "gray tit flycatcher": [ + "back: soft gray feathers", + "beak: short and pointed", + "belly: pale gray-white", + "breast: light gray plumage", + "crown: darker gray feathers", + "forehead: subtle gray coloration", + "eyes: small and black", + "legs: thin and dark gray", + "wings: grayish-brown with white bars", + "nape: smooth gray feathers", + "tail: long and gray with white outer feathers", + "throat: light gray-white" + ], + "gray treepie": [ + "back: gray feathers transitioning to black", + "beak: strong, black, and slightly curved", + "belly: white with gray undertones", + "breast: smoky gray with traces of white", + "crown: black plumage and slightly raised", + "forehead: black feathers blending with crown", + "eyes: dark, surrounded by black feathers", + "legs: strong, black, and slender", + "wings: gray and black feathers with white edges", + "nape: black collar that separates head from the gray back", + "tail: long, black feathers with white tips", + "throat: white feathers contrasting with black head" + ], + "gray trembler": [ + "back: grayish-brown feathers", + "beak: slim and straight, blackish color", + "belly: dull white feathers", + "breast: grayish-white plumage", + "crown: grayish-brown feathers", + "forehead: lighter gray shades", + "eyes: dark and round with white eye-ring", + "legs: thin and dark gray", + "wings: grayish-brown with darker flight feathers", + "nape: lighter gray coloration", + "tail: relatively long with grayish-brown feathers", + "throat: pale gray plumage" + ], + "gray vireo": [ + "back: light gray, smooth feathers", + "beak: small, slightly hooked, pale-gray", + "belly: off-white, gently mixed with gray", + "breast: soft light gray, slightly paler than back", + "crown: gray, faintly streaked", + "forehead: pale gray, blending with crown", + "eyes: dark, rounded, surrounded by white markings", + "legs: slender, pale-gray", + "wings: gray, with white wingbars", + "nape: pale gray, connected to crown", + "tail: gray, edged with white outer feathers", + "throat: pale gray, slightly lighter than breast" + ], + "gray wagtail": [ + "back: sleek gray feathers", + "beak: thin, sharp, and black", + "belly: pale and lightly speckled", + "breast: soft grayish-yellow hue", + "crown: smooth gray plumage", + "forehead: narrow, extending gray cap", + "eyes: small, round, and black", + "legs: long, slender, and pinkish-gray", + "wings: muted gray outlined in white", + "nape: seamless gray continuation", + "tail: lengthy, black and white-feathered, constantly wagging", + "throat: pale gray hue" + ], + "gray warbler finch": [ + "back: light gray feathers with subtle streaks", + "beak: short, sharp, and black", + "belly: off-white to pale gray feathers", + "breast: smooth grayish-white plumage", + "crown: pale gray with thin white streaks", + "forehead: slightly paler gray compared to crown", + "eyes: small, round, and black with white eye-ring", + "legs: thin, medium-length, and black", + "wings: light gray with darker gray flight feathers", + "nape: gray feathers transitioning from crown to back", + "tail: medium-length, gray feathers with darker tips", + "throat: whitish-gray, blending into breast" + ], + "gray whistler": [ + "back: sleek gray feathers", + "beak: thin, sharp, black", + "belly: light grayish-white", + "breast: pale gray plumage", + "crown: dark gray feathers", + "forehead: smooth gray", + "eyes: round, dark, small", + "legs: thin, black, two-toed", + "wings: gray with black edges", + "nape: light gray feathers", + "tail: long, gray with black tips", + "throat: pale gray-white" + ], + "gray wren warbler": [ + "back: light gray feathers", + "beak: thin, sharp, black", + "belly: whitish-gray feathers", + "breast: soft gray plumage", + "crown: gray, slightly raised", + "forehead: smooth, gray feathers", + "eyes: small, black, alert", + "legs: thin, gray-brown", + "wings: gray with faint barring", + "nape: gray with subtle markings", + "tail: long, gray, slender", + "throat: pale gray, unmarked" + ], + "gray and buff woodpecker": [ + "back: grayish-brown with subtle black markings", + "beak: long, chisel-shaped, and pale gray", + "belly: creamy-buff with faint dark streaks", + "breast: buffy-gray with horizontal barring", + "crown: dull gray with a red patch on males", + "forehead: grayish-brown with a smooth transition to the crown", + "eyes: small, dark with white outlines", + "legs: short, strong, and grayish-blue", + "wings: gray with black and white barring", + "nape: grayish-brown with a slight hint of red or orange", + "tail: gray with black horizontal bands, stiff central feathers", + "throat: pale buff, bordered by black malar stripes" + ], + "gray and gold tanager": [ + "back: shimmering gray plumage", + "beak: short, pointed, light gray", + "belly: bright gold feathers", + "breast: golden-yellow plumage", + "crown: gray with a hint of gold", + "forehead: metallic gray hue", + "eyes: small, dark, alert", + "legs: slender, gray, and strong", + "wings: gray, gold highlights, powerful", + "nape: gray with golden glints", + "tail: long, gray, with gold tips", + "throat: striking gold contrast" + ], + "gray and gold warbler": [ + "back: sleek gray feathers", + "beak: thin, pointed gold and black", + "belly: pale gray speckled with gold", + "breast: soft gold with gray streaks", + "crown: gold with black markings", + "forehead: shining gold", + "eyes: bright, inquisitive black", + "legs: slender gray", + "wings: gray with gold accents", + "nape: gold with black stripes", + "tail: gray with gold tips", + "throat: golden, vibrant" + ], + "gray and white tyrannulet": [ + "back: soft gray feathers", + "beak: small, thin black beak", + "belly: white and fluffy plumage", + "breast: grayish-white feathers", + "crown: pale gray with white streaks", + "forehead: light gray and smooth", + "eyes: small, round, with dark pupils", + "legs: thin, dark gray legs", + "wings: white-edged, gray with subtle streaks", + "nape: gray with faint white markings", + "tail: gray, fan-shaped with white outer feathers", + "throat: white, slightly fluffy" + ], + "gray backed fiscal": [ + "back: light gray feathers covering the upper body", + "beak: sharp, hooked black beak for catching insects", + "belly: white to light gray plumage on the lower abdomen", + "breast: pale gray feathers on the chest area", + "crown: dark gray to black feathers on the top of the head", + "forehead: light gray feathers above the eyes", + "eyes: small round eyes with black irises", + "legs: slender gray legs with sharp talons", + "wings: gray, long and pointed for swift flight", + "nape: light gray feathers on the back of the neck", + "tail: black and white feathers on a long, fan-shaped tail", + "throat: white feathers surrounding the base of the beak" + ], + "gray backed hawk": [ + "back: light gray feathers with darker barring", + "beak: curved black and sharp", + "belly: white with gray speckles", + "breast: white with light gray streaks", + "crown: dark gray feathers", + "forehead: slightly lighter gray feathers", + "eyes: round and yellow", + "legs: yellow with sharp black talons", + "wings: gray with distinct dark stripes", + "nape: slightly lighter gray feathers", + "tail: gray with dark horizontal bands", + "throat: white with faint gray markings" + ], + "gray backed shrike": [ + "back: grayish-white, with some black striations", + "beak: hooked, black, sharp tip for catching insects", + "belly: creamy-white, blends into breast", + "breast: pale gray, well-defined against belly", + "crown: dark gray, contrasts with lighter back", + "forehead: smooth gray, transitioning into the crown", + "eyes: black, small, piercing gaze", + "legs: slender, black, strong for perching", + "wings: gray and black, with white patch for extra visibility", + "nape: medium gray, connects smoothly to the back", + "tail: gray-black, long, and slender, with white outer feathers", + "throat: white, contrasts with the dark gray breast" + ], + "gray backed sparrow lark": [ + "back: grayish-brown with subtle streaks", + "beak: small, conical, dark-colored", + "belly: white with black streaks", + "breast: rich chestnut-colored", + "crown: gray with faint streaks", + "forehead: bold white stripe", + "eyes: small, black, with white eye-ring", + "legs: slender, pale pinkish-gray", + "wings: dark with white streaks and rufous patch", + "nape: grayish-brown with fine streaks", + "tail: short, black, with white outer feathers", + "throat: white, bordered with black markings" + ], + "gray backed storm petrel": [ + "back: pale gray with a distinctive pattern", + "beak: short and black, slightly hooked tip", + "belly: off-white with light gray streaks", + "breast: pale gray with a white underbelly", + "crown: smooth gray with a sharply defined white forehead", + "forehead: striking white color contrasted against crown", + "eyes: small and dark, outlined with thin whitish-gray feathers", + "legs: short and black with webbed feet", + "wings: long, slender, and gray with a darker outline", + "nape: grayish-white, blending with crown and back colors", + "tail: short and slightly forked, with gray feathers", + "throat: off-white with a grayish hue, transitioning to breast" + ], + "gray backed tachuri": [ + "back: light gray feathers with subtle markings", + "beak: slender black bill, perfect for insects", + "belly: pale grayish-white underparts", + "breast: slightly darker gray transitioning from the belly", + "crown: dark gray feathers, contrasting with the paler back", + "forehead: light gray, blending into the crown", + "eyes: deep black, surrounded by a light grayish-white circle", + "legs: thin, black with sharp claws for perching", + "wings: light gray with darker gray primaries and secondaries", + "nape: grayish-white with a slight gradient to the crown", + "tail: long, grayish-white with dark gray tips", + "throat: pale gray, blending seamlessly with the breast" + ], + "gray backed tailorbird": [ + "back: grayish-green feathers", + "beak: slim, pointed, blackish", + "belly: whitish-gray coloration", + "breast: light gray with fine streaks", + "crown: dark gray, subtle crest", + "forehead: grayish-white", + "eyes: bright, black beady eyes", + "legs: slender, brownish-gray", + "wings: grayish-green, rounded", + "nape: grayish-green, matching back color", + "tail: long, slender, grayish-green", + "throat: pale gray, slightly streaked" + ], + "gray backed tern": [ + "back: sleek gray feathers", + "beak: sharp, slender, black", + "belly: white and fluffy", + "breast: light gray plumage", + "crown: dark gray feathers", + "forehead: gray and smooth", + "eyes: small, black, alert", + "legs: thin, long, gray", + "wings: broad, gray, powerful", + "nape: gray, gently curved", + "tail: forked, long, gray", + "throat: white, blending into gray" + ], + "gray backed thrush": [ + "back: grayish-brown plumage", + "beak: straight, slender, dark", + "belly: white with faint black spots", + "breast: orange-brown with dark speckles", + "crown: gray-brown with streaks", + "forehead: smooth, lighter gray", + "eyes: round, black, bright", + "legs: strong, slender, dark", + "wings: gray-brown with white edges", + "nape: grayish-brown, streaked", + "tail: medium length, dark gray-brown", + "throat: buff-white, unmarked" + ], + "gray banded munia": [ + "back: light brown with gray feather bands", + "beak: short and stout, pale grayish-blue", + "belly: soft, pale gray with a white undertone", + "breast: smoky gray with hints of white", + "crown: dark gray streaked with lighter shades", + "forehead: smooth and dark gray", + "eyes: small and black, surrounded by light gray feathers", + "legs: thin and lightly colored, blending with body shades", + "wings: light brown with gray striped patterns", + "nape: gray-toned with subtle feather streaks", + "tail: long and narrow, grayish-brown with white accents", + "throat: smooth, pale gray with white undertones" + ], + "gray barred wren": [ + "back: light gray with dark gray barring", + "beak: thin, pointed, dark gray", + "belly: whitish-gray with subtle barring", + "breast: light gray with dark gray barring", + "crown: evenly barred medium-gray", + "forehead: smooth gray without barring", + "eyes: black with white eye-ring", + "legs: thin, grayish-brown", + "wings: gray with visible dark gray bars", + "nape: pale gray, slightly barred", + "tail: long, gray, with prominent dark gray barring", + "throat: soft, light gray, unbarred" + ], + "gray bellied antbird": [ + "back: light gray feathers", + "beak: short, sharp, and black", + "belly: pale gray with subtle white streaks", + "breast: soft gray plumage", + "crown: dark gray feathers", + "forehead: light gray stripe above beak", + "eyes: small and dark", + "legs: slender and black", + "wings: gray with distinct white patches", + "nape: light gray feathers meeting the crown", + "tail: long, gray feathers with white tips", + "throat: pale gray with a white central patch" + ], + "gray bellied bulbul": [ + "back: light grayish-brown feathers", + "beak: small, dark, slightly curved", + "belly: pale gray with soft streaks", + "breast: off-white and light gray", + "crown: brownish-gray, slightly raised", + "forehead: light brown or grayish", + "eyes: dark, round with a white eyering", + "legs: slender, dark gray", + "wings: gray-brown with a subtle wing patch", + "nape: light grayish-brown", + "tail: long, dark gray with white feather tips", + "throat: whitish-gray with light streaking" + ], + "gray bellied comet": [ + "back: smooth grayish feathers", + "beak: slender, curved black beak", + "belly: light gray underparts", + "breast: pale gray chest feathers", + "crown: dark gray head plumage", + "forehead: subtle darker feathers", + "eyes: small, black, alert eyes", + "legs: thin, black, clawed legs", + "wings: elongated gray wings with black tips", + "nape: lighter gray feather transition", + "tail: long, thin, white-tipped gray tail feathers", + "throat: slightly paler gray feather patch" + ], + "gray bellied cuckoo": [ + "back: pale gray with fine streaks", + "beak: long, slender, and black", + "belly: light gray, sometimes tinged with white", + "breast: pale gray, blending with the belly", + "crown: grayish brown, with fine streaks", + "forehead: slightly lighter gray than crown", + "eyes: bright yellow-orange ring around dark pupils", + "legs: short and pale, with strong black claws", + "wings: long, pointed, with dark gray feathers and white fringes", + "nape: grayish brown, matching the crown", + "tail: long and dark gray, with white tips on outer feathers", + "throat: pale gray, blending with the breast" + ], + "gray bellied flowerpiercer": [ + "back: slate gray feathers", + "beak: slender, curved black hook", + "belly: soft gray feathering", + "breast: pale gray plumage", + "crown: smooth, dark gray crest", + "forehead: subtle gray gradient", + "eyes: small, round with black pupil", + "legs: slim, black sticks", + "wings: medium size, gray with black streaks", + "nape: dark gray feather transition", + "tail: medium length, gray feathers, and black tips", + "throat: lighter gray plumage" + ], + "gray bellied hawk": [ + "back: sleek gray feathers", + "beak: sharp, curved black beak", + "belly: light gray with fine markings", + "breast: pale gray with vertical streaks", + "crown: dark gray with a lighter edge", + "forehead: smooth light gray feathers", + "eyes: intense yellow with a sharp gaze", + "legs: strong yellow legs with fierce talons", + "wings: broad gray wings with darker flight feathers", + "nape: lighter gray with a distinct transition from the crown", + "tail: long striped gray and white tail feathers", + "throat: pale gray with a well-defined boundary from the breast" + ], + "gray bellied shrike tyrant": [ + "back: sleek gray feathers", + "beak: sharp, hooked black beak", + "belly: pale gray feathered underbelly", + "breast: light gray plumage", + "crown: dark gray feathered crest", + "forehead: smooth gray feathers", + "eyes: piercing black eyes", + "legs: strong, thin, black legs", + "wings: outstretched gray wings with black edges", + "nape: dark gray feathered neck", + "tail: long, black-tipped gray feathers", + "throat: light gray feathered throat" + ], + "gray bellied spinetail": [ + "back: grayish-brown feathers", + "beak: small and pointy", + "belly: light gray with fine streaks", + "breast: pale gray with streaks", + "crown: grayish-brown and slightly raised", + "forehead: smooth light gray", + "eyes: small and black", + "legs: lengthy and brownish-gray", + "wings: grayish-brown with lighter edges", + "nape: gray and slightly streaked", + "tail: long and thin with grayish-brown feathers", + "throat: pale gray with faint streaks" + ], + "gray bellied tesia": [ + "back: grayish-green feathers", + "beak: short and sharp", + "belly: pale gray hue", + "breast: light gray with faint streaks", + "crown: dark grayish-green", + "forehead: slightly paler gray-green", + "eyes: small and black", + "legs: thin and light-colored", + "wings: greenish-gray with slight barring", + "nape: grayish-green blend", + "tail: short and rounded, greenish-gray", + "throat: whitish-gray with subtle streaks" + ], + "gray bellied wren babbler": [ + "back: soft gray feathers with subtle striping", + "beak: thin, slightly curved, blackish-brown", + "belly: pale gray with light ventral streaks", + "breast: mottled gray and white", + "crown: dark gray, smooth texture", + "forehead: lighter gray blending into crown", + "eyes: small, black, surrounded by pale eye-ring", + "legs: slender, brownish-gray, with long toes", + "wings: gray, with faint barring and rounded edges", + "nape: gray, blending seamlessly into back and crown", + "tail: medium-length, gray, with thin white tips", + "throat: whitish-gray, contrasting with breast" + ], + "gray breasted babbler": [ + "back: dull gray feathers", + "beak: short, thin, curved", + "belly: lighter gray plumage", + "breast: greyish-brown fading to pale gray", + "crown: dark gray with a slight crest", + "forehead: smoothly blending into the crown", + "eyes: small, dark, round", + "legs: slender, pale, clawed", + "wings: compact, gray-brown", + "nape: blending with crown and back plumage", + "tail: relatively long, dark gray with lighter tips", + "throat: pale gray, unmarked" + ], + "gray breasted crake": [ + "back: dark gray feathers with subtle barring", + "beak: short, slightly curved, pale yellowish", + "belly: light gray with faint streaks", + "breast: gray with white flecks", + "crown: dark gray blending into forehead", + "forehead: lighter gray continuous with crown", + "eyes: small, dark, surrounded by pale gray feathers", + "legs: long, slender, pale greenish-yellow", + "wings: gray with darker barring, rounded in shape", + "nape: gray with faint barring, connecting crown to back", + "tail: short, dark gray, with black and white bars at the tips", + "throat: white with gray mottling towards breast" + ], + "gray breasted flycatcher": [ + "back: light gray, sleek feathers", + "beak: short, straight, black", + "belly: pale gray, soft under-feathers", + "breast: medium gray, fine plumage", + "crown: gray, slightly darker than back", + "forehead: pale gray, smooth feathers", + "eyes: black, alert and sharp", + "legs: thin, dark gray", + "wings: gray, barred black and white pattern", + "nape: pale gray, connects to the back seamlessly", + "tail: gray with black streaks, slightly forked", + "throat: pale gray, unmarked feathers" + ], + "gray breasted martin": [ + "back: dark gray feathered", + "beak: black, medium-length", + "belly: light gray hue", + "breast: gray, lightly streaked", + "crown: dark gray-black cap", + "forehead: smooth, dark gray", + "eyes: black, beady gaze", + "legs: black, slender limbs", + "wings: gray-black, elongated", + "nape: dark gray, slightly streaked", + "tail: black, forked flight feathers", + "throat: pale gray-white contrast" + ], + "gray breasted mountain toucan": [ + "back: dark gray feathered", + "beak: large, multi-colored with yellow, blue, and black", + "belly: light gray plumage", + "breast: subdued gray feathers", + "crown: glossy black top", + "forehead: black feathered", + "eyes: dark with white eye-rings", + "legs: strong, blue-gray with sharp claws", + "wings: mix of gray and black feathers", + "nape: dark gray plumage", + "tail: elongated, black with a hint of blue", + "throat: pale grayish-white feathers" + ], + "gray breasted parakeet": [ + "back: light gray feathers covering the upper body", + "beak: small, curved, pale-yellow beak for cracking seeds", + "belly: whitish-gray plumage on the lower body", + "breast: pale gray feathers across the chest", + "crown: soft gray head feathers extending to the nape", + "forehead: smooth light gray feathers above the eyes", + "eyes: round, black, gleaming with intelligence", + "legs: slim, gray scaly legs with clawed toes", + "wings: gray feathers on top with turquoise or blue coloration underneath", + "nape: light gray feathery transition from crown to back", + "tail: long, slender feathers with hints of blue or green", + "throat: delicate gray feathers covering the upper part of the neck" + ], + "gray breasted partridge": [ + "back: soft gray feathers with brown speckles", + "beak: short, pale gray, slightly curved", + "belly: light gray feathers, gently fading into white", + "breast: slate gray with a textured feather pattern", + "crown: black feathers with thin white stripes", + "forehead: lighter gray feathers meeting the beak", + "eyes: bright black, surrounded by a thin white ring", + "legs: pale gray, scaly, with sharp claws", + "wings: mottled gray with darker gray and brown accents", + "nape: dark gray feathers transitioning to lighter gray", + "tail: elongated gray feathers with darker bands near the tips", + "throat: lighter gray feathers contrasting with the breast" + ], + "gray breasted prinia": [ + "back: light gray feathers", + "beak: small, sharp, black", + "belly: creamy white with faint streaks", + "breast: gray with white streaks", + "crown: dark gray, slightly raised", + "forehead: light gray blending into the crown", + "eyes: small, black, bright", + "legs: slender, pale pink", + "wings: gray with white bars", + "nape: light gray, blending into back", + "tail: long, narrow, black with white edges", + "throat: gray with white markings" + ], + "gray breasted sabrewing": [ + "back: iridescent green plumage", + "beak: long, slender, and black", + "belly: pale gray feathers", + "breast: gray with a hint of blue", + "crown: shiny green feathers", + "forehead: slightly lighter green", + "eyes: dark, small, and round", + "legs: short and black", + "wings: long, green with white tips", + "nape: greenish-blue coloring", + "tail: metallic green with white-tipped feathers", + "throat: pale gray feathers with a hint of blue" + ], + "gray breasted seedsnipe": [ + "back: dark gray plumage with white spots", + "beak: short, conical, black", + "belly: light gray with faint black markings", + "breast: gray with white speckling", + "crown: dark gray with slight crest", + "forehead: light gray, bordering beak", + "eyes: small, black, surrounded by white ring", + "legs: long, yellow, slender with three toes", + "wings: gray with black and white markings, rounded shape", + "nape: light gray transitioning to darker gray", + "tail: short, fan-shaped, gray with white tips", + "throat: white, bordered by gray breast markings" + ], + "gray breasted spiderhunter": [ + "back: olive-grey and slightly striped", + "beak: long, curved, and black", + "belly: pale grey with faint streaks", + "breast: light grey with minimal markings", + "crown: dark grey with a slight crest", + "forehead: smooth, transition from dark to light grey", + "eyes: round, black, and relatively small", + "legs: short and brownish-grey", + "wings: greyish-brown with faint striping", + "nape: dark grey fading to lighter grey towards the back", + "tail: long, brownish-grey, slightly forked", + "throat: muted grey with sparse striping" + ], + "gray breasted spurfowl": [ + "back: gray plumage with subtle brown stripes", + "beak: short, stout, and light-colored", + "belly: soft gray with minimal markings", + "breast: pale gray with a textured pattern", + "crown: gray with light speckling", + "forehead: smooth gray and feathered", + "eyes: black with a white eye-ring", + "legs: sturdy, gray, and feathered", + "wings: gray and brown with camouflage pattern", + "nape: uniform gray with faint stripes", + "tail: short, rounded with gray and brown feathers", + "throat: light gray, almost white, with fine markings" + ], + "gray breasted wood wren": [ + "back: dark gray with brownish hues", + "beak: short and sharp, blackish-brown", + "belly: pale gray with faint streaks", + "breast: grayish-white with light barring", + "crown: dusky gray with slight brown tint", + "forehead: lighter gray, blending into crown", + "eyes: small, dark with a white eye-ring", + "legs: sturdy with brownish-gray color", + "wings: mottled gray and brown, rounded shape", + "nape: dark gray, merging with the back", + "tail: short, brownish-gray with subtle barring", + "throat: light gray, slightly paler than breast" + ], + "gray breasted woodpecker": [ + "back: grayish-brown with dark stripes", + "beak: strong, black, chisel-like", + "belly: creamy-white with black streaks", + "breast: gray with black spots", + "crown: red with black streaks", + "forehead: black with small white speckles", + "eyes: small, black, bead-like", + "legs: grayish-brown, strong, with sharp claws", + "wings: gray-brown with white barring", + "nape: black with white speckles", + "tail: dark brown with white barring", + "throat: white with black streaks" + ], + "gray browed brushfinch": [ + "back: olive-green feathers", + "beak: short, conical, and gray", + "belly: pale gray underparts", + "breast: soft gray feathers", + "crown: dark gray with a black eyestripe", + "forehead: lighter gray hue", + "eyes: small with black pupils and a white eye-ring", + "legs: strong and dusky gray", + "wings: olive-green with darker flight feathers", + "nape: matching gray with the crown", + "tail: dark gray with white outer feathers", + "throat: paler gray than the breast" + ], + "gray capped cuckoo": [ + "back: shades of gray and green plumage", + "beak: slender, slightly curved, dark gray", + "belly: pale gray-white feathers", + "breast: light gray with streaks of darker gray", + "crown: gray with subtle streaks", + "forehead: slightly paler gray than the crown", + "eyes: small, black, with pale gray eye-ring", + "legs: thin, grayish-brown with long toes", + "wings: grayish-green with pale edges and white spots", + "nape: gray, blending into the color of the back", + "tail: long, grayish-green feathers with white tips", + "throat: light gray with faint streaks" + ], + "gray capped flycatcher": [ + "back: grayish-brown plumage", + "beak: small, black, slightly hooked", + "belly: light gray with a hint of yellow", + "breast: pale gray with faint streaks", + "crown: banded gray and black", + "forehead: dark gray with white markings", + "eyes: dark brown with pale feather outlining", + "legs: slender, dark gray", + "wings: gray with black and white wing bars", + "nape: gray-brown with black stripes", + "tail: dark gray, short and fan-shaped", + "throat: white to pale gray, bordered with streaks" + ], + "gray capped hemispingus": [ + "back: grayish and evenly patterned", + "beak: slim, pointed and black", + "belly: pale gray with soft feathering", + "breast: light gray with fine streaks", + "crown: dark gray with subtle crest", + "forehead: slightly paler gray than crown", + "eyes: small and black with faint eye-ring", + "legs: short and slender, dark in color", + "wings: gray with black feather tips, white markings", + "nape: medium gray and unmarked", + "tail: blackish with white outer edges", + "throat: whitish-gray and sleek" + ], + "gray capped pygmy woodpecker": [ + "back: olive-brown with black bars", + "beak: short, sharp, and black", + "belly: white with black spots", + "breast: pale buff with black spots", + "crown: gray with a red patch on the male", + "forehead: grayish-white", + "eyes: dark brown", + "legs: grayish-blue", + "wings: olive-brown with white spots", + "nape: gray with black lines", + "tail: black with white barring", + "throat: white with black streaks" + ], + "gray capped tyrannulet": [ + "back: soft gray plumage", + "beak: small, pointed, and black", + "belly: creamy white with pale yellow tinge", + "breast: light gray with faint streaking", + "crown: warm gray with slightly darker shades", + "forehead: pale gray blending with crown", + "eyes: small and black with thin white eye-ring", + "legs: slender, black, with tiny feet", + "wings: medium-gray with fine white wing-bars", + "nape: subtle gray coloring, connecting to the crown", + "tail: short and square-shaped with black and white markings", + "throat: pale grayish-white, blending with the breast" + ], + "gray capped warbler": [ + "back: olive-green with faint streaks", + "beak: slender and sharp", + "belly: pale yellow", + "breast: yellow with faint streaks", + "crown: gray with a distinctive cap", + "forehead: grayish tone blending into the crown", + "eyes: small, black, and bright", + "legs: slender and grayish-brown", + "wings: olive-green with white or grayish wing bars", + "nape: olive-green, continuing from the back", + "tail: olive-green with a hint of yellow at the edges", + "throat: bright yellow" + ], + "gray cheeked bulbul": [ + "back: grayish-green feathers", + "beak: short, black, and slightly curved", + "belly: whitish-yellow plumage", + "breast: light gray with a slight yellow tinge", + "crown: distinctive gray plumes", + "forehead: smooth gray feathers", + "eyes: small, black, and alert", + "legs: slender and dark gray", + "wings: grayish-green with slightly darker flight feathers", + "nape: lighter gray plumage", + "tail: long and fanned with white-tipped feathers", + "throat: pale gray with a faint yellow hue" + ], + "gray cheeked green pigeon": [ + "back: olive-green feathers", + "beak: short, yellowish-gray", + "belly: light gray with greenish tinge", + "breast: grayish-green plumage", + "crown: light gray with olive-green hints", + "forehead: smooth, grayish-green", + "eyes: small, black with yellow eye-ring", + "legs: short, red-orange", + "wings: olive-green with grayish-brown edges", + "nape: grayish-green feathers", + "tail: long, olive-green with grayish-brown tips", + "throat: pale gray plumage" + ], + "gray cheeked nunlet": [ + "back: subtle gray feathers", + "beak: short, curved black tip", + "belly: light gray with soft texture", + "breast: pale gray, slightly rounded", + "crown: dark gray, smooth feathers", + "forehead: grayish hue, blending into crown", + "eyes: dark, beady, and alert", + "legs: thin, dark, sturdy limbs", + "wings: gray feathers with lighter tips", + "nape: soft, gray feathers meeting crown", + "tail: short and fan-shaped, with dark gray feathers", + "throat: paler gray, smooth texture" + ], + "gray cheeked parakeet": [ + "back: light gray feathers covering the upper body", + "beak: small, curved pale gray beak", + "belly: pale gray plumage extending down abdomen", + "breast: light gray, fluffy chest feathers", + "crown: soft gray feathers atop the head", + "forehead: smooth pale gray feathers above eyes", + "eyes: small, black, round and alert", + "legs: short, gray, scaly legs with small talons", + "wings: light gray flight feathers with darker tips", + "nape: gray feathered area at the back of the neck", + "tail: long, slender gray feathers with darker tips", + "throat: pale gray area under the beak extending down the front of the neck" + ], + "gray cheeked tit babbler": [ + "back: covered in soft, grayish feathers", + "beak: small, sharp, and pointed", + "belly: pale gray with light streaks", + "breast: light gray and slightly puffed", + "crown: grayish-white with subtle streaks", + "forehead: slightly paler gray than the crown", + "eyes: small, round, and dark with white edging", + "legs: slender and grayish-brown", + "wings: gray with darker flight feathers and white barring", + "nape: grayish-white with faint streaks", + "tail: fairly long, gray with white tips and outer feathers", + "throat: white, contrasting with the gray breast" + ], + "gray cheeked warbler": [ + "back: grayish-white feathers", + "beak: slender, black, and pointed", + "belly: pale yellow and smooth", + "breast: faint black streaks on light gray", + "crown: black streaks on gray background", + "forehead: white stripe above the eyes", + "eyes: black with narrow white eye-ring", + "legs: thin and dark gray", + "wings: blackish-gray with white streaks", + "nape: gray-white with thin black streaks", + "tail: dark gray with white outer feathers", + "throat: white and smooth" + ], + "gray chested babbler": [ + "back: grayish-brown feathers", + "beak: short and stout, blackish-brown", + "belly: pale gray with light streaks", + "breast: soft gray plumage", + "crown: olive-gray feathers", + "forehead: smooth grayish-brown", + "eyes: small, dark with pale eye-ring", + "legs: slender, pinkish-gray", + "wings: gray-brown with faint bars", + "nape: grayish-olive hue", + "tail: brownish-gray with light tips", + "throat: pale gray, slightly streaked" + ], + "gray chested dove": [ + "back: soft gray feathers", + "beak: short and stout, pale color", + "belly: pale gray with light feathering", + "breast: grayish-pink hue with a round shape", + "crown: smooth gray feathers gently curving", + "forehead: light gray, slightly rounded", + "eyes: round and black, small in size", + "legs: slim and reddish-brown", + "wings: gray with black edges, mid-length", + "nape: grayish-blue feathers converging", + "tail: long, gray with black accents", + "throat: light gray, slightly curved" + ], + "gray chested greenlet": [ + "back: olive-green feathering with a slight gray tint", + "beak: sharp, thin, and dark gray", + "belly: light gray with faint green hues", + "breast: pale gray blending into the belly", + "crown: olive-green feathers similar to the back", + "forehead: slightly lighter green compared to the crown", + "eyes: small, black, and alert", + "legs: grayish-brown, thin, and sturdy", + "wings: olive-green with subtle gray and yellow highlights", + "nape: olive-green, similar to the crown and back", + "tail: olive-green feathers with slightly darker edges", + "throat: pale gray fading into the breast area" + ], + "gray chested jungle flycatcher": [ + "back: grayish-brown with slight plumage", + "beak: slender, black and sharp-edged", + "belly: creamy-white with soft plumage", + "breast: grayish-chestnut hue", + "crown: streaked gray with brownish tinge", + "forehead: light gray, smooth", + "eyes: round, black, with white eyering", + "legs: pale pink, thin and agile", + "wings: brownish-gray, long and wide", + "nape: gray with brown feather tips", + "tail: dark brown, fan-like, with white tips", + "throat: white, unmarked" + ], + "gray chinned hermit": [ + "back: dark greenish-brown plumage", + "beak: long, slender, and curved", + "belly: pale gray with fine streaks", + "breast: light gray with faint streaks", + "crown: dull grayish-brown with green tinge", + "forehead: slightly paler gray than crown", + "eyes: small, dark, and beady", + "legs: slender and grayish-brown", + "wings: greenish-brown with distinct feather pattern", + "nape: grayish-brown with slight green sheen", + "tail: long, slender, and brownish-green", + "throat: pale gray with thin dark streaks" + ], + "gray chinned minivet": [ + "back: grayish upper mantle", + "beak: dark, slender, pointed", + "belly: bright yellow underparts", + "breast: gray transitioning to yellow", + "crown: black or gray head", + "forehead: lighter gray patch above beak", + "eyes: dark, surrounded by gray feathers", + "legs: thin, dark gray", + "wings: blackish with bold yellow bars", + "nape: gray, connecting to crown", + "tail: blackish with yellow edges", + "throat: light gray, separating breast from head" + ], + "gray collared becard": [ + "back: light grayish feathers", + "beak: short, sharp black hook", + "belly: pale grayish-white underbelly", + "breast: slightly darker gray plumage", + "crown: light gray feathers with slight crest", + "forehead: smooth gray to white gradient", + "eyes: dark beady eyes with white-ringed edges", + "legs: slim, long, grayish-black", + "wings: gray feathers with black-tipped edges", + "nape: lighter gray feathers at the nape of the neck", + "tail: long, dark gray with black-tipped feathers", + "throat: white-gray coloring with delicate feathers" + ], + "gray cowled wood rail": [ + "back: dark gray feathers with a slight sheen", + "beak: short and stout, pale yellowish-green", + "belly: light gray barred with blackish-brown", + "breast: warm rufous-orange fading into light gray", + "crown: dark gray with pale streaks", + "forehead: slightly paler gray than crown", + "eyes: reddish-brown with a narrow black eye-ring", + "legs: long and slender, bright coral-red", + "wings: dark gray with white streaks and rufous flight feathers", + "nape: dark gray with faint pale streaks", + "tail: blackish-brown with gray and white barring", + "throat: pale gray fading into the breast color" + ], + "gray crested finch": [ + "back: light gray feathers with subtle streaks", + "beak: short, conical, and pale orange", + "belly: off-white with faint streaks", + "breast: pale gray with soft streaks", + "crown: distinctive gray crest with tinges of black", + "forehead: light gray blending into the crest", + "eyes: small, dark, and alert", + "legs: thin and straw-colored", + "wings: medium gray with muted wingbars", + "nape: smooth gray feathers transitioning to back", + "tail: long, gray feathers with darker edges", + "throat: white with slight mottling" + ], + "gray crested helmetshrike": [ + "back: grayish-white plumage", + "beak: short, hooked, black", + "belly: light gray feathers", + "breast: pale gray plumage", + "crown: dark gray with crest", + "forehead: lighter gray shade", + "eyes: black with white eye-ring", + "legs: strong, grayish-black", + "wings: dark gray with white edging", + "nape: smoothly transitioning gray", + "tail: long, dark gray with white tips", + "throat: light gray feathers" + ], + "gray crested tit": [ + "back: soft gray plumage", + "beak: small, sharp, black", + "belly: creamy white feathers", + "breast: light gray with thin black stripes", + "crown: dark gray crest", + "forehead: smooth, light gray", + "eyes: black, alert gaze", + "legs: slim, dark gray", + "wings: gray feathers with white edges", + "nape: pale gray downy feathers", + "tail: long, narrow, gray plumage", + "throat: delicate white feathers" + ], + "gray crowned babbler": [ + "back: light gray feathers", + "beak: dark, sharp, and slender", + "belly: white with gray streaks", + "breast: soft gray plumage", + "crown: prominent gray crest", + "forehead: pale gray and smooth", + "eyes: small and black", + "legs: long and slender, grayish-blue", + "wings: gray with darker tips", + "nape: light gray with some streaks", + "tail: long and gray, slightly forked", + "throat: white and unmarked" + ], + "gray crowned crocias": [ + "back: ash-gray feathers with a slightly darker shade", + "beak: short, slightly curved, and black", + "belly: light gray shades with subtle streaks", + "breast: paler gray with thin white streaking", + "crown: striking gray with a slight crest", + "forehead: subtly lighter gray extending from the beak", + "eyes: small, dark with a thin white eye-ring", + "legs: slender and medium-length, blackish-gray", + "wings: ash-gray with hints of dark green", + "nape: ash-gray transitioning smoothly from the crown", + "tail: fairly long, ash-gray with white tips on the outer feathers", + "throat: light gray with delicate white specks" + ], + "gray crowned flycatcher": [ + "back: grayish-brown feathers", + "beak: dark, slender, and hooked", + "belly: creamy white with grayish streaks", + "breast: pale gray with light streaks", + "crown: gray-colored with a slight crest", + "forehead: pale gray transitioning to the crown", + "eyes: dark, round, and surrounded by a thin gray eye-ring", + "legs: slender, gray, and strong", + "wings: grayish-brown with light wing bars", + "nape: gray, blending into the back's color", + "tail: long, grayish-brown with white edges", + "throat: light gray, contrasting with the breast" + ], + "gray crowned munia": [ + "back: light gray plumage", + "beak: short, conical, pale grayish-blue", + "belly: white to pale gray feathers", + "breast: light gray plumage, slightly darker than belly", + "crown: darker gray with prominent crest", + "forehead: lighter gray, bordering the crown", + "eyes: small, dark, surrounded by gray feathers", + "legs: thin, pale grayish-blue", + "wings: light gray, slightly darker at the tips", + "nape: gray plumage, transitioning from crown to back", + "tail: short, gray, with darker band at the tip", + "throat: pale gray, lighter than breast" + ], + "gray crowned palm tanager": [ + "back: slate gray feathers", + "beak: short, thick, and black", + "belly: light gray plumage", + "breast: grayish-white feathers", + "crown: vibrant yellow crest", + "forehead: slate gray feathers", + "eyes: dark, small, and round", + "legs: sturdy black limbs", + "wings: slate gray with slight greenish tinge", + "nape: grayish-white plumage", + "tail: long and gray with a greenish sheen", + "throat: grayish-white feathers" + ], + "gray crowned prinia": [ + "back: light gray and smoothly feathered", + "beak: thin, pointed, blackish-brown", + "belly: pale grayish-white with minimal markings", + "breast: light gray with faint streaks", + "crown: ash gray with a well-defined black stripe", + "forehead: light gray, blending with crown", + "eyes: small, round, dark brown", + "legs: slender, pinkish-brown", + "wings: dark gray with lighter gray edges", + "nape: light gray, transitioning from the crown", + "tail: long, dark gray, white-tipped, often fanned", + "throat: pale grayish-white, unmarked" + ], + "gray crowned tetraka": [ + "back: slate gray feathers", + "beak: short, black, and pointed", + "belly: light gray underbelly", + "breast: grayish-white feathers", + "crown: distinctive dark gray crest", + "forehead: smooth gray feathers", + "eyes: bright, round, black eyes", + "legs: strong, grayish-brown legs", + "wings: long and gray with darker flight feathers", + "nape: silvery-gray feathers", + "tail: long, dark gray feathers with lighter tips", + "throat: soft gray feathers" + ], + "gray crowned warbler": [ + "back: grayish-green feathers", + "beak: thin, pointed, black", + "belly: pale gray-white plumage", + "breast: light gray with faint streaks", + "crown: distinctive yellow-orange crest", + "forehead: yellow-orange, merging with crown", + "eyes: dark with white eyering", + "legs: pinkish-gray, slender", + "wings: grayish-green with two white wingbars", + "nape: grayish-green, connecting to back", + "tail: grayish-green with white outer tail feathers", + "throat: pale gray-white, leading to breast" + ], + "gray crowned woodpecker": [ + "back: grayish-brown with black barring", + "beak: strong, black, and chisel-shaped", + "belly: pale grayish-white with dark barring", + "breast: dull grayish-white with black spots", + "crown: bright red with black borders", + "forehead: black with white lines", + "eyes: round, black, and lively", + "legs: short, gray, and sturdy", + "wings: black with white spots and grayish-brown edges", + "nape: black with white lines", + "tail: black with white markings and stiff feathers", + "throat: whitish-gray with black spots" + ], + "gray crowned yellowthroat": [ + "back: olive-green feathers", + "beak: small, sharp, black", + "belly: pale yellow plumage", + "breast: vibrant yellow feathers", + "crown: distinct gray patch", + "forehead: olive-green blending into gray", + "eyes: small, dark, watchful", + "legs: thin, strong, dark-gray", + "wings: olive-green with faint white bars", + "nape: olive-green toward the gray crown", + "tail: olive-green with slight notching", + "throat: bright yellow contrasting with gray crown" + ], + "gray eyed bulbul": [ + "back: grayish-brown feathers", + "beak: short and slightly curved", + "belly: pale grayish-white", + "breast: light gray with subtle streaks", + "crown: grayish-brown with a slight crest", + "forehead: light gray blending into the crown", + "eyes: striking gray color with a thin white eye-ring", + "legs: slender and dark gray", + "wings: grayish-brown with faint white edgings", + "nape: light gray with a subtle brown tint", + "tail: long and grayish-brown with white tips", + "throat: pale grayish-white with light streaks" + ], + "gray eyed greenlet": [ + "back: vibrant green feathers", + "beak: slim, pointed, pale grey", + "belly: light yellow-green", + "breast: lime green plumage", + "crown: deep green, smooth feathers", + "forehead: forest green", + "eyes: striking gray rings", + "legs: slender, pale grey", + "wings: rich green with flight feathers", + "nape: greenish-yellow, soft feathers", + "tail: elongated green feathers, slightly forked", + "throat: pale yellow, smooth plumage" + ], + "gray faced buzzard": [ + "back: slate-gray feathers with subtle dark streaks", + "beak: sharp, black, and hooked for tearing prey", + "belly: whitish with gray-brown streaks and markings", + "breast: light gray with darker gray streaks", + "crown: dark gray with a slight crest", + "forehead: light gray blending into dark crown", + "eyes: piercing yellow with a sharp gaze", + "legs: strong, featherless, and yellowish with sharp talons", + "wings: long, broad, and gray with dark flight feathers", + "nape: lighter gray blending into the dark crown", + "tail: gray with black bands and a white tip", + "throat: pale gray with darker streaks near the base of the beak" + ], + "gray faced liocichla": [ + "back: olive-green with grayish hues", + "beak: short and stout, blackish-brown", + "belly: yellow to orange-yellow", + "breast: reddish-brown to dark gray", + "crown: dark gray, almost black", + "forehead: lighter gray than the crown", + "eyes: dark brown with white eye-rings", + "legs: sturdy and dark brown", + "wings: olive-green with gray undertones", + "nape: dark gray, similar to the crown", + "tail: olive-green with grayish streaks", + "throat: pale gray to white" + ], + "gray faced petrel": [ + "back: sleek grey feathers", + "beak: long, slightly hooked tip", + "belly: light grey with white streaks", + "breast: pale grey feathers", + "crown: dark grey shading", + "forehead: distinct grey coloration", + "eyes: small, black, piercing gaze", + "legs: short and sturdy with webbed feet", + "wings: spanning grey with black edges", + "nape: lighter grey transitioning to darker shades", + "tail: elongated grey feathers with a rounded tip", + "throat: light grey with a subtle white patch" + ], + "gray faced tit babbler": [ + "back: pale gray plumage", + "beak: small, dark, pointed", + "belly: light gray with faint streaks", + "breast: grayish-white", + "crown: gray with dark streaks", + "forehead: light gray", + "eyes: dark with pale eye-ring", + "legs: slender, pale", + "wings: gray with blackish markings", + "nape: gray with faint streaking", + "tail: long, gray with darker bands", + "throat: off-white, unstreaked" + ], + "gray flanked cinclodes": [ + "back: dark brown with gray streaks", + "beak: long, narrow, and black", + "belly: creamy white with brown speckles", + "breast: grayish-brown with hints of white", + "crown: mottled gray and brown", + "forehead: light gray with soft streaks", + "eyes: small, dark, and round", + "legs: sturdy, slightly pinkish", + "wings: brownish-gray with white markings", + "nape: gray with visible streaks", + "tail: rounded, dark gray with faint white bars", + "throat: creamy white with grayish streaks" + ], + "gray fronted dove": [ + "back: grayish-brown feathers", + "beak: short, hooked, cream-gray", + "belly: light gray-white feathers", + "breast: gray-brown feathers", + "crown: darker gray plumage", + "forehead: soft gray feathers", + "eyes: small, black, round", + "legs: pinkish-gray, strong", + "wings: gray-brown with white markings", + "nape: dark gray feathers", + "tail: long, tapering gray feathers", + "throat: light gray or white feathers" + ], + "gray fronted green pigeon": [ + "back: soft, olive-gray feathers", + "beak: curved, dark gray upper mandible", + "belly: light greenish-yellow feathers", + "breast: grayish-green plumage", + "crown: muted gray-green feathers", + "forehead: pale gray feathers", + "eyes: dark, round with subtle eyeliner", + "legs: reddish-brown and sturdy", + "wings: vibrant green with black edges", + "nape: light gray-green feathers", + "tail: long, greenish-blue feathers with black tips", + "throat: pale gray with faint streaks" + ], + "gray fronted honeyeater": [ + "back: subtle olive-gray hues", + "beak: slender, slightly curved black bill", + "belly: soft grayish-white plumage", + "breast: pale gray with a yellow tint", + "crown: dark gray feathers", + "forehead: pale gray with a slight sheen", + "eyes: round, black pupils surrounded by white eye-ring", + "legs: long, blue-gray legs and feet", + "wings: olive-gray with hints of yellow and white edging", + "nape: gradual transition from dark gray crown to olive-gray back", + "tail: long, grayish tail feathers with white tip", + "throat: pale gray, blending into the breast area" + ], + "gray fronted quail dove": [ + "back: earthy gray-brown tones", + "beak: short, curved, blackish", + "belly: soft, grayish-white paleness", + "breast: pale gray with subtle lavender hues", + "crown: darker grayish-brown shades", + "forehead: light gray with slight blue tint", + "eyes: black, beady with white eye-ring", + "legs: short, reddish-brown with sturdy toes", + "wings: muted gray-brown with faint white streaks", + "nape: gray transitioning to brown", + "tail: medium length, grayish-brown with white edges", + "throat: delicate pale gray scaling" + ], + "gray green bushshrike": [ + "back: vibrant green feathers", + "beak: strong, black, and hooked", + "belly: lighter green with an off-white tint", + "breast: bright green with a subtle yellow undertone", + "crown: deep green with a slightly curved crest", + "forehead: bright green feathers fading into a lighter shade", + "eyes: bold, black, and round", + "legs: nimble and gray with sharp claws", + "wings: striking green feathers with dark streaks", + "nape: darker green fading into lighter shades towards the back", + "tail: long, flowing green feathers with dark tips", + "throat: soft, pale green with subtle yellowish undertones" + ], + "gray green fruit dove": [ + "back: olive-green feathers", + "beak: short, hooked, pale bluish-gray", + "belly: yellowish-green plumage", + "breast: grayish-green hue", + "crown: greenish-gray with bluish tinge", + "forehead: slight blue iridescence", + "eyes: dark, surrounded by white eye-ring", + "legs: short, pinkish-gray", + "wings: olive-green, wide, rounded", + "nape: grayish-green feathers", + "tail: dark green, slightly pointed", + "throat: pale gray-green" + ], + "gray green scrubwren": [ + "back: olive-green with fine streaks", + "beak: slim, sharp, and black", + "belly: pale grayish-white", + "breast: light gray with subtle hue of green", + "crown: dark olive-green, finely streaked", + "forehead: grayish-green, fading to white", + "eyes: dark brown, framed by a thin white eyering", + "legs: long, slender, and brownish-gray", + "wings: olive-green, barred with darker tones", + "nape: olive-green, blending with the crown", + "tail: short with greenish-brown and some white markings", + "throat: white with a faint grayish tint" + ], + "gray headed albatross": [ + "back: sleek gray feathers", + "beak: long, sharp, and hooked", + "belly: soft white plumage", + "breast: white-feathered chest", + "crown: grayish head cap", + "forehead: smooth gray feathers", + "eyes: dark and piercing", + "legs: sturdy pink appendages", + "wings: wide, black-tipped gray wings", + "nape: light gray feathers", + "tail: long, grayish-white feathers", + "throat: smooth white plumage" + ], + "gray headed antbird": [ + "back: gray and mottled feathers", + "beak: short, stout and black", + "belly: pale gray with faint streaks", + "breast: light gray and smooth", + "crown: grayish brown with slightly darker streaks", + "forehead: light gray and unmarked", + "eyes: dark brown with thin gray eyering", + "legs: slender, black, and well-feathered", + "wings: dark gray with lighter wingbars", + "nape: grayish brown blending with the crown", + "tail: dark gray with pale gray tips", + "throat: pale gray and smooth" + ], + "gray headed babbler": [ + "back: smooth, grayish-brown feathers", + "beak: thin, slightly curved, dark gray", + "belly: pale gray with lighter streaks", + "breast: soft gray with brownish tinge", + "crown: dark gray with streaked pattern", + "forehead: lighter gray, gradually merging with crown", + "eyes: small, round, black with white eye-ring", + "legs: slender, dull dark gray", + "wings: gray-brown with darker wingtips", + "nape: gray, meeting the crown and back", + "tail: long, gray-brown with dark bands", + "throat: light gray, blending with breast and belly" + ], + "gray headed batis": [ + "back: olive-grey feathers", + "beak: small, black, pointed", + "belly: white with grey markings", + "breast: light grey with faint streaks", + "crown: grey with bold white stripe", + "forehead: pale grey fading to white", + "eyes: dark, circled with thin white ring", + "legs: slender, long, black", + "wings: black and white barred pattern", + "nape: grey with contrasting white stripe", + "tail: black and white, slightly forked", + "throat: clean white with a hint of pale grey" + ], + "gray headed bristlebill": [ + "back: olive-green feathers", + "beak: stout, black, curved", + "belly: pale yellow", + "breast: golden-yellow", + "crown: gray with a slight crest", + "forehead: light gray", + "eyes: small, dark", + "legs: slender, gray-black", + "wings: greenish, edged with blue", + "nape: light gray", + "tail: long, greenish-black with blue tips", + "throat: grayish-white" + ], + "gray headed broadbill": [ + "back: grayish-blue feathers covering the upper body", + "beak: broad, strong, greenish-yellow bill", + "belly: white or light gray feathers on the lower body", + "breast: white or light gray plumage", + "crown: dark gray with a subtle bluish tinge", + "forehead: prominent black or dark gray stripe above the eyes", + "eyes: small, dark-colored, surrounded by faint white markings", + "legs: short and slender with greenish-yellow coloration", + "wings: broad with greenish-blue, black, and white feather patterns", + "nape: blue-gray feathers blending into the back", + "tail: short and square, greenish-blue feathers with black and white tips", + "throat: white or light gray under the bill" + ], + "gray headed bulbul": [ + "back: grayish-green upperparts", + "beak: strong, slightly curved, black", + "belly: creamy white, unmarked", + "breast: light gray, gently blending with belly", + "crown: contrasting ash-gray with a prominent crest", + "forehead: ash-gray, extending to lores", + "eyes: dark brown with a pale eye-ring", + "legs: sturdy and dark gray", + "wings: grayish-green primary and secondary feathers, rounded", + "nape: light gray transitioning from the crown", + "tail: grayish-green, slightly forked and relatively long", + "throat: subtle gray, seamlessly flowing into breast" + ], + "gray headed bullfinch": [ + "back: light gray plumage", + "beak: small, conical, black", + "belly: white with pale gray spots", + "breast: rosy pink feathers", + "crown: gray head with a slight crest", + "forehead: light gray plumage", + "eyes: small, round, black", + "legs: dark gray and thin", + "wings: gray with white and black bands", + "nape: light gray plumage", + "tail: relatively short, black with white tips", + "throat: rosy pink feathers" + ], + "gray headed bushshrike": [ + "back: mossy green with slight mottling", + "beak: hooked and strong; black base fading to gray", + "belly: pale yellow with grayish markings", + "breast: dusky yellow with subtle barring", + "crown: ashy gray with a darker central stripe", + "forehead: paler ashy gray with faint markings", + "eyes: dark brown and alert", + "legs: strong and bluish-gray with sharp talons", + "wings: greenish-brown with grayish feathers near edges", + "nape: dark gray fading to greenish-brown", + "tail: long and greenish, contrasting with lighter tip feathers", + "throat: white with thin gray striations" + ], + "gray headed canary flycatcher": [ + "back: olive-gray feathered", + "beak: short and sturdy, blackish-gray", + "belly: pale yellowish-white", + "breast: light gray with tinge of yellow", + "crown: gray with slight crest", + "forehead: gray, projecting above beak", + "eyes: black and round, white eye-ring", + "legs: slender and blackish", + "wings: olive-gray, short and rounded", + "nape: grayish with olive tinge", + "tail: olive-gray, with black tip", + "throat: whitish-gray, slightly paler than breast" + ], + "gray headed chachalaca": [ + "back: olive-gray feathers", + "beak: short, dark, curved", + "belly: lighter gray, soft feathers", + "breast: grayish-brown plumage", + "crown: gray head, sleek feathers", + "forehead: prominent gray, slightly lighter than crown", + "eyes: small, black, bright", + "legs: long, dark, thin", + "wings: broad, olive-green with blackish tips", + "nape: grayish-brown feathers, fading into back", + "tail: long, slender, greenish-brown feathers", + "throat: smooth gray, slightly paler than head" + ], + "gray headed chickadee": [ + "back: grayish-brown feathers", + "beak: short, black, and pointed", + "belly: white with faint gray streaks", + "breast: white and slightly puffy", + "crown: pale gray with darker streaks", + "forehead: light gray blending into the crown", + "eyes: dark, round, and surrounded by white feathers", + "legs: slender and dark gray", + "wings: grayish-brown with white-edged secondary feathers", + "nape: lighter gray than the back", + "tail: long, dark gray with white outer feathers", + "throat: white and softly feathered" + ], + "gray headed cicadabird": [ + "back: olive-gray feathers with slight shine", + "beak: stout, hooked, dark gray-blue", + "belly: pale gray-white with thin barring", + "breast: bluish-gray with subtle streaks", + "crown: dark gray with a slight crest", + "forehead: smooth gray blending into the crown", + "eyes: dark brown, surrounded by a gray eye-ring", + "legs: strong, dark gray-blue with sharp talons", + "wings: olive-gray with dark flight feathers", + "nape: slightly darker gray than the crown", + "tail: long and slightly rounded, gray-blue with fine white tips", + "throat: lighter gray leading into the breast" + ], + "gray headed dove": [ + "back: light gray feathers with a subtle sheen", + "beak: slender, curved, and dark gray", + "belly: soft and pale gray", + "breast: rosy-gray plumage", + "crown: medium gray with a hint of blue", + "forehead: light gray and smooth", + "eyes: dark and round, encircled by a thin, pale gray ring", + "legs: short and sturdy, with dark gray scales", + "wings: gray with darker flight feathers and lighter coverts", + "nape: grayish-blue with elegant feathers", + "tail: long and tapered, with gray and black banding", + "throat: pale gray blending into the breast" + ], + "gray headed elaenia": [ + "back: olive-green with subtle gray hints", + "beak: short and pale with a dark tip", + "belly: pale yellow with grayish hues", + "breast: soft gray with light yellow undertones", + "crown: bold gray with a slight crest", + "forehead: lighter gray, blending into the crown", + "eyes: dark and well-defined, surrounded by pale gray", + "legs: light-gray and slender, suited for perching", + "wings: olive-green with gray edges and two whitish wing bars", + "nape: thick gray slowly transitioning to olive-green", + "tail: olive-green with slightly darker outer feathers", + "throat: pale gray, meeting the breast seamlessly" + ], + "gray headed fish eagle": [ + "back: dark gray feathers with white edges", + "beak: sturdy, hooked, blackish-brown", + "belly: white plumage with dark gray streaks", + "breast: white feathers with gray streaks", + "crown: gray head with light streaks", + "forehead: smooth gray feathers", + "eyes: bright yellow with black pupils", + "legs: strong, scaly yellow with black talons", + "wings: broad, dark gray with white patches", + "nape: gray feathers merging with crown", + "tail: long, white feathers with gray banding", + "throat: white extending from breast" + ], + "gray headed fruit dove": [ + "back: light green with olive tinges", + "beak: short, pale grayish-blue", + "belly: cream-colored feathers", + "breast: soft pinkish hue", + "crown: pale gray plumage", + "forehead: lighter shade of gray", + "eyes: dark, encircled by white eye-ring", + "legs: short with reddish-purple hue", + "wings: greenish-black with bluish-gray tips", + "nape: blue-gray with green highlights", + "tail: long and olive-green with a yellow band", + "throat: pale gray, matching the head" + ], + "gray headed goshawk": [ + "back: slate gray with fine white barring", + "beak: sharp, curved black hook", + "belly: slightly pale with gray barring", + "breast: white with gray streaks", + "crown: light gray with distinct black eye stripes", + "forehead: pale gray, blending into crown", + "eyes: piercing yellow with black outline", + "legs: long, yellow with sharp black talons", + "wings: broad, gray and white barred feathers", + "nape: light gray, transitioning to darker back", + "tail: long, gray with thin white bands", + "throat: clean white, leading to breast" + ], + "gray headed greenbul": [ + "back: olive-green feathered coverage", + "beak: straight, medium-length, brownish-gray", + "belly: light greenish-gray soft plumage", + "breast: pale gray-green feathers", + "crown: gray-feathered head cap", + "forehead: light gray plumage blending", + "eyes: dark, round, almond-shaped", + "legs: slender grayish-brown limbs", + "wings: olive-green with feathered edges", + "nape: light gray plumage transitioning to olive-green", + "tail: olive-green, medium-length feathers with a slight taper", + "throat: pale gray, soft feathered area" + ], + "gray headed honeyeater": [ + "back: light grayish-brown plumage", + "beak: black, slender, and curved", + "belly: creamy white with yellow tinges", + "breast: grayish-white with subtle streaks", + "crown: pale gray with darker borders", + "forehead: light gray blending with the crown", + "eyes: black with a faint white eye-ring", + "legs: slender, dark gray", + "wings: grayish-brown, edged with pale yellow", + "nape: light gray, demarcated from the crown", + "tail: grayish-brown, slightly forked", + "throat: whitish-gray, blending with the breast" + ], + "gray headed imperial pigeon": [ + "back: pale gray feathered back", + "beak: short, dark gray curved beak", + "belly: white, soft feathered underside", + "breast: light gray feathered chest", + "crown: grayish-white head feathers", + "forehead: smooth greyish-white feathers", + "eyes: dark, round eyes with gray eye-ring", + "legs: reddish-pink, strong bird legs", + "wings: pale gray wings with dark flight feathers", + "nape: grayish-white neck feathers", + "tail: wide, short gray tail feathers", + "throat: light gray, soft feathered throat" + ], + "gray headed kingfisher": [ + "back: blue and turquoise feathers", + "beak: long, black, and pointy", + "belly: white, slightly fluffy", + "breast: rich chestnut color", + "crown: gray, rounded head", + "forehead: light gray, smooth", + "eyes: dark, piercing gaze", + "legs: red-orange, slender", + "wings: blue, with black and white stripes", + "nape: gray, meeting the blue back", + "tail: blue, forked, and elongated", + "throat: white, leading to chestnut breast" + ], + "gray headed kite": [ + "back: light gray feathers with subtle barring", + "beak: sharp, black hooked beak for tearing prey", + "belly: off-white with rufous streaks and spots", + "breast: pale gray with hints of brown", + "crown: gray feathered cap atop the head", + "forehead: smooth, light gray feathers blending into the crown", + "eyes: dark, piercing with a yellow eye ring", + "legs: strong, yellow-orange legs with sharp talons", + "wings: long, gray feathers with dark tips and brown barring", + "nape: light gray with subtle brown markings", + "tail: banded gray and black feathers with a white terminal band", + "throat: pale gray, blending into breast and belly" + ], + "gray headed lapwing": [ + "back: grayish-brown with subtle white streaks", + "beak: sturdy, black with yellow base", + "belly: white with a slight sheen", + "breast: light gray, gently blending into white belly", + "crown: solid gray extending to nape", + "forehead: white, separating gray crown from black eye stripes", + "eyes: dark with piercing gaze, surrounded by black stripes", + "legs: long, yellow, and slender", + "wings: grayish-brown with white edges, marked with a white patch", + "nape: gray, continuous with crown", + "tail: white with black terminal band", + "throat: white, contrasting with gray breast" + ], + "gray headed lovebird": [ + "back: light green feathers", + "beak: vibrant orange-red", + "belly: pale yellow plumage", + "breast: shades of green and yellow", + "crown: bold gray with blue hues", + "forehead: smooth gray", + "eyes: dark with white eye-ring", + "legs: light pink with gray scaling", + "wings: green with black flight feathers", + "nape: gray blending to green", + "tail: green feathers with yellow undertones", + "throat: pale yellow-green" + ], + "gray headed munia": [ + "back: olive-brown feathers", + "beak: short, conical, silver-blue", + "belly: pale gray-white plumage", + "breast: gray-white, slightly speckled", + "crown: grayish head with black bands", + "forehead: grayish-brown feathers", + "eyes: small, dark, and round", + "legs: short, pink-gray, and sturdy", + "wings: rounded, olive-brown with distinct black and white bars", + "nape: grayish-brown with blackish streaks", + "tail: elongated, black and white feathers", + "throat: gray-white with faint streaks" + ], + "gray headed nigrita": [ + "back: sleek gray feathers", + "beak: small, pointed black", + "belly: light gray underside", + "breast: pale gray plumage", + "crown: dark gray head crest", + "forehead: smooth gray feathers", + "eyes: tiny black orbs", + "legs: slender, black matchsticks", + "wings: gray with flicks of black", + "nape: charcoal-feathered transition", + "tail: slim, fan-like gray", + "throat: pale gray feather patch" + ], + "gray headed oliveback": [ + "back: grayish-olive feathers", + "beak: short, sharp black", + "belly: olive-yellow hue", + "breast: olive-green shades", + "crown: gray-scaled gradient", + "forehead: lighter gray tones", + "eyes: dark, round with white eye-ring", + "legs: slender, light gray", + "wings: grayish-olive with hints of brown", + "nape: gray, fading into olive", + "tail: brown-tipped feathers, olive base", + "throat: soft gray with faint olive hue" + ], + "gray headed parakeet": [ + "back: light green feathers covering the dorsal area", + "beak: reddish-orange, slightly curved, and strong", + "belly: pale green and slightly fluffy feathers", + "breast: a mix of light green and yellowish-green feathers", + "crown: grayish head feathers with lighter edges", + "forehead: smooth gray feathers slightly transitioning into the crown", + "eyes: dark, round, with a small white ring surrounding them", + "legs: gray and slender with strong zygodactyl feet", + "wings: long, vibrant green feathers with bluish-green primary feathers", + "nape: grayish-green feathers transitioning from the crown to the back", + "tail: long green feathers with blue or maroon elongated central tail feathers", + "throat: pale green feathers transitioning into the breast area" + ], + "gray headed parrotbill": [ + "back: soft gray feathers", + "beak: short, strong, pale-colored", + "belly: light gray hue", + "breast: pale grayish-white feathers", + "crown: slate gray crest", + "forehead: light gray plumage", + "eyes: dark with white eye-ring", + "legs: sturdy, pale-colored", + "wings: gray with pale-edged feathers", + "nape: slate gray feathers", + "tail: long, grayish-brown", + "throat: pale gray plumage" + ], + "gray headed piprites": [ + "back: soft gray plumage", + "beak: short and pointed, blackish-brown", + "belly: whitish-gray feathers", + "breast: light gray plumage", + "crown: gray with a slight crest", + "forehead: smooth gray feathers", + "eyes: dark, beady gaze", + "legs: slender, dark gray", + "wings: medium-length, gray with blackish tips", + "nape: pale gray feathers", + "tail: short and slightly forked, gray with blackish edges", + "throat: light gray plumage" + ], + "gray headed robin": [ + "back: subtle bluish-gray with dark streaks", + "beak: thin, pointed, blackish-gray", + "belly: creamy-white, softly speckled", + "breast: soft gray with fine streaks", + "crown: muted gray, smooth texture", + "forehead: pale bluish-gray, uniform color", + "eyes: piercing black with white eye-ring", + "legs: sturdy, dark grayish-brown", + "wings: gray with bold, dark lines on primary feathers", + "nape: light gray, feathery contrasts", + "tail: long, dark gray to black with white tips", + "throat: whitish-gray, delicate texture" + ], + "gray headed silverbill": [ + "back: light gray with subtle markings", + "beak: slim, silver with darker tip", + "belly: soft white with light gray feathers", + "breast: pale gray, smooth texture", + "crown: gray with slight darker shade", + "forehead: smooth light gray", + "eyes: small, black with faint white ring", + "legs: slender, dark gray", + "wings: gray with subtle silver streaks", + "nape: gently curved, light gray", + "tail: long, straight, silver-gray feathers", + "throat: pale gray with slight white hue" + ], + "gray headed social weaver": [ + "back: light brown feathered and slightly curved", + "beak: small, black, and conical-shaped", + "belly: pale cream-colored with soft feathers", + "breast: light brown with thin dark streaks", + "crown: grayish feathers forming a cap", + "forehead: small patch of beige to gray feathers", + "eyes: small, round, and black with a white ring", + "legs: slender and grayish-brown", + "wings: light brown with hints of gray and darker bars", + "nape: grayish-brown connecting the crown and back", + "tail: pale brown with darker bands and slightly forked", + "throat: beige feathered transitioning to the breast area" + ], + "gray headed spinetail": [ + "back: grayish-brown with subtle streaks", + "beak: strong, slightly curved, dark grey", + "belly: off-white with pale gray speckles", + "breast: light gray with faint streaks", + "crown: gray with a white central stripe", + "forehead: light gray, blending into the crown", + "eyes: medium-sized, dark, with thin white eye-ring", + "legs: long, slender, dark grey", + "wings: grayish-brown, short, and rounded", + "nape: gray feathers, slightly darker than crown", + "tail: dark grey, long, and forked", + "throat: whitish-gray with light streaking" + ], + "gray headed sunbird": [ + "back: olive-green with a slight sheen", + "beak: long, slender, and curved", + "belly: pale yellow to off-white", + "breast: iridescent bluish-green", + "crown: gray fading to olive-green", + "forehead: gray transitioning to the crown", + "eyes: small, dark with a white eye-ring", + "legs: grayish-black, sturdy", + "wings: olive-green with darker flight feathers", + "nape: gray blending with the back", + "tail: long and slender, olive-green with darker tips", + "throat: glistening bluish-green" + ], + "gray headed swamphen": [ + "back: bluish-gray feathered region", + "beak: long, red, and conical", + "belly: pale blue-gray feathers", + "breast: vibrant blue plumage", + "crown: grayish-brown cap", + "forehead: small gray shield above beak", + "eyes: bright red and round", + "legs: long, red, and slender", + "wings: blue with green tinges, long and wide", + "nape: grayish-blue feathered area", + "tail: short and dark gray-blue", + "throat: light gray with a white patch" + ], + "gray headed tanager": [ + "back: olive-gray feathered upper body", + "beak: short, sturdy, and cone-shaped", + "belly: soft, pale-yellow plumage", + "breast: light gray with a hint of yellow", + "crown: gray with a slight bluish tint", + "forehead: smooth, pale bluish-gray feathers", + "eyes: round, black, alert", + "legs: thin, grayish-brown, strong", + "wings: olive-gray with yellow fringes on flight feathers", + "nape: light gray blending to olive-gray", + "tail: elongated, olive-gray with slightly paler edges", + "throat: pale gray with a contrasting yellowish tinge" + ], + "gray headed tody flycatcher": [ + "back: subtle green-gray feathers", + "beak: small, pointed black beak", + "belly: dull white with grayish tinge", + "breast: green-gray fading to white", + "crown: pale gray with faint streaking", + "forehead: light gray blending into crown", + "eyes: dark with white eye-ring", + "legs: slender black legs", + "wings: green-gray with faint darker bars", + "nape: green-gray with slight streaking", + "tail: black with white outer tips", + "throat: pale gray-white" + ], + "gray headed warbler": [ + "back: olive-green with dark streaks", + "beak: slender, pointed, and black", + "belly: pale yellow with grayish undertones", + "breast: yellowish-green with light streaks", + "crown: gray with a hint of olive-green", + "forehead: pale gray and unmarked", + "eyes: dark brown with white eye-ring", + "legs: long and light pinkish-brown", + "wings: olive-gray with black flight feathers", + "nape: grayish-green with faint streaks", + "tail: dark brown with olive-gray edges", + "throat: pale yellow with gray tinges" + ], + "gray headed woodpecker": [ + "back: greenish-olive feathers", + "beak: long, strong, and pointed in black color", + "belly: light grayish-white plumage", + "breast: subtle gray hue", + "crown: gray top with a hint of red", + "forehead: smooth gray feathers", + "eyes: dark, round, and expressive", + "legs: sturdy grayish-black", + "wings: greenish-olive with black markings", + "nape: gray with a touch of red", + "tail: black feathers with white outer edges", + "throat: pale gray plumage" + ], + "gray hooded attila": [ + "back: dark gray feathers", + "beak: strong, hooked black beak", + "belly: light gray underparts", + "breast: dark gray plumage", + "crown: gray hooded cap", + "forehead: smooth, gray feathers", + "eyes: sharp, dark eyes", + "legs: long, black legs", + "wings: sleek, dark gray feathers", + "nape: gray hood extending to neck", + "tail: long, dark gray feathers", + "throat: light gray plumage" + ], + "gray hooded babbler": [ + "back: light gray feathers", + "beak: short, dark, and straight", + "belly: pale gray-white plumage", + "breast: soft gray feathers", + "crown: dark gray hood", + "forehead: smooth gray feathers", + "eyes: small and black, circled by thin white eye-ring", + "legs: sturdy, brownish-gray", + "wings: gray with pale-edged feathers", + "nape: gray, connecting the hood to the back", + "tail: long and gray, white-tipped outer feathers", + "throat: gray, blending into the breast" + ], + "gray hooded bush tanager": [ + "back: grayish feathers with green undertones", + "beak: short, black and conical", + "belly: pale gray with a tinge of yellow", + "breast: light gray with a warm hue", + "crown: dark gray hood covering the top of the head", + "forehead: black feathers extending from the beak to the crown", + "eyes: small and black, surrounded by gray feathers", + "legs: featherless, black and slender", + "wings: gray with black and white streaks, slightly pointed", + "nape: gray hood extending to the back of the neck", + "tail: gray with black and white feather tips, moderately long", + "throat: lighter gray with a tinge of yellow, merging with the breast" + ], + "gray hooded flycatcher": [ + "back: slate gray feathers", + "beak: small and pointed", + "belly: pale yellow underbelly", + "breast: grayish-white feathering", + "crown: dark gray hood", + "forehead: light gray feathers", + "eyes: black with white eye-ring", + "legs: slender, dark gray", + "wings: slate gray with white bars", + "nape: dark gray blending into back", + "tail: slate gray, slightly forked", + "throat: pale gray feathers" + ], + "gray hooded fulvetta": [ + "back: light gray-green feathers", + "beak: sharp, black, slightly hooked", + "belly: pale gray-white underbelly", + "breast: light gray with streaks of green", + "crown: dark gray hood-like cap", + "forehead: smooth gray feathers", + "eyes: small, black, alert", + "legs: thin, strong, dark gray", + "wings: gray-green with darker edges", + "nape: gray, connecting the hood to the back", + "tail: long, dark gray, streaming feathers", + "throat: light gray, blending with breast" + ], + "gray hooded gull": [ + "back: light gray feathers covering the upper body", + "beak: thin, sharp, dark-colored beak", + "belly: white feathers on the lower body", + "breast: white feathers transitioning to gray", + "crown: dark gray feathers covering the top of the head", + "forehead: light gray feathers above the eyes", + "eyes: small, dark, round eyes", + "legs: thin, red or orange, webbed feet", + "wings: primarily white with gray and black patterns", + "nape: gray feathers connecting the crown to the back", + "tail: white feathers with black markings at the tips", + "throat: white feathers underneath the beak" + ], + "gray hooded parakeet": [ + "back: light green feathers", + "beak: short, hooked, and gray", + "belly: grayish-green feathers", + "breast: soft gray plumage", + "crown: vibrant gray hood", + "forehead: smooth gray feathers", + "eyes: small, round, with a white eye-ring", + "legs: slender, grayish-blue", + "wings: green with black flight feathers", + "nape: gray feathers connecting to green back", + "tail: long, green feathers with black tips", + "throat: pale gray feathers" + ], + "gray hooded parrotbill": [ + "back: subtle greenish-gray feathers", + "beak: short, stout, and curved", + "belly: pale creamy-yellow hue", + "breast: light gray with white undertones", + "crown: gray hood covering the head", + "forehead: seamless transition from the gray crown", + "eyes: dark and beady, surrounded by soft gray plumage", + "legs: thin and light pinkish-brown", + "wings: greenish-gray primary feathers with a slight bluish tint", + "nape: continuation of the gray hood from the crown", + "tail: long and greenish-gray, often subtle bluish tone", + "throat: soft white transitioning into light gray at the breast" + ], + "gray hooded sierra finch": [ + "back: light gray feathering", + "beak: short, sturdy, cone-shaped", + "belly: whitish, soft plumage", + "breast: pale gray, smooth feathers", + "crown: darker gray hood, distinct", + "forehead: continuous gray from crown", + "eyes: small, dark, with faint eye-ring", + "legs: slender, blackish-gray", + "wings: light gray, well-defined feathers", + "nape: gray, connected to crown", + "tail: forked, gray with white edging", + "throat: pale gray, separates breast from hood" + ], + "gray hooded sunbird": [ + "back: smooth gray plumage", + "beak: long, thin, and curved", + "belly: pale, yellowish-gray feathers", + "breast: vibrant orange-yellow patch", + "crown: dark gray with slight iridescence", + "forehead: lighter gray than the crown", + "eyes: small, shiny, and black", + "legs: short and slender, matching gray", + "wings: elongated, with gray and white feathers", + "nape: transition from dark gray crown to pale gray back", + "tail: medium length, dark gray feathers", + "throat: yellowish-gray, with a slight orange tinge" + ], + "gray hooded warbler": [ + "back: olive-green dorsal feathers", + "beak: small, thin, pointed", + "belly: pale whitish-yellow", + "breast: light yellow plumage", + "crown: gray hooded cap", + "forehead: gray feathers transitioning to olive-green", + "eyes: round, black with white eyering", + "legs: thin, gray-blue legs", + "wings: olive-green with dark flight feathers", + "nape: gray with a slight transition to olive-green", + "tail: olive-green with darker tips", + "throat: bright yellow with a gray border" + ], + "gray hooded white eye": [ + "back: sleek gray feathers", + "beak: small, sharp, black", + "belly: white and fluffy", + "breast: white with gray undertones", + "crown: gray with a hood-like appearance", + "forehead: smooth gray feathers", + "eyes: round, black, and alert", + "legs: thin, delicate, gray", + "wings: gray with white highlights", + "nape: subtle gray-to-white transition", + "tail: long, white-tinged gray feathers", + "throat: clean white plumage" + ], + "gray legged tinamou": [ + "back: sleek gray plumage", + "beak: sharp, curved, and brownish", + "belly: soft gray feathers", + "breast: lighter gray plumage", + "crown: flat, darker gray feathers", + "forehead: smooth, lighter gray", + "eyes: small, round, black orbs", + "legs: long, slender, gray limbs", + "wings: strong, broad, gray-colored", + "nape: curved, gray contour", + "tail: short, fan-like, gray feathers", + "throat: lighter gray, thin plumage" + ], + "gray lined hawk": [ + "back: light gray with fine, darker streaks", + "beak: sharp, hooked, black with a pale base", + "belly: whitish with fine gray lines", + "breast: pale gray with fine darker streaks", + "crown: gray with a slightly darker shade than the back", + "forehead: light gray, blending into the crown", + "eyes: bright yellow with a black, round pupil", + "legs: sturdy, yellow with sharp, black talons", + "wings: light gray with darker tips and faint barring", + "nape: light gray, continuous with the back and crown", + "tail: light gray with dark bands and white tips", + "throat: whitish, blending into the breast" + ], + "gray mantled wren": [ + "back: grayish-brown with fine streaks", + "beak: thin and pointed, dark gray", + "belly: pale gray with a hint of brown", + "breast: light gray with subtle streaking", + "crown: dark brown with faint streaks", + "forehead: slightly paler brown with a grayish tinge", + "eyes: small, black, with white eyering", + "legs: slender, pale brown", + "wings: brownish-gray with faint barring", + "nape: gray-brown with fine streaks", + "tail: long and slightly barred, dark brown", + "throat: light gray with a pale buff tinge" + ], + "gray naped antpitta": [ + "back: soft gray feathers", + "beak: short and pointed", + "belly: pale grayish-white", + "breast: gray with subtle markings", + "crown: dark gray, rounded", + "forehead: lighter gray", + "eyes: black, beady", + "legs: long, skinny, pinkish", + "wings: gray with patterned coverts", + "nape: lighter gray, well-defined", + "tail: short, fan-like", + "throat: soft white, contrasting" + ], + "gray necked bunting": [ + "back: olive-brown with dark streaks", + "beak: grayish-black, conical shape", + "belly: pale gray with white undertail", + "breast: buffy-orange with brown streaks", + "crown: gray with fine black streaks", + "forehead: gray, slightly paler than crown", + "eyes: dark brown with white eyering", + "legs: pinkish-gray, slender", + "wings: brown with white and gray wingbars", + "nape: gray, blending with crown and back", + "tail: brown with white outer edges", + "throat: white with black malar stripe" + ], + "gray necked rockfowl": [ + "back: gray and black patterned feathers", + "beak: strong, sharp, and black", + "belly: greyish-white plumage", + "breast: dark gray feathers", + "crown: distinctive golden-yellow crest", + "forehead: black and white striped pattern", + "eyes: piercing, dark brown", + "legs: strong, grey with dark claws", + "wings: black with a white patch", + "nape: gray and black mixed feathers", + "tail: long, black with white bars", + "throat: dark gray with black markings" + ], + "gray olive greenbul": [ + "back: olive-green feathers blend into the surroundings", + "beak: short, sharp, and slender for efficient foraging", + "belly: soft, pale grey feathers for insulation", + "breast: light grey plumage, ideal for camouflage", + "crown: blended greenish-grey feathers atop the head", + "forehead: slightly lighter gray feathers transitioning into the crown", + "eyes: small, dark, alert eyes for keen observation", + "legs: slim, strong legs support agile movement", + "wings: olive-green wings for quick, graceful flight", + "nape: subtle gray-green feathers at the back of the neck", + "tail: long, greenish-gray feathers for balance and maneuverability", + "throat: light grey feathers transitioning into the belly area" + ], + "gray rumped swallow": [ + "back: light gray plumage", + "beak: small, black, pointed", + "belly: off-white feathers", + "breast: pale gray coloring", + "crown: smooth gray feathers", + "forehead: pale gray contour", + "eyes: small, dark, round", + "legs: short, black, thin", + "wings: long, pointed, grayish-blue", + "nape: light gray, smooth feathers", + "tail: slightly forked, grayish-blue", + "throat: white to pale gray feathers" + ], + "gray rumped swiftlet": [ + "back: sleek gray feathers", + "beak: short, black and pointed", + "belly: soft grayish-white plumage", + "breast: lighter gray feathers", + "crown: darker gray atop the head", + "forehead: slightly lighter gray", + "eyes: small, round, and black", + "legs: thin, black, and clawed", + "wings: long, narrow, and gray", + "nape: darker gray where neck meets head", + "tail: short, gray, and slightly forked", + "throat: pale gray plumage" + ], + "gray rumped treeswift": [ + "back: sleek, greyish-brown feathers", + "beak: sharp, black, and elongated", + "belly: creamy white with soft feathers", + "breast: light grey with subtle patterns", + "crown: dark gray with a slight crest", + "forehead: smooth, dark gray feathers", + "eyes: deep black, round and attentive", + "legs: short, thin with strong talons", + "wings: long, slender with a blend of gray and brown feathers", + "nape: well-defined, greyish-brown feathers", + "tail: elongated, narrow with gray and white edges", + "throat: slightly paler gray with delicate feathers" + ], + "gray sided bush warbler": [ + "back: grayish-brown feathers", + "beak: small, thin, and pointed", + "belly: pale gray with subtle brown streaks", + "breast: light gray with faint brown speckles", + "crown: dark brownish-gray with slight greenish tint", + "forehead: light gray with few brown markings", + "eyes: small, dark, and alert", + "legs: slender, pale pinkish-brown", + "wings: grayish-brown with faint bars and white spots", + "nape: gray with a subtle brownish-green hue", + "tail: gray-brown with fine white tips and subtle barring", + "throat: light gray with a hint of white" + ], + "gray sided flowerpecker": [ + "back: olive-gray feathers", + "beak: short, curved, and sharp", + "belly: white with grayish flanks", + "breast: white with faint grayish streaks", + "crown: dark olive-gray", + "forehead: slightly lighter olive-gray", + "eyes: small, dark, with white eye-ring", + "legs: thin, pale gray", + "wings: olive-gray with darker feathers", + "nape: olive-gray blending into crown", + "tail: short, square-shaped, olive-gray", + "throat: white with faint gray streaks" + ], + "gray sided laughingthrush": [ + "back: olive-gray feathers", + "beak: slightly curved black beak", + "belly: pale gray underside", + "breast: light gray with fine speckles", + "crown: dark gray with faint streaks", + "forehead: black and white striped pattern", + "eyes: black with faint white ring", + "legs: slender dark gray legs", + "wings: olive-gray with darker markings", + "nape: gray with faint streaks", + "tail: long, dark gray with lighter tips", + "throat: white with black speckles" + ], + "gray sided scimitar babbler": [ + "back: grayish-brown feathering", + "beak: hooked, yellow-orange beak", + "belly: whitish-gray underfeathers", + "breast: slightly warm gray plumage", + "crown: dark gray-feathered top", + "forehead: lighter gray shading", + "eyes: small, dark, alert gaze", + "legs: long, pale yellow-gray", + "wings: warm gray-brown with subtle pattern", + "nape: grayish-brown feathers", + "tail: long, scimitar-shaped, curved", + "throat: pale gray-white feathers" + ], + "gray sided thrush": [ + "back: olive-brown feathers", + "beak: straight, slightly curved at the tip", + "belly: pale white with grayish-brown spots", + "breast: creamy-white with grayish-brown spots", + "crown: solid gray with lighter streaks", + "forehead: light gray, almost white", + "eyes: dark brown, encircled by a pale eye-ring", + "legs: long and slender, with yellow-brown color", + "wings: brownish-gray with faint white bars", + "nape: grayish-brown with lighter streaks", + "tail: brownish-gray, relatively short", + "throat: creamy-white with minimal grayish-brown spots" + ], + "gray streaked flycatcher": [ + "back: grayish-brown with streaks", + "beak: thin, black, and pointed", + "belly: white with gray streaks", + "breast: pale gray with faint streaks", + "crown: brownish-gray with streaks", + "forehead: pale gray", + "eyes: round, dark", + "legs: long, thin, black", + "wings: grayish-brown with white markings", + "nape: gray with faint streaks", + "tail: long, dark with white outer feathers", + "throat: white with gray streaks" + ], + "gray streaked honeyeater": [ + "back: grayish-brown with faint streaks", + "beak: long, thin, blackish", + "belly: off-white with subtle gray streaks", + "breast: creamy white, streaked with gray", + "crown: dark gray, slightly streaked", + "forehead: pale gray with faint streaks", + "eyes: small, black, surrounded by gray feathers", + "legs: slender, grayish-brown", + "wings: grayish-brown with blackish edges", + "nape: pale gray with dark streaks", + "tail: long, grayish-brown with blackish tips", + "throat: creamy white with gray streaks" + ], + "gray striped spurfowl": [ + "back: gray and brown striped feathers", + "beak: short, hooked, yellowish", + "belly: lighter gray with fine, dark stripes", + "breast: pale gray with subtle striping", + "crown: reddish-brown with gray striping", + "forehead: light gray with faint streaks", + "eyes: black, surrounded by light gray feathers", + "legs: long, strong, grayish-yellow", + "wings: gray with brown stripes, rounded tips", + "nape: dark gray with red-brown streaks", + "tail: long, wide, gray with brownish stripes", + "throat: light gray, slightly striped" + ], + "gray tailed piha": [ + "back: slate-gray plumage", + "beak: short, black, and slightly hooked", + "belly: light grayish-white feathers", + "breast: soft gray plumage", + "crown: slate-gray feathers", + "forehead: continuous gray coloring", + "eyes: dark brown, black ring", + "legs: relatively short, grayish-blue", + "wings: grayish-black with lighter edges", + "nape: slate-gray plumage", + "tail: elongated gray feathers, lighter tips", + "throat: light grayish-white feathers" + ], + "gray tailed tattler": [ + "back: light gray speckled with darker gray feathers", + "beak: slender, straight, and dark gray", + "belly: white with faint gray stripes", + "breast: grayish-white with light streaks", + "crown: pale gray with a darker gray center stripe", + "forehead: light gray blending into the crown", + "eyes: dark brown surrounded by a pale gray ring", + "legs: pale yellowish-green with long, thin toes", + "wings: light gray with dark gray bars and white tips", + "nape: pale gray with a slightly darker gray stripe", + "tail: medium gray with distinct white edges", + "throat: white with thin gray streaks" + ], + "gray throated babbler": [ + "back: earthy brown feathers", + "beak: short, pointed, black", + "belly: creamy light gray", + "breast: grayish-white feathers", + "crown: slate gray coloring", + "forehead: slightly paler gray", + "eyes: small, dark, bright", + "legs: thin, black, sturdy", + "wings: brown with white accents", + "nape: transition from gray to brown", + "tail: long, brown-tipped feathers", + "throat: light gray hue" + ], + "gray throated barbet": [ + "back: olive-green with black streaks", + "beak: strong, ivory-colored", + "belly: pale yellow with black streaks", + "breast: bright yellow with black streaks", + "crown: bluish-gray with black spots", + "forehead: bright red patch", + "eyes: dark brown with white eye-ring", + "legs: gray and sturdy", + "wings: olive-green with blue-tipped feathers", + "nape: bluish-gray with black streaks", + "tail: olive-green with black bands", + "throat: pale gray with light black streaks" + ], + "gray throated bulbul": [ + "back: light olive green with dark streaks", + "beak: small and slim, grayish-black", + "belly: pale white with faint streaks", + "breast: grayish-white with dark spots", + "crown: grayish-brown with a slight crest", + "forehead: prominent white streak above eyes", + "eyes: small with white eye-ring, black iris", + "legs: short and grayish", + "wings: olive-brown with pale wing bars", + "nape: rich gray with subtle streaking", + "tail: long and dark olive-brown, white-tipped", + "throat: pale gray with faint markings" + ], + "gray throated chat": [ + "back: soft gray feathers", + "beak: small and black", + "belly: pale gray undersides", + "breast: light gray plumage", + "crown: dark gray, rounded crest", + "forehead: slightly lighter gray", + "eyes: small, black, alert gaze", + "legs: thin, black stalks", + "wings: gray with darker flight feathers", + "nape: gray, meeting crest at base", + "tail: long, dark gray, fan-shaped", + "throat: distinctive pale gray marking" + ], + "gray throated leaftosser": [ + "back: grayish-brown, slightly streaked", + "beak: black, slightly curved tip", + "belly: pale gray, soft texture", + "breast: grayish-white, light streaks", + "crown: dark gray, smooth feathers", + "forehead: lighter gray, slightly raised", + "eyes: black, small, and round", + "legs: thin, dark gray, strong", + "wings: grayish-brown, moderately sized", + "nape: dark gray, smooth feathers", + "tail: grayish-brown, short and slightly rounded", + "throat: gray, unmarked, and clean" + ], + "gray throated martin": [ + "back: slate gray upperparts", + "beak: small, dark, and pointy", + "belly: white lower belly", + "breast: grayish-white chest", + "crown: dark gray head", + "forehead: light gray streak", + "eyes: small, black, and round", + "legs: moderately long and dark", + "wings: long, pointed, with gray-black coloration", + "nape: dark gray", + "tail: forked and blackish-gray", + "throat: pale gray and narrow" + ], + "gray throated rail": [ + "back: covered in soft gray feathers", + "beak: long, slender, and dark gray", + "belly: pale gray with fine white streaks", + "breast: lighter gray with fine white streaks", + "crown: dark gray and slightly raised", + "forehead: smooth and pale gray", + "eyes: small and dark, surrounded by gray feathers", + "legs: sturdy and yellowish-brown", + "wings: gray with white streaks and black tips", + "nape: back of the neck, dark gray feathers", + "tail: short and fan-shaped, dark gray with white edges", + "throat: pale gray and smooth" + ], + "gray throated sunbird": [ + "back: grayish-green feathers", + "beak: long, slender, curved black", + "belly: pale yellow plumage", + "breast: iridescent blue-green", + "crown: dark metallic green", + "forehead: bright violet streak", + "eyes: dark, beady, centered", + "legs: thin, black, strong", + "wings: grayish-green, long, pointed", + "nape: gray transitioning to green", + "tail: long, dark-tipped, black", + "throat: silvery-gray, shimmering" + ], + "gray throated tit flycatcher": [ + "back: light gray plumage", + "beak: thin, short, black", + "belly: white with gray streaks", + "breast: white with gray patches", + "crown: dark gray with white spots", + "forehead: white-eyebrow streak", + "eyes: large, dark, surrounded by white", + "legs: slender, dark gray", + "wings: gray with white wing bars", + "nape: pale gray", + "tail: gray with white edges", + "throat: pale gray" + ], + "gray throated warbler": [ + "back: olive-green feathers", + "beak: sharp and pointed, black", + "belly: creamy-white feathers", + "breast: light gray with delicate streaks", + "crown: dark gray feathers", + "forehead: light gray with black streaks", + "eyes: piercing black orbs", + "legs: thin and long, dark gray", + "wings: olive-green with black bars", + "nape: dark gray with subtle streaks", + "tail: olive-green feathers, long and narrow", + "throat: light gray with black speckles" + ], + "gray throated warbling finch": [ + "back: soft gray feathers", + "beak: small, pointed, and black", + "belly: pale gray-white hue", + "breast: light gray plumage", + "crown: dark gray cap", + "forehead: subtle gray-silver", + "eyes: beady, black, and alert", + "legs: thin, charcoal-gray", + "wings: gray with fine barring", + "nape: smoky gray shading", + "tail: graduation of grays with dark tips", + "throat: delicate gray with hint of silver" + ], + "gray winged blackbird": [ + "back: dark gray feathers covering the upper body", + "beak: short, sturdy, black beak for eating insects and seeds", + "belly: soft gray feathers extending to the underside", + "breast: dark gray plumage on the chest area", + "crown: black feathers on top of the head, creating a subtle crest", + "forehead: smooth black feathers above the eyes", + "eyes: beady, dark brown eyes with a sharp gaze", + "legs: strong, black legs with scaly texture", + "wings: broad gray wings with black accent feathers", + "nape: dark gray feathers on the back of the neck", + "tail: long, black feathers with a fan-like shape", + "throat: gray feathers transitioning to black at the top area" + ], + "gray winged cotinga": [ + "back: soft gray feathers covering the upper back", + "beak: short and stout, pale grayish hue", + "belly: lighter gray plumage on lower abdomen", + "breast: medium gray feathers adorning the chest area", + "crown: darker gray feathered region on the top of the head", + "forehead: smooth, light gray feathers meeting the beak", + "eyes: small, black, and round, surrounded by gray feathers", + "legs: slender, grayish-blue legs with sharp claws", + "wings: broad, gray wings with darker accents on the edges", + "nape: gradual transition from the crown to the back with gray feathers", + "tail: long, gray feathers with a subtle forked shape", + "throat: pale gray feathers extending from beak to breast" + ], + "gray winged francolin": [ + "back: light gray feathers with subtle white speckles", + "beak: short and sturdy, light brown", + "belly: pale gray with faint white striping", + "breast: tawny-gray with fine white streaking", + "crown: rusty orange with fine black striping", + "forehead: pale gray with a slight orange tinge", + "eyes: dark brown, encircled by white feathered rings", + "legs: strong and featherless, reddish-brown", + "wings: mottled gray with white-bordered covert feathers", + "nape: gray to rusty orange gradient with black striping", + "tail: gray with thin white stripes and black tips", + "throat: creamy white with light gray speckles" + ], + "gray winged inca finch": [ + "back: smooth gray feathers", + "beak: small, slightly curved black beak", + "belly: pale gray with slight streaks", + "breast: soft gray feathers with lighter shades", + "crown: dark gray crest on top of the head", + "forehead: lighter gray plumage near eyes", + "eyes: small, black with a white eye-ring", + "legs: slender black legs with thin toes", + "wings: gray with white-tipped feathers, designed for short flights", + "nape: slightly darker gray towards the back of the neck", + "tail: long, dark gray with white edges on outer feathers", + "throat: lighter gray blending into the breast area" + ], + "gray winged robin chat": [ + "back: light gray plumage covering the upper back", + "beak: thin, slightly curved black beak", + "belly: off-white with subtle mottled patterns", + "breast: rich orange-red blending into white", + "crown: grayish feathers with a slightly darker shade than the back", + "forehead: transition from gray crown to white eye-ring", + "eyes: black with a distinct white eye-ring", + "legs: slender, charcoal-gray with slightly curved claws", + "wings: light gray feathers with darker flight feathers and patterns", + "nape: gray plumage transitioning from the crown to the back", + "tail: long, gray feathers with dark bands and white outer tips", + "throat: white, bordered by the orange-red breast feathers" + ], + "gray winged trumpeter": [ + "back: slate gray feathers with a slight sheen", + "beak: short, strong, hooked black beak", + "belly: pale grayish-white feathering", + "breast: smooth gray feathers with a white undertone", + "crown: dark gray feathers, slightly raised", + "forehead: smooth, lighter gray feathering", + "eyes: small, dark, with a thin white ring", + "legs: long, slender, strong, dark gray", + "wings: broad, gray feathers with white edges", + "nape: smooth, blending gray feathering", + "tail: elongated, gray feathers, with white tips and a slight curve", + "throat: light gray, almost white feathering with a subtle texture" + ], + "gray grasshopper warbler": [ + "back: olive-brown plumage", + "beak: short, pointed, pale brown", + "belly: white with a tinge of gray", + "breast: pale brown with light streaks", + "crown: grayish-brown with narrow streaks", + "forehead: pale gray-brown", + "eyes: small, dark brown, surrounded by faint eyering", + "legs: pale pinkish-brown, medium length", + "wings: olive-gray with faint bars", + "nape: similar to the crown but slightly paler", + "tail: grayish-brown, short, square-tipped", + "throat: pale cream or white" + ], + "gray lark": [ + "back: subtle gray feathers", + "beak: small, sharp and black", + "belly: light gray-white underfeathers", + "breast: smooth gray plumage", + "crown: sleek gray crest", + "forehead: pale gray feathers", + "eyes: small, round, and black", + "legs: slender, dark gray limbs", + "wings: broad and gray, built for soaring", + "nape: delicate gray hair-like feathers", + "tail: fan-like, with gray feathers", + "throat: white-gray with light streaks" + ], + "grayish baywing": [ + "back: earthy brown color", + "beak: short and sturdy, dark gray", + "belly: creamy white with light streaks", + "breast: light grayish-brown, streaked", + "crown: brown with a subtle crest", + "forehead: pale grayish-brown", + "eyes: small, dark, with pale eyering", + "legs: slim, dark gray", + "wings: grayish-brown with buffy edges", + "nape: grayish-brown, continuous with the crown", + "tail: dark brown with subtle pale tips", + "throat: white or pale gray, without streaks" + ], + "grayish eagle owl": [ + "back: sleek, grayish-brown feathers", + "beak: large, sharp, black hook", + "belly: soft, light gray underbelly", + "breast: pale gray with faint barring", + "crown: smoothly rounded, grayish-brown feathers", + "forehead: light gray with darker markings", + "eyes: large, striking orange or yellow orbs", + "legs: feathered, gray, with powerful talons", + "wings: broad, grayish-brown with fine barring", + "nape: uniform grayish-brown plumage", + "tail: long, grayish-brown with distinct bands", + "throat: pale gray, well-defined area" + ], + "grayish miner": [ + "back: slate gray feathers", + "beak: strong, black, and sharp", + "belly: light gray with white underparts", + "breast: pale gray plumage", + "crown: slightly darker gray feathers", + "forehead: smooth, light gray", + "eyes: black, beady, with white eye-ring", + "legs: sturdy, dark gray", + "wings: grayish-brown with black streaks", + "nape: soft gray with faint stripes", + "tail: long, dark gray with white outer feathers", + "throat: pale gray with white undertones" + ], + "grayish mourner": [ + "back: soft-gray feathered", + "beak: short and black", + "belly: pale gray with a slight hue of white", + "breast: light gray and smooth", + "crown: subtle darker gray", + "forehead: lighter gray shade", + "eyes: small and black, encircled by a gray ring", + "legs: thin and dark", + "wings: medium gray with a tinge of white", + "nape: pale gray, blending with the crown", + "tail: gray, elongated with white tips", + "throat: delicate light gray" + ], + "grayish piculet": [ + "back: light grayish-brown with subtle striping", + "beak: small, pointed, blackish upper beak and a grayish lower beak", + "belly: pale grayish-white with soft streaks", + "breast: grayish-white, slightly streaked", + "crown: dark brownish-gray with faint streaks", + "forehead: transitional pale gray-brown color", + "eyes: dark brown, medium-sized with a faint white eye-ring", + "legs: short, grayish-black legs with slender toes", + "wings: grayish-brown with faint barring", + "nape: light grayish-brown, blending into the back color", + "tail: short, grayish-brown with a narrow band near the tip", + "throat: pale grayish-white, softly streaked" + ], + "graylag goose": [ + "back: pale gray and lightly speckled", + "beak: orange with a white tip", + "belly: white with light gray markings", + "breast: light gray and mildly spotted", + "crown: smooth grayish-brown", + "forehead: light gray blending into the crown", + "eyes: dark brown encircled by white feathers", + "legs: orange and thick", + "wings: gray with bold white-striped edges", + "nape: grayish-brown, elongating towards the back", + "tail: grayish-white with black middle feathers", + "throat: pale gray, bordering the breast" + ], + "great antpitta": [ + "back: olive-brown with streaks", + "beak: strong, hooked, grayish", + "belly: grayish-white, feathers exhibit barring", + "breast: grayish-white with lighter gray horizontal streaks", + "crown: dark grayish-brown with lighter streaks", + "forehead: dusky gray with streaks", + "eyes: small, dark, surrounded by gray", + "legs: long, strong, pale grayish-pink", + "wings: olive-brown, rounded with faint streaks", + "nape: grayish-brown continuous with the crown", + "tail: short, fan-shaped, olive-brown with faint bars", + "throat: whitish with barred gray sides" + ], + "great antshrike": [ + "back: slate-colored with slight feather pattern", + "beak: thick, black, and hooked", + "belly: white with faint gray streaking", + "breast: contrasting black and white stripes", + "crown: black with bushy crest feature", + "forehead: black blending into crown", + "eyes: dark with a yellow-rim", + "legs: long, slender, and gray", + "wings: black with white edges", + "nape: black extending from the crown", + "tail: long, black, with white outer feathers", + "throat: white blending into the breast" + ], + "great barbet": [ + "back: olive-green covering the upper body", + "beak: thick and prominent, blackish-grey", + "belly: yellowish-green with blue highlights", + "breast: bluish-grey fading to lighter grey", + "crown: bright blue with dark purple streaks", + "forehead: vivid blue with black borders", + "eyes: dark brown with black outline", + "legs: pale grey, strong and sturdy", + "wings: olive-green with black flight feathers", + "nape: vibrant blue collar with black streaks", + "tail: olive-green with black banding", + "throat: bright blue with a black border" + ], + "great bittern": [ + "back: streaked brown and beige feathers", + "beak: long, sharp, and yellowish", + "belly: pale beige with brown speckles", + "breast: buff-colored with dark streaks", + "crown: dark brown with lighter streaks", + "forehead: buff-colored with brown markings", + "eyes: small, round, and yellow", + "legs: long, sturdy, and greenish-yellow", + "wings: brown with beige streaks and bars", + "nape: buff-colored with dark lines", + "tail: short, brown with buff bars", + "throat: pale beige with brown speckles" + ], + "great black hawk": [ + "back: dark chocolate feathers", + "beak: curved, black, fierce", + "belly: tawny brown softness", + "breast: smoky chestnut plumage", + "crown: majestic, jet-black crown", + "forehead: smooth, feathered brow", + "eyes: piercing amber gaze", + "legs: sturdy, yellow talons", + "wings: expansive, powerful span", + "nape: sleek, charcoal feathers", + "tail: elongated, banded feathers", + "throat: velvety, chocolate down" + ], + "great blue turaco": [ + "back: vibrant turquoise feathers", + "beak: large, slightly curved, reddish-yellow", + "belly: lighter blue plumage", + "breast: bright blue feathers", + "crown: brilliant blue plumage with a slight crest", + "forehead: blue feathers meeting the beak", + "eyes: dark, piercing gaze surrounded by blue feathers", + "legs: sturdy, grey, scaly legs with zygodactyl feet", + "wings: long, deep blue feathers with hints of green", + "nape: striking, blue plumage connecting to the back", + "tail: extensive, blue-green feathers with a distinctive split", + "throat: bright blue plumage extending down from the beak" + ], + "great bowerbird": [ + "back: olive-brown with pale streaks", + "beak: strong, grayish-hued and curved", + "belly: pale grayish-brown with white spots", + "breast: light grayish-brown with white streaking", + "crown: olive-gray with light streaks", + "forehead: pale olive-gray", + "eyes: dark brown with buff-colored eye-ring", + "legs: strong and brownish-gray", + "wings: olive-brown with pale edges on wing feathers", + "nape: pale olive-gray with light streaking", + "tail: long and olive-brown with broad white bands and black tips", + "throat: light grayish-brown with white streaks" + ], + "great bustard": [ + "back: light brown with small, dark speckles", + "beak: ivory-colored, slightly curved, stout", + "belly: white with brown bars", + "breast: creamy white with subtle brown markings", + "crown: brown with black streaks", + "forehead: light brown, blending into crown", + "eyes: black, beady, surrounded by brown feathers", + "legs: long, yellowish-brown", + "wings: broad, long, light brown with dark spots", + "nape: brown and white-striped, distinct", + "tail: short, white with black band, fan-shaped", + "throat: creamy white, with some gray flecks" + ], + "great crested grebe": [ + "back: brownish-grey with subtle streaks", + "beak: long, slender, and pointed, pale pinkish-white", + "belly: white, with tinges of grey", + "breast: reddish-brown with a small white patch", + "crown: black and glossy, with a distinct crest", + "forehead: black, connecting to the crown and crest", + "eyes: red, bright, positioned on the side of the head", + "legs: greenish-grey, set far back, with lobed toes", + "wings: brownish-grey, with secondary feathers tipped white", + "nape: reddish-brown, extending to sides of the neck", + "tail: short, dark brown, with a slight upward curve", + "throat: white, bordered by reddish-brown on the neck" + ], + "great crested tern": [ + "back: streamlined gray feathers", + "beak: long, sharp, yellow-orange", + "belly: soft white plumage", + "breast: smooth white feathers", + "crown: sleek black crest", + "forehead: partially white, merging with black crest", + "eyes: dark, piercing gaze", + "legs: thin, grayish-black", + "wings: elongated, gray with hints of white", + "nape: transitioning from black to gray plumage", + "tail: forked, white with gray edges", + "throat: white, with a hint of grayness" + ], + "great cuckoo dove": [ + "back: sleek, grayish-brown feathers", + "beak: short, curved, light-colored", + "belly: pale gray-white plumage", + "breast: soft rosy-pink hue", + "crown: smooth, grayish-brown feathers", + "forehead: flat, with subtle grayish-brown feathers", + "eyes: dark, round, with thin eyelids", + "legs: stout, reddish, with scaly texture", + "wings: broad, elongated, grayish-brown with light markings", + "nape: smoothly transitioned grayish-brown feathers", + "tail: long, graduated, grayish-brown with white-tipped feathers", + "throat: pale gray-white with an elongated look" + ], + "great curassow": [ + "back: glossy black plumage with a greenish sheen", + "beak: stout, black, and slightly curved", + "belly: darkly feathered and voluminous", + "breast: black, well-rounded with iridescent sheen", + "crown: fan-like crest of curled feathers", + "forehead: covered with dense, fine feathers", + "eyes: small and black, surrounded by a patch of bare blue skin", + "legs: sturdy, strong and black with sharp claws", + "wings: wide and rounded, black with a slight blue tinge", + "nape: distinct silver-gray band around the neck", + "tail: long, curving downwards, mostly black with distinctive white or rufous undertail feathers", + "throat: dark, small feathers with a hint of iridescence" + ], + "great dusky swift": [ + "back: dark gray with subtle streaks", + "beak: black, slightly curved", + "belly: grayish with lighter undertones", + "breast: darker gray, well-defined feathers", + "crown: dark gray, slightly raised", + "forehead: lighter gray, smooth appearance", + "eyes: small and black, surrounded by gray plumage", + "legs: short and black, strong for perching", + "wings: elongated and tapered, dark gray", + "nape: dark gray with a smooth texture", + "tail: gray, short and slightly square", + "throat: lighter gray, well defined feather pattern" + ], + "great eared nightjar": [ + "back: dark, camouflaged plumage", + "beak: short, wide gape", + "belly: lighter cream and brown tones", + "breast: streaked with brown and cream", + "crown: dark, prominent crest", + "forehead: grayish-brown", + "eyes: large, dark, and nocturnal", + "legs: short, grayish-brown", + "wings: long, brown, and mottled", + "nape: brown, speckled with black spots", + "tail: long, broad, with white and brown bars", + "throat: whitish with brown stripes" + ], + "great elaenia": [ + "back: olive-green upper body", + "beak: dark gray and slightly hooked", + "belly: pale gray-white underside", + "breast: light grayish-brown with subtle streaks", + "crown: plain grayish-olive", + "forehead: slightly paler olive-gray", + "eyes: dark with pale eye-ring", + "legs: grayish-pink and slender", + "wings: olive-gray with two light wing bars", + "nape: uniform olive-gray", + "tail: slightly darker olive-gray with white outer feathers", + "throat: pale gray-white and narrow" + ], + "great frigatebird": [ + "back: dark iridescent feathers", + "beak: long and hooked, grayish color", + "belly: grayish-white plumage", + "breast: dark feathers with fluffy white patch", + "crown: black and glossy feathers", + "forehead: narrow, black feathers", + "eyes: dark and round, yellow circumorbital ring", + "legs: short, dark grey or black", + "wings: long, slender, and pointed black feathers", + "nape: thick and glossy black feathers", + "tail: long, deeply forked, dark feathers", + "throat: red, inflatable gular pouch in males" + ], + "great gray shrike": [ + "back: light gray feathers with subtle dark barring", + "beak: strong, hooked black beak", + "belly: pale grayish-white, slightly mottled", + "breast: light gray with minimal streaking", + "crown: dark gray with a subtle crest", + "forehead: pale gray blending to dark gray crown", + "eyes: piercing black with a white eye-ring", + "legs: sturdy, black with sharp talons", + "wings: dark gray with bold white patches", + "nape: light gray contrasting with darker crown", + "tail: black with white outer feathers, elongated and slightly forked", + "throat: smooth grayish-white, well-defined" + ], + "great grebe": [ + "back: dark, glossy plumage", + "beak: long, pointed, and yellowish", + "belly: white and fluffy", + "breast: reddish-orange with dark spots", + "crown: black with slight crest", + "forehead: slightly sloping, black", + "eyes: bright red with a piercing gaze", + "legs: strong, greenish-gray, and partially webbed", + "wings: large, powerful, with dark and white feathers", + "nape: slender and black", + "tail: short and fan-shaped, with dark feathers", + "throat: white with a tufted ruff" + ], + "great green macaw": [ + "back: vibrant green feathers covering upper body", + "beak: strong black hooked beak for cracking nuts", + "belly: light green feathers on lower abdomen", + "breast: bright green plumage on chest area", + "crown: green feathers atop the head", + "forehead: emerald green feathers on the head's front", + "eyes: black beady eyes with white rings around them", + "legs: sturdy gray legs with sharp talons", + "wings: large green wings with blue and red undersides", + "nape: green feathers transitioning into a blue on the neck", + "tail: long blue and red tail feathers with green base", + "throat: light green feathers around the base of the beak" + ], + "great hornbill": [ + "back: large, broad, and black with white streaks", + "beak: long, curved, and yellow with a red base", + "belly: white with black stripes", + "breast: white with black markings", + "crown: black with a white band", + "forehead: adorned with a large, yellow, helmet-like casque", + "eyes: small, round, and red-rimmed", + "legs: sturdy and charcoal gray", + "wings: extensive, black with white tips", + "nape: black with a white collar", + "tail: elongated with white-bordered, black feathers", + "throat: white and slightly wrinkled" + ], + "great inca finch": [ + "back: olive-gray with subtle streaks", + "beak: thick and silver-gray with a curved tip", + "belly: pale gray with faint streaks", + "breast: light olive-gray with faint streaks", + "crown: blackish with a prominent crest", + "forehead: blackish with feathers protruding forward", + "eyes: dark brown with white eyerings", + "legs: sturdy and grayish-blue", + "wings: olive-gray with blackish edges and white bars", + "nape: olive-gray with faint streaks", + "tail: blackish, long, and graduated with white edges", + "throat: grayish-white with fine streaks" + ], + "great indian bustard": [ + "back: light brown with distinct black and white markings", + "beak: short, stout, and pale yellow", + "belly: whitish-grey with fine horizontal black lines", + "breast: light brown with sparse black markings", + "crown: black cap extending to the nape", + "forehead: white band contrasting with the black crown", + "eyes: dark and positioned on the side of the head", + "legs: long and sturdy, pale yellow in color", + "wings: large and broad with black and white patterns", + "nape: black fading to light brown on the collar", + "tail: light brown and fan-shaped with horizontal black bands", + "throat: pale grey with a distinctive black collar" + ], + "great iora": [ + "back: olive-green upper body", + "beak: short, slightly curved, dark-colored", + "belly: bright yellow underside", + "breast: yellow to greenish-yellow feathers", + "crown: dark green to olive-green cap", + "forehead: smoothly transitioning to crown", + "eyes: round, dark, with thin white eye-ring", + "legs: grayish to brownish, slender, and strong", + "wings: olive-green with black flight feathers", + "nape: olive-green, flowing into back", + "tail: long, olive-green with black tips", + "throat: vibrant yellow, connecting to breast" + ], + "great kai white eye": [ + "back: sleek, grayish-white feathers", + "beak: small, black, slightly curved", + "belly: pale gray with white undertones", + "breast: soft, light gray plumage", + "crown: vibrant green-yellow crest", + "forehead: greenish-yellow feathers", + "eyes: large, dark, encircled by white rings", + "legs: thin, delicate, grayish-black", + "wings: grayish-green with white accents", + "nape: yellow-green with faint white markings", + "tail: long, sharp-edged feathers with white and gray shades", + "throat: pale gray with a white patch" + ], + "great knot": [ + "back: mottled brown and gray feathers", + "beak: long, slightly upturned, and black", + "belly: pale, with light streaks", + "breast: grayish-brown, with dark spots and streaks", + "crown: brown with fine black streaks", + "forehead: light grayish-brown", + "eyes: small and black, surrounded by grayish feathers", + "legs: long, greenish-yellow", + "wings: long, brown with white and black markings", + "nape: grayish-brown, streaked with black", + "tail: brown with white edges, shorter central feathers", + "throat: pale with fine dark streaks" + ], + "great lizard cuckoo": [ + "back: brownish-grey feathers", + "beak: long, curved, and black", + "belly: pale grey-white", + "breast: soft grey feathers", + "crown: streaked dark grey", + "forehead: lighter grey-brown", + "eyes: large, dark, and alert", + "legs: long and thin, with dark scales", + "wings: broad and brownish-grey in color", + "nape: streaked dark grey-brown", + "tail: long and fan-like, with white-tipped feathers", + "throat: whitish-grey feathers" + ], + "great myna": [ + "back: olive-brown with faint streaks", + "beak: strong, slightly curved, black", + "belly: pale yellowish-grey, streaked", + "breast: greyish-white with dark streaks", + "crown: black with a hint of gloss", + "forehead: small white patch above the beak", + "eyes: dark brown with a bare yellowish patch around them", + "legs: blackish-grey, stout and strong", + "wings: dark brown with white patches in flight feathers", + "nape: glossy black, blending into back", + "tail: dark brown, long, and slightly forked", + "throat: white with sharp, dark streaks" + ], + "great pampa finch": [ + "back: grayish-brown feathers", + "beak: short and conical, pale pinkish", + "belly: white with a pale gray tinge", + "breast: white with gray markings", + "crown: blackish-gray feathers", + "forehead: grayish-black feathers", + "eyes: round with black pupil and white eye ring", + "legs: long, slender, and pale pinkish", + "wings: grayish-brown with white wingbar", + "nape: grayish-brown feathers", + "tail: medium length, black with white outer edges", + "throat: white with gray streaks" + ], + "great parrotbill": [ + "back: vibrantly feathered with shades of greens, blues, and yellows", + "beak: strong, curved, and sharp for cracking nuts/seeds", + "belly: soft, off-white feathers with hints of green", + "breast: brightly colored, often yellow or orange", + "crown: beautiful feathers, usually red or orangish", + "forehead: expressive, with bright coloration and narrow feathers", + "eyes: dark and attentive, surrounded by a thin white ring", + "legs: short, sturdy, and grey, perfect for hopping/running", + "wings: broad and strong, displaying an array of vivid colors", + "nape: streaked or mottled with yellows and greens", + "tail: long and striking, with feathers fanning into vibrant colors", + "throat: delicate and off-white, set off against the bird's bold coloration" + ], + "great reed warbler": [ + "back: olive-brown with faint streaks", + "beak: long, slender, and pointed", + "belly: pale buff-white with light streaks", + "breast: off-white with brownish spots", + "crown: dark brown with a creamy central stripe", + "forehead: slightly paler brown than the crown", + "eyes: black and bead-like, surrounded by pale eyering", + "legs: long, reddish-brown", + "wings: olive-brown with faint streaks, rounded shape", + "nape: olive-brown, similar to the back coloration", + "tail: fan-shaped, olive-brown with darker edges", + "throat: pale buff-white, unmarked" + ], + "great rosefinch": [ + "back: vibrant crimson red", + "beak: sturdy, conical-shaped, silver-gray", + "belly: pinkish-red with white undertones", + "breast: rich scarlet hue", + "crown: fiery red crown with black flecks", + "forehead: striking red with black streaks", + "eyes: dark, beady, piercing gaze", + "legs: sturdy, grayish-blue", + "wings: black feathers with subtle white and red markings", + "nape: bold red with black streaks", + "tail: lengthy black tail feathers with white edges", + "throat: deep red with black speckles" + ], + "great rufous sparrow": [ + "back: brownish-gray with a rufous tint", + "beak: short, stout, and conical", + "belly: creamy white with light streaks", + "breast: pale rufous with dark streaks", + "crown: reddish-brown with a distinct crest", + "forehead: pale rufous with small dark spots", + "eyes: small, dark, and beady", + "legs: sturdy and featherless, light pinkish-brown", + "wings: rufous with dark flight feathers and white-tipped coverts", + "nape: reddish-brown with faint streaks", + "tail: long and rufous with darker central feathers and lighter outer feathers", + "throat: creamy white with a slight rufous tinge" + ], + "great rufous woodcreeper": [ + "back: rufous-brown and streaked", + "beak: long, decurved, and cream-colored", + "belly: buffy-white with brown streaks", + "breast: streaked with rufous-brown and buff", + "crown: rufous with fine streaks", + "forehead: pale streaked with brown", + "eyes: dark brown and round", + "legs: sturdy and grayish", + "wings: rufous-brown with faint streaks", + "nape: chestnut-colored with lighter streaking", + "tail: long, stiff, and rufous-brown", + "throat: buffy-white with light brown streaks" + ], + "great sapphirewing": [ + "back: shimmering bluish-green feathers", + "beak: sleek, elongated black structure", + "belly: soft pale blue, feathered underside", + "breast: vibrant sapphire-colored plumage", + "crown: iridescent blue crest on top of the head", + "forehead: rich blue feathers transitioning into the crown", + "eyes: large, dark orbs with a slight glint", + "legs: sturdy, dark gray structures with sharp talons", + "wings: expansive, sapphire and emerald feathered appendages", + "nape: region where the sapphire feathers meet the pale blue belly", + "tail: elongated, shimmering blue feathers in a slight fan shape", + "throat: light blue plumage that blends into the breast and belly" + ], + "great shearwater": [ + "back: dark brownish-gray feathers", + "beak: long, hooked, gray-black color", + "belly: white with brownish streaks", + "breast: white with dark brown speckling", + "crown: dark brown with well-defined light area on the nape", + "forehead: whitish-brown blending to the crown", + "eyes: black with a dark ring around them", + "legs: pinkish-gray with webbed feet", + "wings: long, dark brownish-black with a white patch", + "nape: contrasting white surrounded by dark brown feathers", + "tail: dark brownish-black, wedge-shaped", + "throat: white with some brownish markings" + ], + "great shortwing": [ + "back: sleek, olive-brown feathers", + "beak: short, sharp, black, hooked tip", + "belly: pale white with brown speckles", + "breast: chestnut brown, lightly streaked", + "crown: dark brown, slightly ruffled crest", + "forehead: smooth, pale brown", + "eyes: bright, piercing yellow", + "legs: sturdy, yellow-orange with sharp talons", + "wings: rounded, olive-brown with black barring", + "nape: smooth, pale brown transition to back", + "tail: short, broad, brown-black with white tips", + "throat: white, lightly streaked, well-defined" + ], + "great shrike tyrant": [ + "back: light brown with subtle streaks", + "beak: robust, black, and slightly hooked", + "belly: off-white with faint barring", + "breast: pale gray with a soft hue", + "crown: ashy gray with a streaked texture", + "forehead: plain light gray smoothness", + "eyes: dark, intense gaze, encircled with white", + "legs: long, slender, black in color", + "wings: large, dark gray with white barring", + "nape: gray with hints of light brown streaks", + "tail: long, black, with white edges", + "throat: clean, pale gray shading" + ], + "great skua": [ + "back: brownish-grey feathers with subtle barring", + "beak: strong, hooked, light grayish-yellow tip", + "belly: creamy white with streaks of brown", + "breast: light brown with darker, mottled patterns", + "crown: brownish-grey feathers with faint streaks", + "forehead: smoothly sloping, with brown and grey feathers", + "eyes: dark, deeply set, with a piercing gaze", + "legs: thick, yellow, powerful with webbed feet", + "wings: long, wide, brownish-grey with white patches", + "nape: brownish-grey feathers with faint streaks", + "tail: moderately long, with white at the base, brownish-grey at the tip", + "throat: light brown with darker, mottled patterns" + ], + "great slaty woodpecker": [ + "back: dark grey slate-like feathers", + "beak: long, sharp, chisel-like black", + "belly: faded dark grey feathers", + "breast: slightly lighter grey than belly", + "crown: red plume for males, dark grey for females", + "forehead: dark grey, merging into crown", + "eyes: small, beady, and black", + "legs: short and strong, light grey", + "wings: dark grey with lighter streaks, wide-spanned", + "nape: darker grey band below the crown", + "tail: long, dark grey with contrasting white patches", + "throat: lighter grey, smooth contour" + ], + "great snipe": [ + "back: dark brown with heavy black striping", + "beak: long, straight, and brownish-grey", + "belly: white with fine brown barring", + "breast: dark brown with distinct black markings", + "crown: black with broad, cream central stripe", + "forehead: buffy-white with black streaks", + "eyes: black, with bright white eyering", + "legs: greenish-yellow to yellowish-brown", + "wings: brown and white with intricate patterns", + "nape: chestnut-brown with bold black streaks", + "tail: short, white with dark bars and outer feathers", + "throat: pale buff with fine brown streaks" + ], + "great spinetail": [ + "back: dark brown feathers with subtle streaks", + "beak: robust, slightly curved, and pale-colored", + "belly: buffy-white with brownish flanks", + "breast: buffy-brown with thin dark streaks", + "crown: rufous-brown with a concealed crest", + "forehead: rufous-brown merging with the crown", + "eyes: small, black and inconspicuous", + "legs: long, strong, and well-adapted for perching", + "wings: rounded, with brownish rufous bars", + "nape: rufous-brown, extending from the crown", + "tail: long, brown, with white-tipped outer feathers", + "throat: creamy-white with dark brown streaks" + ], + "great spotted cuckoo": [ + "back: grayish-brown with white spots", + "beak: black, strong, slightly curved", + "belly: creamy-white with dark gray bars", + "breast: pale gray with dark gray bars", + "crown: grayish-brown with white streaks", + "forehead: pale grayish-white", + "eyes: dark with a white eye-ring", + "legs: grayish, long and strong", + "wings: dark with white spotted feathers", + "nape: grayish-brown with white streaks", + "tail: long with dark gray and white spotted feathers", + "throat: pale gray with dark gray bars" + ], + "great spotted kiwi": [ + "back: dark, shaggy plumage", + "beak: long and curved", + "belly: pale gray-brown feathers", + "breast: speckled gray-brown plumage", + "crown: dark gray-brown feathers", + "forehead: narrow, light gray-brown stripe", + "eyes: small and dark", + "legs: strong and sturdy, with sharp claws", + "wings: small, rudimentary, and almost hidden", + "nape: shaggy gray-brown feathers", + "tail: short and brush-like", + "throat: lighter gray-brown plumage" + ], + "great spotted woodpecker": [ + "back: black feathers with white bars", + "beak: strong, chisel-like, dark grey", + "belly: white with reddish undertone", + "breast: white with black markings", + "crown: red in males, black in females", + "forehead: black feathers with white markings", + "eyes: dark, bead-like with white eye-ring", + "legs: short, grey-blue with strong toes", + "wings: black with white patches, red on underside", + "nape: black with white stripe in males, white in females", + "tail: blackish, stiff, and graduated, with white edges", + "throat: black, bordered by white chin patch" + ], + "great swallow tailed swift": [ + "back: dark, sleek feathers", + "beak: slim, black, and pointed", + "belly: light gray undertones", + "breast: soft gray plumage", + "crown: black and smooth", + "forehead: thin, pale stripe", + "eyes: small, dark, and alert", + "legs: short with strong claws", + "wings: elongated, dark, and powerful", + "nape: gray with black streaks", + "tail: long, slender, and deeply forked", + "throat: grayish-white coloration" + ], + "great thick knee": [ + "back: sleek, gray-brown feathers", + "beak: long, slightly curved, pale yellow", + "belly: light cream or white feathers", + "breast: grayish-brown feathers with fine streaks", + "crown: dark brown with marked crease", + "forehead: light gray to white plume feathers", + "eyes: large, dark with thick eyelids", + "legs: long, sturdy, greenish-yellow", + "wings: gray-brown, streaked with white", + "nape: gray-brown feathers with fine streaks", + "tail: short, with dark bands and white outer feathers", + "throat: pale gray or white with slight streaks" + ], + "great thrush": [ + "back: dark olive-brown with subtle streaks", + "beak: robust, slightly curved, yellowish bill", + "belly: creamy-white with dark spots", + "breast: pale buff with round, black spots", + "crown: dark brown with a faint crest", + "forehead: slightly lighter brown above the beak", + "eyes: dark with white eye-rings", + "legs: strong orange-yellow, with well-defined claws", + "wings: large, dark brown with white wing bars", + "nape: dark olive-brown, blending with the back and crown", + "tail: textured brown, long, and slightly rounded", + "throat: creamy-white with sporadic black spots" + ], + "great white pelican": [ + "back: light grey feathers", + "beak: large, yellow-orange with a hooked tip", + "belly: white feathers", + "breast: white with a slight pink tint", + "crown: white feathers, sometimes tinged with yellow", + "forehead: white and slightly rounded", + "eyes: dark surrounded by a thin, white ring", + "legs: short, pinkish-grey with webbed feet", + "wings: white to pale grey, with black primary feathers visible in flight", + "nape: long white feathers extending to the back", + "tail: short, square-shaped, white feathers", + "throat: white and extendable during feeding" + ], + "great woodswallow": [ + "back: dark, metallic blue feathers", + "beak: short, strong, black, and slightly hooked tip", + "belly: pale gray, blending with breast coloring", + "breast: light gray with a subtle blue sheen", + "crown: iridescent dark blue, matching the back", + "forehead: same metallic blue as the crown and back", + "eyes: small, dark, and alert, surrounded by dark feathers", + "legs: short, strong, and black, suited for perching", + "wings: long and pointed, dark blue with lighter gray-blue tips", + "nape: iridescent blue, blending with crown and back", + "tail: short and square, dark blue with undertail white/light gray", + "throat: light gray, seamlessly blending with breast and belly" + ], + "great billed hermit": [ + "back: greenish-bronze hue", + "beak: long, curved, black", + "belly: lighter grayish-brown", + "breast: dark grayish-brown", + "crown: greenish with a slight shine", + "forehead: bronzed green color", + "eyes: black with a white eyering", + "legs: slender, gray", + "wings: greenish-bronze with hints of brown", + "nape: iridescent green", + "tail: long, white-tipped feathers with a reddish-brown base", + "throat: dark grayish-brown" + ], + "great billed heron": [ + "back: blue-grey feathers with a slight sheen", + "beak: long, strong, and pointed, yellow dagger-like", + "belly: soft white feathering", + "breast: light blue-grey plumage", + "crown: dark slate-blue plumage", + "forehead: flat, narrow, dark blue-grey feathering", + "eyes: bright yellow with a piercing gaze", + "legs: long, yellow-green and partially feathered", + "wings: large, powerful, blue-grey with black tips", + "nape: slate-blue, long feathers extending past neck", + "tail: dark blue-grey feathers with black banding", + "throat: white and unfeathered" + ], + "great billed kingfisher": [ + "back: vibrant blue feathers", + "beak: large, powerful, and black", + "belly: pristine white plumage", + "breast: white feathers with blue streaks", + "crown: striking blue crest", + "forehead: vivid blue coloring", + "eyes: sharp, penetrating gaze", + "legs: short but sturdy, with strong feet", + "wings: long, blue, with black flight feathers", + "nape: blue with a distinct black collar", + "tail: broad, blue feathers with black tips", + "throat: white feathers with a hint of blue" + ], + "great billed parrot": [ + "back: vibrant green feathers covering the dorsal side", + "beak: large and robust, dark-colored upper beak", + "belly: light green feathers transitioning to yellow near the tail", + "breast: bright green plumage on the upper chest area", + "crown: green feathers on top of its head, sometimes with lighter streaks", + "forehead: vibrant green feathers at the front of the head", + "eyes: dark, rounded with a white eye-ring", + "legs: strong and gray, with zygodactyl feet for grasping branches", + "wings: vibrant green with a slightly darker hue covers the primaries and secondaries", + "nape: green feathers that continue from the crown down to the back", + "tail: long, broad, green feathers with yellowish tips", + "throat: light green feathers leading to chest area, sometimes with a bluish tinge" + ], + "great billed seed finch": [ + "back: dark olive-brown feathers", + "beak: large, robust, silver-gray", + "belly: creamy white plumage", + "breast: light brown with subtle streaks", + "crown: black with a slight metallic sheen", + "forehead: black, merging with the crown", + "eyes: dark brown with a thin, white eye-ring", + "legs: strong, grayish-blue", + "wings: olive-brown with faint streaks", + "nape: olive-brown, in line with the back", + "tail: long, dark brown with rounded edges", + "throat: creamy white, contrasting with the breast" + ], + "great winged petrel": [ + "back: dark grey plumage", + "beak: long, narrow, hooked tip", + "belly: white feathers", + "breast: greyish-white plumage", + "crown: rounded, dark grey", + "forehead: sloping, dark grey", + "eyes: dark, well-defined circles", + "legs: strong, pinkish hue", + "wings: long, slender, pointed tips", + "nape: grey, transitioning to white", + "tail: forked, lighter grey", + "throat: white, delicate feathers" + ], + "greater adjutant": [ + "back: long, greyish-blue feathers", + "beak: large, yellowish, and hooked", + "belly: light grey with minimal feathers", + "breast: greyish-blue plumage", + "crown: small crest of feathers", + "forehead: receding, with sparse feathers", + "eyes: small and bright yellow", + "legs: long, thick, and yellowish-grey", + "wings: broad with blue-grey feathers", + "nape: featherless, reddish-pink skin", + "tail: short and fan-shaped with grey feathers", + "throat: bare, pinkish, and pendulous" + ], + "greater ani": [ + "back: glossy black with green and blue iridescence", + "beak: long, slightly curved, distinct black color", + "belly: deep black with a hint of bluish shine", + "breast: dark black with a slight shimmer", + "crown: smooth black with subtle iridescence", + "forehead: glossy black merging seamlessly into the crown", + "eyes: bright yellow, giving a striking contrast against black feathers", + "legs: sturdy, black and perfectly adapted to perching", + "wings: iridescent black with a large wingspan for agile flight", + "nape: deep black, merging with the back and crown", + "tail: long, black, with a slight curve at the tip", + "throat: black feathers, slightly puffed out for prominence" + ], + "greater antillean bullfinch": [ + "back: olive-brown with a slight grayish hue", + "beak: stout, conical, and pale gray", + "belly: pale grayish-white with a hint of olive", + "breast: slightly darker gray than the belly, with olive tinges", + "crown: glossy black with a smooth, rounded appearance", + "forehead: shiny black, blended into the crown", + "eyes: small, dark, surrounded by a thin black circle", + "legs: slender, pale gray with strong feet for perching", + "wings: olive-brown with black tips and white wing bars", + "nape: olive-brown, blending into the back coloration", + "tail: short with black feathers and white outer tips", + "throat: glossy black, similar to the crown and forehead" + ], + "greater antillean elaenia": [ + "back: olive-brown upper body", + "beak: short, dark, slightly hooked", + "belly: pale yellow underside", + "breast: light olive-grey front", + "crown: smooth olive-brown crest", + "forehead: subtly lighter olive hue", + "eyes: small, dark, with white eyering", + "legs: grayish slender limbs", + "wings: olive-brown with prominent white marks", + "nape: olive-brown blending with back", + "tail: moderately long, olive-brown with pale edges", + "throat: whitish-cream continuing from breast" + ], + "greater antillean grackle": [ + "back: shiny black with bluish-green iridescence", + "beak: long, straight, and dark in color", + "belly: glossy black feathers with a slight shine", + "breast: deep black with a reflective sheen", + "crown: striking black with hints of shimmering green", + "forehead: dark, glossy feathers with a prominent brow", + "eyes: bright yellow orbs that stand out against dark feathering", + "legs: strong, long, and dark gray", + "wings: black iridescent feathers with prominent primary and secondary feathers", + "nape: smooth black feathers with a greenish-blue gloss", + "tail: long, fan-shaped black feathers with iridescent reflections", + "throat: black, sleek feathers extending down to the breast-area" + ], + "greater bird of paradise": [ + "back: vibrant green and yellow feathers", + "beak: long, sharp, and curved", + "belly: bright yellow plumage", + "breast: fiery orange-red feathers", + "crown: iridescent emerald green", + "forehead: glossy black plumage", + "eyes: round and dark", + "legs: strong, slender, and grey", + "wings: shades of brown and black with yellow underwings", + "nape: dark, smooth feathers", + "tail: long, thin, and wiry with ornate plumes", + "throat: deep and velvety black" + ], + "greater black coucal": [ + "back: glossy black feathers", + "beak: strong, slightly curved, black", + "belly: rufous-brown with black streaks", + "breast: deep black with grey undertones", + "crown: sleek black feathers", + "forehead: shining black", + "eyes: dark brown with thin black circle", + "legs: long, black, and slender", + "wings: black with hints of green and purple", + "nape: black with fine feather texture", + "tail: long, black, graduated feathers", + "throat: dark black, slightly fluffy" + ], + "greater blue eared starling": [ + "back: iridescent blue-green feathers", + "beak: dark, slender, slightly-curved beak", + "belly: glossy blue-to-purple feathers", + "breast: shimmering violet-blue plumage", + "crown: iridescent blue-green head feathers", + "forehead: sleek metallic blue feathers", + "eyes: dark, round, and alert", + "legs: long, grayish-black legs", + "wings: iridescent blue-green with a hint of purple", + "nape: vibrant blue-green merging with the back", + "tail: long, iridescent blue-to-purple feathers", + "throat: gleaming violet-blue feathers" + ], + "greater bluebonnet": [ + "back: deep blue with slight black patterns", + "beak: strong, black, short, and conical", + "belly: white with light blue streaks", + "breast: vibrant blue mix with white", + "crown: blue-black surrounded by white circle", + "forehead: brilliant blue merging into the crown", + "eyes: bright, beady, black, with white eye-ring", + "legs: sturdy, gray, with sharp claws", + "wings: vivid blue with black flight feathers", + "nape: transitional blue shades between crown and back", + "tail: long, black and blue with white corners", + "throat: white extending downwards from beak" + ], + "greater coucal": [ + "back: deep black with subtle green and purple sheen", + "beak: strong, stout and curved, dark gray color", + "belly: striking chestnut brown", + "breast: dark black with a slight bluish-green hue", + "crown: glossy black with a greenish sheen", + "forehead: shiny black, blending into the crown", + "eyes: dark brown with a prominent circular white eyering", + "legs: sturdy and dark gray, well-adapted for walking", + "wings: large and broad, mostly black with a tint of green and brown edges", + "nape: glossy black, similar to the crown", + "tail: long with a broad white band and chestnut-brown tips", + "throat: black with a blue-toned sheen, neatly merging with the breast" + ], + "greater double collared sunbird": [ + "back: slender dark green body", + "beak: long, curved black bill", + "belly: pale yellow underside", + "breast: iridescent purplish-red band", + "crown: shiny emerald green feathers", + "forehead: gleaming green plumage", + "eyes: small, dark, and sparkling", + "legs: thin and dark grey", + "wings: brownish-black with blue-green sheen", + "nape: bright green with hints of blue", + "tail: long, dark, and slightly forked", + "throat: luminous orange-red patch" + ], + "greater flameback": [ + "back: dark green feathers with white streaks", + "beak: long, chisel-shaped, blackish bill", + "belly: white and finely barred with black", + "breast: white with black markings", + "crown: bright red in males, black in females", + "forehead: red in males, black in females", + "eyes: dark brown with white eye ring", + "legs: grayish-blue with strong toes", + "wings: black primary feathers with white spots, greenish secondary feathers", + "nape: red in males, black in females", + "tail: black with white barring and a red undertail", + "throat: white with black lines" + ], + "greater flamingo": [ + "back: curved, pinkish-white feathers", + "beak: long, curved, black-tipped", + "belly: fluffy, white feathers", + "breast: vibrant pink plumage", + "crown: smooth, pale pink feathers", + "forehead: flattish, pinkish-white feathers", + "eyes: round, dark, surrounded by pink skin", + "legs: thin, long, coral pink with webbed feet", + "wings: wide, pink-edged with black primaries", + "nape: long, slender, pinkish-white feathers", + "tail: short, pinkish-white with black tips", + "throat: fluffy, white feathers" + ], + "greater flowerpiercer": [ + "back: dark blue-gray feathers", + "beak: short, hooked, and black", + "belly: bluish-gray, with lighter shades towards the vent", + "breast: deep blue-gray plumage", + "crown: black, with a short blue crest", + "forehead: black, with contrasting white eyebrow streak", + "eyes: dark brown, encircled by thin blue eyering", + "legs: long, slender, and black", + "wings: dark blue, medium pointed-edges", + "nape: black, transitioning to blue-gray", + "tail: medium length, dark blue feathers", + "throat: white to light gray, framed by black plumage from forehead" + ], + "greater green leafbird": [ + "back: vibrant green with blue tinges", + "beak: slim, pointy and black", + "belly: pale yellow-green", + "breast: bright, yellow-green", + "crown: deep green with blue sheen", + "forehead: vivid blue-green", + "eyes: small, round with black pupils", + "legs: dark gray and slender", + "wings: green with prominent blue feathers", + "nape: bright yellow-green", + "tail: long, green with blue edges", + "throat: light green-yellow" + ], + "greater ground robin": [ + "back: rich shades of olive-brown and gray", + "beak: short, pointed, and slightly curved", + "belly: pale creamy white with rufous tones", + "breast: ruddy orange-red with streaks", + "crown: dark slate gray or blue-gray", + "forehead: mix of slate gray and olive-brown", + "eyes: dark brown, encircled by pale eye-ring", + "legs: strong, pinkish-gray, adapted for ground foraging", + "wings: blackish-brown with white spots and rufous edging", + "nape: slate gray or blue-gray, fading into olive-brown", + "tail: dark brown with rufous outer feathers", + "throat: white with fine dark streaks" + ], + "greater honeyguide": [ + "back: olive-brown feathers", + "beak: short, strong, and black", + "belly: white with black spots", + "breast: grayish-white hues", + "crown: blackish brown", + "forehead: pale yellow", + "eyes: dark brown surrounded by off-white eye-ring", + "legs: robust and gray", + "wings: dark brown with white and buff markings", + "nape: olive-brown transitioning from head", + "tail: brownish-black with white feather tips", + "throat: white with grayish tints" + ], + "greater hoopoe lark": [ + "back: light brown with faint streaks", + "beak: long, slender, and slightly curved", + "belly: pale sandy color with minimal markings", + "breast: buff with light streaks", + "crown: dark brown with a subtle crest", + "forehead: pale buff blending to the crown", + "eyes: black with a white eyering", + "legs: sturdy and gray", + "wings: subdued brown with white markings", + "nape: buff with slight streaks", + "tail: brownish with white outer feathers", + "throat: pale sandy with a slightly darker patch" + ], + "greater kestrel": [ + "back: light brown with dark brown speckles", + "beak: sharp, hooked, and dark grey", + "belly: creamy white with brown speckles", + "breast: pale with light brown streaks", + "crown: pale brownish-grey with dark spots", + "forehead: whitish-grey with small dark streaks", + "eyes: large, dark, and intimidating", + "legs: yellowish with curved talons", + "wings: long, pointed, with brown and grey markings", + "nape: pale grey with dark spots", + "tail: light brown with dark bars and a grey tip", + "throat: white with faint brown markings" + ], + "greater lophorina": [ + "back: iridescent blue-black plumage", + "beak: short, striking black", + "belly: dark blue-black feathers", + "breast: glossy blue-black plumage", + "crown: bright blue crest of feathers", + "forehead: iridescent blue-black with subtle green sheen", + "eyes: intense, dark brown", + "legs: dark gray, slender, and strong", + "wings: long, curved with shimmering blue-black feathers", + "nape: iridescent blue-black", + "tail: long, curved, with magnificent blue-black plumage", + "throat: vibrant, rich blue feathers" + ], + "greater melampitta": [ + "back: dark black feathers with a slight green sheen", + "beak: short and stout, black-colored", + "belly: black with a hint of green iridescence", + "breast: deep black with a slight green sheen", + "crown: black feathers with a green gloss", + "forehead: shimmers with a green iridescent sheen", + "eyes: dark brown, almost black", + "legs: strong, black, with sharp claws", + "wings: black glossy feathers with a green sheen", + "nape: black feathers with a slight green tint", + "tail: black, medium-length, and slightly rounded", + "throat: black and glossy with very subtle green highlights" + ], + "greater necklaced laughingthrush": [ + "back: olive-brown feathers", + "beak: strong, slightly curved, black", + "belly: off-white with black streaks", + "breast: white with distinct black necklace-like markings", + "crown: grayish brown, slightly crested", + "forehead: grayish white", + "eyes: dark, surrounded by faint white markings", + "legs: robust, pale pinkish gray", + "wings: olive-brown with white streaks", + "nape: grayish brown, blending into back", + "tail: long, blackish-brown with white tips", + "throat: white, sometimes with faint black streaks" + ], + "greater painted snipe": [ + "back: brownish-black with subtle green iridescence", + "beak: long, curved, and brownish-black", + "belly: grayish-white with brown streaks", + "breast: brown with grayish-white spots", + "crown: dark brown with buffy-white stripes", + "forehead: whitish-brown, extending to a white eyebrow stripe", + "eyes: small, dark with a noticeable white eyering", + "legs: long, yellowish-green with elongated toes", + "wings: long, brown with green iridescence and white wingbar", + "nape: dark brown with buffy striations", + "tail: short, brown with white edges on outer feathers", + "throat: white with slight grayish streaking" + ], + "greater racket tailed drongo": [ + "back: dark glossy black plumage", + "beak: strong, slightly hooked, black beak", + "belly: deep black with silky texture", + "breast: shiny black with metallic sheen", + "crown: slightly raised black feathers", + "forehead: smooth, dark black contour", + "eyes: piercing red or dark brown", + "legs: strong, black, and slender", + "wings: large, black, and slightly rounded", + "nape: black, glossy neck feathers", + "tail: elongated outer tail feathers with unique racket-shaped tips", + "throat: black, glossy chin and throat area" + ], + "greater rhea": [ + "back: greyish-brown feathers with a slightly flattened appearance", + "beak: large, slightly hooked, and pale-colored", + "belly: light grey feathers with a slightly protruding shape", + "breast: robust, covered in greyish-brown feathers", + "crown: topped with small, dark grey feathers", + "forehead: slightly lighter shade of grey feathers than the rest of the head", + "eyes: large and round with a pale ring around them", + "legs: long, strong, and featherless with large, clawed feet", + "wings: small, vestigial wings covered in long, shaggy feathers", + "nape: lighter grey feathers that run down the back of the neck", + "tail: short, fan-like feathers that are brownish-grey", + "throat: relatively bare with light grey feathers" + ], + "greater sand plover": [ + "back: pale brown with black speckles", + "beak: relatively long, thin, and black", + "belly: white and slightly fluffy", + "breast: white with grayish-brown feather tips", + "crown: light grayish-brown with black flecks", + "forehead: white and small band of black", + "eyes: black with dull-gold eye-ring", + "legs: long and dull yellowish-green", + "wings: grayish-brown with white-edged feathers", + "nape: light grayish-brown with black flecks", + "tail: short and predominantly white with dark bands", + "throat: white with a thin, black band separating it from the breast" + ], + "greater scythebill": [ + "back: olive-brown, slightly streaked", + "beak: long, slender, curved scythe-like", + "belly: whitish-cream, with light streaks", + "breast: gray-brown, thin streaks", + "crown: rusty-red, unmarked", + "forehead: pale-gray, slightly streaked", + "eyes: dark, small, blends with plumage", + "legs: strong, brown, scaly", + "wings: olive-brown, medium-length", + "nape: rusty-red, smooth plumage", + "tail: olive-brown, barred with dark bands", + "throat: white, with fine gray streaks" + ], + "greater short toed lark": [ + "back: light brown with streaks", + "beak: short, thin, and pale in color", + "belly: creamy-white hue", + "breast: light brown with darker streaks", + "crown: brown with black streaks", + "forehead: slightly paler brown", + "eyes: small, black, alert", + "legs: thin, pale, and long", + "wings: brown with lighter fringes", + "nape: brown with darker streaks", + "tail: short, dark brown with white outer feathers", + "throat: creamy white with light streaks" + ], + "greater spotted eagle": [ + "back: dark brown with white spots", + "beak: strong, hooked, black", + "belly: buff-white with brown streaks", + "breast: light brown with white spots", + "crown: dark brown with lighter streaks", + "forehead: white with brown streaks", + "eyes: piercing yellow", + "legs: powerful yellow-orange", + "wings: long, broad, dark brown with white spots", + "nape: gray-brown with white streaks", + "tail: dark brown with white bands", + "throat: pale buff with brown streaks" + ], + "greater striped swallow": [ + "back: iridescent blue-black feathers", + "beak: sleek, narrow, slightly curved", + "belly: cream-colored with fine dark streaks", + "breast: reddish-brown with faint stripes", + "crown: deep blue-black, glossy", + "forehead: bright white with a slight curve", + "eyes: small, dark, and alert", + "legs: strong, black, with sharp claws", + "wings: elongated, pointed, and bold-striped", + "nape: shiny blue-black with a slight stripe", + "tail: long, forked, dark with white outer edges", + "throat: white, bordered by chestnut streaks" + ], + "greater swamp warbler": [ + "back: olive-brown with faint streaks", + "beak: thin and pointed, black color", + "belly: off-white with light brown streaks", + "breast: pale brown with faint streaks", + "crown: olive-brown with a subtle crest", + "forehead: smooth olive-brown", + "eyes: small, dark, with pale eyering", + "legs: long and slender, pale brown", + "wings: olive-brown with faint barring", + "nape: olive-brown, continuous with crown", + "tail: medium-length, olive-brown with faint bars", + "throat: pale brownish-white with light streaks" + ], + "greater thornbird": [ + "back: brownish-grey feathers with faint streaks", + "beak: long, curved, sharp, and black", + "belly: lighter grayish-white plumage", + "breast: pale grey plumage with white speckles", + "crown: reddish-brown crest feathers", + "forehead: light grey with fine streaks", + "eyes: dark, round, and piercing", + "legs: long, slender, and brownish-grey", + "wings: large, brownish-grey with white streaks", + "nape: rufous brown with light streaks", + "tail: long, dark brown with white tips", + "throat: pale grey with white streaks" + ], + "greater vasa parrot": [ + "back: olive-brown with subtle greyish highlights", + "beak: robust, charcoal grey, and hooked tip", + "belly: pale grey with a slight hint of brown", + "breast: darker grey with a modest olive tinge", + "crown: muted olive-grey, smoothly blending into the forehead", + "forehead: soft grey with a subtle olive hue", + "eyes: bright, intelligent yellow set in an off-white eye-ring", + "legs: strong and grey, with sturdy zygodactyl feet", + "wings: long, greyish-olive with faint blue edging on flight feathers", + "nape: slightly lighter grey, smoothly blending into the back", + "tail: broad, greyish-olive, and fan-shaped", + "throat: pale grey fading towards the breast" + ], + "greater wagtail tyrant": [ + "back: olive-brown plumage", + "beak: black, long, and thin", + "belly: pale yellowish-white", + "breast: light chestnut-brown", + "crown: olive-brown with a hidden crest", + "forehead: pale white stripe", + "eyes: dark brown with white eye-ring", + "legs: long and slender, pale yellow", + "wings: olive-brown with pale wing bars", + "nape: olive-brown with hidden yellow patch", + "tail: long, black with white outer feathers", + "throat: white, bordered by chestnut-brown" + ], + "greater whitethroat": [ + "back: grayish-brown feathers", + "beak: sharp, pointed, blackish", + "belly: off-white plumage", + "breast: pale grayish-white feathers", + "crown: slightly darker gray-brown", + "forehead: lighter gray-brown color", + "eyes: dark, round, beady", + "legs: thin, long, dark gray", + "wings: rounded, grayish-brown with lighter edges", + "nape: lighter gray-brown feathers", + "tail: long, dark grayish-brown with white outer feathers", + "throat: clean white, sharply defined" + ], + "greater yellow finch": [ + "back: vibrant olive-green color", + "beak: strong, pointed, grayish-black", + "belly: pale yellow hue", + "breast: bright yellow with hints of green", + "crown: olive-green with light streaks", + "forehead: lime-green shading to gray", + "eyes: dark, round with white eye-ring", + "legs: sturdy, grayish-blue", + "wings: dark slate with green-yellow edges", + "nape: olive-green with faint streaks", + "tail: long, broad, dark gray with yellow", + "throat: bright yellow merging with breast color" + ], + "greater yellow headed vulture": [ + "back: blackish-brown feathers", + "beak: large and hooked, whitish-yellow", + "belly: blackish-brown plumage", + "breast: blackish-brown feathers", + "crown: featherless, grayish-blue head", + "forehead: small patch of white skin", + "eyes: dark, piercing pupils", + "legs: strong, grayish-blue, scaly", + "wings: long, wide-span, blackish-brown", + "nape: featherless grayish-blue skin", + "tail: short, blackish-brown feathers", + "throat: bare, wrinkled grayish-blue skin" + ], + "greater yellownape": [ + "back: olive green with slight streaks", + "beak: strong, sharp, and black", + "belly: pale yellowish-green", + "breast: greenish-yellow", + "crown: bright yellow with elongated feathers", + "forehead: yellow and slightly raised", + "eyes: medium-sized with dark brown color", + "legs: sturdy, dark gray", + "wings: olive green with darker flight feathers", + "nape: bright yellow and striking", + "tail: olive green with some yellow", + "throat: pale green" + ], + "green aracari": [ + "back: bright green feathers", + "beak: large, yellow with black tip", + "belly: pale yellow plumage", + "breast: vibrant yellow feathers", + "crown: glossy green-black head", + "forehead: striking green-black color", + "eyes: large, dark and expressive", + "legs: short, gray with sharp claws", + "wings: greenish-black with yellow-edged feathers", + "nape: greenish-black feathers surrounding the neck", + "tail: long, green and black banded feathers", + "throat: deep, rich yellow plumage" + ], + "green avadavat": [ + "back: vibrant green feathers", + "beak: small, pale-colored, conical shape", + "belly: yellowish-green hue", + "breast: lighter green with scaled pattern", + "crown: rich green plumage", + "forehead: brilliant green extension of the crown", + "eyes: small, black, beady orbs", + "legs: thin, greyish twigs with tiny toes", + "wings: bright green with hints of yellow and faint barring", + "nape: continuation of the green crown", + "tail: sleek, green-yellow feathers with dark barring", + "throat: pale, yellowish-green with delicate scaling" + ], + "green barbet": [ + "back: emerald green feathers", + "beak: stout, red-tipped beak", + "belly: pale green underparts", + "breast: vibrant green plumage", + "crown: bright green, bushy crest", + "forehead: brilliant lime-green feathers", + "eyes: dark, circular gaze", + "legs: short, sturdy, grayish", + "wings: striking green with black pattern", + "nape: rich green, curved neck", + "tail: elongated, green feathers with black tips", + "throat: lighter green, smooth feathers" + ], + "green catbird": [ + "back: olive-green feathers covering the spine", + "beak: short, dark, and slightly curved", + "belly: light greenish-grey with subdued streaks", + "breast: pale green with minimal streaking", + "crown: smoothly transitioned olive-green feathers on the top of the head", + "forehead: same color as the crown with no distinguishing markings", + "eyes: dark, round, and expressive against the lighter green face", + "legs: dark grayish-black with three forward-facing and one backward-facing toes", + "wings: olive-green with subtle patterning in flight feathers", + "nape: continuous olive-green feathers from the back of the head to the upper back", + "tail: long and olive-green with darker rectrices and a squared-off end", + "throat: pale greenish-grey in color, merges with breast and belly" + ], + "green cochoa": [ + "back: vibrant green feathers", + "beak: curved, blackish-grey", + "belly: light turquoise-green", + "breast: bright green hues", + "crown: iridescent green", + "forehead: emerald green feathers", + "eyes: small, dark and round", + "legs: slender, greyish-blue", + "wings: green with bold blue edges", + "nape: shining green plumage", + "tail: elongated, blue-green feathers", + "throat: light green and smooth" + ], + "green crombec": [ + "back: olive-green feathers", + "beak: slim, slightly curved", + "belly: pale creamy-yellow hue", + "breast: light greenish-yellow", + "crown: green feathers, slightly raised", + "forehead: smooth, green blending to the crown", + "eyes: black with pale eye-ring", + "legs: slender, grayish-brown", + "wings: olive-green with a slightly darker panel", + "nape: green, connecting crown to back", + "tail: short, green with black-tipped feathers", + "throat: greenish-yellow, blending into the breast" + ], + "green figbird": [ + "back: vibrant greenish-yellow feathers", + "beak: sturdy, slightly curved, dark gray", + "belly: light greenish-yellow, soft-feathered", + "breast: warm yellowish-green, smooth plumage", + "crown: glossy greenish-black cap", + "forehead: bright green feathers transitioning into the crown", + "eyes: dark, round, surrounded by a thin white eye-ring", + "legs: strong, grayish-brown, with sharp claws", + "wings: greenish-yellow with black flight feathers", + "nape: brilliant green connecting the crown and back", + "tail: long, black, with green and yellow edges", + "throat: rich golden-yellow, well-defined" + ], + "green hermit": [ + "back: vibrant green feathers", + "beak: elongated, curved shape", + "belly: lighter green hue", + "breast: bright green plumage", + "crown: green feathers with a hint of blue", + "forehead: slight iridescent sheen", + "eyes: small, dark orbs", + "legs: thin and grayish-brown", + "wings: green with elongated primary feathers", + "nape: green fading to blue hues", + "tail: long, split central feathers", + "throat: white feathered patch" + ], + "green heron": [ + "back: dark green, smooth feathers", + "beak: long, sharp, dagger-like", + "belly: light-colored, grayish-green plumage", + "breast: grayish-green, white streaks", + "crown: dark blackish-green, sleek", + "forehead: greenish-black, blending with crown", + "eyes: bright yellow, focused gaze", + "legs: long, yellowish, and slender", + "wings: green, blue, black feathers intermingled", + "nape: greenish, sometimes with white spots", + "tail: short, dark green, square-shaped", + "throat: white to gray, sometimes streaked" + ], + "green honeycreeper": [ + "back: vibrant green feathers", + "beak: long and black", + "belly: light green scaling down", + "breast: bright blue plumage", + "crown: shimmering green-blue", + "forehead: smooth blue-green gradient", + "eyes: small and dark", + "legs: slim, black limbs", + "wings: green feathers with dark edges", + "nape: brilliant green-blue hue", + "tail: elongated green feathers", + "throat: deep blue patch" + ], + "green hylia": [ + "back: vibrant green feathers", + "beak: small, curved, and black", + "belly: light yellow-green plumage", + "breast: soft greenish-yellow feathers", + "crown: bright green crest", + "forehead: sleek green feathers", + "eyes: dark, round, and alert", + "legs: slender, gray and sturdy", + "wings: green blending to yellow with white streaks", + "nape: slightly darker green transitioning from crown", + "tail: long, green, and narrow with white tips", + "throat: yellow-green feathers with subtle detail" + ], + "green ibis": [ + "back: vibrant green feathers", + "beak: long, slender, curved", + "belly: pale green, soft plumage", + "breast: iridescent green chest feathers", + "crown: glossy green with a slight crest", + "forehead: smooth, bright green", + "eyes: small, dark, piercing gaze", + "legs: long, slender, adaptable wading legs", + "wings: broad, wide-spanning, green flight feathers", + "nape: emerald green connecting head and back", + "tail: fan-shaped, green feathers with a slight iridescence", + "throat: light green, smooth feathers" + ], + "green imperial pigeon": [ + "back: smooth green plumage", + "beak: short and curved, grayish color", + "belly: pale green with a hint of grayish-blue", + "breast: vibrant green with blue sheen", + "crown: glossy green and smooth feathers", + "forehead: bright green plumage, fades into the crown", + "eyes: dark with a thin eye-ring", + "legs: strong and gray, scaled", + "wings: vibrant green with a hint of blue, broad and rounded", + "nape: pale green, smooth feather transition", + "tail: square-shaped, shimmering green-blue feathers", + "throat: light green with a silver sheen" + ], + "green inca": [ + "back: vibrant green feathers", + "beak: short, slightly curved, black", + "belly: shimmering green hue", + "breast: iridescent green plumage", + "crown: brilliant green with crest-like feathers", + "forehead: gleaming emerald feathers", + "eyes: large, dark, surrounded by green feathers", + "legs: strong and slender, black with green tinge", + "wings: deep green with a metallic sheen", + "nape: radiant green, smoothly transitioning from the crown", + "tail: elongated, iridescent green with fine black lines", + "throat: bright green with subtle scale-like pattern" + ], + "green indigobird": [ + "back: vibrant green feathers", + "beak: short, sharp, black", + "belly: pale green with slight streaks", + "breast: bright green, slightly puffed", + "crown: iridescent green crest", + "forehead: shiny green feathers", + "eyes: small, black, alert", + "legs: slender, greyish-blue", + "wings: green with hints of blue, streamlined", + "nape: green feathers fading to blue", + "tail: long, tapering, green-blue", + "throat: brilliant green, smooth" + ], + "green iora": [ + "back: vibrant green feathers", + "beak: short, dark, sharply pointed", + "belly: light yellow-green underparts", + "breast: brighter yellow-green plumage", + "crown: dark green with a subtle crest", + "forehead: bold emerald tinge", + "eyes: small, black, with light eye rings", + "legs: thin, greyish-brown", + "wings: green with black and yellow highlights", + "nape: rich green with smooth feathering", + "tail: green with black central feathers and yellow tips", + "throat: bright yellow-green patch" + ], + "green jery": [ + "back: vibrant green feathers", + "beak: small, sharp, and black", + "belly: pale green with fine streaks", + "breast: bright green with subtle markings", + "crown: smooth dark green feathers", + "forehead: lighter shade of green", + "eyes: round and black with a soft white ring", + "legs: dark gray with slender toes", + "wings: vivid green, broad, and rounded", + "nape: deep green feathers smoothly connected to the crown", + "tail: long, tapered, and green with darker tips", + "throat: faintly-striped green area leading to breast" + ], + "green junglefowl": [ + "back: vibrant green iridescent feathers", + "beak: strong, slightly curved, yellowish-gray", + "belly: creamy white", + "breast: bright red-orange", + "crown: lustrous emerald green", + "forehead: blue-green with small crest", + "eyes: dark brown with white eyelid", + "legs: long, grayish-blue with sharp claws", + "wings: greenish-brown with intricate patterns", + "nape: shiny greenish-blue feathers", + "tail: elongated, greenish-black with white accents", + "throat: light cream with fine feathering" + ], + "green longtail": [ + "back: vibrant green plumage", + "beak: slim, sharp, slightly curved", + "belly: lighter green hue", + "breast: shimmering green feathers", + "crown: rich green, smooth texture", + "forehead: sleek, bright green", + "eyes: small, dark beads", + "legs: long, slender, grayish-green", + "wings: emerald-toned, elongated feathers", + "nape: golden-green, slight curve", + "tail: extended, thin, lime-green streamers", + "throat: soft green, smooth silhouette" + ], + "green malkoha": [ + "back: vibrant green fading to blue", + "beak: slightly curved, blackish", + "belly: greenish-yellow with black bars", + "breast: pale green, barred", + "crown: iridescent green-blue", + "forehead: bright green, slightly rounded", + "eyes: dark with white inner circle", + "legs: strong, dark grey", + "wings: green-blue, long with broad feathers", + "nape: iridescent blue-green, narrow", + "tail: long, graduated, green with black bands", + "throat: pale green with black bars" + ], + "green manakin": [ + "back: vibrant green feathers for camouflage", + "beak: small, pointed, black beak for berry consumption", + "belly: light green underbelly for better blending", + "breast: bright green feathers for visual attraction", + "crown: green and slightly raised for a distinct appearance", + "forehead: smooth green feathers meeting at a point", + "eyes: rounded, dark eyes for sharp vision", + "legs: short and slender legs for perching on branches", + "wings: green primaries and secondaries for quick, agile flight", + "nape: light green feathers covering the back of the neck", + "tail: short, green, fan-like feathers for balance in flight", + "throat: light green feathers, blending seamlessly with the breast" + ], + "green mango": [ + "back: vibrant green feathers", + "beak: thin, curved, pale yellow", + "belly: lighter green shade with soft feathers", + "breast: emerald green plumage", + "crown: striking green crest on the head", + "forehead: smooth and bright green", + "eyes: small, round, and black", + "legs: slender, grayish-brown", + "wings: vivid green with extended feathers", + "nape: rich green feathers, slightly darker than crown", + "tail: long, tapering green feathers with darker tips", + "throat: pale green merging into the breast" + ], + "green oriole": [ + "back: vibrant green feathers", + "beak: sharp, curved, silver", + "belly: light yellow-green hue", + "breast: bright yellow plumage", + "crown: deep green crest", + "forehead: lime-green sheen", + "eyes: piercing black orbs", + "legs: strong, grayish-blue", + "wings: mix of green and yellow feathers", + "nape: rich emerald coloring", + "tail: lengthy, green and yellow feathers", + "throat: pale yellow feathering" + ], + "green parakeet": [ + "back: vibrant green feathers covering the main body", + "beak: strong, curved, beige-colored beak", + "belly: lighter shade of green feathers on the lower body", + "breast: bright green feathers on the upper chest area", + "crown: smooth, flat, emerald-green feathers on top of the head", + "forehead: flattened area above the beak with vivid green feathers", + "eyes: round, black eyes with a white ring around them", + "legs: two slender, gray legs with sharp claws for perching", + "wings: long, green feathers for powerful flight capabilities", + "nape: area at the base of the neck with slightly darker green feathers", + "tail: extended, slim green feathers for balance and maneuverability", + "throat: soft, lime green feathers on the front of the neck" + ], + "green peafowl": [ + "back: vibrant green and blue feathers", + "beak: strong, curved, pale grey", + "belly: metallic green-blue plumage", + "breast: iridescent blue-green feathers", + "crown: sleek bluish-green crest", + "forehead: smooth feathers, blue-green hue", + "eyes: deep brown, alert gaze", + "legs: sturdy, greyish-brown, scaled", + "wings: sweeping, blue-green with eye-spots", + "nape: gleaming green and blue plumage", + "tail: long, elegant train, with iridescent eye-spots", + "throat: greenish-blue, shimmering feathers" + ], + "green pheasant": [ + "back: verdant, elongated feathers", + "beak: sharp, sturdy, pale yellow", + "belly: greenish-yellow, fluffy plumage", + "breast: iridescent green chest feathers", + "crown: shimmering emerald crest", + "forehead: bright green, smooth feathers", + "eyes: dark, piercing gaze", + "legs: long, slender, yellowish-green", + "wings: rich green, wide-spread feathers", + "nape: gracefully curved, green plumes", + "tail: lengthy, green-barred feathers", + "throat: vibrant green, sleek plumage" + ], + "green pygmy goose": [ + "back: olive-green feathers with blackish edges", + "beak: short, light gray with black tip", + "belly: white with pale green sheen", + "breast: pale gray with greenish shine", + "crown: dark green with subtle iridescence", + "forehead: smooth green transitioning to darker crown", + "eyes: brown with a white eye-ring", + "legs: short, dark gray, and partially webbed", + "wings: iridescent green with black and white markings", + "nape: dark green with faint sheen", + "tail: black with white edges, slightly fan-shaped", + "throat: pale gray with lighter feather highlights" + ], + "green racquet tail": [ + "back: vibrant green feathers", + "beak: short, hooked, and black", + "belly: lighter green plumage", + "breast: bright green feathers", + "crown: green with a rounded shape", + "forehead: slightly lighter green plumage", + "eyes: small, black, and round", + "legs: gray with sharp, curved claws", + "wings: iridescent green, large, and pointed", + "nape: green transitioning to a lighter shade", + "tail: elongated green feathers with unique racket-like shape", + "throat: slightly paler green feathers" + ], + "green rosella": [ + "back: rich green feathers covering the main body", + "beak: strong, hooked upper beak and lower mandible", + "belly: lighter green plumage with yellow undertones", + "breast: vibrant yellow feathers with patches of red", + "crown: bright green feathers at the top of the head", + "forehead: brilliant green feathers above the eyes", + "eyes: dark, expressive eyes surrounded by a vivid green mask", + "legs: gray scaly legs with four zygodactylous toes", + "wings: deep green flight feathers with blue on outer edges", + "nape: rich green feathers connecting the crown to the back", + "tail: long, green and blue feathers with a yellow tip", + "throat: light green plumage blending into the breast area" + ], + "green sandpiper": [ + "back: olive-green with dark speckles", + "beak: long, straight, and dark", + "belly: white with light greenish hue", + "breast: pale grayish-green with faint streaks", + "crown: dark green with a white eyestripe", + "forehead: greenish-gray with a dark central streak", + "eyes: dark with a white eyering", + "legs: bright yellow-green", + "wings: dark green with white edgings", + "nape: greenish-gray with streaks", + "tail: dark green with white outer feathers", + "throat: white with a hint of green" + ], + "green shrike babbler": [ + "back: vibrant green feathers", + "beak: black, hooked tip", + "belly: yellowish-green hue", + "breast: lighter green shades", + "crown: green with slight crest", + "forehead: bright green plumage", + "eyes: dark, piercing gaze", + "legs: grayish blue", + "wings: green with dark flight feathers", + "nape: light green feathering", + "tail: long, green with black banding", + "throat: pale green-yellow" + ], + "green shrike vireo": [ + "back: vibrant green feathering", + "beak: short and stout, sharp hook", + "belly: pale yellow, soft plumage", + "breast: light green, smooth feathers", + "crown: bright green, defined crest", + "forehead: rich green, small feathers", + "eyes: dark and beady, black ring", + "legs: slender and grayish, strong grip", + "wings: vivid green, patterned feathers", + "nape: pale green, slightly curved", + "tail: long and narrow, green hues", + "throat: soft yellow, delicate feathers" + ], + "green thorntail": [ + "back: vibrant green with iridescent feathers", + "beak: slender, long, and black", + "belly: soft white with a hint of green", + "breast: brilliant green and slightly puffed", + "crown: sparkling green plumage", + "forehead: bright green with a curved shape", + "eyes: round and black with a white ring", + "legs: slender, black, and perched", + "wings: long and green with swift beats", + "nape: lustrous green feathers meeting the wings", + "tail: elegant white plumes with a forked shape", + "throat: gleaming green transitioning into white" + ], + "green tinkerbird": [ + "back: vibrant green feathers covering the upper body", + "beak: small, sharp, and black in color", + "belly: light green with slight yellow tint", + "breast: underside with shades of green and yellow", + "crown: radiant green head feathers", + "forehead: bright green with a smooth feather pattern", + "eyes: small, round, and black in color", + "legs: extended, strong, black in color and scaly", + "wings: green feathers with varying shades and dark edges", + "nape: blended green gradient at the base of the head", + "tail: long, pointy feathers with a mix of green hues", + "throat: light green, adjoining the breast and belly" + ], + "green warbler finch": [ + "back: vibrant green plumage", + "beak: small, pointed, dark-gray", + "belly: pale yellow-green hue", + "breast: light green with soft streaks", + "crown: bright green with faint stripes", + "forehead: greenish-yellow feathers", + "eyes: black, lively, encircled by pale gray", + "legs: slender, dark-gray", + "wings: rich green, short, rounded", + "nape: green, merging with the crown", + "tail: medium-length, greenish-gray", + "throat: muted yellow with delicate markings" + ], + "green white eye": [ + "back: vibrant green feathers", + "beak: small, sharp, and curved", + "belly: light green with subtle white markings", + "breast: bright green plumage", + "crown: rich green crest on the head", + "forehead: emerald green with a white eye-ring", + "eyes: large, black with a white eye-ring", + "legs: slender and grayish", + "wings: green with darker flight feathers", + "nape: green with white eye-ring extending around it", + "tail: elongated, green feathers with white tips", + "throat: pale green with fine white streaks" + ], + "green woodhoopoe": [ + "back: vibrant green iridescent feathers", + "beak: long, slender, curved black bill", + "belly: soft green shade with a slight sheen", + "breast: shimmering green-turquoise plumage", + "crown: metallic green head feathers", + "forehead: glossy green forepart of the head", + "eyes: round, dark, and expressive", + "legs: slim, dark grey, and sturdy", + "wings: elongated green feathers with metallic blue spots", + "nape: iridescent green plumage on the back of the neck", + "tail: elongated green tail feathers with a white tip", + "throat: glossy green feathers with a hint of blue sheen" + ], + "green and black fruiteater": [ + "back: vibrant green, feathered", + "beak: short, hooked, black", + "belly: light green, soft feathers", + "breast: bright green plumage", + "crown: forest green, smooth feathers", + "forehead: dark green, sleek", + "eyes: round, black, alert", + "legs: sturdy, dark grey", + "wings: mixed green and black, long feathers", + "nape: rich green, curved plumage", + "tail: green and black, fan-shaped", + "throat: lighter green, short feathers" + ], + "green and gold tanager": [ + "back: vibrant green feathers", + "beak: short and sturdy, black", + "belly: shimmering golden hue", + "breast: rich golden-yellow feathers", + "crown: emerald green plumage", + "forehead: bright green feathers", + "eyes: deep black with white surrounding", + "legs: grayish, slender limbs", + "wings: mix of green and gold feathers", + "nape: lush green feathers", + "tail: long and green with gold highlights", + "throat: radiant golden-yellow color" + ], + "green and rufous kingfisher": [ + "back: vibrant green feathers covering the upper body", + "beak: long, sturdy, and sharp for catching prey", + "belly: light green and white mix, softly blending into the breast", + "breast: bright orange-rufous feathers fading into belly", + "crown: rich green feathers on the top part of the head", + "forehead: vivid green, just above the eyes and leading into the crown", + "eyes: black, focused, and alert, surrounded by green feathers", + "legs: slim, strong, and lightly feathered for perching on branches", + "wings: green plumage with blue-tipped secondaries for agile flight", + "nape: green transition from crown to back of the bird", + "tail: long, green feathers with blue stripes, aiding in swift movements", + "throat: elegant white feathers meeting the rufous breast" + ], + "green and white hummingbird": [ + "back: vibrant green feathers", + "beak: long, slender, and black", + "belly: soft white plumage", + "breast: white with a hint of green", + "crown: iridescent green", + "forehead: bright green feathers", + "eyes: small, black, alert", + "legs: dainty and dark grey", + "wings: rapid, glinting green", + "nape: rich green hue", + "tail: fan-shaped, green and white", + "throat: gleaming white patch" + ], + "green backed becard": [ + "back: vibrant green feathers", + "beak: short, hooked black bill", + "belly: pale yellow plumage", + "breast: white with light yellow highlights", + "crown: greenish-black with slight crest", + "forehead: transition from greenish-black to bright green", + "eyes: small, dark, encircled with thin white eye-ring", + "legs: dark gray, thin, and sturdy", + "wings: bright green with darker flight feathers", + "nape: vivid green, connecting with the crown", + "tail: elongated feathers, dark green with black banding", + "throat: pristine white, contrasting with breast and belly" + ], + "green backed camaroptera": [ + "back: vibrant green feathers", + "beak: small, sharp, black", + "belly: pale yellow plumage", + "breast: muted yellow feathers", + "crown: sleek green crest", + "forehead: bright green feathers", + "eyes: small, round, black", + "legs: thin, grey, agile", + "wings: vibrant green, medium length", + "nape: light green, curved neck", + "tail: short, fan-shaped, green", + "throat: light yellow feathers" + ], + "green backed eremomela": [ + "back: vibrant green feathers", + "beak: small, sharp, and dark", + "belly: light yellow and soft", + "breast: yellowish-green plumage", + "crown: green with a slight crest", + "forehead: bright green and smooth", + "eyes: round, black, and alert", + "legs: thin and dark gray", + "wings: green with visible flight feathers", + "nape: green and slightly raised", + "tail: green, long, and slightly forked", + "throat: yellow and feathered" + ], + "green backed firecrown": [ + "back: vibrant green feathers", + "beak: elongated, slender black", + "belly: white with greenish hue", + "breast: white with iridescent bronze", + "crown: shiny green cap", + "forehead: iridescent green with black border", + "eyes: dark round with white eye-ring", + "legs: short dark-gray", + "wings: iridescent green-black with rapid movement", + "nape: metallic green patch", + "tail: glossy dark with forked center", + "throat: bright orange-red hues" + ], + "green backed flycatcher": [ + "back: vibrant green feathers", + "beak: short, sharp, black", + "belly: white beneath green feathers", + "breast: green with white undertones", + "crown: bright green plumage", + "forehead: green with slight curve", + "eyes: dark, alert, round", + "legs: thin, grey, strong", + "wings: green on top, white on bottom", + "nape: green with feathered neckline", + "tail: long, green with white tips", + "throat: white patch below beak" + ], + "green backed gerygone": [ + "back: vibrant green feathers", + "beak: small and sharp", + "belly: pale, cream color", + "breast: light yellowish hue", + "crown: green with streaks", + "forehead: green-colored plumage", + "eyes: tiny black dots", + "legs: slender and gray", + "wings: green with subtle barring", + "nape: green with slight streaks", + "tail: long and greenish-brown", + "throat: pale with yellow undertones" + ], + "green backed hillstar": [ + "back: vibrant green plumage", + "beak: slender and slightly curved", + "belly: soft cream feathers", + "breast: shimmering green gradient", + "crown: iridescent emerald green", + "forehead: bright green patch", + "eyes: small, dark, and alert", + "legs: thin, black, and sturdy", + "wings: elongated and pointed", + "nape: metallic green hue", + "tail: forked and dark-feathered", + "throat: dazzling golden-green" + ], + "green backed honeyeater": [ + "back: vibrant green feathers", + "beak: slender, slightly-curved, black", + "belly: pale yellow with green hues", + "breast: bright, yellow feathers", + "crown: emerald green, slightly raised", + "forehead: bright green, smooth feathers", + "eyes: small, dark, with light eyering", + "legs: thin, gray, with strong claws", + "wings: green, patterned, with yellow edges", + "nape: rich green plumage, slight crest", + "tail: long, green feathers, with yellow tips", + "throat: bright yellow, contrasting with breast" + ], + "green backed honeyguide": [ + "back: bright green with slightly darker feathers", + "beak: short and sharply hooked, blackish color", + "belly: pale whitish-yellow with faint streaks", + "breast: yellowish-white with diffuse streaks", + "crown: greenish-gray with subtle streaks", + "forehead: smooth greenish-gray", + "eyes: dark brown with pale eye-ring", + "legs: dark gray, slender and strong", + "wings: greenish-brown with bold white edges", + "nape: greenish-gray, slightly paler than crown", + "tail: dark greenish-brown with white tips", + "throat: whitish-yellow, merging with breast" + ], + "green backed kingfisher": [ + "back: vibrant green feathers with slight iridescence", + "beak: long, black, and slightly curved", + "belly: pale blueish-white with faint streaks", + "breast: light blue feathers transitioning into the paler belly", + "crown: bright green and slightly raised crest", + "forehead: vivid green with a smooth texture", + "eyes: small, round, and black with a keen gaze", + "legs: short, strong, and bright red-orange", + "wings: green with darker blueish-black flight feathers", + "nape: rich green, connecting the crown and back", + "tail: long, green, and subtly forked with dark blue tips", + "throat: brilliant turquoise-blue with a hint of white" + ], + "green backed robin": [ + "back: vibrant green feathers", + "beak: short, sharp, and black", + "belly: off-white with faint speckles", + "breast: bright orange-red", + "crown: deep green with a hint of blue", + "forehead: forest green", + "eyes: round, dark, and alert", + "legs: sturdy and slate-gray", + "wings: long, green with intricate feather patterns", + "nape: green-blues blend seamlessly", + "tail: fan-shaped, green with white tips", + "throat: pale, subtle green" + ], + "green backed sparrow": [ + "back: vibrant green feathers", + "beak: sharp, black, conical shape", + "belly: pale yellow with subtle streaks", + "breast: creamy white with greyish tinges", + "crown: olive green with well-defined central stripe", + "forehead: smooth, light green transition to crown", + "eyes: round, black, and alert", + "legs: slender, reddish-brown, strong", + "wings: greenish-brown with white edging", + "nape: olive green with distinctive streaking", + "tail: long, brown with noticeable white corners", + "throat: pale white, smooth transition to breast" + ], + "green backed tailorbird": [ + "back: vibrant green feathers", + "beak: slim, pointy, and dark", + "belly: white to pale yellow feathers", + "breast: light green to yellowish-green plumage", + "crown: green with rufous-colored patch", + "forehead: bright green plumage", + "eyes: small, black, alert", + "legs: slim, light grey, with strong claws", + "wings: green with dark flight feathers", + "nape: rich green feathers", + "tail: long, narrow, dark with a hint of green", + "throat: pale yellow, slightly rufous" + ], + "green backed tit": [ + "back: vibrant green feathers", + "beak: small, pointed, black", + "belly: white with yellow tinge", + "breast: white and fluffy", + "crown: green and spikey", + "forehead: bright green plumage", + "eyes: round, black, alert", + "legs: thin, gray, agile", + "wings: multicolored, strong", + "nape: green, feathered", + "tail: long, green, fanned", + "throat: white with black streaks" + ], + "green backed trogon": [ + "back: vibrant green feathers", + "beak: short, stout, pale yellow", + "belly: white with light green undertones", + "breast: rich yellowish-green", + "crown: shimmering green head", + "forehead: bright green plumage", + "eyes: dark, round, and alert", + "legs: sturdy, grey-blue", + "wings: iridescent green with black markings", + "nape: gradient from green to yellowish-green", + "tail: long, emerald green, white band at the tip", + "throat: pale yellow, green fading" + ], + "green backed twinspot": [ + "back: vibrant green with a spotted pattern", + "beak: short, sharp and silver-grey", + "belly: pale yellow with orange-red speckles", + "breast: vivid orange-red with white spots", + "crown: green with fine black streaks", + "forehead: greenish with a faint black stripe", + "eyes: black and beady, encircled by thin white rings", + "legs: slim and greyish-brown", + "wings: iridescent green with black and white bars", + "nape: green with fine black streaks", + "tail: long and pointed, green with white tips", + "throat: bright orange-red with a white patch" + ], + "green backed whistler": [ + "back: vibrant green feathers", + "beak: slender, straight, and dark", + "belly: light yellow plumage", + "breast: bright yellow feathers", + "crown: green with yellow highlights", + "forehead: green with thin yellow streaks", + "eyes: small, dark, and alert", + "legs: thin, dark, and agile", + "wings: green with yellow edges", + "nape: green with subtle yellow markings", + "tail: long, green, and fan-shaped", + "throat: light yellow with soft feathers" + ], + "green backed white eye": [ + "back: vibrant green feathers covering the dorsal side", + "beak: small, sharp, and pointed for pecking insects", + "belly: pale white underside with a hint of green", + "breast: white plumage blending into the green back", + "crown: green feathers smoothly transitioning from the forehead", + "forehead: bright green plumage tapering to the eyes", + "eyes: striking white eye-ring surrounding dark, round pupils", + "legs: slender, grayish-brown limbs with sharp talons", + "wings: bold green feathers designed for agile flight", + "nape: green plumage seamlessly connecting the crown and back", + "tail: green feathers that fan out for balance and maneuverability", + "throat: white feathers blending with the breast and belly" + ], + "green backed woodpecker": [ + "back: green feathers with black speckles", + "beak: strong, grey chisel-shaped", + "belly: off-white with black spots", + "breast: vibrant red patch", + "crown: bright red crest", + "forehead: red extends to the forehead", + "eyes: circular, dark brown with white rings", + "legs: sturdy, grey with sharp claws", + "wings: green with black-bordered white spots", + "nape: green with black speckles", + "tail: black and white barred feathers", + "throat: soft gray with faint speckles" + ], + "green barred woodpecker": [ + "back: dark green with thin black bars", + "beak: sturdy, chisel-like grayish beak", + "belly: pale with sparse green bars", + "breast: light green with faint black bars", + "crown: red or rusty-brown crest", + "forehead: light green bordering the beak", + "eyes: black with white eyelids", + "legs: grayish with three strong toes", + "wings: dark green with black bars and white spots", + "nape: light green with black bars", + "tail: green and black barred with stiff central feathers", + "throat: light green with faint black streaks" + ], + "green bearded helmetcrest": [ + "back: vibrant green feathers", + "beak: long, slender black beak", + "belly: lighter green plumage", + "breast: bright green with iridescent sheen", + "crown: green feathers with metallic blue crest", + "forehead: metallic blue band above the eyes", + "eyes: dark, beady eyes", + "legs: black, small, and agile", + "wings: green with strong, pointed flight feathers", + "nape: green plumage connecting crown and back", + "tail: long, iridescent green feathers with black tips", + "throat: white beard-like tuft of feathers" + ], + "green bellied hummingbird": [ + "back: shimmering emerald green feathers", + "beak: long, thin, and slightly curved", + "belly: lighter green with a white undertone", + "breast: iridescent greenish-blue plumage", + "crown: bright, radiant green", + "forehead: metallic green feathers", + "eyes: small, dark, and alert", + "legs: short, slender, with tiny claws", + "wings: rapid, blurred movement in shades of green", + "nape: deep green, transitioning to the crown", + "tail: squared-off, green feathered tips", + "throat: vibrant green transitioning to the breast" + ], + "green billed coucal": [ + "back: dark green feathers", + "beak: thick, greenish-yellow", + "belly: blackish-brown with green gloss", + "breast: dark green with slight iridescence", + "crown: blackish with green sheen", + "forehead: sleek, dark green feathers", + "eyes: dark with a hint of green", + "legs: sturdy, greenish-gray", + "wings: green and black feathers with blue iridescence", + "nape: dark green, transitioning to the back", + "tail: long, blackish-green feathers with iridescent highlights", + "throat: glossy dark green feathers" + ], + "green billed malkoha": [ + "back: shades of green and dark brown, extended pattern", + "beak: vivid green, curved and slightly hooked", + "belly: soft pale green with brown spots", + "breast: grayish-green, narrow bars", + "crown: blackish-brown with a short crest", + "forehead: light green transitioning to brownish crest", + "eyes: surround by blue, small and sharp", + "legs: greyish-brown, slender and strong", + "wings: mix of greens and browns, overlapping feathers", + "nape: light green, blending into back pattern", + "tail: elongated greenish feathers, white tips", + "throat: light green, tinged with grey-brown" + ], + "green breasted bushshrike": [ + "back: vibrant green plumage", + "beak: strong, sharp, and black", + "belly: bright green with yellowish tinge", + "breast: striking green feathers", + "crown: vivid green, slightly raised", + "forehead: rich green hue", + "eyes: dark brown with a keen gaze", + "legs: sturdy and grayish-brown", + "wings: deep green with hints of blue", + "nape: lighter green, smooth transition from crown", + "tail: elongated, vivid green with dark tips", + "throat: vivid green with soft feather texture" + ], + "green breasted mango": [ + "back: vibrant green feathers", + "beak: long, curved, black", + "belly: bright yellow plumage", + "breast: green with iridescent sheen", + "crown: emerald green headcap", + "forehead: green fusing into yellow", + "eyes: dark, surrounded by white ring", + "legs: gray, slender", + "wings: shiny green with hints of blue", + "nape: green, connecting to the crown", + "tail: elongated, feathers in shades of green", + "throat: green, smoothly connecting to belly" + ], + "green breasted mountain gem": [ + "back: vibrant green feathers", + "beak: slender and sharp", + "belly: lighter green hue", + "breast: bright emerald green", + "crown: iridescent green head", + "forehead: shimmering green fringes", + "eyes: small and dark", + "legs: thin and delicate", + "wings: fast-beating green plumage", + "nape: rich green, meeting crown", + "tail: elongated, forked feathers", + "throat: brilliant green plumage" + ], + "green breasted pitta": [ + "back: vibrant green feathers covering the upper body", + "beak: strong, black, slightly curved beak", + "belly: rich orange-yellow lower body feathers", + "breast: bold, blue-green plumage on the upper chest", + "crown: striking green feathers atop the head", + "forehead: prominent blue stripe above the eyes", + "eyes: round, black, and alert", + "legs: sturdy, long, pale pink legs", + "wings: rich green primary feathers with blue edges", + "nape: blue and green plumage on the back of the neck", + "tail: elongated, green feathers with black and white bands", + "throat: bright yellow feathers transitioning into the breast" + ], + "green capped tanager": [ + "back: vibrant green feathers", + "beak: small and sharply pointed", + "belly: yellowish-green hue", + "breast: light green plumage", + "crown: striking emerald green", + "forehead: rich green coloration", + "eyes: small, dark, and keen", + "legs: slender and grayish", + "wings: bright green with darker tips", + "nape: brilliant green sheen", + "tail: long and green with black tips", + "throat: lime-green feathering" + ], + "green cheeked parakeet": [ + "back: vibrant green feathers", + "beak: short, beige, hooked", + "belly: lighter green feathers", + "breast: green with a hint of blue", + "crown: green feathers with darker accents", + "forehead: bright yellowish-green", + "eyes: round, black, expressive", + "legs: grayish-blue, nimble", + "wings: green and blue mixed feathers", + "nape: green with a subtle blue tint", + "tail: long, blue and green feathers", + "throat: lighter green, almost yellowish" + ], + "green crowned brilliant": [ + "back: vibrant green feathers", + "beak: long, straight, and slender", + "belly: lighter green with a white patch", + "breast: iridescent green plumage", + "crown: bright, metallic green", + "forehead: shimmering emerald green", + "eyes: small, dark, and round", + "legs: thin and greyish-brown", + "wings: green and quickly flapping", + "nape: green with subtle blue highlights", + "tail: long, green, and slightly forked", + "throat: white with a hint of green shimmer" + ], + "green crowned plovercrest": [ + "back: vibrant green with darker streaks", + "beak: slender, black and slightly curved", + "belly: pale beige with soft green undertones", + "breast: iridescent golden-green plumage", + "crown: stunning green crest with spiky feathers", + "forehead: bright green with touches of radiant gold", + "eyes: deep black with alert expression", + "legs: thin, grayish-brown with sharp claws", + "wings: mixed green and brown feathers with lighter fringes", + "nape: rich green coloration fading to lighter hues", + "tail: elongated, brownish-green feathers with white tips", + "throat: shimmering light green with golden hues" + ], + "green crowned warbler": [ + "back: olive green with streaks", + "beak: thin, sharp, black", + "belly: pale yellow", + "breast: yellow with faint streaks", + "crown: bright green with white streak", + "forehead: mix of green and yellow", + "eyes: black with white eyering", + "legs: slender, grayish-brown", + "wings: olive green with white bars", + "nape: green transitioning to yellow", + "tail: slightly forked, olive green with white tips", + "throat: bright yellow" + ], + "green eared barbet": [ + "back: green feathers with black and white markings", + "beak: short, stout, hooked black beak", + "belly: mixed green and dull yellow plumage", + "breast: green feathers with white streaks", + "crown: mostly green with red and yellow markings", + "forehead: bright green with a touch of blue", + "eyes: beady black eyes", + "legs: grayish, sturdy, and slightly feathered", + "wings: green with blackish-blue flight feathers", + "nape: green blending to blue on the lower part", + "tail: green with blue-tipped feathers", + "throat: patchy white and green feathers" + ], + "green faced parrotfinch": [ + "back: vibrant green feathers", + "beak: small, red, curved tip", + "belly: bright blue plumage", + "breast: radiant blue feathers", + "crown: emerald green crest", + "forehead: lime-green hue", + "eyes: small, black, surrounded by green feathers", + "legs: short, red, perched on branches", + "wings: green and blue, swift movement", + "nape: yellowish-green feathers", + "tail: elongated, green and blue feathers", + "throat: rich blue coloring" + ], + "green fronted hanging parrot": [ + "back: vibrant green feathers", + "beak: curved, sharp, coral-red", + "belly: lighter green plumage", + "breast: bright lime green", + "crown: emerald green accents", + "forehead: brilliant green patch", + "eyes: dark, beady, perceptive", + "legs: grey, thin, strong", + "wings: green, long, tapered", + "nape: rich forest green", + "tail: green feathers, fan-shaped", + "throat: lime yellowish-green" + ], + "green fronted hummingbird": [ + "back: vibrant green, tapering down", + "beak: long, slender, blackish", + "belly: pale grayish-white, feathery", + "breast: brilliant green, shimmering", + "crown: bright green, almost iridescent", + "forehead: vivid green, striking", + "eyes: small, dark, side placement", + "legs: short, nearly invisible, black", + "wings: rapid beats, iridescent green edges", + "nape: green-hued, on lighter side", + "tail: short, forked, dark green", + "throat: fiery green, glistening" + ], + "green fronted lancebill": [ + "back: vibrant green feathers", + "beak: long, slender, and curved", + "belly: pale yellow-green hue", + "breast: iridescent green plumage", + "crown: shimmering green with a crested appearance", + "forehead: bright green and smooth", + "eyes: small, black, and alert", + "legs: thin and pale grey", + "wings: tapered, green with white accents", + "nape: green feathers connecting to the crown", + "tail: long, streamer-like, and green", + "throat: brilliant green with smoother feathers" + ], + "green headed hillstar": [ + "back: vibrant green with iridescent sheen", + "beak: long, thin, and slightly curved", + "belly: soft white with greenish tinge", + "breast: gleaming green with feathered texture", + "crown: bright green with metallic shine", + "forehead: shimmering green, leading into crown", + "eyes: round and black, encircled by green feathers", + "legs: slim and grayish, with sharp claws", + "wings: elongated, iridescent green, fast in flight", + "nape: brilliant green, connecting crown to back", + "tail: long, slender, green feathers with white tips", + "throat: metallic green, transitioning to white at the belly" + ], + "green headed oriole": [ + "back: vibrant green feathers", + "beak: sharp, slightly curved, black", + "belly: yellowish-green hue", + "breast: bright green plumage", + "crown: bold green with a slight crest", + "forehead: rich green tint", + "eyes: dark, expressive, outlined in green", + "legs: thin, charcoal gray, sturdy", + "wings: dazzling green with black edges", + "nape: bright green, connecting crown and back", + "tail: long, flowing green and black feathers", + "throat: striking green merging into the breast" + ], + "green headed sunbird": [ + "back: vibrant green feathers", + "beak: long, slender, and curved", + "belly: olive-yellow plumage", + "breast: iridescent green hue", + "crown: shimmering emerald green", + "forehead: bright green shine", + "eyes: small, dark, and round", + "legs: slender and grayish-brown", + "wings: shimmering green and violet", + "nape: radiant green feathers", + "tail: elongated, dark, and forked", + "throat: dazzling metallic blue-green" + ], + "green headed tanager": [ + "back: vibrant turquoise feathers", + "beak: black, pointed, and thin", + "belly: bright lime green", + "breast: rich emerald hues", + "crown: metallic green-blue sheen", + "forehead: glossy green shade", + "eyes: small, black, and round", + "legs: dark gray, sturdy limbs", + "wings: striking mix of teal and green feathers", + "nape: iridescent blue-green plumage", + "tail: long, greenish-blue feathers", + "throat: shiny greenish-yellow color" + ], + "green naped tanager": [ + "back: vibrant green feathers", + "beak: pointed, black and strong", + "belly: soft yellow and green mix", + "breast: bright green plumage", + "crown: rich green with blue accents", + "forehead: bright green feathers", + "eyes: dark, alert and expressive", + "legs: slender and grayish", + "wings: green with blue edges", + "nape: yellowish-green gradient", + "tail: long, green-blue feathers", + "throat: bright green with slight yellow tint" + ], + "green rumped parrotlet": [ + "back: vibrant green feathers covering the spine area", + "beak: small, pale grey hooked beak for cracking seeds", + "belly: light green feathers, sometimes slightly yellowish", + "breast: bright green chest area with a hint of yellow", + "crown: green feathers atop the head, slightly darker than the back", + "forehead: lighter green to almost yellow feathers above the beak", + "eyes: small, black, and round with a white eye ring", + "legs: short and grey with sharp claws for perching", + "wings: bright green feathers with blue edges when extended", + "nape: green feathers covering the back of the neck", + "tail: long, narrow feathers in green and blue shades, with darker tips", + "throat: lighter green or yellowish feathers under the beak" + ], + "green striped brushfinch": [ + "back: olive-green feathers covering bird's upper body", + "beak: short, strong, conical-shaped, black beak", + "belly: yellowish-white feathers with faint green streaks", + "breast: light gray with greenish stripes", + "crown: dark green patch on the top of the head", + "forehead: bright green feathers transitioning to darker green on the crown", + "eyes: small, black, encircled by white eye rings", + "legs: slender, pale pinkish-gray legs with strong claws", + "wings: olive-green feathers with black barring and white wing bars", + "nape: green feathers blending from crown to back", + "tail: long, olive-green feathers with black tips", + "throat: pale gray with hint of green, contrasts with breast" + ], + "green tailed bristlebill": [ + "back: vibrant green feathers", + "beak: sharp black curved design", + "belly: lighter green hue, soft feathers", + "breast: rich green, fluffy plumage", + "crown: dark green crest, feathers standing", + "forehead: smooth green transition to beak", + "eyes: dark, round, surrounded by green", + "legs: slender, light grey and strong", + "wings: green, with black streaks, aerodynamic", + "nape: sleek green transition to back", + "tail: long green feathers, streamlined", + "throat: pale green, smooth texture" + ], + "green tailed emerald": [ + "back: vibrant green feathers", + "beak: slender, slightly curved black", + "belly: pale, shimmering green", + "breast: iridescent emerald green", + "crown: brilliant green with slight crest", + "forehead: bright green plumage", + "eyes: small, round with black pupils", + "legs: delicate, black with sharp claws", + "wings: green with black-tipped flight feathers", + "nape: rich green coloration", + "tail: elongated, streamer-like green feathers", + "throat: dazzling metallic green" + ], + "green tailed goldenthroat": [ + "back: vibrant green feathers", + "beak: long, slim, and sharp", + "belly: soft golden-yellow hue", + "breast: rich golden-yellow plumage", + "crown: bright emerald-green crest", + "forehead: smooth, glistening green", + "eyes: small, keen, and black", + "legs: slender and grayish-brown", + "wings: iridescent green with hidden gold accents", + "nape: emerald-green feathers merging into the crown", + "tail: long, shimmering green feathers with golden tips", + "throat: dazzling golden-yellow coloration" + ], + "green tailed jacamar": [ + "back: vibrant green, elongated feathers", + "beak: black, needle-like, slightly curved", + "belly: soft white, with hints of pale green", + "breast: iridescent green, metallic sheen", + "crown: deep green, sleek feathers", + "forehead: shimmering green, smooth and sleek", + "eyes: dark brown, with subtle white eye-ring", + "legs: slender, dark, twig-like", + "wings: blend of greens, with hints of blue, broad and rounded", + "nape: emerald green, smooth feathers", + "tail: mix of bright greens, elongated and pointed feathers", + "throat: white to pale green, smooth transition from breast" + ], + "green tailed sunbird": [ + "back: vibrant green feathers with a shimmering effect", + "beak: slender, curved black beak for sipping nectar", + "belly: soft, pale green underbelly with subtle yellow hues", + "breast: radiant green feathers transitioning into a bright yellow patch", + "crown: iridescent, emerald-green head feathers creating a crown-like appearance", + "forehead: bright green plumage continuing from the crown to the beak", + "eyes: small, round black eyes with an alert and curious expression", + "legs: thin, charcoal gray legs with small, sharp claws for perching", + "wings: elongated, green feathers with a slight blue sheen when in flight", + "nape: brilliant green plumage transitioning to the back feathers", + "tail: elongated, green feathers with hints of blue, gracefully fanning outward", + "throat: golden yellow patch surrounded by radiant green feathers" + ], + "green tailed trainbearer": [ + "back: vibrant green feathers with iridescent sheen", + "beak: long, thin, and slightly curved for nectar feeding", + "belly: subtle greenish-white underbelly", + "breast: bright green plumage with an iridescent glow", + "crown: shimmering green feathers on the head", + "forehead: smooth green feathers transitioning to the crown", + "eyes: round, black, and alert with white eye-ring", + "legs: short, grayish-brown with sharp claws", + "wings: iridescent green color, long, and pointed", + "nape: glittering green feathers, connecting the crown to the back", + "tail: elongated, green tail feathers with structured, train-like appearance", + "throat: greenish-white, bordered by iridescent green breast feathers" + ], + "green tailed warbler": [ + "back: vibrant green feathers", + "beak: small, sharp, and black", + "belly: creamy white with light green streaks", + "breast: pale yellow-green plumage", + "crown: bright green with slight crest", + "forehead: yellow-green hue", + "eyes: dark, beady, surrounded by thin white eye-ring", + "legs: slender, grayish-brown", + "wings: green with black flight feathers and white accents", + "nape: green fading to yellow-green", + "tail: long, thin, and dark green with white outer feathers", + "throat: pale yellow with faint green markings" + ], + "green throated carib": [ + "back: vibrantly colored emerald green", + "beak: long, curved black bill", + "belly: pale grayish-white feathers", + "breast: light green iridescent plumage", + "crown: metallic bluish-green sheen", + "forehead: bright green transitioning to blue", + "eyes: alert, dark beady eyes", + "legs: slim black featherless limbs", + "wings: elongated, shimmering green-blue feathers", + "nape: flash of green transitioning to blue", + "tail: long, deeply forked with white tips", + "throat: radiant bright green iridescence" + ], + "green throated euphonia": [ + "back: vibrant green feathers", + "beak: sturdy, dark gray, conical", + "belly: vivid yellow plumage", + "breast: bright yellow feathers", + "crown: rich green feather crest", + "forehead: contrasting blue patch", + "eyes: small, black, alert", + "legs: slender, grayish blue", + "wings: layered green feathers", + "nape: brilliant green feathers", + "tail: short, dark green feathers", + "throat: striking emerald hue" + ], + "green throated mango": [ + "back: vibrant green feathers", + "beak: long and slightly curved", + "belly: pale-yellow plumage", + "breast: soft green feathers", + "crown: vivid green feathers", + "forehead: bright green plumage", + "eyes: dark and beady", + "legs: slender and black", + "wings: elongated with green and brown feathers", + "nape: greenish-yellow plumage", + "tail: forked with brown and green feathers", + "throat: iridescent green feathers" + ], + "green throated mountain gem": [ + "back: shimmering green feathers", + "beak: slender and black", + "belly: white with green markings", + "breast: iridescent emerald green", + "crown: vibrant green cap", + "forehead: sparkly green plumage", + "eyes: small and black", + "legs: thin and gray", + "wings: metallic green with black tips", + "nape: glittering green neck", + "tail: forked with green and black feathers", + "throat: brilliant green with hints of blue" + ], + "green throated sunbird": [ + "back: vibrant green feathers", + "beak: long, slender, curved", + "belly: pale yellow plumage", + "breast: iridescent green shine", + "crown: bright green crest", + "forehead: dazzling green hue", + "eyes: small, dark, alert", + "legs: thin, agile, gray", + "wings: greenish-blue feathers, swift", + "nape: radiant green, streaked", + "tail: elongated, blue-green feathers", + "throat: brilliant green radiance" + ], + "green throated tanager": [ + "back: vibrant green feathers", + "beak: sharp, black and curved", + "belly: light green with yellow undertones", + "breast: bright green plumage", + "crown: emerald green feathers", + "forehead: forest green hues", + "eyes: dark, round with thin white eye-ring", + "legs: sturdy, black with talons", + "wings: rich green with black edging", + "nape: green with subtle blue reflection", + "tail: long, green feathers with black tips", + "throat: lime green with light streaks" + ], + "green winged pytilia": [ + "back: vibrant green feathers", + "beak: short, conical-shaped", + "belly: white to pale yellow hue", + "breast: bright red plumage", + "crown: olive green with blue highlights", + "forehead: orange-red markings", + "eyes: small, black beady", + "legs: thin, grayish-blue", + "wings: green with a hint of blue, sleek feathers", + "nape: green transitioning to blue", + "tail: long, green-blue, with yellow tip", + "throat: scarlet red with green-blue border" + ], + "green winged saltator": [ + "back: vibrant green feathers", + "beak: strong, conical-shaped", + "belly: pale yellow-green plumage", + "breast: rich olive-green color", + "crown: deep green with a slight crest", + "forehead: bright green feathers", + "eyes: dark and alert with white eye-ring", + "legs: sturdy and grayish", + "wings: green with lighter edges on flight feathers", + "nape: rich green plumage blending into the crown", + "tail: green feathers with distinct markings and white edges", + "throat: light olive-green to yellow hue" + ], + "greencap eremomela": [ + "back: vibrant green feathers", + "beak: small, thin, and curved", + "belly: pale yellowish-green underparts", + "breast: light greenish-yellow feathers", + "crown: olive-green colored", + "forehead: subtle greenish-yellow hue", + "eyes: small and dark, encircled in white", + "legs: slender and pale gray", + "wings: bright green with slightly rounded tips", + "nape: green with olive tinge", + "tail: long, green feathers with gentle curve", + "throat: soft, pale green-yellow tone" + ], + "greenish elaenia": [ + "back: olive-green feathers", + "beak: sharp, black, and triangular", + "belly: pale yellow with faint streaks", + "breast: pale yellow with subtle spots", + "crown: olive-green crest", + "forehead: light olive with a slight yellow tint", + "eyes: small, dark orbs with white eye rings", + "legs: slim, gray, and scaly", + "wings: greenish-brown with wing bars", + "nape: olive-green, narrow, and slightly darker than back", + "tail: dark, greenish-brown with rounded edges", + "throat: pale yellow with faint streaks" + ], + "greenish puffleg": [ + "back: olive-green feathers covering dorsal side", + "beak: slender, black, and slightly curved", + "belly: pale green with yellowish tinge", + "breast: iridescent green feathers", + "crown: glittering golden-green plumage", + "forehead: shiny green feathers blending into crown", + "eyes: small, round, and black", + "legs: short and slender with dark grayish-black hue", + "wings: long, pointed, and iridescent greenish-black", + "nape: golden-green feathers transitioning from crown", + "tail: forked, greenish-black with white outer feathers", + "throat: bright green fading into the breast area" + ], + "greenish schiffornis": [ + "back: vibrant green feathers", + "beak: sharp, slender, and black", + "belly: light green with soft feathering", + "breast: brighter green with subtle markings", + "crown: deep green with uniform color", + "forehead: smooth transition from crown, same deep green", + "eyes: dark, alert, and expressive", + "legs: slender, grayish, and strong", + "wings: green, with black flight feathers", + "nape: rich green plumage, flowing to back", + "tail: long, dark green with black tips", + "throat: pale green, a contrast to the breast" + ], + "greenish tyrannulet": [ + "back: olive-green feathers", + "beak: small, sharp, and black", + "belly: pale yellowish-white", + "breast: soft grayish-green", + "crown: olive-green with a faint crest", + "forehead: grayish-white", + "eyes: dark, beady, encircled by pale eye-ring", + "legs: slender, dark gray", + "wings: olive-green with darker flight feathers", + "nape: grayish-olive", + "tail: long, narrow, olive-green with darkened edges", + "throat: pale grayish-white" + ], + "greenish warbler": [ + "back: olive-green, giving the bird its name", + "beak: thin, pointed, perfect for catching insects", + "belly: pale yellow, contrasts with green upperparts", + "breast: dull yellow, hint of green on the sides", + "crown: greenish-gray, sometimes with faint streaks", + "forehead: bright yellow, stands out against crown", + "eyes: small, dark, with a thin white eye-ring", + "legs: pinkish-brown, well-adapted for perching on branches", + "wings: greenish gray, with white wing-bars", + "nape: olive-green, continuing the color of the back", + "tail: greenish-gray, with white outer feathers", + "throat: bright yellow, matching the forehead and belly" + ], + "greenish yellow finch": [ + "back: vibrant green feathers", + "beak: small, pointed, silver-gray", + "belly: soft, pastel yellow", + "breast: bright yellow plumage", + "crown: rich green crest", + "forehead: light green feathers", + "eyes: round, black, alert", + "legs: slender gray limbs", + "wings: greenish-yellow feathers with black streaks", + "nape: greenish-yellow feathers, darker hue", + "tail: long, greenish-yellow with dark bands", + "throat: bold yellow feathers" + ], + "grenada dove": [ + "back: soft brown feathers with a subtle sheen", + "beak: short and stout, pale grayish color", + "belly: light beige feathers with some brown markings", + "breast: beige feathers with reddish-brown speckles", + "crown: reddish-brown feathers fading to lighter brown", + "forehead: pale beige with a slight reddish tint", + "eyes: dark brown with a thin white eye-ring", + "legs: strong and grayish-brown with sharp claws", + "wings: brown with darker brown wingtips and lighter brown edges", + "nape: light brown feathers transitioning to reddish-brown on the crown", + "tail: elongated with brown feathers and lighter brown edges", + "throat: beige feathers with some reddish-brown markings" + ], + "grenada flycatcher": [ + "back: vibrant olive-green hue", + "beak: short, sharp, and black", + "belly: off-white with subtle markings", + "breast: creamy-yellow with faint streaks", + "crown: warm olive-green color", + "forehead: olive-green fading to gray", + "eyes: beady and black, sharp gaze", + "legs: thin, grayish-black", + "wings: olive-green with dark feather edges", + "nape: greenish-gray blending with back", + "tail: relatively long, olive-green with dark tips", + "throat: soft cream hue with delicate markings" + ], + "grimwood longclaw": [ + "back: dark-streaked brown feathers", + "beak: strong, sharp, elongates", + "belly: pale with light streaks", + "breast: buffy-white with dark markings", + "crown: rich brown with a streaked pattern", + "forehead: bright orange-yellow patch", + "eyes: deep black with a narrow white ring", + "legs: long, slender, dull yellow", + "wings: brown with white-edged feathers", + "nape: dark brown with lighter streaks", + "tail: long, graduated, with faint barring", + "throat: white with dark streaks" + ], + "groove billed toucanet": [ + "back: vibrant green feathers", + "beak: large, black with grooves", + "belly: creamy white with tinges of green", + "breast: bright yellow with red undertones", + "crown: deep green with blue sheen", + "forehead: emerald green fading into the crown", + "eyes: dark, encircled by blue eyering", + "legs: strong, gray with zygodactyl toes", + "wings: green primary feathers with blue trim", + "nape: green with a subtle blue shine", + "tail: long, dark green feathers with blue tips", + "throat: vivid yellow with red accents" + ], + "grosbeak weaver": [ + "back: golden-yellow with black streaks", + "beak: robust, conical, silver-grey", + "belly: bright yellow", + "breast: rich golden-yellow", + "crown: yellow-orange with fine streaks", + "forehead: intense yellow-orange", + "eyes: dark, expressive with a white eyering", + "legs: slender, light pink", + "wings: striking black with yellow patches", + "nape: golden-yellow with subtle streaks", + "tail: black with white outer feathers", + "throat: bold golden-yellow" + ], + "ground cuckooshrike": [ + "back: dark streaked pattern on grayish-brown feathers", + "beak: black, short, and slightly hooked", + "belly: light grayish-white with faint streaks", + "breast: pale gray with faint dark streaks", + "crown: grayish-brown feathers with fine streaks", + "forehead: smooth grayish-brown feathers", + "eyes: small, dark, and round", + "legs: blackish and slender", + "wings: grayish-brown with dark streaks and white wingtips", + "nape: grayish-brown with fine streaking", + "tail: long, blackish-brown with white outer feathers and broad bands", + "throat: pale gray with faint dark streaks" + ], + "ground parrot": [ + "back: vibrant green feathers with black barring", + "beak: short, sharp, and beige", + "belly: pale green with dark streaks", + "breast: bright green with black stripes", + "crown: rich green with black markings", + "forehead: vivid green feathers", + "eyes: small, dark, and alert", + "legs: grey with scaly texture", + "wings: broad, green with black bars", + "nape: green feathers with black spots", + "tail: long, green, with narrow black bands", + "throat: light green, streaked with darker green" + ], + "ground tit": [ + "back: grayish-brown with faint streaks", + "beak: short, stout, and black", + "belly: pale grayish-white", + "breast: light gray with subtle markings", + "crown: dark gray, slightly mottled", + "forehead: slightly paler gray than crown", + "eyes: dark, surrounded by thin white eye-ring", + "legs: blackish-gray and slender", + "wings: grayish-brown with white wingbars", + "nape: mottled gray, blending into back", + "tail: short and square, grayish-brown", + "throat: whitish-gray with subtle streaks" + ], + "ground woodpecker": [ + "back: vibrant green with dappled black spots", + "beak: strong, black, and chisel-like", + "belly: soft beige with a hint of yellow", + "breast: chestnut brown with streaks of white", + "crown: rich red with a black forehead band", + "forehead: black band contrasting the red crown and yellow-green face", + "eyes: sharp, brown, and alert", + "legs: sturdy, grey, and zygodactyl in structure", + "wings: green with intricate black and white patterns", + "nape: olive green with dapples of black", + "tail: long, stiff, and green with white and black bars", + "throat: pale beige with black streaks" + ], + "groundscraper thrush": [ + "back: brownish-gray with faint streaks", + "beak: strong and slightly curved, blackish-brown", + "belly: off-white with dark speckles", + "breast: pale gray-brown with dark spots and streaks", + "crown: grayish-brown with light streaks", + "forehead: smooth grayish-brown", + "eyes: dark brown with faint pale eyebrow", + "legs: strong and sturdy, pale pinkish-brown", + "wings: brownish-gray with subtle, darker wing bars", + "nape: grayish-brown with fine streaks", + "tail: medium length, brownish-gray with faint barring", + "throat: off-white with dark streaks" + ], + "growling riflebird": [ + "back: dark iridescent blue-green", + "beak: short, black, and stout", + "belly: velvety black", + "breast: shiny black with hints of iridescence", + "crown: smooth, black, and iridescent", + "forehead: black with subtle shine", + "eyes: dark with piercing gaze", + "legs: long, slender, and black", + "wings: black with metallic blue sheen", + "nape: gleaming black", + "tail: elongated, black, and iridescent", + "throat: stunning iridescent blue-purple" + ], + "guadalcanal crow": [ + "back: glossy iridescent black feathers", + "beak: thick, strong black bill", + "belly: dark, silky black plumage", + "breast: shiny black feathers with slight green sheen", + "crown: sleek iridescent black feathers", + "forehead: smooth black plumage", + "eyes: dark brown to black, embedded in black feathers", + "legs: sturdy black legs with strong talons", + "wings: glossy black with elongated primary feathers", + "nape: silky black feathers connecting head to back", + "tail: long, black, slightly rounded feathers", + "throat: dark black feathers with a subtle sheen" + ], + "guadalcanal dwarf kingfisher": [ + "back: vibrant blue feathers", + "beak: bright red-orange, stout", + "belly: white, sometimes lightly speckled", + "breast: white with a hint of blue", + "crown: intense blue, slightly crested", + "forehead: electric blue feathers", + "eyes: dark brown, round, beady", + "legs: strong, orange-red", + "wings: brilliant blue with white spots", + "nape: rich blue hue", + "tail: short, blue with white-tipped feathers", + "throat: white under the beak" + ], + "guadalcanal honeyeater": [ + "back: olive-green with darker streaks", + "beak: long, slender, and slightly curved", + "belly: creamy white with faint streaks", + "breast: pale gray with fine streaks", + "crown: bright yellow with dark streaks", + "forehead: intense golden yellow", + "eyes: large, dark brown", + "legs: strong, grayish-black", + "wings: olive-green, with yellow edges on feathers", + "nape: olive-green with dark streaks", + "tail: long, olive-green with yellow fringes", + "throat: creamy white with gray streaks" + ], + "guadalcanal hooded whistler": [ + "back: shades of olive-green feathers", + "beak: short, sharp, and curved", + "belly: faded golden-yellow color", + "breast: vibrant golden-yellow plumage", + "crown: black cap-like pattern", + "forehead: black shading meeting the crown", + "eyes: small, dark with thin white eye-ring", + "legs: slender and light gray", + "wings: olive-green with black edges", + "nape: olive-green feathers, continuous with back", + "tail: olive-green with black band at tip", + "throat: bright yellow, leading to breast" + ], + "guadalcanal owl": [ + "back: dark brown feathers with lighter streaks", + "beak: short, hooked, blackish color", + "belly: lighter brown with white speckles", + "breast: rusty-brown, densely patterned", + "crown: dark brown with pale streaks", + "forehead: lighter brown, merging into crown pattern", + "eyes: large, yellowish-brown in color", + "legs: feathered, strong with sharp talons", + "wings: dark brown with lighter brown or white spots", + "nape: brown with a slight cape-like pattern", + "tail: dark brown, moderately long with faint barring", + "throat: pale brown with streaks and spots" + ], + "guadalupe junco": [ + "back: dark gray feathers", + "beak: conical and black", + "belly: grayish-white", + "breast: light gray", + "crown: dark gray with feathers", + "forehead: smooth gray feathers", + "eyes: black and alert", + "legs: thin and black", + "wings: dark gray with white-edged feathers", + "nape: gray feathers tapering into the back", + "tail: long and dark gray", + "throat: light gray transitioning to the breast" + ], + "guadalupe murrelet": [ + "back: dark grey feathering", + "beak: short, black, slightly hooked", + "belly: white underside feathers", + "breast: greyish-white plumage", + "crown: dark grey head plumage", + "forehead: smooth grey feathers", + "eyes: small, dark, surrounded by grey feathers", + "legs: short, red-webbed feet", + "wings: dark grey to black with white stripes", + "nape: dark grey feathers meeting the head", + "tail: short, black, tapered feathers", + "throat: lighter grey feather transition to white belly" + ], + "guadeloupe woodpecker": [ + "back: vibrant red and black striped pattern", + "beak: long, sharp, and chisel-like", + "belly: white with black and red streaks", + "breast: reddish-orange with black streaks", + "crown: vibrant red crest on top of the head", + "forehead: bold red with a touch of black", + "eyes: small, dark, and lively", + "legs: short and sturdy with sharp claws", + "wings: black with white spots and red accents", + "nape: red and black striped pattern continuing from the back", + "tail: long and black with white vertical stripes", + "throat: white with specks of black and red" + ], + "guaiabero": [ + "back: vibrant green feathers", + "beak: short, sharp, curved edge", + "belly: pale yellow hue", + "breast: turquoise blue feathers", + "crown: blend of yellow-green and blue", + "forehead: bright yellow-green plumes", + "eyes: dark, piercing gaze", + "legs: short, sturdy, greyish", + "wings: mix of green, yellow, and blue feathers", + "nape: yellow, transitioning to green", + "tail: elongated, green and blue feathers", + "throat: striking yellow patch" + ], + "guam rail": [ + "back: brownish-gray with black streaks", + "beak: short and sturdy, grayish color", + "belly: buff-white with black barring", + "breast: light brownish-gray with black barring", + "crown: dark brown with black streaks", + "forehead: pale brownish-gray", + "eyes: dark-brown with narrow white eye-ring", + "legs: strong and short, grayish color", + "wings: brownish-gray with black barring and white streaks", + "nape: brownish-gray with black streaks", + "tail: short and slightly rounded, brownish-gray with black barring", + "throat: buff-white, unmarked" + ], + "guanay cormorant": [ + "back: dark grayish-black feathered", + "beak: long, hooked, and yellow-orange", + "belly: white and slightly fluffy", + "breast: white with darker bordering feathers", + "crown: black and sleek with a slight crest", + "forehead: black, blending into crown", + "eyes: dark and round with white borders", + "legs: short, black, and webbed", + "wings: long, dark grayish-black, and tapered", + "nape: black with a slight arch", + "tail: medium length, black, and fan-shaped", + "throat: white with feather texture" + ], + "guatemalan tyrannulet": [ + "back: olive-green feathers", + "beak: small, black, and slightly curved", + "belly: pale yellowish-white", + "breast: light grayish-olive", + "crown: olive-gray with faint streaks", + "forehead: pale grayish-white", + "eyes: medium-sized, dark brown", + "legs: thin, charcoal gray", + "wings: short, olive-green with faint bars", + "nape: olive-gray with faint streaks", + "tail: relatively long, olive-green with darker tips", + "throat: pale gray-white" + ], + "guayaquil woodpecker": [ + "back: black feathers with white spots", + "beak: long, chisel-like, dark gray", + "belly: striped black and white with hints of yellow", + "breast: mostly white with black streaks", + "crown: red with black stripes", + "forehead: black with thin white lines", + "eyes: dark, surrounded by white markings", + "legs: sturdy, grayish-blue", + "wings: black with white spotting, yellow patches", + "nape: black with white streaks", + "tail: black with white banding, forked", + "throat: white with black spots" + ], + "guianan cock of the rock": [ + "back: vibrant orange feathers", + "beak: short, hooked black beak", + "belly: bright orange plumage", + "breast: vivid orange feathers", + "crown: prominent orange crest", + "forehead: orange feathers with raised crest", + "eyes: small, black, on white background", + "legs: strong, dark legs with sharp claws", + "wings: short, rounded, orange wings", + "nape: orange neck feathers", + "tail: rounded orange tail feathers", + "throat: bright orange feathers" + ], + "guianan gnatcatcher": [ + "back: slate-blue with darker streaks", + "beak: small, straight, black", + "belly: light gray with whitish hues", + "breast: pale grayish-blue", + "crown: slate-blue with darker streaks", + "forehead: pale gray-blue", + "eyes: dark with white eye-ring", + "legs: thin, black", + "wings: slate-blue with white edges", + "nape: slate-blue blending with the crown", + "tail: long, black, with white outer feathers", + "throat: white, contrasted with breast color" + ], + "guianan puffbird": [ + "back: olive-brown with faint streaks", + "beak: stout, black, and slightly hooked", + "belly: creamy-white with brown bars", + "breast: pale buff with faint brown spots", + "crown: black with prominent white spots", + "forehead: black with white markings", + "eyes: dark brown with narrow pale eyering", + "legs: sturdy and dark grey", + "wings: brownish, barred with buff and white", + "nape: black, streaked with white", + "tail: long, brown, and white-tipped", + "throat: creamy-white with faint barring" + ], + "guianan red cotinga": [ + "back: vibrant red plumage", + "beak: short, black and stout", + "belly: bright red feathers", + "breast: deep red with slight gradation", + "crown: scintillating red feathers", + "forehead: vivid red contour", + "eyes: small with black pupils and white eye-ring", + "legs: black and thin", + "wings: subdued red with hints of blue", + "nape: glowing red plumage", + "tail: slender, black feathers with red base", + "throat: brilliant red feathers" + ], + "guianan streaked antwren": [ + "back: olive-brown with faint streaks", + "beak: short, thin, and pointed", + "belly: grayish-white with faint streaks", + "breast: grayish-white with darker streaks", + "crown: black with fine white streaks", + "forehead: black with fine white streaks", + "eyes: dark, surrounded by thin white eyering", + "legs: pale pinkish-gray", + "wings: olive-brown with two white wing bars", + "nape: black with fine white streaks", + "tail: long, dark, and slender with white tips", + "throat: grayish-white" + ], + "guianan toucanet": [ + "back: vibrant green feathered", + "beak: large, black and yellow curved", + "belly: white to pale yellow feathers", + "breast: yellowish-green hue", + "crown: dark green with a blueish tint", + "forehead: blue-black feathers", + "eyes: black with crimson-red eyering", + "legs: grayish-blue", + "wings: iridescent green layered feathers", + "nape: greenish-blue fading to black", + "tail: long, black and green with white tip", + "throat: white or pale yellow feathers" + ], + "guianan trogon": [ + "back: vibrant green with a slight sheen", + "beak: short, straight, and light gray", + "belly: pale yellow with soft feathering", + "breast: bold yellow fading to white", + "crown: shimmering green extending to the neck", + "forehead: vibrant green transitioning from the crown", + "eyes: dark with a small pale ring around them", + "legs: short and grayish, with strong feet for perching", + "wings: iridescent green on top with white and black bands underneath", + "nape: bright green connecting to the crown and back", + "tail: long, squared-off with a green sheen and white stripe near the tip", + "throat: striking white fading into the breast's yellow" + ], + "guianan tyrannulet": [ + "back: olive-green and slightly streaked", + "beak: short and black", + "belly: yellowish with olive tinges", + "breast: pale yellow with olive sides", + "crown: dull grayish-green", + "forehead: greyish olive to dark", + "eyes: dark brown with white eye rings", + "legs: pale pinkish-grey", + "wings: olive-green with pale yellow fringes", + "nape: grayish olive-green", + "tail: long and olive-green with white outer feathers", + "throat: pale yellowish-white" + ], + "guianan warbling antbird": [ + "back: olive-brown with subtle streaks", + "beak: sharp, straight, and black", + "belly: lighter olive-brown hues", + "breast: dull brownish-grey", + "crown: dark olive-gray with light streaks", + "forehead: slightly paler than the crown", + "eyes: dark brown with thin eye-ring", + "legs: slender and dull orange", + "wings: olive-brown with contrasting pale wing-bars", + "nape: dark olive-gray", + "tail: long and olive-brown with faint bands", + "throat: pale grayish-white" + ], + "guianan woodcreeper": [ + "back: olive-brown with subtle streaks", + "beak: long, straight, and slightly curved", + "belly: creamy white with light brown markings", + "breast: creamy white with brown streaks", + "crown: olive-brown with a slightly raised crest", + "forehead: olive-brown with faint streaks", + "eyes: dark brown with a thin, pale eye-ring", + "legs: grayish-brown and strong", + "wings: olive-brown with faint barring", + "nape: olive-brown with small streaks", + "tail: long, graduated, and olive-brown with slight banded pattern", + "throat: creamy white with brown streaks" + ], + "guira cuckoo": [ + "back: light brown with dark streaks", + "beak: slightly curved, pale yellow", + "belly: whitish with black bars", + "breast: light brown streaked with dark lines", + "crown: rusty-orange crest feathers", + "forehead: pale with a hint of orange", + "eyes: dark, surrounded by faint eyestripe", + "legs: long, bluish-gray", + "wings: barred black and white, rounded", + "nape: light brown with dark markings", + "tail: long, graduated, heavily barred", + "throat: whitish with black bars" + ], + "guira tanager": [ + "back: olive-green feathers", + "beak: stout, conical-shaped, black", + "belly: yellow, with hints of green", + "breast: bright yellow feathers", + "crown: reddish-orange and black crest", + "forehead: olive-green, fading to yellow", + "eyes: dark, surrounded by olive-green feathers", + "legs: grayish-black, with strong claws", + "wings: olive-green, with black and yellow markings", + "nape: yellowish-green, with hints of black", + "tail: long, olive-green, with black and yellow patterns", + "throat: bright yellow, with tinges of green" + ], + "gundlach hawk": [ + "back: sleek, dark feathers", + "beak: sharp, curved hook", + "belly: lighter, soft plumage", + "breast: broad, dark-feathered chest", + "crown: dark, smooth head feathers", + "forehead: clearly defined-feather line", + "eyes: piercing, yellow gaze", + "legs: strong, feathered limbs", + "wings: large, powerful span", + "nape: slightly tufted neck feathers", + "tail: long, barred fan-like feathers", + "throat: white, defined feather area" + ], + "gunnison sage grouse": [ + "back: mottled gray-brown feathers", + "beak: short, sturdy, and dusky-colored", + "belly: light gray with fine barring", + "breast: white with black feather tips, forming a v-shape", + "crown: black and feathered, with narrow crest", + "forehead: white or creamy-white feathers", + "eyes: dark, round, and expressive", + "legs: feathered and gray-brown, ending in clawed feet", + "wings: mottled gray-brown with black and white markings", + "nape: gray-brown with fine white streaks", + "tail: black and white banded feathers, fan-shaped", + "throat: vibrant yellow air sacs in males, simple grayish-white in females" + ], + "gurney eagle": [ + "back: dark brown feathers with a slight glossy sheen", + "beak: large, powerful, and hooked, with a yellowish-grey color", + "belly: light cream-colored feathers with dark brown streaks", + "breast: creamy-white with dark brown streaks and spots", + "crown: dark brown feathers with a slight greenish sheen", + "forehead: dark brown feathers blending into the crown", + "eyes: piercing, yellow with a dark brown ring around them", + "legs: strong, yellowish-grey with sharp talons for gripping prey", + "wings: broad and long, with dark brown feathers and white patches at the base", + "nape: dark brown feathers with a lighter brown stripe running down the middle", + "tail: long, dark brown feathers with horizontal light brown bands", + "throat: cream-colored feathers with dark brown streaks, slightly fluffier than the breast" + ], + "gurney sugarbird": [ + "back: olive-brown with streaks", + "beak: long, curved, black", + "belly: pale buff with fine spots", + "breast: cream-colored with brown streaks", + "crown: olive-brown, smooth", + "forehead: buff, slightly rounded", + "eyes: dark brown, small", + "legs: sturdy, dark gray", + "wings: dark brown, medium-sized, rounded", + "nape: olive-brown, narrow", + "tail: long, slightly forked, brown", + "throat: creamy white, unmarked" + ], + "guttulate foliage gleaner": [ + "back: olive-brown plumage", + "beak: elongated and slender", + "belly: pale, buff-yellow color", + "breast: creamy beige with fine streaks", + "crown: reddish-brown with pale streaks", + "forehead: light brown with faint markings", + "eyes: shiny, black, surrounded by pale eye-ring", + "legs: long and strong", + "wings: olive-brown with faint barring", + "nape: reddish-brown, blending with crown", + "tail: long and sturdy, olive-brown", + "throat: pale, creamy with light streaks" + ], + "hadada ibis": [ + "back: iridescent greenish sheen", + "beak: long, curved, and brown", + "belly: pale gray-white", + "breast: olive-brown feathers", + "crown: sleek, black cap", + "forehead: white facial skin patch", + "eyes: reddish-brown with white eye-rings", + "legs: dark gray with sturdy build", + "wings: large, glossy, and black", + "nape: transition from black cap to olive-brown neck", + "tail: squared off, black with green sheen", + "throat: pale gray, contrasting with dark breast" + ], + "hainan blue flycatcher": [ + "back: vibrant blue feathers", + "beak: small, sharp, black", + "belly: pale orange-white hue", + "breast: rich orange coloration", + "crown: bright blue", + "forehead: striking blue shade", + "eyes: dark, round with thin white eye-ring", + "legs: slender, greyish-black", + "wings: rich blue with black edges", + "nape: azure blue", + "tail: long and dark, with blue and black feathers", + "throat: bold orange hue" + ], + "hainan leaf warbler": [ + "back: olive-green feathered", + "beak: slim, pointed, and black", + "belly: pale yellow underparts", + "breast: bright yellow chest", + "crown: dull yellow-green top", + "forehead: slightly paler yellow-green", + "eyes: round, dark, and small", + "legs: long and pale pinkish-gray", + "wings: olive-green with darker edges", + "nape: olive-yellow transition", + "tail: olive-green with dark tips", + "throat: vibrant yellow hue" + ], + "hainan partridge": [ + "back: vibrant green feathers and blue sheen", + "beak: short, sturdy, and light gray", + "belly: dark brown with thin white streaks", + "breast: reddish-brown with scalloped white markings", + "crown: glossy black with raised feather crest", + "forehead: black with white streak arching over eyes", + "eyes: bright golden and alert", + "legs: grayish-blue with strong, sharp talons", + "wings: greenish-blue with intricate brown and white patterns", + "nape: black with a tinge of green shining through", + "tail: long and dark brown with slight green iridescence", + "throat: white with fine black streaks" + ], + "hainan peacock pheasant": [ + "back: dark blue-green iridescent feathers", + "beak: short and curved, grayish-black", + "belly: underneath blue-green, black spotted feathers", + "breast: deep blue-green feathers with black spots", + "crown: blue-green, black-crested plumes", + "forehead: bluish-gray and slightly feathered", + "eyes: dark brown with gray-blue eye-ring", + "legs: long and gray-blue, white scaled", + "wings: blue-green iridescent, adorned with black spots", + "nape: dark blue-green with slightly elongated feathers", + "tail: long, blue-green, brown-barred feathers, black spots", + "throat: bluish-gray, black spotted feathers" + ], + "hair crested drongo": [ + "back: sleek black feathers", + "beak: sharp, slightly curved", + "belly: smooth black plumage", + "breast: shiny black feathers", + "crown: distinctive crest of fine hair-like feathers", + "forehead: glossy black with hair-like feathers", + "eyes: dark and alert", + "legs: strong and black", + "wings: long and black with a slight shimmer", + "nape: black feathers with hair-like texture", + "tail: forked and black", + "throat: glossy black plumage" + ], + "hairy backed bulbul": [ + "back: light olive-green feathers", + "beak: slim, slightly curved, grayish-black tip", + "belly: light-yellow plumage", + "breast: pale-yellow feathers", + "crown: grayish-brown head feathers", + "forehead: lighter grayish-brown feathers", + "eyes: dark brown, round, encircled by gray feathers", + "legs: slender, grayish-black legs and feet", + "wings: olive-green with brownish-black feathers", + "nape: slightly darker olive-green feathers", + "tail: olive-green with dark brown central feathers", + "throat: pale-yellow plumage" + ], + "hairy breasted barbet": [ + "back: vibrant green, slightly elongated feathers", + "beak: thick, short beige-yellow colored beak", + "belly: pale olive-green with fine feather texture", + "breast: yellowish-green with distinctive hairy appearance", + "crown: slightly tufted bright green feathers", + "forehead: rich red coloration blending into green", + "eyes: large, attentive, dark brown with feathered eyelids", + "legs: sturdy gray-brown with powerful grasping toes", + "wings: relatively short, rounded, green with blue-black flight feathers", + "nape: bright green feathers smoothly transitioning from the crown", + "tail: short, squared, comprised of bright green and blue-black feathers", + "throat: red feathers extending from the base of the beak to the breast" + ], + "hairy crested antbird": [ + "back: olive-brown feathers covering the upper body", + "beak: thin, slightly curved black beak", + "belly: off-white feathers with light brown streaks", + "breast: pale white with slight brown markings", + "crown: dark brown crest of feathers on top of the head", + "forehead: smooth brown feathers blending into the crown", + "eyes: small, black eyes with a subtle white eye-ring", + "legs: long, thin beige legs with four clawed toes", + "wings: olive-brown feathers with white streaks on the tips", + "nape: light brown feathers at the base of the neck", + "tail: long, olive-brown feathers with white tips", + "throat: white feathers with light brown markings" + ], + "half collared kingfisher": [ + "back: vibrant blue feathers with black highlights", + "beak: long, sharp, black, slightly curved", + "belly: clean white and slightly fluffy", + "breast: white, smoothly transition from the belly", + "crown: rich blue splitting into a white stripe", + "forehead: striking blue and white contrasting pattern", + "eyes: large, dark, expressive with subtle white outline", + "legs: short, strong, reddish-orange", + "wings: dazzling blue with black stripes and white tips", + "nape: blue, white-bordered stripe extending to the back", + "tail: elongated, dark blue with white edges", + "throat: pure white, seamlessly merging with breast and belly" + ], + "half collared sparrow": [ + "back: olive-brown with greyish shades", + "beak: short, conical, and dark grey", + "belly: off-white with delicate brown streaks", + "breast: pale grey with hints of brown", + "crown: striking blue-grey", + "forehead: blue-grey blending into the crown", + "eyes: small, dark, and beady", + "legs: thin, dark, with sharp clawed toes", + "wings: olive-brown with darker margins", + "nape: subdued blue-grey", + "tail: short, squared-off with dark feathers", + "throat: white with a distinct black collar" + ], + "hall babbler": [ + "back: olive-brown feathers", + "beak: short and sturdy", + "belly: pale white or light gray", + "breast: faint scaling or mottling", + "crown: slightly darker than back feathers", + "forehead: matching crown coloration", + "eyes: dark and alert", + "legs: long and slender", + "wings: rounded with distinct bars", + "nape: olive-brown, fading to a lighter tone", + "tail: square-shaped with a hint of white-tips", + "throat: pale with light mottling" + ], + "halmahera boobook": [ + "back: brownish-black with lighter speckles", + "beak: short, strong, and dark gray", + "belly: white with light tan streaks", + "breast: white with brownish streaks", + "crown: dark brown with pale speckles", + "forehead: lighter brown than the crown with small white markings", + "eyes: large, yellow, and expressive", + "legs: strong, gray, with sharp talons", + "wings: brown with white spots and dark brown bars", + "nape: dark brown with white flecks", + "tail: brown with white bars and dark brown edges", + "throat: white with light brown streaks" + ], + "halmahera cuckooshrike": [ + "back: grayish-black upper body with a slight brown tinge", + "beak: straight, black, and sharp-edged", + "belly: white lower body with grayish-black streaks", + "breast: grayish-white chest with blackish streaks", + "crown: grayish-black head with a slightly rounded shape", + "forehead: grayish-black with a smooth, feathered transition to the crown", + "eyes: dark, round, with a vibrant yellow eye-ring", + "legs: strong, black legs with sharp, elongated claws", + "wings: grayish-black with white bands across primary feathers", + "nape: grayish-black feathers transitioning smoothly to the back", + "tail: long, grayish-black feathers with white tips", + "throat: white throat feathers with thin black streaks" + ], + "halmahera flowerpecker": [ + "back: vibrant green and black feathers", + "beak: short, strong, and slightly curved", + "belly: white to light gray plumage", + "breast: deep blue or purple feathers", + "crown: black and green with a distinct bright blue patch", + "forehead: black feathers with a touch of green shine", + "eyes: small, dark, and surrounded by black feathers", + "legs: slender and gray", + "wings: green and black, white-tipped feathers with blue highlights", + "nape: green and black with occasional blue streaks", + "tail: black and blue with white-tipped feathers, slightly forked", + "throat: black with iridescent green shine" + ], + "halmahera golden bulbul": [ + "back: vibrant golden-yellow feathers", + "beak: short, pointed black", + "belly: bright yellow plumage", + "breast: rich golden hue", + "crown: warm golden-yellow crest", + "forehead: yellow feathers blending into crown", + "eyes: dark circular with white outlines", + "legs: strong, grayish-black", + "wings: elongated, golden-yellow with black tips", + "nape: yellow feathers transition from crown", + "tail: long, curved black with yellow edges", + "throat: gleaming yellow plumage" + ], + "halmahera oriole": [ + "back: vibrant golden-yellow hue", + "beak: black, stout and pointed", + "belly: golden-yellow with hints of orange", + "breast: bright golden-yellow", + "crown: black with a majestic crest", + "forehead: sharp black contrast to yellow body", + "eyes: black, round, small with a curious gaze", + "legs: black, sturdy and slim legs", + "wings: striking golden-yellow with black wingtips", + "nape: black smoothly transitioning to yellow", + "tail: long and yellow with black inner feathers", + "throat: rich golden-yellow color" + ], + "halmahera swiftlet": [ + "back: sleek, streamlined feathers", + "beak: small, thin, and slightly curved", + "belly: light gray, soft feathers", + "breast: grayish-white plumage", + "crown: grayish-brown feathered cap", + "forehead: smooth, gray-brown feathers meeting at beak", + "eyes: small, round, and black", + "legs: short with tiny, sharp claws", + "wings: long, narrow, and aerodynamic for fast flight", + "nape: slightly darker gray feathers at base of neck", + "tail: short, square-shaped with gray feathers", + "throat: pale gray, slightly fluffy feathering" + ], + "handsome flycatcher": [ + "back: sleek, olive-green feathers", + "beak: sharp, black, and slightly curved", + "belly: pale yellow with fine streaks", + "breast: vibrant orange with dark spots", + "crown: striking blue with a hint of purple", + "forehead: bright blue, like a small mask", + "eyes: round, dark, and alert", + "legs: long, slender, and charcoal-gray", + "wings: deep blue, with intricate white patterns", + "nape: smooth transition from the blue crown to olive-green back", + "tail: long, fan-shaped, and blue with white tips", + "throat: clean white with a touch of blue near the beak" + ], + "handsome fruiteater": [ + "back: vibrant green with black accents", + "beak: short, sharp, and dark-colored", + "belly: bright yellow with dark streaks", + "breast: rich blue with black markings", + "crown: sleek iridescent blue", + "forehead: smooth, deep blue gradient", + "eyes: dark, piercing, and expressive", + "legs: strong, grayish-blue with sharp talons", + "wings: green and black with elongated feathers", + "nape: dark blue transitioning to green", + "tail: long, elegant, multicolored feathers", + "throat: bold blue with distinct black markings" + ], + "handsome spurfowl": [ + "back: rich and earthy brown feathers", + "beak: sturdy, curved, and light grey", + "belly: light brown, speckled with white", + "breast: warm chestnut, with fine black barring", + "crown: dark feather crown with a hint of red", + "forehead: rich, rusty-red hue", + "eyes: piercing, dark eyes with a hint of white", + "legs: thick, grey, and strong", + "wings: long, earth-toned feathers with intricate patterns", + "nape: subtly transitioning from dark brown to reddish-amber", + "tail: broad and fan-like, with contrasting white and brown bands", + "throat: delicate white feathers, transitioning to rusty tones" + ], + "handsome sunbird": [ + "back: vibrant, iridescent blue-green feathers", + "beak: thin, slightly curved, black", + "belly: pale yellow or white coloration", + "breast: striking metallic blue-green hue", + "crown: shiny, electric blue feathers", + "forehead: bright, shimmering blue-green", + "eyes: small, dark and round", + "legs: slender, grayish-black", + "wings: blue-green feathers with darker edging", + "nape: brilliant metallic blue-green color", + "tail: long, slender, with iridescent blue-green feathers", + "throat: radiant blue feathers with a metallic sheen" + ], + "hangnest tody tyrant": [ + "back: olive-green with soft feathers", + "beak: short and black, slightly downcurved", + "belly: off-white with pale yellow undertones", + "breast: light gray with subtle streaks", + "crown: dark gray with a hint of blue", + "forehead: grayish-blue with fine feathers", + "eyes: round and black, inquisitive gaze", + "legs: pale gray with strong, thin toes", + "wings: greenish-blue with dark feather edges", + "nape: gray with a smooth feather transition", + "tail: short and olive-green with black barring", + "throat: pale gray merging into the breast area" + ], + "happy wren": [ + "back: vibrant, sleek feathers", + "beak: delicate, gently-curved tip", + "belly: softly-rounded, warm-hued plumage", + "breast: smooth, supple feathers", + "crown: distinct, expressive crest", + "forehead: smooth, petite contours", + "eyes: bright, sparkling orbs", + "legs: slender yet sturdy", + "wings: compact, perky, playfully folded", + "nape: subtle, elegant curve", + "tail: lively, fan-like, inquisitive motion", + "throat: smooth, tender plumage" + ], + "hardhead": [ + "back: dark brown, rounded feathers", + "beak: short, stout, black bill", + "belly: white, slightly spotted", + "breast: dull white mixed with brown", + "crown: dark brown with subtle green sheen", + "forehead: rich chestnut-red", + "eyes: small, brown, alert", + "legs: strong, grayish-blue", + "wings: brown, slightly pointed", + "nape: subtle chestnut-brown patch", + "tail: short, dark brown with white tips", + "throat: white with slight brown spots" + ], + "harlequin antbird": [ + "back: black with light streaks", + "beak: short and hooked", + "belly: white with black markings", + "breast: orange-rufous", + "crown: iridescent blue and black", + "forehead: white bordered by black", + "eyes: dark with white eye-ring", + "legs: strong and gray", + "wings: black with white and blue edging", + "nape: white with black stripe", + "tail: long and black with white tips", + "throat: white with fine black markings" + ], + "hartert camaroptera": [ + "back: olive-green feathers covering the back", + "beak: short and curved for insect-eating", + "belly: light yellowish underbelly", + "breast: slightly pale yellow feathers", + "crown: olive-green plumage on the head", + "forehead: light olive-green feathers above eyes", + "eyes: small, dark orbs with a pale eye-ring", + "legs: slender and grayish-brown in color", + "wings: olive-green with dark brown edges", + "nape: olive-green feathers on the back of the neck", + "tail: relatively short, brownish-gray tail feathers", + "throat: pale yellow feathers, blending into the breast" + ], + "hartert leaf warbler": [ + "back: olive-green with subtle streaks", + "beak: thin, pointed, blackish-brown", + "belly: pale yellow and unmarked", + "breast: yellowish-green with faint streaks", + "crown: grayish-green with an indistinct white eyebrow", + "forehead: smooth, grayish-green", + "eyes: dark brown with white eye-ring", + "legs: pinkish-brown and slender", + "wings: olive-green with pale yellow edges", + "nape: grayish-green, blending with the back", + "tail: olive-green with rounded feathers", + "throat: pale yellow, slightly paler than breast" + ], + "hartlaub babbler": [ + "back: light brown with subtle markings", + "beak: slim, curved, dark-colored", + "belly: cream-colored with rusty-brown streaks", + "breast: creamy-white with conspicuous spotting", + "crown: reddish-brown with fine streaks", + "forehead: pale buff, blending into crown", + "eyes: dark brown with pale eyering", + "legs: long, slender, greyish-brown", + "wings: brownish-grey with pale feather edges", + "nape: reddish-brown, streaked", + "tail: long, rounded, brown with faint bars", + "throat: whitish, fading into breast" + ], + "hartlaub bustard": [ + "back: brownish-black feathers with white speckles", + "beak: short, sharp, and curved for pecking", + "belly: white feathers transitioning to gray at the edges", + "breast: grayish-white feathers with black speckles", + "crown: brown feathers with a flat appearance", + "forehead: white feathers fading into gray at the edges", + "eyes: small, dark, with a sharp and alert gaze", + "legs: strong, grayish-brown color with three forward toes", + "wings: brown feathers with white speckles, rounded shape", + "nape: brown feathers transitioning to gray on the neck", + "tail: short, black feathers with white tips", + "throat: white-feathered throat with sandy gray markings" + ], + "hartlaub duck": [ + "back: vibrant green iridescent feathers", + "beak: dark grey, slightly curved", + "belly: off-white, soft fluffy feathers", + "breast: rich chestnut-brown plumage", + "crown: dark green, sleek feathers", + "forehead: iridescent green with slight tuft", + "eyes: bright, glossy black", + "legs: broad, sturdy, orange-yellow", + "wings: strong yet elegant, multi-colored", + "nape: transition from dark green to brown", + "tail: short, fan-like with green and brown layers", + "throat: pale brown, smooth feathers" + ], + "hartlaub gull": [ + "back: light grey feathers", + "beak: orange with black tip", + "belly: bright white", + "breast: white plumage", + "crown: greyish-white", + "forehead: light grey", + "eyes: large, dark and round", + "legs: orange and webbed", + "wings: light grey with black tips", + "nape: greyish-white", + "tail: white with black bands", + "throat: white and smooth" + ], + "hartlaub spurfowl": [ + "back: brownish-grey with dense speckles", + "beak: short, slightly curved, greyish-black", + "belly: lighter greyish-brown with fine speckles", + "breast: warm brown with uniform barring", + "crown: dark brown with a slight crest", + "forehead: darker brown merging with crown", + "eyes: dark with pale eye-ring", + "legs: robust, greyish-brown with spurs", + "wings: brown with fine speckles and white-edged coverts", + "nape: dark brown with light speckles", + "tail: short, dark brown with light streaks", + "throat: light greyish-brown with fine speckles" + ], + "hartlaub turaco": [ + "back: vibrant green with blue edges on feathers", + "beak: short, slightly curved, reddish-brown", + "belly: grayish-blue to violet-blue feathers", + "breast: bright green fading to a blueish-green", + "crown: glossy green adorned with a distinctive feather plume", + "forehead: bright green and slightly raised feathers", + "eyes: dark with a prominent white eye-ring", + "legs: short, grayish-blue with strong feet", + "wings: vibrant green with purple-blue outer edges", + "nape: bright green fading to a blueish-green", + "tail: long, iridescent purple-blue feathers", + "throat: bright green with a slight curve towards the chest" + ], + "harwood spurfowl": [ + "back: dark brown with black and white feather streaks", + "beak: slightly curved, pale grayish-yellow", + "belly: pale brown with fine white streaks", + "breast: light brown with faint black mottling", + "crown: reddish-brown with black feather tips", + "forehead: pale gray-brown with light streaking", + "eyes: bright yellow with black pupils", + "legs: sturdy, light gray-yellow with sharp spurs", + "wings: brown, barred with white and black markings", + "nape: dark reddish-brown with black feather tips", + "tail: dark brown with black and white streaks, fanned-shaped", + "throat: pale grayish-white with light streaking" + ], + "hauxwell thrush": [ + "back: olive-brown with subtle streaks", + "beak: slim and straight, pale pinkish-yellow", + "belly: white with blackish-brown spots", + "breast: off-white with dark brown spots", + "crown: olive-brown, slightly darker than back", + "forehead: pale olive-brown, blending into crown", + "eyes: dark, piercing with a faint pale eye-ring", + "legs: sturdy, pinkish-grey", + "wings: olive-brown with faint lighter wing bars", + "nape: olive-brown, consistent with back coloration", + "tail: olive-brown, medium-length with slight fork", + "throat: off-white, unmarked" + ], + "hawaii akepa": [ + "back: olive-green with yellow tinges", + "beak: short, curved and black", + "belly: bright yellow-orange", + "breast: vibrant yellow-tinged orange", + "crown: olive-green with a tinge of gray", + "forehead: olive-green grayish hue", + "eyes: dark with white eyering", + "legs: short and dark gray", + "wings: olive-green with hints of yellow", + "nape: olive-green with a slight yellowish tint", + "tail: olive-greenish with yellow feather tips", + "throat: bright yellow-orange in color" + ], + "hawaii amakihi": [ + "back: olive-green dorsal feathers", + "beak: slightly curved, slender black bill", + "belly: pale yellow underparts", + "breast: vibrant yellow-orange plumage", + "crown: olive-green with a slight yellow tint", + "forehead: smooth transition to olive-yellow", + "eyes: small, piercing black orbs", + "legs: thin, charcoal-colored limbs", + "wings: olive-green with a slight yellow hue", + "nape: olive-yellow plumage converging at the neck", + "tail: olive-green outer feathers with central yellow undertail coverts", + "throat: vibrant yellow-orange merging with breast coloration" + ], + "hawaii creeper": [ + "back: olive-green feathers with paler streaks", + "beak: slender, slightly curved, and blackish", + "belly: whitish-gray with faint streaks", + "breast: pale olive-green with fine streaks", + "crown: murky olive-green with darker streaks", + "forehead: greenish-brown tapering to yellowish-green", + "eyes: dark brown with pale eye-ring", + "legs: bluish-gray with strong clawed feet", + "wings: olive-green with faint darker bars", + "nape: olive-green blending into the crown", + "tail: dark olive-green with outer feathers paler", + "throat: whitish with beige-green mottling" + ], + "hawaii elepaio": [ + "back: olive-brown feathers", + "beak: straight, pointed black bill", + "belly: light gray-white underparts", + "breast: grayish-white plumage", + "crown: brownish-black head markings", + "forehead: light fawn-colored with faint streaks", + "eyes: dark-brown with white eye-ring", + "legs: long, sturdy black legs", + "wings: brownish-black with white wing-bars", + "nape: fawn-colored with faint streaks", + "tail: long, black with white tips", + "throat: pale grayish-white feathers" + ], + "hawaiian coot": [ + "back: dark grayish-black feathers covering the dorsal side", + "beak: prominent, white, and slightly curved with a dark tip", + "belly: dark grayish-black with some lighter variations on the sides", + "breast: dusky gray and black-colored feathers", + "crown: dark grayish-black plumage on top of the head", + "forehead: white, extending above the beak into a prominent frontal shield", + "eyes: small, red, and surrounded by a black eye patch", + "legs: long, slate-colored legs with lobed toes for swimming", + "wings: dark grayish-black with secondary feathers showing a thin white stripe", + "nape: dark grayish-black feathers continuing down from the crown", + "tail: short, stiff, and black with a white band near the tip", + "throat: dusky gray feathers transitioning into the breast area" + ], + "hawaiian crow": [ + "back: sleek black feathers", + "beak: strong, black, slightly hooked", + "belly: smooth black plumage", + "breast: deep black feathers", + "crown: glossy black crest", + "forehead: shiny black feathers", + "eyes: bright, intelligent gaze", + "legs: sturdy dark legs", + "wings: broad black wing feathers", + "nape: rich black feathers", + "tail: elongated black feathers", + "throat: dark black plumage" + ], + "hawaiian duck": [ + "back: earthy brown plumage", + "beak: slender, dark greyish", + "belly: lighter brown with speckles", + "breast: mottled brown and white", + "crown: brownish with slight crest", + "forehead: brown, blending with crown", + "eyes: dark with white eye-ring", + "legs: dark grey, webbed feet", + "wings: brown with greenish speculum", + "nape: brown, smoothly blending with back", + "tail: short and brownish-grey", + "throat: lighter brown, occasionally white" + ], + "hawaiian hawk": [ + "back: dark brown feathers covering the upper body", + "beak: sharp, hooked, and black for tearing prey", + "belly: creamy white with brown speckles or streaks", + "breast: light-colored with brown speckles or streaks", + "crown: dark brown feathers on the top of the head", + "forehead: feathers transition from dark brown to light grey or white", + "eyes: piercing yellow with a sharp gaze", + "legs: strong, yellow, scaly legs with sharp talons", + "wings: large, dark brown feathers with lighter undersides for soaring and hunting", + "nape: grey or white feathers at the back of the neck, contrasting with the brown back", + "tail: long, dark brown feathers with light bands, often white-tipped", + "throat: light-colored, usually grey or white, with brown streaks or speckles" + ], + "hawaiian petrel": [ + "back: dark gray feathered with hints of brown", + "beak: slightly curved black beak for capturing prey", + "belly: soft white underbelly with smooth feathers", + "breast: light grayish feathers transitioning from belly", + "crown: streaked dark gray to black plumage on top of head", + "forehead: slightly paler gray feathered area above beak", + "eyes: piercing dark eyes surrounded by gray feathered area", + "legs: long, thin, black with slightly webbed feet for swimming", + "wings: streamlined dark gray and white feathers for efficient flight", + "nape: grayish area where head connects to back", + "tail: elongated dark gray feathers aiding in flight stability", + "throat: lighter gray area connecting breast and beak" + ], + "hazel grouse": [ + "back: brownish-grey feathers with white stripes", + "beak: short and sturdy, curved upper tip", + "belly: speckled brown and white feathers", + "breast: reddish-brown with white bars", + "crown: dark and slightly crested", + "forehead: reddish-brown fading to grey", + "eyes: small and black, subtle white eyering", + "legs: feathered and stout, with sharp claws", + "wings: rounded and short, brown with white bands", + "nape: brownish-grey with a slight crest", + "tail: squared-off with chestnut tip, black markings", + "throat: greyish-white with brown speckling" + ], + "hazel fronted pygmy tyrant": [ + "back: olive-green with dark streaks", + "beak: short black and pointed", + "belly: pale yellow with brown undertones", + "breast: olive-brown with faint streaks", + "crown: dark brown with hazel feathers", + "forehead: hazel-colored with fine streaks", + "eyes: black surrounded by pale eye-ring", + "legs: thin and grayish-brown", + "wings: olive-brown with faint wing bars", + "nape: dark brown with hazel edges", + "tail: long and brown with blackish tips", + "throat: pale yellow with brown streaks" + ], + "heard island shag": [ + "back: bluish-black feathers with silvery streaks", + "beak: long, slender, and hooked at the tip", + "belly: pale grayish-blue with a slight yellow tint", + "breast: white with shades of blue", + "crown: black to dark gray with a slight glossy sheen", + "forehead: slightly raised, black to dark gray", + "eyes: bright red with dark eyelids", + "legs: pinkish-orange with webbed feet", + "wings: black and glossy with carpal joints showing white patches", + "nape: black to dark gray with silvery streaks", + "tail: long, black, and fan-shaped", + "throat: whitish with slight blue or yellow shades" + ], + "heart spotted woodpecker": [ + "back: dark feathers with greyish-white spots", + "beak: strong, chisel-like, black bill", + "belly: creamy white with some light spots", + "breast: white with dark black spots on sides", + "crown: black with reddish-brown streaks", + "forehead: off-white with small black spots", + "eyes: large, dark, and alert", + "legs: short, grey, with strong claws", + "wings: black with large white heart-shaped spots", + "nape: red patch from the crown to the upper back", + "tail: black feathers with a hint of red near the base", + "throat: white with a few black spots near the jawline" + ], + "heinroth shearwater": [ + "back: dark gray with subtle feather patterns", + "beak: long and black with a hooked tip", + "belly: light gray with fine, white streaks", + "breast: pale gray blending into the belly", + "crown: dark gray gently fading into the forehead", + "forehead: slightly lighter gray than the crown", + "eyes: black and round, surrounded by white feathers", + "legs: black and slender, with webbed feet", + "wings: dark gray with defined feather edges, long and narrow", + "nape: light gray blending seamlessly into the crown", + "tail: dark gray and slightly forked, with distinct feathers", + "throat: pale gray with a smooth transition to the breast" + ], + "hellmayr pipit": [ + "back: olive brown with streaks", + "beak: slender and pointed", + "belly: pale yellowish-white", + "breast: yellowish-white with dark streaks", + "crown: streaked grey-brown", + "forehead: distinct pale stripe", + "eyes: dark with white eyering", + "legs: thin and pale", + "wings: brown with white edges", + "nape: grey-brown with streaks", + "tail: brown with white outer feathers", + "throat: unmarked yellowish-white" + ], + "helmeted curassow": [ + "back: dark glossy greenish-black feathers", + "beak: strong, black curved beak", + "belly: black and white striped feathers", + "breast: rich, chestnut-brown feathers", + "crown: black feathers with a prominent, blue-grey casque", + "forehead: black feathers, transitioning into the casque", + "eyes: bright, small, and dark eyes", + "legs: long, strong, yellow colored legs", + "wings: broad, black and glossy feathers with a white stripe", + "nape: black and glossy neck feathers", + "tail: black feathers with a white band at the end", + "throat: black and white striped feathers" + ], + "helmeted friarbird": [ + "back: olive-brown, slightly streaked feathers", + "beak: long, hooked, silver-grey bill", + "belly: pale grey, thinly streaked feathers", + "breast: light grey, with subtle white streaks", + "crown: blackish-brown with prominent silver-grey crest", + "forehead: smooth silver-grey, blending into the crown", + "eyes: dark brown with thin, white eye-ring", + "legs: long, grey, slightly scaled", + "wings: dark brown, with lighter brown edges on the feathers", + "nape: olive-brown, blending into the back", + "tail: long, dark brown, with light brown edging on feathers", + "throat: pale grey, with fine black streaks" + ], + "helmeted guineafowl": [ + "back: grayish-blue feathers with white spots", + "beak: short, pale, muscular with mild curve", + "belly: rounded, blueish-gray with white spots", + "breast: blueish-gray, speckled with white", + "crown: bony, protruding helmet-like structure", + "forehead: short, covered in fine feathers", + "eyes: dark, small, round, with bright red eye-ring", + "legs: sturdy, greyish-blue, with spur on male guineafowl", + "wings: large, rounded, speckled with white spots", + "nape: covered with small, grayish-blue feathers", + "tail: short, rounded, spotted tail feathers", + "throat: smooth, featherless, bright blue skin" + ], + "helmeted hornbill": [ + "back: dark gray-brown feathers", + "beak: long, ivory-color casque", + "belly: creamy-white feathers", + "breast: grayish-brown plumage", + "crown: black crest with ivory casque", + "forehead: red skin above yellowish-white beak", + "eyes: dark, surrounded by red, bare skin", + "legs: strong, grayish-black", + "wings: grayish-brown with white flight feathers", + "nape: black, feathered base of the casque", + "tail: long, white central feathers with black tips", + "throat: red, bare skin" + ], + "helmeted manakin": [ + "back: vibrant green feathers", + "beak: small and black", + "belly: light greenish-yellow hue", + "breast: bright iridescent blue", + "crown: black helmet-like crest", + "forehead: black continuation of the crest", + "eyes: dark and rounded", + "legs: slim with gray hues", + "wings: bright green, rounded edges", + "nape: covered in black helmet crest", + "tail: green, long, and tapered", + "throat: iridescent blue transitioning to belly color" + ], + "helmeted myna": [ + "back: sleek, greenish-black feathers", + "beak: strong, yellow curved beak", + "belly: pale, yellowish-white color", + "breast: iridescent green-black plumage", + "crown: distinct helmet-like crest", + "forehead: prominent, protruding crest", + "eyes: dark, piercing gaze", + "legs: sturdy, yellow-orange legs", + "wings: shiny, green-black feathers", + "nape: glossy, greenish-black plumage", + "tail: long, iridescent green-black feathers", + "throat: pale, yellowish-white tone" + ], + "helmeted pygmy tyrant": [ + "back: olive-green feathers covering the body", + "beak: short and black, upturned", + "belly: whitish-gray with pale streaks", + "breast: grayish-white feathers with hints of olive", + "crown: black and white patch with central crest", + "forehead: smooth, transition to the crown", + "eyes: small and black, surrounded by white eyering", + "legs: slender and gray, with sharp claws", + "wings: olive-green with black wingtips", + "nape: olive-green coloration, joining the back", + "tail: short and square, mostly olive-green with black borders", + "throat: white feathers, separated from breast by a gray band" + ], + "helmeted woodpecker": [ + "back: black and white striped feathers", + "beak: strong, chisel-shaped, and black", + "belly: white with black speckles", + "breast: white with black speckles", + "crown: bright red with black markings", + "forehead: black and white striped", + "eyes: round, black, and alert", + "legs: short, strong, and gray", + "wings: black with white bars", + "nape: black with white stripes", + "tail: black with white tips", + "throat: pure white" + ], + "hemprich hornbill": [ + "back: dark grey feathers with hints of green", + "beak: large, curved, yellowish-orange", + "belly: white feathers mixed with dark grey", + "breast: white, fluffy, sometimes tinged with light grey", + "crown: black feathers with a short crest", + "forehead: black feathers, slightly raised", + "eyes: dark, surrounded by a bright turquoise ring", + "legs: pale grey, sturdy with strong talons", + "wings: dark grey with vibrant green and white accents", + "nape: black neck feathers, smooth and sleek", + "tail: elongated, black and white feathers with green sheen", + "throat: white or light grey, fluffy with small feathers" + ], + "hen harrier": [ + "back: sky-blue to gray feathers, slender build", + "beak: sharp, black, curved for prey", + "belly: white with gray-brown barring", + "breast: pale with gray to brown streaks", + "crown: gray-blue, flat", + "forehead: broad, white-bordered with gray", + "eyes: bright yellow, piercing gaze", + "legs: long, thin, yellow with black talons", + "wings: broad, gray-blue, black wingtips", + "nape: grayish-white, smooth transition", + "tail: long, gray-blue, black and white bands", + "throat: white, unmarked and clean" + ], + "henderson island crake": [ + "back: dark brown with faint streaks", + "beak: short and stout, blackish on top and pale below", + "belly: whitish-gray with dark brown streaks", + "breast: pale brown with dark spots", + "crown: dark brown, finely streaked", + "forehead: buffy-white, slightly streaked", + "eyes: dark brown, relatively large", + "legs: long and slender, pale yellowish-brown", + "wings: short and rounded, dark brown with buffy-white spots", + "nape: dark brown with fine streaks", + "tail: short and dark brown, slightly rounded", + "throat: white, sometimes with faint streaks" + ], + "henderson island fruit dove": [ + "back: vibrant green with hints of yellow", + "beak: short and stout, light grey with a slight curve", + "belly: light green fading to a pale yellow", + "breast: mixture of bright green and yellow feathers", + "crown: forest-green feathers with hints of blue iridescence", + "forehead: prominent light blue band above the eyes", + "eyes: dark, beady eyes with a white eye-ring", + "legs: grey, slightly scaled with curved, sharp claws", + "wings: shades of green feathers with hints of yellow and blue", + "nape: greenish-blue feathers covering the back of the neck", + "tail: long, tapered with a mix of green and yellow feathers", + "throat: vibrant green feathers fading into the breast area" + ], + "henderson island reed warbler": [ + "back: olive-brown with a greenish tinge", + "beak: dark and slightly curved", + "belly: pale yellow hue", + "breast: soft light gray with yellowish shades", + "crown: olive-brown, similar to the back", + "forehead: slightly lighter olive-brown", + "eyes: dark brown, encircled by pale eyering", + "legs: dark grayish-brown, slender", + "wings: olive-brown with faint feather edges", + "nape: matching olive-brown from the back", + "tail: elongated, olive-brown with a hint of green", + "throat: pale gray with a touch of yellow" + ], + "henderson petrel": [ + "back: dark gray and smooth", + "beak: black, thin, and medium-length", + "belly: white and soft", + "breast: white with gray speckles", + "crown: dark gray, rounded", + "forehead: dark gray, slightly sloping", + "eyes: black, small, shiny", + "legs: pale pink, skinny, webbed feet", + "wings: dark gray, long and slender", + "nape: dark gray, smoothly curved", + "tail: dark gray, forked and streamline", + "throat: white, narrow" + ], + "henna hooded foliage gleaner": [ + "back: mossy green feathers", + "beak: slender and curved", + "belly: light cream underside", + "breast: rusty orange with streaks of brown", + "crown: deep orange-red patch", + "forehead: brilliant green plumage", + "eyes: dark and inquisitive", + "legs: slender and grey", + "wings: vibrant green with darker edges", + "nape: olive green with subtle streaks", + "tail: elongated with green and brown feathers", + "throat: white and speckled" + ], + "henst goshawk": [ + "back: sleek, dark grey feathers", + "beak: sharp, curved black beak", + "belly: light grey feathers with fine horizontal white bars", + "breast: light grey with white horizontal bars", + "crown: dark grey feathers covering the head", + "forehead: light grey streaks extending above the eyes", + "eyes: piercing yellow-orange eyes", + "legs: sturdy yellow legs with sharp talons", + "wings: wide, rounded wings with soft grey pattern", + "nape: dark grey feathers continuing from the crown", + "tail: long, broad tail with dark grey and white bands", + "throat: light grey with a hint of white markings" + ], + "herald petrel": [ + "back: slate gray with light feathering", + "beak: small black, hooked shape", + "belly: white with light gray shading", + "breast: white merging into gray on sides", + "crown: dark gray with small white patches", + "forehead: light gray leading into white", + "eyes: black with white eye-ring", + "legs: slender, pinkish with black claws", + "wings: dark gray with black tips", + "nape: grayish-white, gradually darkening into the crown", + "tail: long, dark gray with white edges", + "throat: bright white transitioning into lighter gray" + ], + "herero chat": [ + "back: dark olive-brown feathers", + "beak: short, black, and conical", + "belly: light cream with brown markings", + "breast: beige with dense brown streaks", + "crown: rufous-orange head crest", + "forehead: light-grey with brownish speckling", + "eyes: black, surrounded by thin white eye-ring", + "legs: slender, grey, and scaled", + "wings: rufous-brown with black bars", + "nape: olive-brown with white-edged feathers", + "tail: brown with black bars and white tips", + "throat: white with faint brown markings" + ], + "hermit warbler": [ + "back: olive-green with subtle streaks", + "beak: pointed, slender, dark-colored", + "belly: white and unmarked", + "breast: yellow with possible black streaks", + "crown: yellow with black sides", + "forehead: yellow without markings", + "eyes: dark-colored, round, and prominent", + "legs: pale, slender, and relatively long", + "wings: dark with two white wing bars", + "nape: olive-green", + "tail: dark feathers with white outer edges", + "throat: yellow with possible black streaks" + ], + "hermit wood wren": [ + "back: olive-brown feathers", + "beak: thin and sharply pointed", + "belly: off-white with streaks of light brown", + "breast: light brown with darker brown streaks", + "crown: olive-brown with an unnoticeable crest", + "forehead: pale brown with no distinct markings", + "eyes: dark and round, encircled by pale eye-ring", + "legs: slender, light brown", + "wings: brown with faint pale barring", + "nape: olive-brown with no distinct markings", + "tail: dark brown with subtle pale bands", + "throat: slightly paler brown than breast" + ], + "heuglin bustard": [ + "back: brownish-grey feathers with dark markings", + "beak: strong, slightly curved, and pale yellow", + "belly: lighter brown with blotched patterns", + "breast: pale brown with dark streaks", + "crown: brownish-grey feathers blending into the nape", + "forehead: smooth, pale brown feathers", + "eyes: small and dark, surrounded by pale feather rings", + "legs: long and slender, pale yellow or greyish", + "wings: brownish-grey with dark tips and markings", + "nape: brownish-grey feathers transitioning into the crown", + "tail: elongated, brownish-grey with dark bars", + "throat: pale brown with a hint of white and minimal streaks" + ], + "heuglin masked weaver": [ + "back: vibrant yellow with black markings", + "beak: strong, pointed black beak", + "belly: bright yellow with some black feathering", + "breast: solid golden-yellow color", + "crown: black patch covering the top of the head", + "forehead: smooth black feathers extending towards the short beak", + "eyes: large, dark eyes surrounded by black markings", + "legs: dark gray, slender yet sturdy", + "wings: primarily yellow with black tips and markings", + "nape: continued yellow coloration from the back", + "tail: long black feathers with a characteristic v-shape", + "throat: bordered black with bright yellow feathers" + ], + "heuglin spurfowl": [ + "back: dark brown feathers with pale edges", + "beak: strong, short, and curved, with a pale gray color", + "belly: white or buff coloration, more prominent on the lower abdomen", + "breast: reddish-brown with fine white streaks or spots", + "crown: dark brown with pale streaks, forming a slight crest", + "forehead: pale brown, blending into the crown", + "eyes: bright and alert, with a reddish-brown color", + "legs: robust and sturdy, with a reddish-brown or grayish color", + "wings: rounded and short, with dark brown coverts and pale flight feathers", + "nape: dark brown, with pale streaks or spots", + "tail: moderately long and rounded, with dark brown feathers and pale edges", + "throat: reddish-brown with fine white streaks, transitioning into the breast coloration" + ], + "heuglin wheatear": [ + "back: dark brown with white streaks", + "beak: short, black, and pointed", + "belly: off-white with fine dark streaks", + "breast: pale grayish-brown with a darker upper breast", + "crown: dark brown with white streaks", + "forehead: white with fine dark streaks", + "eyes: medium-sized and dark", + "legs: long, slender, and black", + "wings: dark brown with white edges on coverts", + "nape: dark brown with white streaks", + "tail: black with broad white edges on outer feathers", + "throat: white with dark grayish-brown sides" + ], + "heuglin white eye": [ + "back: olive-green feathers covering the upper body", + "beak: short, black, and pointy for nectar extraction", + "belly: pale yellow plumage for a soft underbelly", + "breast: vibrant yellow feathers contrasting against the belly", + "crown: greenish-gray, rounded crest atop the head", + "forehead: small white spot just above the eyes", + "eyes: large, dark, and encircled by white feathers", + "legs: thin, dark, and sturdy for perching", + "wings: olive-green with hints of white streaks for agile flight", + "nape: greenish-gray blending into the back feathers", + "tail: long, olive-green feathers with white tips for balance", + "throat: yellow feathers transitioning into the breast area" + ], + "highland elaenia": [ + "back: olive-green upperparts", + "beak: dark, thin, pointed", + "belly: pale yellowish underparts", + "breast: light olive-gray, slightly streaked", + "crown: pale gray with a contrasting white crest", + "forehead: light gray, blending into the crown", + "eyes: dark, surrounded by thin white eye-ring", + "legs: dark, sturdy, and relatively short", + "wings: olive-green with two white wing bars", + "nape: light gray, connecting the crown to the back", + "tail: broad, olive-green with white outer tail feathers", + "throat: light gray, blending into the breast" + ], + "highland guan": [ + "back: vibrant greenish-brown feathers", + "beak: strong, slightly curved, black", + "belly: soft, cinnamon-brown", + "breast: pale gray with slight speckling", + "crown: dark bluish-gray with iridescent feathers", + "forehead: bluish-gray, smooth feathers", + "eyes: dark, piercing gaze with pale eyering", + "legs: sturdy, grayish-pink with sharp claws", + "wings: broad, greenish-brown with white bars", + "nape: iridescent dark blue sheen", + "tail: long, barred, dark greenish-brown with white tips", + "throat: pale gray with fine black streaks" + ], + "highland rush warbler": [ + "back: olive-brown and slightly streaked", + "beak: thin, pointed, and black", + "belly: pale brown with faint streaks", + "breast: light brownish-grey with some streaking", + "crown: olive-brown with subtle streaks", + "forehead: olive-brown and smooth", + "eyes: small and dark with white eye-ring", + "legs: long and slender; pale pinkish-grey", + "wings: olive-brown with faint wing bars", + "nape: olive-brown and slightly streaked", + "tail: olive-brown; slightly darker than back", + "throat: pale buff-white and unstreaked" + ], + "highland tinamou": [ + "back: dark olive-brown with subtle streaks", + "beak: short and curved, cream to pale gray", + "belly: grayish with blackish stripes", + "breast: bluish-grey with fine black barring", + "crown: dark brownish-grey", + "forehead: slightly lighter brownish-grey", + "eyes: small, black, and alert", + "legs: strong, feathered, with three toes", + "wings: short and rounded, olive-brown with black spots", + "nape: dark olive-brown, blending into the back", + "tail: short and slightly square, dark olive-brown with black bars", + "throat: pale grey, contrasts with breast" + ], + "hildebrandt spurfowl": [ + "back: light brown with black and white speckles", + "beak: short and stout, grayish-brown", + "belly: creamy-white with brown speckles", + "breast: light brown with black and white speckles", + "crown: dark brown with white streaks", + "forehead: dark brown with white streaks", + "eyes: small and dark brown", + "legs: long and grayish-brown with spur", + "wings: light brown with black and white speckles", + "nape: dark brown with white streaks", + "tail: short and fan-shaped, light brown with black bars", + "throat: light-gray and unmarked" + ], + "hildebrandt starling": [ + "back: iridescent green-blue feathers", + "beak: strong, black, slightly curved", + "belly: shiny green-blue with light feathering", + "breast: bright blue-violet feathers", + "crown: glossy blue with a hint of purple", + "forehead: smooth blue-violet transition from the crown", + "eyes: dark brown with a white eye ring", + "legs: sturdy, dark gray with sharp claws", + "wings: green-blue feathers with a purple sheen", + "nape: vibrant green-blue, connecting the crown and back", + "tail: long, blue-violet feathers with a slight curve", + "throat: shiny blue feathers fading to the breast" + ], + "hill blue flycatcher": [ + "back: bluish-grey feathers", + "beak: short, dark, slightly curved", + "belly: pale white with blue undertones", + "breast: light blue with streaks of pale orange", + "crown: bright blue feathers", + "forehead: vibrant blue streak", + "eyes: small, beady, black", + "legs: thin, dark, and agile", + "wings: deep blue with greyish-blue covert feathers", + "nape: blue feathers transitioning into grey", + "tail: long, blue with white patches", + "throat: pale orange with white markings" + ], + "hill partridge": [ + "back: brownish-grey feathers with black bars", + "beak: short, stout, and hooked", + "belly: whitish-grey with dark streaks", + "breast: reddish-brown with black spots", + "crown: rufous-brown with black markings", + "forehead: buffy-white with narrow black bands", + "eyes: dark brown with pale circular eye-ring", + "legs: feathered and sturdy, featuring dull orange feet", + "wings: rounded, dark reddish-brown with black bars", + "nape: buffy-grey with black lines", + "tail: short, rufous-brown with faint black bars", + "throat: buff-white with black streaks" + ], + "hill pigeon": [ + "back: light grey feathers with a slight iridescence", + "beak: short, pale yellow with a hooked tip", + "belly: whitish-grey plumage with soft texture", + "breast: pale grey feathers, sometimes with a pinkish hue", + "crown: smooth, grey feathers leading to the nape", + "forehead: light grey with a slight curve, extending to the beak", + "eyes: bright, orange, medium-sized with black pupils", + "legs: reddish-pink with scaly texture, ending in claws for gripping", + "wings: grey with white stripes and primary feathers extending slightly past the tail", + "nape: grey feathers blending into the back, sometimes with a green or purple iridescence", + "tail: grey feathers with a white stripe near the tip, often fanned out in flight", + "throat: light grey, with a slightly paler color than the breast" + ], + "hill prinia": [ + "back: olive-brown feathers with texture", + "beak: slender, pointy, and black", + "belly: light yellowish plumage", + "breast: pale yellow feathers", + "crown: warm-toned brown with minimal streaks", + "forehead: smooth, slightly lighter brown", + "eyes: round, black, and beady", + "legs: thin and pale pinkish-brown", + "wings: olive-brown with faint bar patterns", + "nape: same warm-toned brown as crown", + "tail: long, slender, and olive-brown", + "throat: pale yellow, slight transition from breast" + ], + "hill swallow": [ + "back: sleek and streamlined, dark blue or greenish-black", + "beak: short, pointed, and strong for catching insects", + "belly: light grey or off-white, clean and flat", + "breast: rounded, pale blue or grey with a tinge of brown", + "crown: glossy, iridescent blue-black, smooth and flat", + "forehead: slightly rounded, dark blue or greenish-black", + "eyes: small, round, and dark with a sharp, alert gaze", + "legs: short and sturdy, adapted for perching and gripping", + "wings: long, slender, and pointed, built for fast, agile flight", + "nape: iridescent blue-black, smooth and continuous with the crown", + "tail: deeply forked, with long central feathers, designed for aerial acrobatics", + "throat: white or pale grey, unmarked and smoothly transitioning to the breast" + ], + "himalayan beautiful rosefinch": [ + "back: slate gray with subtle pink highlights", + "beak: short, conical, and silver-gray", + "belly: soft pink fading into white", + "breast: bright rosy pink", + "crown: vibrant pink", + "forehead: soft gray blending into rosy crown", + "eyes: small and black, surrounded by light gray feathers", + "legs: sturdy and gray", + "wings: gray with prominent pink edges", + "nape: gray-pink, blending into the slate gray back", + "tail: long and forked, with gray and pink feathers", + "throat: rosy pink blending into white on the belly" + ], + "himalayan black lored tit": [ + "back: slate gray with subtle white streaks", + "beak: short, black, and conical", + "belly: white with black ventral streaks", + "breast: white with black markings", + "crown: vibrant yellow with black edges", + "forehead: bright yellow, continuous with crown", + "eyes: black with thin white eyering", + "legs: dark gray and sturdy", + "wings: black with white markings and yellow tinges", + "nape: black with white streaks", + "tail: black, fan-like, with white outer feathers", + "throat: yellow with black bordering" + ], + "himalayan bulbul": [ + "back: olive-green and smooth", + "beak: stout, slightly curved, and black", + "belly: off-white and feathery", + "breast: pale yellow and fluffy", + "crown: prominent black crest", + "forehead: black merging with crest", + "eyes: dark, round, and expressive", + "legs: long, slender, and light brown", + "wings: olive-green with slight white edging", + "nape: olive-green blending with the back", + "tail: long and olive-green with white tips", + "throat: off-white, contrasting with breast" + ], + "himalayan buzzard": [ + "back: light brown with dark streaks", + "beak: sharp, hooked, and yellowish", + "belly: pale with brownish barring", + "breast: similar to belly, pale with brownish barring", + "crown: white or off-white with faint streaks", + "forehead: off-white or light brown with streaks", + "eyes: dark brown and piercing", + "legs: yellowish and powerful", + "wings: broad and brown with lighter underparts", + "nape: creamy white with dark streaks", + "tail: brown with darker bars", + "throat: creamy-white with faint streaks" + ], + "himalayan cuckoo": [ + "back: olive-brown with dark markings", + "beak: slender, curved, and dark gray", + "belly: white with black bars", + "breast: grayish with black streaks", + "crown: grayish-brown with slight dark streaks", + "forehead: slightly lighter grayish-brown", + "eyes: dark brown with thin white eye-ring", + "legs: yellowish-gray and strong", + "wings: olive-brown with pale-edged feathers", + "nape: grayish-brown with dark markings", + "tail: long, dark brown, with white tips and markings", + "throat: pale grayish-white with fine dark streaks" + ], + "himalayan cutia": [ + "back: rich chestnut-brown with fine black barring", + "beak: stout, slightly curved, dark grey", + "belly: white with black scaling and yellow patches", + "breast: white with black bars and yellow on sides", + "crown: chestnut with black streaking", + "forehead: chestnut with fine black barring", + "eyes: medium-sized, dark brown", + "legs: long, powerful, greyish-blue", + "wings: chestnut with black and white bars, slightly rounded", + "nape: chestnut with black streaking", + "tail: chestnut with black and white barring, fan-shaped", + "throat: white with distinct black barring" + ], + "himalayan flameback": [ + "back: olive-green feathers with black stripes", + "beak: long, curved, pale ivory", + "belly: cream-white with dark streaks", + "breast: yellowish-orange with black stripes", + "crown: black with red crest", + "forehead: bold red patch", + "eyes: round, dark brown", + "legs: grayish-blue with strong claws", + "wings: olive-green with black and white spots", + "nape: black with streaks of red", + "tail: long, black feathers with white tips", + "throat: light, cream-colored feathers" + ], + "himalayan griffon": [ + "back: broad and muscular for powerful flight", + "beak: large, powerful, and hooked for tearing flesh", + "belly: lightly feathered and slightly rounded", + "breast: prominent and covered in dense light-colored feathers", + "crown: covered in short, dark feathers creating a capped appearance", + "forehead: broad and flat with feathering extending past the brow", + "eyes: dark, piercing, and surrounded by a patch of bare skin", + "legs: strong and feathered, ending in sharp talons", + "wings: long and broad for soaring high altitudes", + "nape: feathered with a lighter color than the rest of the body", + "tail: long, wide and wedge-shaped for stability and maneuverability", + "throat: covered in shorter feathers, lighter in color and less dense than the breast" + ], + "himalayan owl": [ + "back: greyish-brown feathers with fine markings", + "beak: sharp, black, short, and hooked", + "belly: white with brown streaks and barring", + "breast: rufous-brown with dark striations", + "crown: greyish-brown with dark streaks", + "forehead: whitish with fine dark markings", + "eyes: large and bright yellow", + "legs: feathered and strong, ending in sharp talons", + "wings: broad and rounded with dark bars", + "nape: greyish-brown with fine barring", + "tail: dark with horizontal light bands", + "throat: white with dark striations" + ], + "himalayan prinia": [ + "back: light brown with faint streaks", + "beak: thin, sharp, and blackish-grey", + "belly: pale white with a tinge of buff", + "breast: light brown, blending with belly", + "crown: rufous-brown with a black streak", + "forehead: pale greyish-white", + "eyes: small, black, and shiny", + "legs: slender and pale brown", + "wings: brown with faint bars and white fringes", + "nape: rufous-brown, transitioning from crown", + "tail: long, blackish, with white outer feathers", + "throat: pale white, contrasting with breast" + ], + "himalayan rubythroat": [ + "back: olive-brown with a tinge of green", + "beak: sharp, blackish, and slightly curved", + "belly: off-white with a rusty hue", + "breast: brilliant, ruby-red throat patch", + "crown: dark grayish-brown with a short crest", + "forehead: slightly paler grayish-brown", + "eyes: small, black, and alert", + "legs: sturdy, dark brown", + "wings: olive-brown with faint wingbars", + "nape: dark gray-brown, slightly paler than the crown", + "tail: long, dark brown, with white corners", + "throat: ruby-red patch on males; white or buff on females" + ], + "himalayan shortwing": [ + "back: olive-brown feathers", + "beak: short, dark, and strong", + "belly: pale gray-white feathers", + "breast: smoky gray with dark barring", + "crown: dark bluish-gray feathers", + "forehead: slightly paler bluish-gray", + "eyes: small and dark", + "legs: strong, light pinkish-brown", + "wings: rounded, dark-edged feathering", + "nape: bluish-gray with darker streaks", + "tail: short and broad with dark bars", + "throat: grayish-white with darker markings" + ], + "himalayan snowcock": [ + "back: brownish-grey plumage", + "beak: short, stout, and pale", + "belly: white with black bars", + "breast: greyish-white with faint barring", + "crown: reddish-brown with black streaks", + "forehead: pale grey", + "eyes: dark, surrounded by white eye ring", + "legs: feathered, pale grey", + "wings: brown-grey with black and white markings", + "nape: reddish-brown plumage", + "tail: short, fan-shaped with dark barring", + "throat: white with black collar" + ], + "himalayan swiftlet": [ + "back: dark grey plumage", + "beak: small black and slightly curved", + "belly: lighter grey-white feathers", + "breast: grey-white plumage", + "crown: dark grey with smooth feathers", + "forehead: slightly paler grey feathers", + "eyes: small and black", + "legs: short with blackish-grey scales", + "wings: long, pointed and streamlined", + "nape: dark grey with smooth feathers", + "tail: short and slightly forked", + "throat: pale grey-white plumage" + ], + "himalayan thrush": [ + "back: dark olive-brown, patterned feathers", + "beak: medium-sized, straight, and black", + "belly: off-white with dark speckles", + "breast: grayish-white with subtle barring", + "crown: deep slate gray with darker patterning", + "forehead: smooth slate gray, blending into crown", + "eyes: small, round, and black, encircled with white", + "legs: long, slender, and yellowish-orange", + "wings: olive-brown with pale, crescent-shaped markings", + "nape: patterned gray, blending into back plumage", + "tail: olive-brown with dark, horizontal barring", + "throat: plain grayish-white, contrasting with breast" + ], + "himalayan white browed rosefinch": [ + "back: vibrant crimson hue", + "beak: short, robust, conical", + "belly: soft pinkish-white", + "breast: bright rose-pink", + "crown: pale brown with white streaks", + "forehead: white brow stripe", + "eyes: shiny black, encircled with white", + "legs: sturdy, featherless, brown", + "wings: dark brown with pink edges", + "nape: pale brown, streaked", + "tail: elongated, forked, rosy brown", + "throat: pale pink with fine streaks" + ], + "himalayan woodpecker": [ + "back: barred pattern with black and white feathers", + "beak: long, chisel-like shape with a sharp tip", + "belly: white with fine black barring", + "breast: white with black streaks on the sides", + "crown: red in males, black in females", + "forehead: black with white streaks", + "eyes: dark, surrounded by white frame", + "legs: strong, grayish, and scaled", + "wings: black with white spotting and barring", + "nape: black with white streaks", + "tail: gray-brown with black barring", + "throat: white with dark streaks" + ], + "hinde pied babbler": [ + "back: olive-green feathers across the spine", + "beak: short and stout, greyish in color", + "belly: pale cream or beige plumage", + "breast: light grey or beige covering", + "crown: dark brown or black, mildly streaked", + "forehead: blending from crown into a paler face", + "eyes: bright and reflective, pale eye-ring", + "legs: long, slender and greyish", + "wings: olive-green with darker primary feathers", + "nape: brown-grey, merging with crown and back", + "tail: long and dark brown, slightly streaked", + "throat: beige or cream, contrasting with breast" + ], + "hispaniolan crossbill": [ + "back: olive-green and streaked", + "beak: curved and thick, suited for extracting seeds from cones", + "belly: pale yellowish-green", + "breast: lighter olive-green", + "crown: dark olive-green", + "forehead: slightly paler greenish-yellow", + "eyes: small, dark, and lively", + "legs: short and sturdy, with strong feet for gripping cones", + "wings: long and pointed, with a mix of dark and lighter green feathers", + "nape: olive-green, blending seamlessly with the back", + "tail: forked, with dark green and black feathers", + "throat: lighter green with faint streaking" + ], + "hispaniolan emerald": [ + "back: vibrant green, shimmering feathers", + "beak: slender, slightly curved black beak", + "belly: soft, grayish-white feathers", + "breast: pale gray with subtle green tinge", + "crown: bright iridescent green cap", + "forehead: sparkling green feathers", + "eyes: dark, round, and alert", + "legs: thin, black and wiry", + "wings: glossy green upperparts, darker flight feathers", + "nape: iridescent green, continuing from crown", + "tail: black with outer white feathers, forked shape", + "throat: blue-green, eye-catching patch" + ], + "hispaniolan lizard cuckoo": [ + "back: olive-brown feathers", + "beak: long, curved, dark gray", + "belly: grayish-white with streaks", + "breast: light gray with hints of brown", + "crown: dark olive-brown feathers", + "forehead: lighter brown shades", + "eyes: dark, piercing gaze", + "legs: slim, grayish-blue", + "wings: long, olive-brown with white bands", + "nape: olive-brown, connecting with the back", + "tail: long, dark olive-brown, white tips", + "throat: light gray, blending into the breast" + ], + "hispaniolan mango": [ + "back: vibrant green feathers", + "beak: long, slightly curved, black", + "belly: yellow-orange coloring", + "breast: bright yellow plumage", + "crown: iridescent green crest", + "forehead: shiny green feathers", + "eyes: dark, expressive with a white eye-ring", + "legs: sturdy, dark gray", + "wings: shimmering green with black edges", + "nape: green and yellow feather blend", + "tail: elongated, dark green with orange tips", + "throat: bold yellow feathers" + ], + "hispaniolan nightjar": [ + "back: well-camouflaged brownish gray", + "beak: short, pointed dark beak", + "belly: light gray with brown speckles", + "breast: grayish-brown with darker spots", + "crown: dark with grayish streaks", + "forehead: light brown with faint speckles", + "eyes: large, dark, prominent", + "legs: short, thin, pale gray", + "wings: long, pointed with brownish-gray patterns", + "nape: brownish-gray with lighter streaks", + "tail: dark with light bands and white-tipped outer feathers", + "throat: pale gray with darker speckles" + ], + "hispaniolan oriole": [ + "back: black and sleek feathers", + "beak: long, black, and slightly curved", + "belly: vibrant yellow with black streaks", + "breast: bright yellow with black accents", + "crown: black with a yellow edge", + "forehead: striking yellow stripe", + "eyes: small and dark with a thin white eye-ring", + "legs: thin and black", + "wings: black with yellow highlights and white wing bars", + "nape: black feathers transitioning to yellow", + "tail: long, black feathers with yellow tips", + "throat: vivid yellow with a black mask" + ], + "hispaniolan parakeet": [ + "back: vibrant green feathers covering the back", + "beak: strong, ivory-colored, curved beak", + "belly: lighter green feathers on the lower abdomen", + "breast: bright green feathers across the chest", + "crown: sleek, green feathers on top of the head", + "forehead: bright red feathers on the upper part of the face", + "eyes: black, round, expressive eyes surrounded by green feathers", + "legs: two sturdy, grey legs with zygodactyl feet", + "wings: long, green feathers with hints of blue on the undersides", + "nape: green feathers transitioning from red to green on the neck's backside", + "tail: long, green, slightly blue-tinted feathers extending from the base", + "throat: slightly lighter green feathers around the neck region" + ], + "hispaniolan parrot": [ + "back: vibrant green feathers", + "beak: strong, hooked, pale-colored", + "belly: light green with a touch of blue", + "breast: greenish-blue plumage", + "crown: bright green head feathers", + "forehead: greenish-yellow feathers", + "eyes: expressive, dark brown, outlined by a white ring", + "legs: sturdy, gray, and scaly", + "wings: rich green with blue and red accents", + "nape: green feathers fading into blue", + "tail: long, green feathers with red undertail coverts", + "throat: bright green distinguished plumage" + ], + "hispaniolan pewee": [ + "back: olive-colored with slight streaks", + "beak: thin, elongated, and dark-colored", + "belly: light cream or grayish-white", + "breast: pale grayish-olive, slightly streaked", + "crown: olive-toned with a faint crest", + "forehead: smooth and olive-colored", + "eyes: black with white eye-ring", + "legs: thin, dark gray-brown, and strong", + "wings: olive-toned with faint wing bars", + "nape: olive-colored, blending with the crown", + "tail: dark, slender, elongated, and slightly notched", + "throat: pale grayish-white, blending into the breast" + ], + "hispaniolan spindalis": [ + "back: olive-green with streaks", + "beak: sharp and pointed, black color", + "belly: yellowish-green hue", + "breast: bright yellow with black streaks", + "crown: greenish-black with yellow edges", + "forehead: black and yellow striped", + "eyes: small and dark, with white eyerings", + "legs: sturdy, grey color", + "wings: blue and black, with yellow shoulder patches", + "nape: olive-green with black streaks", + "tail: long and black, white-tipped feathers", + "throat: bright yellow, extending up to the chin" + ], + "hispaniolan trogon": [ + "back: vibrant green feathers with a slight iridescence", + "beak: short, stout, and black in color", + "belly: bold, bright yellow feathers", + "breast: white band separating the green back from the yellow belly", + "crown: green feathers with a metallic sheen, similar to the back", + "forehead: sleek, green feathers fading into the crown", + "eyes: large, round, and black, surrounded by a thin white ring", + "legs: short and gray, with strong, curved toes for perching", + "wings: green with black and white banding on the primary and secondary feathers", + "nape: continuation of the green feathers found on the crown and back", + "tail: long, square-shaped tail feathers featuring green on top with white and black bands underneath", + "throat: vibrant green feathers merging with the breast's white band" + ], + "hispaniolan woodpecker": [ + "back: greenish-black, streaked feathers", + "beak: long, chisel-shaped, black", + "belly: light buff-yellow with dark streaks", + "breast: pale yellowish-brown with black barring", + "crown: bright red in males, black in females", + "forehead: black feathers transitioning to red or black crown", + "eyes: dark brown with yellowish-white eye-ring", + "legs: gray, sturdy, and well-adapted for clinging to tree trunks", + "wings: greenish-black, barred with white streaks", + "nape: transitioning from the crown, with red or black feathers", + "tail: greenish-black feathers with white streaks, stiff and sharp for balance", + "throat: pale buff-yellow, blending into breast coloring" + ], + "hoary puffleg": [ + "back: olive-green feathers with a shimmering effect", + "beak: straight, slender black beak", + "belly: silvery-white with a slight green sheen", + "breast: greenish-white feathers with a metallic sheen", + "crown: bluish-violet iridescent feathers", + "forehead: white plumage extending to the front of crown", + "eyes: small, round black eyes", + "legs: short, black and sturdy legs", + "wings: iridescent green with a bronze tint", + "nape: bluish-violet shiny feathers", + "tail: metallic green with a slight fork shape", + "throat: silvery-white feathers blending into the breast area" + ], + "hoary headed grebe": [ + "back: grayish-black with fine white streaks", + "beak: short, pointed, and pale yellow", + "belly: white with a subtle gray tint", + "breast: soft, whitish-gray", + "crown: black with a distinctive white streak", + "forehead: black and slightly raised", + "eyes: bright red and expressive", + "legs: powerful and lobed, positioned far back on the body", + "wings: small, short, and grayish-black with white flecks", + "nape: black with white streaks extending to the back", + "tail: short and fan-shaped with grayish-black feathers", + "throat: white with striking black border" + ], + "hoary throated barwing": [ + "back: grayish-brown with subtle streaks", + "beak: black, short, and stout", + "belly: creamy-white with scaled patterns", + "breast: grayish-white with dark streaks", + "crown: reddish-brown and well-rounded", + "forehead: pale gray with slight feathering", + "eyes: black, round, and expressive", + "legs: sturdy and yellowish-brown", + "wings: brown with lighter edges on feathers", + "nape: pale gray with a hint of red", + "tail: dark brown, slightly forked, and of medium length", + "throat: distinct hoary-white coloration" + ], + "hoary throated spinetail": [ + "back: brownish-gray feathers", + "beak: strong, slender, and slightly curved", + "belly: off-white, pale grayish hue", + "breast: smooth grayish-white plumage", + "crown: subtly streaked, grayish-brown cap", + "forehead: faint gray, slightly paler than crown", + "eyes: dark, beady with a hint of white outline", + "legs: sturdy, dark gray", + "wings: grayish-brown, edged with white tips", + "nape: slightly lighter gray, leading to a paler throat", + "tail: gray-brown, distinct barring, and soft white tips", + "throat: hoary (grayish-white), giving the bird its name" + ], + "hodgson frogmouth": [ + "back: brownish-grey with streaks and spots", + "beak: short, wide, and triangular", + "belly: whitish with brownish bars", + "breast: greyish-brown with fine barring", + "crown: brown with small white spots", + "forehead: greyish-brown with mottled markings", + "eyes: large and dark, with a white eyering", + "legs: short and strong, with yellowish-brown feet", + "wings: brown with pale spots and patches", + "nape: brown with a subtle grey and white pattern", + "tail: dark brown with faint white bars", + "throat: greyish-white with fine horizontal stripes" + ], + "hodgson hawk cuckoo": [ + "back: mottled brown and gray feathers", + "beak: long, slender with slight curve", + "belly: pale gray with white bars", + "breast: grayish-white with brownish stripes", + "crown: olive-gray with streaks", + "forehead: olive-brown with faint streaks", + "eyes: dark brown with white eye-ring", + "legs: slender, light pinkish gray", + "wings: olive-gray with white bands", + "nape: olive-gray with streaks", + "tail: long and graduated, dark gray with white tips", + "throat: pale gray with white bars" + ], + "hodgson redstart": [ + "back: olive-green with dark streaks", + "beak: thin, black, pointed", + "belly: white with faint grey streaks", + "breast: vibrant orange-red", + "crown: slate-grey with white streak", + "forehead: slate-grey", + "eyes: small, black, surrounded by white stripe", + "legs: long, slender, black", + "wings: black with white patches", + "nape: slate-grey with white stripe", + "tail: black with prominent orange-red sides", + "throat: black with white streaks" + ], + "hodgson treecreeper": [ + "back: brownish-grey feathers with streaks", + "beak: curved, sharp, and slender", + "belly: pale, off-white with light streaks", + "breast: silvery-grey with some streaks", + "crown: dark brown with a white stripe", + "forehead: lighter brown than the crown", + "eyes: small, dark, surrounded by white rings", + "legs: slender, strong, and light grey", + "wings: brownish-grey with white feather edges", + "nape: dark brown with white stripe", + "tail: long and sturdy with thin, pale bands", + "throat: pale, off-white color" + ], + "hoffmann woodpecker": [ + "back: bold, streaked black and white pattern", + "beak: strong, chisel-like bill", + "belly: creamy-white with some light spotting", + "breast: lightly spotted or plain white", + "crown: bright red crest in males, black in females", + "forehead: black and white barring", + "eyes: dark, beady, and expressive", + "legs: long, gray, and powerful", + "wings: black with white spots and bars", + "nape: black with white streaks", + "tail: black and white barred, stiff-feathered", + "throat: white with black borders" + ], + "hoffmanns woodcreeper": [ + "back: brownish-olive with dark streaks", + "beak: long, curved, and slender", + "belly: pale buff or whitish", + "breast: light brown with darker streaks", + "crown: dark brown with lighter streaks", + "forehead: brownish and slightly streaked", + "eyes: dark with pale eye-ring", + "legs: grayish or pale brown", + "wings: brownish with faint pale bars", + "nape: brown with lighter streaks", + "tail: long, stiff, and dark brown", + "throat: pale buff or whitish" + ], + "holub golden weaver": [ + "back: golden-yellow feathers with black streaks", + "beak: long, slender, and black", + "belly: vibrant golden-yellow hue", + "breast: brightly colored yellow feathers", + "crown: black plumage with iridescent sheen", + "forehead: deep golden-yellow coloring", + "eyes: dark, round, and alert", + "legs: slender and black, with sharp claws for gripping", + "wings: golden-yellow feathers with black markings and white edges", + "nape: blend of yellow and black feathers", + "tail: long, black feathers, tipped with white", + "throat: contrasting white feathers" + ], + "honduran emerald": [ + "back: vibrant green with a slight metallic sheen", + "beak: black, slender, and curved", + "belly: light gray with subtle green undertones", + "breast: grayish-white with a hint of green", + "crown: rich emerald green", + "forehead: bright emerald green with a small white patch", + "eyes: dark and beady, surrounded by black rings", + "legs: short and black with small, sharp claws", + "wings: shiny green and slightly pointed, with black flight feathers", + "nape: vibrant emerald green, with a gentle curve", + "tail: long, dark green central feathers flanked by black outer feathers", + "throat: brilliant white with a subtle green iridescence" + ], + "honeyguide greenbul": [ + "back: olive-green plumage", + "beak: short, stout, slightly curved", + "belly: pale yellow with faint streaks", + "breast: olive-yellow hue", + "crown: grayish-olive coloring", + "forehead: muted gray-olive tone", + "eyes: large, dark, and round", + "legs: slender, grayish-brown", + "wings: olive-green with distinct feathers", + "nape: olive-green transitioning from the crown", + "tail: long, olive-green with subtle barring", + "throat: pale yellow with light streaks" + ], + "hooded antpitta": [ + "back: olive-brown feathers covering the dorsal area", + "beak: short, stout, and black with hooked upper mandible", + "belly: off-white, blending to pale orange undertones", + "breast: buff-colored feathers with light streaks", + "crown: dark gray hood extending to the nape", + "forehead: part of the dark gray hood covering the head", + "eyes: small, round, black with a white eye-ring", + "legs: long, slender, and yellow with large scaled feet", + "wings: olive-brown with occasional faint barring", + "nape: part of the dark gray hood extending from the crown", + "tail: short and olive-brown with inconspicuous barring", + "throat: white, contrasting with the dark gray hood" + ], + "hooded berryeater": [ + "back: olive-green with a slight sheen", + "beak: short, hooked, and blackish-brown", + "belly: pale yellow with olive-brown streaks", + "breast: yellowish with olive-green streaks", + "crown: bluish-black hood covering head", + "forehead: part of the black hooded area", + "eyes: dark brown with a thin, pale eyering", + "legs: grayish-brown and strong", + "wings: olive-green, rounded with blackish tips", + "nape: confluence of black hood and olive-green back", + "tail: olive-green with blackish central feathers", + "throat: part of the black hooded area" + ], + "hooded butcherbird": [ + "back: dark grey upperpart with light feather edgings", + "beak: strong, hooked, black bill", + "belly: whitish-gray underpart", + "breast: grayish-white colored chest", + "crown: black head with a distinct crest", + "forehead: black coloration extending to the eyes", + "eyes: dark, piercing gaze surrounded by black feathers", + "legs: relatively short, black in color", + "wings: dark grey with light-edged feathers and white patches", + "nape: black feathers connecting crown to back", + "tail: long, dark grey tail feathers with white tips", + "throat: white to light grey coloration" + ], + "hooded crane": [ + "back: light gray, soft feathers", + "beak: long, straight, pointed, yellowish", + "belly: white feathered, plump", + "breast: white, extended feathers", + "crown: black, sleek covering head", + "forehead: black feathers meeting beak", + "eyes: small, dark, expressive gaze", + "legs: long, thin, light gray", + "wings: long, broad, feathered, gray and white", + "nape: black feathers, extending to the crown", + "tail: short, white, slightly spread out feathers", + "throat: white, smooth feathers" + ], + "hooded crow": [ + "back: dark grey plumage", + "beak: strong, black, slightly curved", + "belly: light grey feathers", + "breast: light grey plumage", + "crown: black head feathers", + "forehead: black feathers blending into grey", + "eyes: dark brown with keen gaze", + "legs: black, sturdy legs with sharp talons", + "wings: broad, black, and grey feathers", + "nape: grey feathers transitioning to black", + "tail: black, fan-shaped feathers", + "throat: lighter grey, sleek feathers" + ], + "hooded cuckooshrike": [ + "back: sleek, grayish upper body", + "beak: sharp, slightly hooked", + "belly: pale, slightly striped", + "breast: light gray, smooth feathered", + "crown: dark gray with distinct hood", + "forehead: part of the darker hood", + "eyes: piercing, black with white rings", + "legs: slim, grayish", + "wings: grayish with subtle markings", + "nape: part of the dark hood, grayish", + "tail: long and narrow, grayish", + "throat: pale, merging into breast color" + ], + "hooded gnateater": [ + "back: olive-brown with streaks", + "beak: sharp, thin, slightly curved", + "belly: pale yellowish-white", + "breast: grayish-brown with hints of purple", + "crown: black with black crest", + "forehead: black, connected to the crest", + "eyes: dark, round, piercing gaze", + "legs: strong, slender, pinkish-gray", + "wings: olive-brown, rounded edges", + "nape: grayish-brown with black crest", + "tail: olive-brown, long, and graduated", + "throat: whitish-gray with black markings" + ], + "hooded grebe": [ + "back: brownish-black feathers with a slight gloss", + "beak: thin, pointed, dark grey color", + "belly: white plumage", + "breast: white with a slight grayish tinge", + "crown: black or dark grey plumage, smooth", + "forehead: black or dark grey feathers, slightly raised", + "eyes: small, bright red or orange-red", + "legs: relatively short, yellow-grey with partial webbed feet", + "wings: black or dark grey with white spots, thin and elongated", + "nape: black or dark grey feathers, smooth texture", + "tail: short and rounded, black or dark grey feathers", + "throat: white with a soft and fluffy appearance" + ], + "hooded grosbeak": [ + "back: olive-green feathers", + "beak: sturdy, cone-shaped", + "belly: bright yellow hue", + "breast: vibrant yellow plumage", + "crown: contrasting black cap", + "forehead: black adjoining crown", + "eyes: dark, small, and round", + "legs: strong, grayish-brown", + "wings: olive-green with powerful flight", + "nape: black stripe extending from crown", + "tail: olive, medium-length, and fan-shaped", + "throat: brilliant yellow covering" + ], + "hooded monarch": [ + "back: sleek, dark-blue back feathers", + "beak: sharp, black, elongated beak", + "belly: light, whitish-grey feathers", + "breast: vibrant blue feathered chest", + "crown: distinct, bright-orange hood", + "forehead: orange, at the base of the beak", + "eyes: striking, black, round eyes", + "legs: slender, strong, black legs", + "wings: large, iridescent blue wings", + "nape: orange-feathered nape, connecting to hood", + "tail: long, deep-blue, fan-shaped tail feathers", + "throat: orange feathers, merging with breast" + ], + "hooded mountain tanager": [ + "back: vibrant royal blue", + "beak: short and black", + "belly: deep orange", + "breast: turquoise with black edges", + "crown: glossy black silhouette", + "forehead: black merging with crown", + "eyes: tiny, bead-like, encircled by black", + "legs: slim black", + "wings: blue with black and white stripes", + "nape: glossy black", + "tail: royal blue with white tips", + "throat: turquoise-blue feathers" + ], + "hooded mountain toucan": [ + "back: bright green with blue tint", + "beak: elongated and curved, yellow and red", + "belly: vibrant green", + "breast: deep blue with purple highlights", + "crown: glossy black to dark blue", + "forehead: vivid red or orange", + "eyes: large, dark, and round surrounded by a mask-like black", + "legs: black and sturdy", + "wings: green with a blue tinge and contrasting red flight feathers", + "nape: deep blue and purple", + "tail: long and vibrant green", + "throat: bright yellow-green" + ], + "hooded munia": [ + "back: dark chocolate brown", + "beak: short, sharp, silvery-blue", + "belly: white with streaks of dark brown", + "breast: white with dark brown streaks", + "crown: solid black", + "forehead: jet black", + "eyes: small, beady, black", + "legs: delicate, pale pinkish-grey", + "wings: dark brown with evident feathers", + "nape: black transitioning into brown", + "tail: long, slender, dark brown", + "throat: white with dark brown streaks" + ], + "hooded pitohui": [ + "back: vibrant orange feathers", + "beak: short and sharp black beak", + "belly: bright orange plumage", + "breast: deep orange and soft feathers", + "crown: contrasting black hood and crest", + "forehead: sleek black feathers", + "eyes: small round black eyes", + "legs: strong gray legs with sharp claws", + "wings: wide-spanning orange and black wings", + "nape: striking black feathers connecting the crown", + "tail: long and tapered orange feathers", + "throat: defined black feathers meeting the orange breast" + ], + "hooded pitta": [ + "back: olive-green feathers", + "beak: black, short, and stout", + "belly: bright turquoise-blue", + "breast: yellowish-green", + "crown: black with blue edges", + "forehead: black with bluish tinge", + "eyes: black with white eye-ring", + "legs: pinkish-grey and sturdy", + "wings: green with black bars", + "nape: black with blue edges", + "tail: blue-green with black tips", + "throat: yellow" + ], + "hooded plover": [ + "back: light grey upper body", + "beak: short and pale orange", + "belly: white underside", + "breast: white with occasional black band", + "crown: black hood extending to eyes", + "forehead: black, part of the hood", + "eyes: small and dark", + "legs: thin and pale orange", + "wings: light grey with black markings", + "nape: black, continuation of hood", + "tail: white with black outer feathers", + "throat: white, below the hood" + ], + "hooded robin": [ + "back: muted dark gray feathers with slight streaks", + "beak: sharp, pointed, light grey", + "belly: white feathers with sparse grey streaks", + "breast: mostly white with patches of reddish-brown", + "crown: dark black hood extends to the nape", + "forehead: black hood with a distinct red-brown border", + "eyes: small and dark, surrounded by the black hood", + "legs: slim, long, pale grey", + "wings: dark grey with reddish-brown patches and highlights", + "nape: covered by the divide of the thick black hood", + "tail: long, dark grey with reddish-brown undertones", + "throat: white, bordered by dark black hood" + ], + "hooded siskin": [ + "back: olive-green with dark streaks", + "beak: short, cone-shaped, grayish", + "belly: yellow with thinly streaked flanks", + "breast: bright yellow fading to white", + "crown: black extending to nape", + "forehead: black in males, greenish in females", + "eyes: small, black with white eye-ring", + "legs: grayish-pink with strong claws", + "wings: dark with two white wing bars", + "nape: black in males, greenish in females", + "tail: black with white outer feathers", + "throat: black in males, pale yellow in females" + ], + "hooded tinamou": [ + "back: olive-brown with dark streaks", + "beak: short and stout, curved tip", + "belly: grayish-white with black barring", + "breast: grayish-brown with dark streaks", + "crown: pale brown with a black crest", + "forehead: pale brown, slightly hooded appearance", + "eyes: small and black, surrounded by pale feathering", + "legs: long and slender, light gray", + "wings: short and rounded, olive-brown with dark streaks", + "nape: pale brown, blending with crown", + "tail: short and rounded, olive-brown with dark streaks", + "throat: grayish-white with black barring" + ], + "hooded treepie": [ + "back: sleek, dark grey plumage", + "beak: strong, black, slightly curved", + "belly: light grey, soft feathers", + "breast: dark grey, seamless transition from the belly", + "crown: rich black, smooth, glossy feathers", + "forehead: black, connecting with the crown", + "eyes: striking yellow, framed by black feathers", + "legs: black, strong, with sharp claws", + "wings: dark grey, elongated, span wide for easy gliding", + "nape: dark grey, merging with the crown", + "tail: long, black, with white feather tips", + "throat: pale grey, connecting to the breast area" + ], + "hooded visorbearer": [ + "back: olive-green with a slight shimmer", + "beak: black, curved, and elongated", + "belly: pale yellow with golden highlights", + "breast: vibrant golden-yellow", + "crown: iridescent purple-blue hood", + "forehead: deep purple-blue continuing from the crown", + "eyes: dark, framed by purple-blue feathers", + "legs: thin and black with strong claws", + "wings: olive-green and elongated, with hints of purple-blue", + "nape: iridescent purple-blue color continuing from the crown", + "tail: long and olive-green with purple-blue outer feathers", + "throat: shimmering golden-yellow" + ], + "hooded vulture": [ + "back: dark brown feathers", + "beak: hooked, sharp, white tip", + "belly: white, downy plumage", + "breast: light brown, mixed with white", + "crown: featherless, reddish-pink", + "forehead: wrinkled, naked, pink skin", + "eyes: dark brown, piercing gaze", + "legs: tall, grayish-blue", + "wings: broad, dark brown feathers", + "nape: white-off, short feathers", + "tail: long, dark brown, square-ended", + "throat: white, fluffy down" + ], + "hooded wheatear": [ + "back: light brown and feathered", + "beak: thin, pointy, black", + "belly: white and smooth", + "breast: pale brown with streaks", + "crown: black and hood-like", + "forehead: black, continuous with crown", + "eyes: small, dark, and circular", + "legs: long, thin, and pale", + "wings: brown with black tips and white patches", + "nape: black connecting to the hood", + "tail: black with white outer feathers", + "throat: white underside of the hood" + ], + "hooded yellowthroat": [ + "back: olive-green with a slight sheen", + "beak: thin, dark, and cone-shaped", + "belly: bright yellow with hints of olive", + "breast: vibrant yellow merging with belly", + "crown: distinct black hood covering head", + "forehead: black hood extending from crown", + "eyes: black surrounded by black hood", + "legs: thin, dark, and strong", + "wings: olive-green with faint yellow edges", + "nape: black hood extending from crown to the neck", + "tail: olive-green with yellow undertail coverts", + "throat: bright yellow transitioning into the breast" + ], + "hook billed bulbul": [ + "back: greenish-olive feathers", + "beak: curved, dark grey hook-like bill", + "belly: light creamy-yellow plumage", + "breast: grayish-white with olive tones", + "crown: rounded, greenish-olive crest", + "forehead: light grayish-white", + "eyes: expressive, black with white eye-rings", + "legs: slim, brownish-grey", + "wings: medium-sized, greenish-olive with distinct white-tipped feathers", + "nape: olive-green plumage", + "tail: long, black with white tips", + "throat: white with light gray streaks" + ], + "hook billed hermit": [ + "back: greenish-brown feathers", + "beak: elongated, curved hook shape", + "belly: pale cream plumage", + "breast: light buff with darker speckles", + "crown: greenish-blue iridescent feathers", + "forehead: white stripe above eyes", + "eyes: round and black", + "legs: slender and grey", + "wings: greenish-brown with white-tipped feathers", + "nape: blue-green iridescent patch", + "tail: long, tapered feathers with white tips", + "throat: buff-colored with dark speckles" + ], + "hook billed kingfisher": [ + "back: vibrant blue-green plumage", + "beak: strong, curved, black hook", + "belly: creamy white feathers", + "breast: soft orange-brown hue", + "crown: bright blue-green shine", + "forehead: striking blue shades", + "eyes: dark, piercing gaze", + "legs: short with sharp talons", + "wings: long, blue-green flight feathers", + "nape: subtle blue-green tones", + "tail: wide, blue-green feathers", + "throat: soft cream feathering" + ], + "hook billed kite": [ + "back: sleek brownish-gray feathers", + "beak: strong, sharp, curved hook for tearing prey", + "belly: light-colored with fine dark streaks", + "breast: cream colored with brownish-gray markings", + "crown: brownish-gray with narrow dark streaks", + "forehead: light-colored with dark brown streaks", + "eyes: piercing golden-yellow orbs", + "legs: powerful with sharp, curved talons", + "wings: long, broad, brownish-gray with distinctive stripes", + "nape: darkly streaked with brown and gray feathers", + "tail: brownish-gray with a set of darker bands", + "throat: pale with faint dark lines" + ], + "hook billed vanga": [ + "back: sleek, dark plumage", + "beak: curved, sharp, hooked bill", + "belly: pale white, soft feathers", + "breast: light grey, fluffy plumage", + "crown: smooth, iridescent black", + "forehead: pronounced, dark feathers", + "eyes: striking, intense gaze", + "legs: sturdy, elongated branches", + "wings: broad, powerful span", + "nape: elegant, dark feathered curve", + "tail: long, flowing feathers", + "throat: smooth, pale white hue" + ], + "horned coot": [ + "back: sleek black feathers", + "beak: sharp-pointed, white edges", + "belly: white plumage", + "breast: black feathers with white center", + "crown: black with short, ornamental feather tufts", + "forehead: short white crescent-shaped markings", + "eyes: sharp, golden color", + "legs: greenish-yellow, black scaly skin", + "wings: glossy black, with white markings", + "nape: black feathers that blend to back", + "tail: black, moderately long", + "throat: white patch, bordered by black" + ], + "horned curassow": [ + "back: glossy black, elongated feathers", + "beak: stout, ivory-colored", + "belly: dense black plumage", + "breast: lustrous black, thick plumes", + "crown: large, curved, horn-like casque", + "forehead: smooth, dark feathers", + "eyes: bright, yellow-orange rings", + "legs: strong, greyish-blue", + "wings: black, wide, rounded tips", + "nape: beautifully curled, black feathers", + "tail: long, black, white-tipped feathers", + "throat: black, short, smooth feathers" + ], + "horned parakeet": [ + "back: vibrant green feathers", + "beak: strong curved, orange-red", + "belly: green fading to pale yellow", + "breast: lime green feathers", + "crown: set of orange-yellow horns", + "forehead: orange-yellow feathers", + "eyes: round and dark brown", + "legs: sturdy, grey legs and toes", + "wings: green with hints of blue", + "nape: green feathers extending to the neck", + "tail: long, tapering green-blue feathers", + "throat: green-yellow feathers" + ], + "horned screamer": [ + "back: grayish-brown feathers with streaked white markings", + "beak: short, stubby, light gray with a small hook", + "belly: white feathered, slight black barring", + "breast: dark gray, white streaked feathers and black barring", + "crown: pointed, black feathers with horn-like projections", + "forehead: black feathers covering the base of the horn", + "eyes: small, dark brown, surrounded by black and white feathers", + "legs: long, slender, dark gray with sharp claws", + "wings: large, rounded, grayish-brown feathers with white spots", + "nape: black and white striped feathers", + "tail: short, made up of dark gray feathers with white streaks", + "throat: white, lightly marked with black barring" + ], + "horsfield babbler": [ + "back: olive-brown feathers", + "beak: short and stout", + "belly: pale grey-white", + "breast: grey-brown plumage", + "crown: dark brown with slight crest", + "forehead: light grey-brown", + "eyes: black with white eye-ring", + "legs: strong and grey", + "wings: olive-brown with pale streaks", + "nape: grey-brown transition to crown", + "tail: long and olive-brown", + "throat: pale grey with light streaks" + ], + "horsfield bronze cuckoo": [ + "back: olive-green color with dark speckles", + "beak: slender, blackish-grey", + "belly: cream-colored with faint barring", + "breast: pale grey with light speckles", + "crown: olive-brown with subtle streaks", + "forehead: pale bronze-brown", + "eyes: dark with light eyering", + "legs: greyish-blue", + "wings: bronze-green with white-spotted feathers", + "nape: olive-brown with streaks", + "tail: long and slender, with dark bars and white tips", + "throat: pale grey, lightly streaked" + ], + "horsfield bushlark": [ + "back: light brown with streaks", + "beak: short, conical, and pale pinkish-brown", + "belly: creamy white", + "breast: pale brown with streaked pattern", + "crown: light brown with streaks", + "forehead: pale with faint streaks", + "eyes: surrounded by a pale eye-ring", + "legs: pale pinkish-brown", + "wings: brown with lighter edges", + "nape: light brown with streaks", + "tail: dark brown with white outer feathers", + "throat: creamy white" + ], + "horus swift": [ + "back: sleek, grayish-brown feathers", + "beak: sharp, black, and curved", + "belly: light gray with faint feather markings", + "breast: grayish-white feathers", + "crown: dark, rounded feathers with a metallic sheen", + "forehead: smooth, narrow black stripe", + "eyes: large, round, and black with white outlines", + "legs: long, slender, and black", + "wings: long, pointed, and dark with white patterns", + "nape: gray, blending into the crown", + "tail: forked, black, with white edges", + "throat: white, with fine feather details" + ], + "hose broadbill": [ + "back: vibrant blue and black pattern", + "beak: short and stout with a pale yellow tinge", + "belly: vivid teal hue", + "breast: brilliant teal-blue coloring", + "crown: dark blue streaked with sky-blue touches", + "forehead: bright blue with thin black lines", + "eyes: small and dark with a pale blue eye-ring", + "legs: stout and grayish-pink", + "wings: bold blue, black, and kelly green patterns", + "nape: deep blue with sky-blue streaks", + "tail: elongated with blue and black stripes", + "throat: striking teal-blue color" + ], + "houbara bustard": [ + "back: densely feathered, buff-brown with dark streaks", + "beak: strong, short, slightly curved, and pale in color", + "belly: white or light buff color with blackish spots", + "breast: pale buff with black bands and streaks", + "crown: black and white stripes with elongated crest feathers", + "forehead: white with black spots and streaks", + "eyes: bright, alert, dark brown in color", + "legs: long, sturdy, and feathered, pale color with strong feet and clawed toes", + "wings: large, brown with dark patterns and slightly pointed tips", + "nape: white or buff with blackish streaks and spots", + "tail: long, broad, with black and brown barring and a white tip", + "throat: white, sometimes with a subtle blackish band" + ], + "house bunting": [ + "back: light brown with faint black streaks", + "beak: short, conical, and greyish-blue", + "belly: whitish-grey and lightly streaked", + "breast: warm reddish-brown with streaks", + "crown: brownish with faint black stripes", + "forehead: greyish-white with a subtle rufous patch", + "eyes: dark brown surrounded by a pale eye-ring", + "legs: pinkish-grey and slender", + "wings: brownish-grey with black to white bars", + "nape: light brown marked with streaks", + "tail: dark brown with white outer feathers", + "throat: white and unmarked" + ], + "house crow": [ + "back: sleek black feathers", + "beak: strong, pointed, and black", + "belly: light grey plumage", + "breast: smoky dark grey feathers", + "crown: glossy black, slightly raised", + "forehead: smooth black and flat", + "eyes: dark, intelligent gaze", + "legs: scaly black with sharp claws", + "wings: large, black, and powerful", + "nape: glossy black neck feathers", + "tail: long, black, fan-shaped", + "throat: grey feathers with a black border" + ], + "house swift": [ + "back: sleek, elongated body", + "beak: short, sharp, pointed", + "belly: light grey with fine streaks", + "breast: greyish-white, slightly rounded", + "crown: dark grey, smooth feathers", + "forehead: whitish-grey, defined markings", + "eyes: small, black, alert", + "legs: short, thin, durable", + "wings: long, narrow, curved", + "nape: dark grey, continuous with crown", + "tail: short, squared, greyish-black", + "throat: whitish-grey, striped detail" + ], + "huayco tinamou": [ + "back: earthy brown feathers with fine black bars", + "beak: pale, slender, and slightly decurved", + "belly: buff-colored with dark, wavy bars", + "breast: rufous with dark bars and spots", + "crown: rufous-brown with fine black markings", + "forehead: light buff with a slight reddish hue", + "eyes: dark and expressive, framed by a buffy-white ring", + "legs: robust and pale gray-green", + "wings: rounded with distinct black and white barring", + "nape: reddish-brown with fine black bars", + "tail: short and pointed, with barred brown and black feathers", + "throat: pale buff with faint blackish streaks" + ], + "hudson black tyrant": [ + "back: dark, sleek feathers", + "beak: sharp, pointed, black", + "belly: slightly lighter black, soft feathers", + "breast: deep black, well-rounded", + "crown: even, jet black feathers", + "forehead: smooth, black plumage", + "eyes: piercing, dark round, small", + "legs: strong, slender, black", + "wings: long, black, well-defined feathers", + "nape: uninterrupted, black sheen", + "tail: elegant, long, black feathers", + "throat: darker black, slightly coarser feathers" + ], + "hudson canastero": [ + "back: brownish dorsum with streaks", + "beak: slender, slightly curved", + "belly: buffy-white", + "breast: rufous-brown with dark streaks", + "crown: rufous-brown with dark streaks", + "forehead: rufous-brown with dark streaks", + "eyes: dark, small-sized", + "legs: slim, elongated", + "wings: brownish with lighter wingbars", + "nape: rufous-brown with streaks", + "tail: long and brownish with white tips", + "throat: buffy-white with streaks" + ], + "hudsonian godwit": [ + "back: dark brown with light streaks", + "beak: long, slightly upturned, and dark", + "belly: white with sparse dark spots", + "breast: pale buff color, darker during breeding", + "crown: dark brown with light streaks", + "forehead: pale buff with a light line", + "eyes: dark, surrounded by pale area", + "legs: long and slender, black or dark gray", + "wings: dark brown and white with elongated black feathers", + "nape: dark brown with pale streaks", + "tail: white with dark brown bands and a white tip", + "throat: white or pale buff color" + ], + "huet fulvetta": [ + "back: olive-green feathers", + "beak: short and conical", + "belly: pale, yellowish-grey", + "breast: light greyish-brown", + "crown: dark grey", + "forehead: grey with slight streaks", + "eyes: small, black pupils with thin white rings", + "legs: pinkish-grey and thin", + "wings: olive-green with faint bars", + "nape: olive-grey", + "tail: long, olive-grey with white tips", + "throat: pale greyish-white" + ], + "humaita antbird": [ + "back: olive-brown feathers", + "beak: black, short, and curved", + "belly: grayish-white plumage", + "breast: pale gray feathers", + "crown: black with a slight crest", + "forehead: black and smooth", + "eyes: dark brown with white eyering", + "legs: long, slender, and gray", + "wings: brown with white wing bars", + "nape: olive-brown coloration", + "tail: long and brown with white tips", + "throat: grayish-white feathers" + ], + "humblot heron": [ + "back: blue-gray plumage", + "beak: long, dark, curved downward", + "belly: white with blue-gray streaks", + "breast: white with blue-gray spots", + "crown: blackish-blue feathers", + "forehead: light blue-gray plumage", + "eyes: small, dark, with yellowish surroundings", + "legs: long, yellow-greenish", + "wings: large, blue-gray with dark flight feathers", + "nape: blue-gray with white streaks", + "tail: long, blue-gray, dark feathers", + "throat: white with blue-gray streaks" + ], + "humblot sunbird": [ + "back: metallic green and shimmering", + "beak: long, slender, and curved", + "belly: pale yellow with hints of green", + "breast: deep iridescent blue-green", + "crown: bright emerald, glossy feathers", + "forehead: vibrant green sheen", + "eyes: small, dark, and alert", + "legs: slim and greyish-brown", + "wings: glossy green with dark edges", + "nape: radiant green transitioning from crown", + "tail: elongated, dark, and slightly forked", + "throat: iridescent blue with tinges of purple" + ], + "humboldt penguin": [ + "back: black, streamlined body", + "beak: sturdy, hooked tip", + "belly: white, soft feathers", + "breast: white and rounded", + "crown: black, cap-like feathers", + "forehead: black with a white band", + "eyes: dark, with white eye-rings", + "legs: strong, pinkish webbed feet", + "wings: black, flipper-like flapping", + "nape: black, smooth feathering", + "tail: short, black and wedge-shaped", + "throat: white, with black stripes" + ], + "humboldt sapphire": [ + "back: iridescent blue-green feathers", + "beak: sharp, black, and slender", + "belly: soft, light-blue plumage", + "breast: vibrant sapphire-blue feathers", + "crown: shining blue-green crest", + "forehead: bright blue frontal feathers", + "eyes: round, black, and alert", + "legs: strong, dark grey with scaled texture", + "wings: elongated blue and green feathers", + "nape: iridescent blue curve into the back", + "tail: long and tapered, deep-blue feathers", + "throat: brilliant sapphire-blue with slight green tinges" + ], + "hume boobook": [ + "back: brownish feathers with white streaks", + "beak: sharp, grayish-black hooked beak", + "belly: mottled white and brown feathers", + "breast: pale with dark brownish spots", + "crown: dark brown with white speckles", + "forehead: brown with flecks of white", + "eyes: large, yellow, and striking", + "legs: feathered, strong and grayish-brown", + "wings: rounded, brown with white spots", + "nape: brown with white streaks and spots", + "tail: brown, barred with white bands", + "throat: off-white with fine brown streaks" + ], + "hume bush warbler": [ + "back: light brown with subtle streaks", + "beak: thin, slightly curved, black", + "belly: pale cream with faint markings", + "breast: creamy-white with light brown streaks", + "crown: olive-brown with pale central stripe", + "forehead: light brown blending into crown", + "eyes: small, black, surrounded by thin eye-ring", + "legs: long, slender, pinkish-brown", + "wings: olive-brown with faint bars and white tips", + "nape: pale olive-brown with hint of streaks", + "tail: olive-brown, square-ended with faint barring", + "throat: unmarked creamy-white" + ], + "hume lark": [ + "back: streaked brown and gray feathers", + "beak: short, pale, and pointed", + "belly: off-white with light streaking", + "breast: buff-colored with distinctive markings", + "crown: grayish-brown with light stripe", + "forehead: light plumage, slightly striped", + "eyes: small and dark, surrounded by faint markings", + "legs: long and slender, pale brown", + "wings: long, pointed, brown with white-edged feathers", + "nape: grayish-brown with light streaking", + "tail: brown, edged with white outer feathers", + "throat: off-white, unmarked" + ], + "hume pheasant": [ + "back: iridescent green and blue plumage", + "beak: short and strong, yellowish-brown", + "belly: buff-colored feathers with black barring", + "breast: metallic blue-green, barred with black", + "crown: glossy blue-black crest", + "forehead: bright red facial skin", + "eyes: dark brown, surrounded by red skin", + "legs: long and powerful, grayish-brown", + "wings: rounded, blue-green and black feathers", + "nape: blue-black, transitioning to green", + "tail: long and curved, black with white barring", + "throat: white feathers with black barring" + ], + "hume treecreeper": [ + "back: brownish-gray with fine streaks", + "beak: slender, decurved and sharp", + "belly: pale buff-white with slight markings", + "breast: buff-white with subtle streaks", + "crown: soft brown with faint streaks", + "forehead: white to buff, blending into the crown", + "eyes: small and beady, dark-centered", + "legs: strong and slender, pale pinkish-brown", + "wings: brownish-gray with banded white patterns", + "nape: brownish-gray, streaked, and well-defined", + "tail: stiff, brownish-gray with subtle white corners", + "throat: buff-white, plain and unmarked" + ], + "hume warbler": [ + "back: olive-green hue with slight streaks", + "beak: thin, pointed, and black", + "belly: pale white and slightly yellowish", + "breast: off-white with faint grey stripes", + "crown: bright yellow with faint streaks", + "forehead: bright yellow merging into the crown", + "eyes: small, black, surrounded by pale eye-ring", + "legs: slender, dark grey to almost black", + "wings: brownish-grey with distinct white wing bars", + "nape: olive-green with slight streaks, similar to back", + "tail: dark grey with white outer feathers", + "throat: bright yellow, contrasting with the breast" + ], + "hume wheatear": [ + "back: blue-gray with a slight sheen", + "beak: short and pointed, blackish color", + "belly: white with a faint gray hue", + "breast: pale blue-gray", + "crown: blue-gray, extending to the nape", + "forehead: pale blue-gray blending into the crown", + "eyes: dark with a white eyering", + "legs: dark gray to black, slender", + "wings: blue-gray with black and white wing edges", + "nape: same color as crown, continuous blue-gray", + "tail: black with a striking white pattern", + "throat: white transitioning from blue-gray breast" + ], + "hume white eye": [ + "back: light grey feathers", + "beak: petite black curve", + "belly: soft white coat", + "breast: whitish-grey plumage", + "crown: smooth white cap", + "forehead: sleek white curve", + "eyes: round, black and alert", + "legs: slender pale pink", + "wings: white, slightly grey-tipped", + "nape: white, transitions to grey", + "tail: white with grey edges", + "throat: pure white feathers" + ], + "hunter cisticola": [ + "back: brownish with streaks", + "beak: short and pointed", + "belly: pale and streaked", + "breast: buff-colored with streaks", + "crown: rufous with streaks", + "forehead: pale brown", + "eyes: small and dark", + "legs: slender and light pink", + "wings: brown with rufous edging", + "nape: pale brown with streaks", + "tail: short and rufous", + "throat: buff-colored and unstreaked" + ], + "hunter sunbird": [ + "back: vibrant, iridescent green feathers", + "beak: slender, slightly curved for nectar extraction", + "belly: pale yellow, with soft downy feathers", + "breast: bright orange-red patch, a striking feature", + "crown: metallic green, shimmering in sunlight", + "forehead: gleaming green, continuation of the crown", + "eyes: beady black, alert and observant", + "legs: slender, pale grey, perfect for perching", + "wings: iridescent green, agile and swift in flight", + "nape: radiant green, connecting crown and back", + "tail: elongated, emerald green, streamer-like feathers", + "throat: brilliant yellow, striking contrast to breast" + ], + "huon astrapia": [ + "back: glossy green with a golden sheen", + "beak: thin, black, and slightly curved", + "belly: iridescent greenish-black", + "breast: shimmering golden-green", + "crown: iridescent green with a bronze tint", + "forehead: iridescent purple hue", + "eyes: round and dark brown", + "legs: slender and black with sharp claws", + "wings: iridescent green and purple with slight bronze tint", + "nape: lustrous, dark bronze-green", + "tail: elongated, black, and adorned with white-tipped ornamental plumes", + "throat: vibrant iridescent purple" + ], + "hutton shearwater": [ + "back: dark grey upper body feathers", + "beak: slender, hooked black bill", + "belly: off-white underbody", + "breast: greyish-white plumage", + "crown: dark grey head feathers", + "forehead: slightly paler grey plumage", + "eyes: small, black beady eyes", + "legs: greyish-pink, sturdy webbed feet", + "wings: long, narrow wings with dark grey feathers", + "nape: grey feathers connecting neck and head", + "tail: short, dark grey tail feathers", + "throat: white-grey plumage" + ], + "hyacinth visorbearer": [ + "back: vibrant green feathers", + "beak: slender, long, and slightly curved", + "belly: light greenish-yellow hues", + "breast: bright olive-green feathers", + "crown: iridescent turquoise-blue with a visor-like structure", + "forehead: shiny metallic blue-green visor", + "eyes: small, dark, and expressive", + "legs: thin and grayish-brown", + "wings: elongated and dark green", + "nape: olive-green feathers", + "tail: long and slightly forked, green with turquoise-blue tips", + "throat: glittering greenish-blue feathers" + ], + "hylocitrea": [ + "back: olive-brown feathers", + "beak: short and slightly curved", + "belly: pale yellow underparts", + "breast: yellowish-olive plumage", + "crown: olive-brown feathers with subtle streaks", + "forehead: slightly paler olive feathers", + "eyes: dark brown with faint eye-ring", + "legs: grayish-blue with strong feet", + "wings: olive-brown with white edges on flight feathers", + "nape: olive-brown with lighter streaks", + "tail: olive-brown with white tips on outer feathers", + "throat: pale yellowish-white" + ], + "hypocolius": [ + "back: smooth, grayish-brown feathers", + "beak: short, slightly curved, blackish and stout", + "belly: creamy white with subtle buff tones", + "breast: pale grayish-brown with a slightly darker center", + "crown: pale grayish-brown with a well-defined cap", + "forehead: similar to crown, pale grayish-brown", + "eyes: dark, surrounded by white-ish eye-ring", + "legs: slim, grayish-brown with sharp talons", + "wings: broad, rounded with black primary feathers", + "nape: same as crown, pale grayish-brown with well-defined border", + "tail: black with distinct white outer tail feathers", + "throat: off-white with a tinge of gray, blending into breast" + ], + "iberian chiffchaff": [ + "back: olive-green with slight streaking", + "beak: slender, dark, and pointed", + "belly: pale yellow to off-white", + "breast: yellowish with faint streaks", + "crown: olive-green and slightly darker than the back", + "forehead: creamy white with a slight tinge of yellow", + "eyes: dark with a well-defined pale eyering", + "legs: dark and relatively short", + "wings: olive-green with black primary feathers", + "nape: olive-green like the back", + "tail: dark with olive-green edges and a slight fork", + "throat: light yellow fading to white" + ], + "iberian gray shrike": [ + "back: slate gray with a subtle greenish sheen", + "beak: strong, hooked, and black", + "belly: soft white fading into a light gray", + "breast: pale gray with possible streaks", + "crown: medium gray with a slight crest", + "forehead: slightly paler gray than the crown", + "eyes: dark with a black mask-like mark behind them", + "legs: sturdy and black", + "wings: gray with black tips and white patches", + "nape: similar in color to the crown with a thin black line", + "tail: long and black with white outer edges", + "throat: pale gray, soft white near the beak" + ], + "iberian green woodpecker": [ + "back: vibrant green with black streaks", + "beak: long, straight, and pointed", + "belly: pale greenish-grey shading", + "breast: mottled greenish-grey with some black spots", + "crown: bold yellow and black pattern", + "forehead: red patch between crown and eyes", + "eyes: dark, round, encircled with bold black markings", + "legs: grayish and strong, with sharp claws", + "wings: green with black markings and white arc", + "nape: yellow to greenish-yellow with black streaks", + "tail: green feathers with white outer edges", + "throat: off-white with small black spots" + ], + "icterine greenbul": [ + "back: olive-green feathers covering the bird's upper body", + "beak: slender, slightly curved black bill for picking fruits and insects", + "belly: pale yellowish-green underside with subtle streaks", + "breast: lighter olive-green plumage with blending shades", + "crown: darker green feathers on the bird's head", + "forehead: slightly brighter green than the crown", + "eyes: small, dark, and round, encircled in a thin white eye-ring", + "legs: thin and grayish, with sharp claws for perching and movement", + "wings: olive-green feathers with occasional yellowish edges", + "nape: transition area between the crown and back, covered in green feathers", + "tail: medium-length, olive-green feathers with a slight forked shape", + "throat: pale yellow-green feathers, sometimes showing faint streaks" + ], + "icterine warbler": [ + "back: olive-green upperparts", + "beak: slim, slightly curved, grayish-brown", + "belly: pale, cream-yellow", + "breast: soft yellow, streaked with brown", + "crown: olive-green, streaked with gray", + "forehead: slightly paler olive-green", + "eyes: bright, dark, with white eye-ring", + "legs: long, grayish-blue", + "wings: dark gray with white wing-bars", + "nape: olive-green with gray streaks", + "tail: dark gray with pale tips", + "throat: vibrant yellow" + ], + "ihering antwren": [ + "back: olive-green with thin streaks", + "beak: small, thin, and black", + "belly: white with slight gray tint", + "breast: light gray with white edges", + "crown: rufous with subtle streaks", + "forehead: pale gray with faint lines", + "eyes: dark brown with white eyering", + "legs: slender and blackish-gray", + "wings: olive-green with two bold white wing bars", + "nape: olive-green with thin streaks", + "tail: squared-off, olive-green with subtle pale gray bars", + "throat: white with grayish edges" + ], + "iiwi": [ + "back: vibrant red with slightly darker shading", + "beak: long, curved, bright orange", + "belly: bright red with lighter undertones", + "breast: rich crimson-red", + "crown: smooth, red feathers", + "forehead: radiant red plumage", + "eyes: dark, round with a subtle white ring", + "legs: black, slender with strong feet", + "wings: red with black edges and streamer-like feathers", + "nape: deep red transitioning from crown", + "tail: long, red with black tipped, streamer-like feathers", + "throat: fiery red leading into the chest area" + ], + "ijima leaf warbler": [ + "back: olive-green with slight yellowish tinge", + "beak: straight, slender, and dark-colored", + "belly: pale yellow with white undertail coverts", + "breast: yellowish-green, blending with the belly", + "crown: olive-green with distinct yellow central stripe", + "forehead: yellowish-green, merging with crown stripe", + "eyes: prominent, dark with thin white eye-ring", + "legs: pale pinkish-gray with long toes", + "wings: olive-green with faint pale yellow wing bars", + "nape: olive-green, continuous with the back", + "tail: olive-green, slightly forked with white outer tail feathers", + "throat: bright yellow, contrasting with the breast" + ], + "imeri warbling antbird": [ + "back: olive-brown feathers with light streaks", + "beak: short, hooked, and black", + "belly: off-white with faint brown striping", + "breast: pale cream with light barring", + "crown: greyish-brown with faint streaks", + "forehead: slightly paler grey-brown", + "eyes: dark, beady with thin white eye-ring", + "legs: long and slender, pale grey", + "wings: olive-brown with faint light bars", + "nape: greyish-brown with light streaks", + "tail: long, olive-brown with faint barring", + "throat: off-white with a hint of pale striping" + ], + "imitator sparrowhawk": [ + "back: blue-gray with narrow white bars", + "beak: short and hooked, dark upper mandible, yellow lower mandible", + "belly: off-white with rusty streaks", + "breast: pale white with light orange barring", + "crown: blue-gray with a hint of rusty orange", + "forehead: blue-gray with a subtle orange stripe", + "eyes: intense yellow-orange with a dark outline", + "legs: long and yellow with sharp talons", + "wings: long, blue-gray with white bars", + "nape: blue-gray with a slight orange shading", + "tail: blue-gray with wide black bars and white tips", + "throat: white with fine rusty streaks" + ], + "immaculate cupwing": [ + "back: sleek, iridescent feathers", + "beak: short, curved, and sharp", + "belly: soft, off-white plumage", + "breast: vibrant, light-blue feathers", + "crown: delicate, turquoise crest", + "forehead: smooth, unblemished feathers", + "eyes: large, bright, and alert", + "legs: slender, pale gray, and strong", + "wings: elegantly sweeping with bold markings", + "nape: velvety, dove-gray feathers", + "tail: elongated, fan-like, with striking patterns", + "throat: white, soft plumage with a hint of color" + ], + "imperial cormorant": [ + "back: dark, glossy feathers", + "beak: sharp, hooked tip", + "belly: white plumage", + "breast: white and black feathers", + "crown: sleek, black head feathers", + "forehead: black with a slight crest", + "eyes: piercing, pale blue", + "legs: short, black, webbed feet", + "wings: long, black, strong flyers", + "nape: black, glossy feathers", + "tail: short, black, fan-shaped", + "throat: white with black stripe" + ], + "imperial eagle": [ + "back: dark brown feathers and powerful muscles", + "beak: sharp, hooked, bright yellow", + "belly: lighter brown, streaked feathers", + "breast: robust, strong, with dense plume", + "crown: rich brown with sleek feathers", + "forehead: smooth, transitions into beak", + "eyes: intense, piercing yellow gaze", + "legs: sturdy, feathered, ending in sharp talons", + "wings: expansive, dark brown with white patches", + "nape: lighter brown feathers blending into darker brown", + "tail: long, wide, with alternating brown and white bands", + "throat: slightly paler feathers transitioning into the breast" + ], + "imperial parrot": [ + "back: vibrant green plumage with dark streaks", + "beak: strong, hooked, grayish-black", + "belly: bright greens fading to lighter underparts", + "breast: golden-green to light green feathers", + "crown: deep green with hints of blue", + "forehead: yellowish-green feathering", + "eyes: dark brown with a white ring", + "legs: sturdy gray with sharp talons", + "wings: dappled with iridescent green and blue", + "nape: bluish-green transitioning to yellow-green", + "tail: green feathers tipped with blue, long and elegant", + "throat: lighter green feathers with yellowish tones" + ], + "imperial snipe": [ + "back: dark brown with golden fringes", + "beak: long, thin, and grayish-brown", + "belly: white streaked with dark brown", + "breast: brownish with black speckles", + "crown: dark brown with golden buff margins", + "forehead: white striped with black and brown", + "eyes: dark brown and well-camouflaged", + "legs: yellowish-orange and sturdy", + "wings: short and rounded with dark brown feathers", + "nape: brown with golden margins", + "tail: short, dark brown with golden edging", + "throat: white with subtle dark streaks" + ], + "inaccessible island finch": [ + "back: olive-brown with dark streaks", + "beak: short and stout, black color", + "belly: whitish color with grey streaks", + "breast: pale grey with fine streaks", + "crown: dark brown with slight streaks", + "forehead: olive-green with faint streaks", + "eyes: black with white eye-ring", + "legs: strong and greyish-pink", + "wings: dark brown with pale edges", + "nape: olive-brown with dark streaks", + "tail: long and dark brown", + "throat: whitish-grey with faint streaks" + ], + "inagua woodstar": [ + "back: vibrant green with a golden sheen", + "beak: long, slender, and black", + "belly: pale grayish-white with iridescent green sides", + "breast: bright green with a blue tint and a white patch", + "crown: iridescent green with a golden sheen", + "forehead: glittering green and gold", + "eyes: dark brown with a thin white eye-ring", + "legs: pale pinkish-gray with small, sharp claws", + "wings: long, pointed, and shimmering with green highlights", + "nape: gleaming green, transitioning to the golden back", + "tail: forked, iridescent green with white outer feathers", + "throat: brilliant purple gorget in males, white to light gray in females" + ], + "inambari gnatcatcher": [ + "back: light olive-brown coloration", + "beak: short, straight, mostly black", + "belly: pale grayish-white hue", + "breast: subtle gray tone", + "crown: bluish-gray plumage", + "forehead: similar bluish-gray hue", + "eyes: encircled by a thin white eyering", + "legs: slim, long, and blackish-gray", + "wings: light brown with faint wing bars", + "nape: continuation of the bluish-gray crown", + "tail: elongated, dark gray with white outer feathers", + "throat: pale grayish-white" + ], + "inambari woodcreeper": [ + "back: brownish streaked back", + "beak: long, slightly decurved beak", + "belly: buff-colored lower belly", + "breast: streaked and mottled with brown", + "crown: rufous-brown crown", + "forehead: buffy or whitish streaked forehead", + "eyes: dark, small, round eyes", + "legs: strong, grayish legs", + "wings: long, brown-streaked wings", + "nape: rufous-brown nape", + "tail: long, rigid, brown tail", + "throat: light buff-colored throat" + ], + "inca flycatcher": [ + "back: golden-olive with darker streaks", + "beak: black, slightly hooked at the tip", + "belly: yellowish-white with faint markings", + "breast: yellow with a slight hint of russet", + "crown: rufous with contrasting white borders", + "forehead: white with a cinnamon patch above the eye", + "eyes: dark brown surrounded by a white eye-ring", + "legs: black, strong, and long for perching", + "wings: olive-brown with blackish-rufous bars", + "nape: golden-olive with white streaking", + "tail: bronze-rufous with broad black banding", + "throat: pale yellow with a central white patch" + ], + "inca wren": [ + "back: rich brown feathers with a slightly darker pattern", + "beak: short, thin, and black with a slight downward curve", + "belly: pale grayish-white with beautiful white bars", + "breast: medium brown feathers with subtle white bars", + "crown: deep brown feathers with a light cream pattern on the edge", + "forehead: dark brown feathers with small white spots", + "eyes: small, round, and black with a narrow white eyering", + "legs: thin and grayish-brown with small, sharp claws", + "wings: dark brown with tiny white spots, forming a clear pattern", + "nape: dark brown feathers with small, elongated white streaks", + "tail: long, dark brown with a conspicuous white spotted pattern", + "throat: plain pale grayish-white coloration" + ], + "indian blackbird": [ + "back: dark blackish-grey plumage", + "beak: yellow, slim, and slightly curved", + "belly: lighter greyish-black feathers", + "breast: deep black feathers with a shiny gloss", + "crown: smooth black contoured feathers", + "forehead: glossy black plumage covering the front of the head", + "eyes: dark, small, and round with yellow eye-ring", + "legs: slender, dark grey with three forward-facing toes and one backward-facing toe", + "wings: black with gloss, broad, and rounded when spread", + "nape: black feathers stretching from the crown to the back", + "tail: long black feathers, slightly forked, and fanned during flight", + "throat: silky black plumage adjoining the breast" + ], + "indian blue robin": [ + "back: vibrant blue feathers", + "beak: thin, pointed, black tip", + "belly: white with bluish-gray streaks", + "breast: bright blue with black spots", + "crown: dark blue with a slight metallic sheen", + "forehead: bright blue strip extending above the eyes", + "eyes: large, dark, with a white eye-ring", + "legs: strong, dark gray, with sharp claws", + "wings: blue and black patterned feathers", + "nape: dark blue meeting the bright blue back feathers", + "tail: long, blue feathers with black tips", + "throat: white, contrasting with the blue breast" + ], + "indian bushlark": [ + "back: light brown with streaks of white", + "beak: short, cone-shaped, pale yellow", + "belly: off-white with brownish spots", + "breast: buff-colored with dark streaks", + "crown: pale brown with fine streaks", + "forehead: whitish with a light brown tinge", + "eyes: small, black, with a white eye-ring", + "legs: long and slender, pale pinkish-brown", + "wings: brown with white and dark streaks, rounded", + "nape: pale brown with fine streaks and spots", + "tail: brown with white edges, medium-length", + "throat: white with a faint brownish tint" + ], + "indian cormorant": [ + "back: dark brown feathers with a black gloss", + "beak: long, hooked, and yellowish", + "belly: grayish-brown with slight shine", + "breast: blackish-brown feathers with bronze sheen", + "crown: slightly crested, black plumage", + "forehead: sleek, black, and glossy", + "eyes: bright green, surrounded by blue skin", + "legs: short, black, and webbed", + "wings: long, broad, and dark brown with black edges", + "nape: black feathers with metallic green sheen", + "tail: short, rounded, and black", + "throat: white feathers with hints of light brown" + ], + "indian courser": [ + "back: light brown with white streaks", + "beak: short, thick, and black", + "belly: creamy white", + "breast: pale brown with white speckles", + "crown: golden brown, slightly raised", + "forehead: black and white stripes", + "eyes: dark, encircled by pale yellow ring", + "legs: long, slender, and greenish-gray", + "wings: brown with white spots and bold black wingtips", + "nape: light brown, merging with the crown", + "tail: long, graduated, brown with white tips", + "throat: white, bordered by narrow black bands" + ], + "indian cuckoo": [ + "back: olive-brown with darker streaks", + "beak: slightly curved and dark grey", + "belly: white with blackish bars", + "breast: buff with dark streaks", + "crown: olive-brown with blackish streaks", + "forehead: lighter olive-brown", + "eyes: dark with pale eyering", + "legs: short and grayish", + "wings: olive-brown with white wing patches", + "nape: streaked olive-brown", + "tail: long and graduated with white tips", + "throat: white with dark streaks" + ], + "indian golden oriole": [ + "back: vibrant yellow with black markings", + "beak: strong, sharp, black", + "belly: bright yellow, slightly paler than back", + "breast: striking golden-yellow", + "crown: black with hints of gold", + "forehead: deep black, contrast with yellow plumage", + "eyes: dark, surrounded by black mask", + "legs: black, delicate-looking but sturdy", + "wings: black with golden-yellow patch", + "nape: golden-yellow, transitioning to black", + "tail: black, with bold yellow bands", + "throat: vibrant yellow, visually distinctive" + ], + "indian grassbird": [ + "back: olive-brown coloration with light streaking", + "beak: short, conical, and powerful", + "belly: pale and streaky with light brown or buff coloring", + "breast: lightly streaked with pale brown or buff hues", + "crown: boldly streaked with dark brown and buff stripes", + "forehead: pale buff color with minimal streaking", + "eyes: small, dark, and well-defined", + "legs: medium length, slender, and pale in color", + "wings: rounded with brown and buff streaks and bars", + "nape: olive-brown with light streaking, connecting crown and back", + "tail: long, narrow, and graduated with dark brown and buff barring", + "throat: pale with fine brown or buff streaking" + ], + "indian gray hornbill": [ + "back: dark gray, long feathers", + "beak: large, curved, yellowish", + "belly: pale gray, soft plumage", + "breast: dark gray, dense feathers", + "crown: black, short feathers", + "forehead: black, smooth", + "eyes: dark brown, round", + "legs: strong, gray-black", + "wings: broad, dark gray", + "nape: dark gray, thick feathered", + "tail: long, dark gray feathers", + "throat: pale gray, feathered" + ], + "indian nightjar": [ + "back: mottled brown camouflage pattern", + "beak: short and wide, with a slight hook", + "belly: lighter brown with streaks and spots", + "breast: similar to belly, with brown streaks and spots", + "crown: dark brown, blending with back", + "forehead: light brown with a white central stripe", + "eyes: large, dark, and forward-facing", + "legs: short with three toes, covered in feathers", + "wings: long and pointed, with a mottled brown pattern", + "nape: blending with crown, dark brown feathers", + "tail: wide and rounded, with dark bands and white tips", + "throat: lighter plumage with small, dark streaks" + ], + "indian nuthatch": [ + "back: pale slate-blue upperparts", + "beak: small, pointy, blackish-gray bill", + "belly: whitish-gray underside", + "breast: pale grayish-blue chest", + "crown: slate-blue head", + "forehead: narrow, slate-colored", + "eyes: black beady eyes, white eyering", + "legs: short, strong, brownish-orange legs", + "wings: bluish-gray plumage, white underwing", + "nape: slate-blue nape", + "tail: short, blue-gray tail feathers", + "throat: white throat patch" + ], + "indian paradise flycatcher": [ + "back: sleek, greyish-brown feathers", + "beak: short, slightly curved and dark-colored", + "belly: pale, whitish-grey plumage", + "breast: light, creamy chest", + "crown: head adorned with a glossy black crest", + "forehead: black stripe between eyes", + "eyes: dark, round with a white eyering", + "legs: slim, greyish-blue", + "wings: elongated, with a mix of black and white feathers", + "nape: rufous-grey transition", + "tail: strikingly long, ribbon-like with streaming feathers", + "throat: creamy-white coloration" + ], + "indian peafowl": [ + "back: iridescent blue-green plumage", + "beak: strong, short, curved tip", + "belly: pale, creamy-white feathers", + "breast: vibrant cobalt blue", + "crown: adorned with blue crest", + "forehead: opulent royal blue", + "eyes: dark brown, piercing gaze", + "legs: long, powerful, greyish-blue", + "wings: covert feathers in shades of green, blue, and copper", + "nape: metallic, shimmering blue-green", + "tail: elongated, ornate, eye-catching train", + "throat: rich sapphire blue" + ], + "indian pied starling": [ + "back: black and white streaked feathers", + "beak: bright yellow, slightly curved", + "belly: white and glossy", + "breast: white with black speckles", + "crown: black, smooth feathers", + "forehead: black, merges with crown", + "eyes: dark, surrounded by yellow skin", + "legs: yellow-orange, strong and thin", + "wings: black with white patches, rounded tips", + "nape: black, connects with crown and back", + "tail: black, medium-long, slightly forked", + "throat: white, transitions into breast" + ], + "indian pond heron": [ + "back: pale brown with streaks of white and buff", + "beak: long, sharp, and yellowish", + "belly: whitish with brownish streaks", + "breast: creamy white with brown streaks", + "crown: dark brown with a slight crest", + "forehead: pale buff with a prominent dark streak", + "eyes: yellowish with a dark brown patch", + "legs: long, greenish-yellow, and slender", + "wings: pale brown with white and buff streaks, folding over the back", + "nape: brown with a patch of white and buff", + "tail: short and pale brown with a white tip", + "throat: creamy-white with dark brown streaks" + ], + "indian robin": [ + "back: olive-brown upper side", + "beak: thin and pointy black beak", + "belly: white underside", + "breast: dark grey chest", + "crown: slicked back black hair", + "forehead: smooth black feathering", + "eyes: beady black eyes", + "legs: slender dark grey legs", + "wings: short rounded olive-brown wings", + "nape: rich brown neck feathers", + "tail: long blackish tail with white outer edges", + "throat: dusky grey feathering" + ], + "indian scimitar babbler": [ + "back: olive-brown with streaks", + "beak: long, curved, and silver", + "belly: white with grey markings", + "breast: white with streaks of grey", + "crown: chestnut-brown with white streaks", + "forehead: chestnut-brown", + "eyes: dark brown, encircled by white", + "legs: strong, pale pink", + "wings: olive-brown with white markings", + "nape: chestnut-brown with white streaks", + "tail: long and olive-brown with white tips", + "throat: white with grey streaks" + ], + "indian scops owl": [ + "back: brownish-grey, streaked plumage", + "beak: sharp, hawk-like curve", + "belly: pale grey, vertical streaks", + "breast: greyish-white, dark markings", + "crown: rounded, elongated feathers", + "forehead: light grey, faint barring", + "eyes: large, dark, yellow-orange iris", + "legs: feathered, well-camouflaged", + "wings: broad, rounded, grey-brown mottling", + "nape: grey, subtle feather patterns", + "tail: medium-length, horizontal barring", + "throat: light grey, finely streaked" + ], + "indian silverbill": [ + "back: light grayish-brown feathers", + "beak: short, conical, silver-gray color", + "belly: whitish with light brown wash", + "breast: pale grayish-brown with white undertones", + "crown: light grayish-brown, slightly darker than the back", + "forehead: pale gray with a smooth transition to the crown", + "eyes: small, black, and beady, surrounded by a faint white eye-ring", + "legs: short, slender, and pale pink", + "wings: light grayish-brown with darker flight feathers", + "nape: grayish-brown, similar in color to the crown", + "tail: darker gray-brown with white-tipped outer tail feathers", + "throat: light gray, contrasted with white sides of the face and chin" + ], + "indian skimmer": [ + "back: sleek black upper body", + "beak: elongated orange and black", + "belly: white underbelly", + "breast: light grey chest feathers", + "crown: black top of head", + "forehead: black feathered front", + "eyes: dark, alert expression", + "legs: long orange-red limbs", + "wings: black and white, angular shape", + "nape: black feathered neck", + "tail: black and white with forked shape", + "throat: white, minimalist plumage" + ], + "indian spot billed duck": [ + "back: brownish-grey feathers", + "beak: black with large orange-yellow spots", + "belly: white with occasional black spots", + "breast: pale brown with black speckles", + "crown: dark brown, slightly raised", + "forehead: lighter brown transitioning to the crown", + "eyes: dark with a small white eye-ring", + "legs: reddish-orange and webbed", + "wings: grey with white and metallic green accents", + "nape: dark brown with a lighter brown stripe", + "tail: short, dark grey with white borders", + "throat: white, blending into the breast color" + ], + "indian spotted creeper": [ + "back: olive-brown with faint streaks", + "beak: slender and curved, blackish", + "belly: pale white with fine dark spots", + "breast: white with brown spots", + "crown: rufous-brown with white streaks", + "forehead: white streaks on light brown base", + "eyes: dark brown with thin pale eyering", + "legs: long and slender, grayish-blue", + "wings: brown with spots and white barring", + "nape: light brown with white streaks", + "tail: long, brown with white spots and barring", + "throat: pale white with fine dark streaks" + ], + "indian spotted eagle": [ + "back: brownish-grey feathers with white spots", + "beak: sharp, hooked, dark grey color", + "belly: pale, white with dark streaks", + "breast: light brown with white spots", + "crown: dark brown feathers with slight crest", + "forehead: pale brown with slight white markings", + "eyes: large, dark brown with yellow ring", + "legs: strong, yellow with black talons", + "wings: broad, long, dark brown with white spots", + "nape: brownish-grey with small white markings", + "tail: short, dark brown with white bars", + "throat: pale brownish-white with dark streaks" + ], + "indian swiftlet": [ + "back: sleek, dark gray feathers", + "beak: small, sharp, and pointed", + "belly: light gray to white plumage", + "breast: grayish-white feathers", + "crown: smooth, dark gray feathers", + "forehead: short, dark gray feathers", + "eyes: small, round, and black", + "legs: short and thin with black, clawed feet", + "wings: long, pointed, with dark gray feathers", + "nape: dark gray plumage with a slightly lighter patch", + "tail: short and forked with dark gray feathers", + "throat: grayish-white feathers transitioning to the breast area" + ], + "indian thick knee": [ + "back: earthy brown feathers with small white specks", + "beak: long, slender, and slightly curved", + "belly: pale grey with faint streaks", + "breast: off-white with light brown streaks", + "crown: brown with distinct white streaks", + "forehead: whitish with fine black streaks", + "eyes: large, dark, and expressive", + "legs: long, sturdy, and yellowish-grey", + "wings: brownish-grey with white bands", + "nape: greyish-brown with white streaks", + "tail: short with brown and white bands", + "throat: bright white with distinct feather markings" + ], + "indian white eye": [ + "back: olive-green smooth feathers", + "beak: short, slender, and curved", + "belly: pale yellow, soft texture", + "breast: bright yellow, plump", + "crown: vibrant green, rounded", + "forehead: white, narrow band", + "eyes: large, white eye-ring", + "legs: gray, slender with strong claws", + "wings: greenish-yellow, medium-length", + "nape: green feathers, blending into back", + "tail: dark green, slightly forked", + "throat: bright yellow, smoothly transitioning to breast" + ], + "indian yellow tit": [ + "back: bright yellow with olive green hues", + "beak: small, dark, and pointed", + "belly: vibrant yellow with black markings", + "breast: bright yellow and black striped", + "crown: glossy black with distinctive crest", + "forehead: glossy black, part of the crest", + "eyes: dark with white eye-ring", + "legs: slender and dark gray", + "wings: olive-green with white-edged feathers", + "nape: glossy black, continuation of the crest", + "tail: olive-green with black and white tips", + "throat: bright yellow and black striped" + ], + "indigo flowerpiercer": [ + "back: deep indigo feathered", + "beak: slender and curved", + "belly: lighter blue hue", + "breast: vibrant indigo plumage", + "crown: bright indigo feathers", + "forehead: smooth indigo gradient", + "eyes: small, dark, and alert", + "legs: thin and grayish", + "wings: wide and iridescent indigo", + "nape: bold indigo hue", + "tail: long and indigo-tipped", + "throat: delicate yet vibrant blue" + ], + "indigo macaw": [ + "back: vibrant blue feathers", + "beak: large, black, strong", + "belly: bright yellow feathered", + "breast: mix of yellow and blue feathers", + "crown: radiant blue plumage", + "forehead: deep blue feathers", + "eyes: expressive, surrounded by white patches", + "legs: dark, sturdy, scaled", + "wings: vivid blue with green tips", + "nape: rich blue feathers", + "tail: long, blue with green accents", + "throat: smooth, yellow feathers" + ], + "indigo banded kingfisher": [ + "back: vibrant blue feathers with indigo streaks", + "beak: long, sharp, black and powerful", + "belly: white with faint blue bands", + "breast: brilliant white merging with blue belly bands", + "crown: bright indigo, crest-like with white streaks", + "forehead: shining indigo, blending with crown", + "eyes: dark, slightly large, and observant", + "legs: short, strong, and bright orange", + "wings: blue with delicate indigo bands and white feather tips", + "nape: dazzling indigo with faint white markings", + "tail: long, blue feathers with broad black and white bands", + "throat: brilliant white, contrasting with brightly colored head" + ], + "indigo capped hummingbird": [ + "back: iridescent green-blue feathers", + "beak: slender, straight, and black", + "belly: soft white plumage", + "breast: brilliant blue-green feathers", + "crown: vivid indigo cap", + "forehead: metallic blue strip above eyes", + "eyes: small, round, and black", + "legs: delicate and short, black", + "wings: narrow, pointed, iridescent green", + "nape: iridescent green-blue feathers", + "tail: forked, iridescent green-blue feathers", + "throat: deep blue-purple band" + ], + "indigo winged parrot": [ + "back: vibrant indigo feathers", + "beak: strong, curved, and tan", + "belly: pale green plumage", + "breast: rich turquoise feathers", + "crown: deep indigo crest", + "forehead: light green gradient", + "eyes: round, black beads", + "legs: slender gray limbs", + "wings: magnificent indigo with teal streaks", + "nape: transition from indigo to green", + "tail: long, indigo feathers with blue tips", + "throat: bright emerald coverage" + ], + "indochinese barbet": [ + "back: vibrant yellow-green feathers", + "beak: short, stout, and hooked", + "belly: bright yellow hue", + "breast: crimson or red coloration", + "crown: black with blue markings", + "forehead: prominent blue stripe", + "eyes: dark, beady, and alert", + "legs: sturdy, grayish-brown, and clawed", + "wings: green with blue-bordered flight feathers", + "nape: yellow-green with blue patches", + "tail: short and bushy, green-blue feathers", + "throat: deep crimson or red shades" + ], + "indochinese blue flycatcher": [ + "back: bright blue upper body", + "beak: small, sharp black beak", + "belly: pale white underside", + "breast: white chest with blue outline", + "crown: bright blue feathered head", + "forehead: blue plumage continuing from crown", + "eyes: small, dark, attentive eyes", + "legs: short, grayish-black legs", + "wings: vibrant blue with dark flight feathers", + "nape: blue plumage at base of neck", + "tail: long, blue tail with white tips", + "throat: white feathered area below beak" + ], + "indochinese bushlark": [ + "back: light brown with subtle streaks", + "beak: short and conical, pale yellow", + "belly: pale and buff-colored", + "breast: slightly streaked, light brown", + "crown: reddish-brown, finely streaked", + "forehead: pale, buff-colored, merging with the crown", + "eyes: dark with pale-yellow eyering", + "legs: long and slender, pale yellowish-brown", + "wings: brown with pale edges and distinctive white tips", + "nape: reddish-brown, streaked", + "tail: brown with white corners, slightly forked", + "throat: pale buff with light streaks" + ], + "indochinese cuckooshrike": [ + "back: grayish-blue upper body", + "beak: short, hooked tip, black", + "belly: light gray, fading to white", + "breast: grayish-blue, slightly lighter than back", + "crown: pale gray-blue", + "forehead: light gray, blending into the crown", + "eyes: small, dark, and rounded", + "legs: slender, pale yellow-orange", + "wings: grayish-blue with black flight feathers", + "nape: grayish-blue, continuous with the back", + "tail: blackish, long and slightly forked", + "throat: white, blending into the belly" + ], + "indochinese fulvetta": [ + "back: olive-green feathers", + "beak: short and slightly hooked", + "belly: pale gray with faint streaks", + "breast: light gray with darker streaks", + "crown: dark gray with subtle crest", + "forehead: dark gray and slightly rounded", + "eyes: small black surrounded by gray feathers", + "legs: pale pinkish-brown", + "wings: olive-green with pale wing bars", + "nape: dark gray blending to olive-green", + "tail: olive-green with squared end", + "throat: light gray with faint streaks" + ], + "indochinese green magpie": [ + "back: vibrant green feathers", + "beak: strong, black, slightly hooked", + "belly: bright green with a blue tinge", + "breast: vivid green plumage", + "crown: deep blue with a slight crest", + "forehead: blue-green feathers transitioning into the crown", + "eyes: dark brown, encircled by black feathers", + "legs: sturdy, dark gray with sharp claws", + "wings: green with blue flight feathers and black edges", + "nape: rich green, connecting crown to the back", + "tail: elongated, green with blue and black bands", + "throat: lighter green, blending into the breast area" + ], + "indochinese roller": [ + "back: vibrant blue feathers", + "beak: strong, black, and slightly curved", + "belly: turquoise with hints of lilac", + "breast: rich blue plumage", + "crown: dark blue with a hint of purple", + "forehead: vivid blue feathers", + "eyes: piercing, dark, and round", + "legs: sturdy, grayish-brown", + "wings: striking blue with bold wing bars", + "nape: iridescent purple-blue feathers", + "tail: elongated, blue with pale tips", + "throat: brilliant turquoise" + ], + "indochinese yuhina": [ + "back: olive-green feathered upper body", + "beak: slender, pointed, black beak", + "belly: light and buffy underbody", + "breast: soft grayish-brown feathers", + "crown: black crest extending from forehead", + "forehead: small patch of white feathers", + "eyes: black, beady eyes with thin white eye-ring", + "legs: sturdy, grayish-blue legs and feet", + "wings: olive-green feathers with darker tips", + "nape: grayish-brown feathered base of the neck", + "tail: long olive-brown tail with dark tips", + "throat: light grayish-white feathered area" + ], + "inland thornbill": [ + "back: olive-brown with subtle striations", + "beak: short, slender and curved", + "belly: creamy-yellow with streaks", + "breast: buff-colored with black banding", + "crown: brownish-grey with prominent spines", + "forehead: pale grey with slight rufous tinge", + "eyes: small, dark and inquisitive", + "legs: slim and pale pinkish-brown", + "wings: olive-green with dark barring", + "nape: light brown with faint striations", + "tail: short and squared with black bands", + "throat: soft white with faint streaking" + ], + "intermediate egret": [ + "back: sleek and elongated white plumage", + "beak: long, sharp, and yellowish", + "belly: smooth white feathers", + "breast: fluffy, pure white plumage", + "crown: thin layer of white feathers", + "forehead: smooth, white continuation from the crown", + "eyes: small, round, and dark", + "legs: long, yellow, and slim", + "wings: broad, white, and feathery allowing for swift flight", + "nape: delicate white feathers connecting head and back", + "tail: elegant plumes of white feathers", + "throat: white, slender, and smooth" + ], + "inti tanager": [ + "back: vibrant green with blue accents", + "beak: small, cone-shaped in black color", + "belly: bright yellow hue", + "breast: luminous orange mixed with yellow", + "crown: deep turquoise feathers", + "forehead: rich golden-yellow color", + "eyes: dark, encircled with thin blue lines", + "legs: strong, slender with dark gray color", + "wings: multicolored with blue, green, and yellow feathers", + "nape: vivid greenish-blue feathers", + "tail: long, multicolored with blue, green, and yellow feathers", + "throat: intense yellow with a touch of orange" + ], + "invisible rail": [ + "back: smooth, camouflaged feathers", + "beak: long, slender, sharp-end", + "belly: soft, pale plumage", + "breast: slightly rounded, feathered", + "crown: subtly raised, colored crest", + "forehead: flat, feathered bridge", + "eyes: bright, watchful beads", + "legs: powerful, sturdy limbs", + "wings: strong, broad, noiseless flaps", + "nape: curved, feathered neckbase", + "tail: fan-like, prop-like feathers", + "throat: slender, delicate plumes" + ], + "iphis monarch": [ + "back: vibrant blue and black pattern", + "beak: slender, sharp, and black", + "belly: soft white with light brown speckles", + "breast: bright orange and black stripes", + "crown: glossy blue-black with a tuft", + "forehead: sleek black and white striped", + "eyes: dark and round, surrounded by a white ring", + "legs: thin and strong with black talons", + "wings: large, orange, blue, and black patterned feathers", + "nape: sleek with iridescent blue and black feathers", + "tail: long, blue-black feathers with white spots", + "throat: striking orange and black stripes" + ], + "iranian ground jay": [ + "back: olive-brown with dark streaks", + "beak: strong, black, and slightly curved", + "belly: light sandy-brown with dark spots", + "breast: pale brownish-grey with dark streaks", + "crown: streaked black and brown with white supercilium", + "forehead: light greyish-brown with faint streaks", + "eyes: dark brown surrounded by white eyerings", + "legs: powerful, greyish-pink, suited for terrestrial life", + "wings: black and white with blue-grey primaries and white outer wing feathers", + "nape: olive-brown with faint dark streaks", + "tail: short, black, and white with white outer feathers and dark central feathers", + "throat: pale greyish-white with dark streaks" + ], + "iraq babbler": [ + "back: dusty brown with faint streaks", + "beak: slender and slightly curved, pale pinkish-brown", + "belly: creamy white with subtle streaks", + "breast: dull white with brownish streaks", + "crown: dark brown with faint streaks", + "forehead: pale brown with soft blackish streaks", + "eyes: dark brown encircled by pale eye-ring", + "legs: long and slim, pale pinkish-brown", + "wings: brown with pale wingbars and rufous edges", + "nape: dark brown with light streaks", + "tail: brownish with rufous outer feathers and white tips", + "throat: creamy white with light streaks" + ], + "iringa akalat": [ + "back: brownish-grey feathers", + "beak: short and stout, slightly curved", + "belly: white with black spots", + "breast: orange-red coloration", + "crown: greyish-brown with faint streaks", + "forehead: greyish-brown feathers", + "eyes: dark and round with white eyering", + "legs: long and slender, greyish color", + "wings: brownish-grey with white bars", + "nape: greyish-brown feathers with faint streaks", + "tail: elongated with black and white markings", + "throat: white with black spots" + ], + "iriomote tit": [ + "back: olive-grey feathers", + "beak: sharp, black, and conical", + "belly: off-white with dark streaks", + "breast: pale gray with fine black streaks", + "crown: black with white spots", + "forehead: black with white flecks", + "eyes: black, large, and round", + "legs: dark brown, slender, and strong", + "wings: olive-grey with white flight feathers", + "nape: black with white markings", + "tail: short with dark feathers and white tips", + "throat: off-white with dark streaking" + ], + "iris lorikeet": [ + "back: vibrant green plumage", + "beak: orange-red, hooked tip", + "belly: bright yellow feathers", + "breast: rich orange-red hues", + "crown: purple-blue plumage", + "forehead: iridescent purple-blue", + "eyes: dark, surrounded by bare blue eye-ring", + "legs: grayish-black, strong", + "wings: contrasting green and purple-blue feathers", + "nape: purple-blue feathering", + "tail: long, green central feathers with yellow and blue margins", + "throat: vivid orange coloration" + ], + "isabela oriole": [ + "back: rich golden-brown feathers", + "beak: stout and silvery-blue bill", + "belly: creamy-yellow underparts", + "breast: vibrant yellow plumage", + "crown: black head with blue-tinged streaks", + "forehead: striking black coloration", + "eyes: large and dark, surrounded by faint blue eye-ring", + "legs: sturdy grey-blue limbs", + "wings: black with bright yellow wingbars", + "nape: distinct black and blue-tinged feather pattern", + "tail: long, black with a yellow tip", + "throat: brilliant yellow patch extending onto the breast" + ], + "isabelline bush hen": [ + "back: light brown with faint streaks", + "beak: slender and pointed, pale pinkish-brown", + "belly: creamy white with brown spots", + "breast: buff-white, speckled with brown", + "crown: reddish-brown with streaks", + "forehead: pale brown fading to white", + "eyes: small and black, encircled by white", + "legs: long and slender, pale yellow", + "wings: rounded, brownish-grey with barred pattern", + "nape: reddish-brown with streaks", + "tail: long and straight, brown with dark bars", + "throat: creamy white with faint brown speckles" + ], + "isabelline shrike": [ + "back: light brown with faint black streaks", + "beak: study and hooked, blackish-brown", + "belly: pale white or creamy buff", + "breast: grayish-brown with little streaks", + "crown: smoky brown, faintly streaked", + "forehead: pale grayish-brown", + "eyes: dark brown with faint eye-ring", + "legs: dark gray, slender and strong", + "wings: brownish-gray, long and pointed", + "nape: smoky brown, blending with the crown", + "tail: squared, dark brown with faint barring", + "throat: creamy white, unstreaked" + ], + "isabelline wheatear": [ + "back: primarily sandy brown with a light streaked pattern", + "beak: thin, black, and slightly curved", + "belly: creamy white, gently pale to beige", + "breast: washed, light orange-brown hue", + "crown: pale brownish-grey adorned with streaks", + "forehead: smooth off-white mingling with brownish-grey", + "eyes: small, round, and dark in matching blackish circle", + "legs: elongated, slender, and black", + "wings: sandy brown with subtle dark brown markings", + "nape: light brownish-grey with a streaky texture", + "tail: pale brown with white borders and a dark terminal band", + "throat: delicate off-white blending with breast color" + ], + "island canary": [ + "back: smooth, yellow-green feathers", + "beak: short, pointed, orange-yellow", + "belly: soft, vibrant yellow feathers", + "breast: plump, yellow feathered", + "crown: rounded, yellow-green feathers", + "forehead: bright yellow feathers", + "eyes: small, black, alert", + "legs: slender, orange-yellow, scaly", + "wings: yellowish-green, patterned, sleek feathers", + "nape: yellowish-green curve of neck", + "tail: fan-shaped, yellow-tipped, green feathers", + "throat: vibrant yellow, soft feathers" + ], + "island leaf warbler": [ + "back: light olive-green feathers", + "beak: thin, pointed, and black", + "belly: pale yellow shading", + "breast: vibrant yellow feathers", + "crown: olive-green with faint streaks", + "forehead: yellowish-green hues", + "eyes: deep black with white eyering", + "legs: slender and light gray", + "wings: olive-green with faint streaks", + "nape: light olive-green coloring", + "tail: olive-green with distinct notches", + "throat: bright yellow feathers" + ], + "island monarch": [ + "back: olive-brown feathers with light streaks", + "beak: slender, curved black bill", + "belly: yellow-orange underside with faint bars", + "breast: rich golden-orange with light streaks", + "crown: dark brown with a slight crest", + "forehead: olive-brown with lighter streaks", + "eyes: small, round, and black", + "legs: slender, medium-length grey legs", + "wings: brownish-black with white and blue markings", + "nape: prominent orange-brown patch with spots", + "tail: long, dark brown with white tips and blue markings", + "throat: golden-orange with light streaks" + ], + "island scrub jay": [ + "back: vibrant blue feathers", + "beak: strong, black, and slightly curved", + "belly: soft gray plumage", + "breast: light gray-blue feathers", + "crown: bright blue crest", + "forehead: smooth blue feathers", + "eyes: dark, alert and expressive", + "legs: sturdy, dark gray with scaly texture", + "wings: deep blue with blackish primaries", + "nape: rich blue feathering", + "tail: long, blue with black tips", + "throat: pale gray, contrasting with blue plumage" + ], + "island thrush": [ + "back: olive-brown feathers with streaks of gray", + "beak: short, strong, and curved", + "belly: pale grayish-white with dark spots", + "breast: soft gray with speckled markings", + "crown: dark brown with a merged gray streak", + "forehead: grayish-brown with narrow white lines", + "eyes: dark, round with a thin white eye-ring", + "legs: pale pinkish-brown with scaly texture", + "wings: long, rounded, brownish-slate with white flecks", + "nape: mottled brown with faint white streaks", + "tail: dark brown with thin white tips on feathers", + "throat: white, merging into gray streaks on the breast" + ], + "island whistler": [ + "back: olive-green feathers", + "beak: slender and curved", + "belly: off-white or yellowish tint", + "breast: pale yellow or light olive", + "crown: greenish-yellow with a crest", + "forehead: bright yellow stripe", + "eyes: dark with white eye-ring", + "legs: thin gray or brown", + "wings: olive-green with darker tips", + "nape: golden-green hue", + "tail: long and dark with white markings", + "throat: vibrant yellow or greenish-yellow" + ], + "isthmian wren": [ + "back: olive-brown with fine black barring", + "beak: short and thin, pale yellowish-brown", + "belly: white with brown and black markings", + "breast: white with fine black streaks", + "crown: grayish-brown with russet streaks", + "forehead: pale grayish-brown", + "eyes: dark brown with pale eye-ring", + "legs: pale pinkish-brown with sharp claws", + "wings: olive-brown with black barring and white tips", + "nape: grayish-brown with russet streaks", + "tail: short and squarish, olive-brown with black barring", + "throat: white with brown and black markings" + ], + "italian sparrow": [ + "back: olive-brown plumage with fine streaks", + "beak: conical, grayish-pink color", + "belly: light grey-white", + "breast: pale grey with slight rusty tinge", + "crown: chestnut-brown", + "forehead: pale grey fading to white", + "eyes: dark brown, surrounded by a white ring", + "legs: pinkish-brown with strong claws", + "wings: brown with white and black accents", + "nape: chestnut-brown, blending with back", + "tail: brown with white outer feathers", + "throat: white, bordered by black bib" + ], + "itatiaia spinetail": [ + "back: brownish-gray feathers", + "beak: short and conical, blackish color", + "belly: buffy white, lightly streaked", + "breast: pale brown, moderately streaked", + "crown: rufous-brown with spiky feathers", + "forehead: whitish-buffy stripe", + "eyes: dark, encircled by thin white ring", + "legs: dark grey, sturdy and strong", + "wings: barred brownish-gray with white tips", + "nape: buffy brown, faintly streaked", + "tail: long and dark, reddish-chestnut undertail coverts", + "throat: white, bordered by dark streaks" + ], + "ituri batis": [ + "back: sleek dark brown feathers", + "beak: short, sharp, black", + "belly: light grayish-white underside", + "breast: grayish-white feathers", + "crown: dark brown feathered cap", + "forehead: black stripe across white base", + "eyes: large, vibrant black orbs", + "legs: thin, grayish-brown limbs", + "wings: rich brown feathers with pale edges", + "nape: dark brown connecting crown to back", + "tail: long, brown-black with white tip", + "throat: white, contrasting with dark crown" + ], + "ivory backed woodswallow": [ + "back: blue-black iridescent feathers", + "beak: short, dark, and stout", + "belly: light gray to ivory-white", + "breast: blend of pale gray and white", + "crown: glossy bluish-black", + "forehead: metallic bluish tinge", + "eyes: small, black, and shiny", + "legs: dark gray, strong, and spindly", + "wings: shiny blue-black, elongated", + "nape: iridescent bluish-black", + "tail: dark blue-black, slightly forked", + "throat: light gray to softer white" + ], + "ivory billed woodcreeper": [ + "back: dark brown with fine white streaks", + "beak: long, ivory-colored, slightly curved", + "belly: light buff with dark bars", + "breast: brown with fine white streaks", + "crown: black with red plumage in male", + "forehead: black with a slight reddish tint", + "eyes: dark brown, surrounded by pale skin", + "legs: grayish-blue with strong claws", + "wings: dark brown with white bars", + "nape: black with fine white streaks", + "tail: long, dark brown with white bars", + "throat: buff-colored with dark streaks" + ], + "ivory breasted pitta": [ + "back: vibrant olive-green color", + "beak: robust, black and curved", + "belly: white with light blue streaks", + "breast: bright ivory hue", + "crown: deep blue cap-like feature", + "forehead: dark blue transitioning into crown", + "eyes: round, black, alert", + "legs: strong, scaly, grey", + "wings: bold green with hints of blue", + "nape: rich blue leading into back", + "tail: elongated, green feathers with bluish tint", + "throat: smooth ivory blending into breast" + ], + "izu robin": [ + "back: olive-brown with faint streaks", + "beak: thin, pointed, and black", + "belly: pale buff color with subtle spots", + "breast: orange-reddish with dark streaks", + "crown: olive-brown blending with back", + "forehead: barely-visible streak of pale blue", + "eyes: small, black with a faint pale eye-ring", + "legs: thin, pale pinkish-gray", + "wings: olive-brown with white wingbars", + "nape: olive-brown in color, continuous with crown", + "tail: olive-brown, slightly forked with white outer feathers", + "throat: white with some dark streaks" + ], + "izu thrush": [ + "back: olive-brown and smooth", + "beak: slender and dark gray", + "belly: creamy-white with dark spots", + "breast: white with dark gray streaks", + "crown: dark brown with slight greenish sheen", + "forehead: slightly paler brown than crown", + "eyes: dark brown with white eye-ring", + "legs: strong and yellow-orange", + "wings: olive-brown with white wing bars", + "nape: olive-brown, blending with crown", + "tail: dark brown and slightly forked", + "throat: white with minimal streaking" + ], + "jackal buzzard": [ + "back: dark brown feathers with white speckles", + "beak: strong, curved black beak", + "belly: white with dark feather striping", + "breast: red-brown with white streaks", + "crown: dark brown with a slightly raised crest", + "forehead: white with fine brown streaks", + "eyes: piercing yellow with a sharp gaze", + "legs: yellow, strong, and scaly with sharp talons", + "wings: broad and dark brown with white tips and patterns", + "nape: dark brown with white speckles, connecting to the back", + "tail: long, dark brown with white bands and a red hue", + "throat: white with a distinct reddish-brown collar" + ], + "jackson hornbill": [ + "back: dark green and black feathers", + "beak: long, curved, and orange-yellow", + "belly: white with light green streaks", + "breast: white feathers with green spotting", + "crown: red with a large casque on top", + "forehead: red and green feathers merging into the casque", + "eyes: dark with a visible white eyelid", + "legs: black scaly with long toes", + "wings: large with iridescent green and black feathers", + "nape: light green to dark green feathers", + "tail: long and black with iridescent green tips", + "throat: white feathers with light green to yellow markings" + ], + "jackson spurfowl": [ + "back: brown feathers with black stripes", + "beak: short, dark gray, and curved", + "belly: white feathers with black spots", + "breast: orange-brown with white spots", + "crown: reddish-orange with black mottling", + "forehead: black feathers transitioning to reddish-orange", + "eyes: dark brown, surrounded by pale pink skin", + "legs: long, grayish-pink with sharp claws", + "wings: brown, black, and white patterned feathers", + "nape: mottled reddish-brown and black", + "tail: long brown feathers with black bars", + "throat: white feathers with black spots" + ], + "jackson widowbird": [ + "back: dark blackish-brown feathers", + "beak: short, conical, black", + "belly: silky black feathers", + "breast: thick black plumage", + "crown: glossy black with rounded crest", + "forehead: sleek black feathers", + "eyes: small, dark with a white eye-ring", + "legs: slender, feathered, black", + "wings: long, dark with white spots", + "nape: black feathers meeting crest", + "tail: elongated, black, fan-shaped", + "throat: soft black feathers with a slight sheen" + ], + "jacky winter": [ + "back: sleek gray-brown plumage", + "beak: small, thin, black", + "belly: pale and lightly-streaked", + "breast: off-white with gray speckles", + "crown: gray-brown with a faint crest", + "forehead: smooth gray-brown", + "eyes: round, black, alert", + "legs: thin, gray, twig-like", + "wings: gray-brown with white tips", + "nape: gray-brown, blending with crown", + "tail: long, gray-brown with white edges", + "throat: off-white, slightly streaked" + ], + "jalca tapaculo": [ + "back: dark gray plumage", + "beak: short and stout", + "belly: pale gray with darker spots", + "breast: soft gray feathers", + "crown: deep gray coloration", + "forehead: muted gray patterning", + "eyes: small and black", + "legs: sturdy and scaled", + "wings: short with rounded tips", + "nape: lighter gray feathers", + "tail: medium length with dark gray feathers", + "throat: lighter gray plumage" + ], + "jamaican becard": [ + "back: olive-green to brownish hue", + "beak: short, sturdy, and hooked", + "belly: yellowish to light gray undertones", + "breast: pale yellow or cream-colored", + "crown: dark gray or black with slight crest", + "forehead: similar to crown, dark gray or black", + "eyes: black, bright, and round", + "legs: long, slender, and gray", + "wings: olive-green with brownish edges", + "nape: olive-green fading to gray", + "tail: long, dark, and fan-shaped", + "throat: pale yellow or cream, sometimes with gray touches" + ], + "jamaican blackbird": [ + "back: shiny black feathers", + "beak: strong, dark gray", + "belly: dark grey-black plumage", + "breast: black with a slightly glossy finish", + "crown: smooth black feathers", + "forehead: black with a slight sheen", + "eyes: dark brown, nearly black", + "legs: blackish-grey, slender", + "wings: large and black, glossy in sunlight", + "nape: black, blacker at neck base", + "tail: long, black, and somewhat narrow", + "throat: glossy black feathers" + ], + "jamaican crow": [ + "back: glossy black feathers", + "beak: slightly curved, black", + "belly: black or dark grey feathers", + "breast: shiny black plumage", + "crown: sleek black with iridescence", + "forehead: black feathers, slightly raised", + "eyes: dark brown or black, piercing", + "legs: strong, black", + "wings: black, broad, and rounded", + "nape: black feathers meeting crown", + "tail: long, black, and fan-shaped", + "throat: black, narrow feathers" + ], + "jamaican elaenia": [ + "back: olive-green with a slight grayish hue", + "beak: dark grey, slender, and slightly curved", + "belly: pale yellow with subtle grey streaks", + "breast: light gray with subtle yellow tint", + "crown: olive-green with faint grey crest", + "forehead: white eyebrow stripe with grayish hue", + "eyes: dark brown with thin white eye-ring", + "legs: pale grey and fairly short", + "wings: olive-green with two distinct white wingbars", + "nape: olive-green, blending with the back and crown", + "tail: olive-green with a slight fork, white edges on feathers", + "throat: pale gray, merging with breast coloration" + ], + "jamaican euphonia": [ + "back: vibrant yellow-green hue", + "beak: small, black, and pointed", + "belly: rich yellow color", + "breast: bright yellow plumage", + "crown: glossy blue-black cap", + "forehead: shiny blue-black extension from crown", + "eyes: black with white eye-ring", + "legs: slender and dark grey", + "wings: olive-green with black flight feathers", + "nape: yellow-green transitioning from crown", + "tail: short olive-green with dark central feathers", + "throat: brilliant yellow merging with breast" + ], + "jamaican lizard cuckoo": [ + "back: olive-brown feathers with subtle streaks", + "beak: slender, slightly down-curved, and blackish", + "belly: pale grayish-white with faint, dark barring", + "breast: light gray with dark streaks", + "crown: olive-brown with a slight crest", + "forehead: olive-brown, blending into the crown", + "eyes: dark brown with a pale eye-ring", + "legs: sturdy and grayish-black", + "wings: olive-brown with white-tipped secondary feathers", + "nape: olive-brown, merging smoothly with the back", + "tail: long and graduated, olive-brown with white tips", + "throat: pale gray, transitioning to the breast" + ], + "jamaican mango": [ + "back: vibrant green feathers", + "beak: straight, black, and slender", + "belly: bright orange-yellow hue", + "breast: rich yellow plumage", + "crown: green with a slight tinge of blue", + "forehead: emerald green feathers", + "eyes: dark, alert, and expressive", + "legs: thin, gray, and agile", + "wings: bright green with hints of yellow", + "nape: greenish-blue transitioning to the back", + "tail: long, slightly forked, and colorful", + "throat: golden-yellow feathers" + ], + "jamaican oriole": [ + "back: vibrant green and yellow hues", + "beak: elongated black curved shape", + "belly: bright yellow feathers", + "breast: yellow plumage with smooth texture", + "crown: brilliant green-yellow feathers", + "forehead: vivid yellow combination of colors", + "eyes: small black, inquisitive appearance", + "legs: strong, black, and slender", + "wings: mix of green, yellow, and black feathers", + "nape: green and yellow shades transitioning smoothly", + "tail: long black and yellow feathers with a slight fan shape", + "throat: bright contrasting yellow feathers" + ], + "jamaican owl": [ + "back: brown with white spots", + "beak: short and hooked, yellowish-white", + "belly: light brown with dark streaks", + "breast: buff with brown bars", + "crown: rounded, dark brown with white spots", + "forehead: white with faint brown markings", + "eyes: large and dark, surrounded by white rings", + "legs: sturdy, feathered, yellowish-brown", + "wings: rounded, brown with white speckles", + "nape: dark brown with white spots", + "tail: long, brown with white bands", + "throat: whitish with brown streaks" + ], + "jamaican pewee": [ + "back: olive-brown coloration", + "beak: short and hooked", + "belly: pale yellow hue", + "breast: light olive-brown shade", + "crown: dark olive-brown with subtle crest", + "forehead: light olive-brown fading to pale", + "eyes: small and black", + "legs: slender and dark gray", + "wings: olive-brown with faint wing bars", + "nape: olive-brown blending with crown", + "tail: fairly long with dark banding", + "throat: pale and slightly yellowish" + ], + "jamaican spindalis": [ + "back: olive-green with black streaks", + "beak: short and conical, black in color", + "belly: bright yellow with black streaks", + "breast: vibrant golden-orange with black streaks", + "crown: black with a noticeable crest shape", + "forehead: contrasting white and black stripes", + "eyes: dark and surrounded by white markings", + "legs: pale pink, slender and strong", + "wings: olive-green with black streaks, yellow patches", + "nape: black with white stripes pattern", + "tail: olive-green with white tips and black markings", + "throat: golden-orange with black streaks" + ], + "jamaican tody": [ + "back: vibrant green with iridescent sheen", + "beak: short, thin, and slightly curved", + "belly: pale yellow with soft feathering", + "breast: bright yellow-green, gradually blending to yellow", + "crown: rich green fading to a subtle blue shade", + "forehead: small white patch above the beak", + "eyes: large, round and dark, encircled by thin white border", + "legs: sturdy and grey with sharp, pointed claws", + "wings: bright green and blue, with colorful flight feathers", + "nape: bold green merging into the blue of the crown", + "tail: long, dark, and fan-shaped, with distinct feathers", + "throat: bright yellow, contrasting the green of the head" + ], + "jamaican vireo": [ + "back: olive-green with subtle streaks", + "beak: short, stout, and slightly curved", + "belly: pale yellow with grayish tinges", + "breast: light yellow-green, blending into belly", + "crown: olive-green, blending well with back", + "forehead: brighter yellow-green than rest of head", + "eyes: dark, well-defined eye-ring, showcasing their smart appearance", + "legs: bluish-gray, sturdy and strong", + "wings: olive-green with darker wingbars", + "nape: yellow-green, with a smooth transition from the crown", + "tail: olive-green, slightly darker than back, with a gentle v-shape", + "throat: bright yellow, distinguishing feature from other vireo species" + ], + "jamaican woodpecker": [ + "back: greenish-black plumage with white spots", + "beak: strong, chisel-like, black beak", + "belly: white or pale underside with greenish band", + "breast: reddish-pink patch on upper breast", + "crown: red crest on head", + "forehead: white stripe above the eyes", + "eyes: dark brown with white eye-ring", + "legs: grayish short legs with sharp claws", + "wings: greenish-black with white spots and red markings", + "nape: greenish-black with white spots", + "tail: stiff, black feathers with white tips", + "throat: white or pale coloration" + ], + "jambandu indigobird": [ + "back: olive-green to brownish-black feathers", + "beak: short, conical, and silvery-blue", + "belly: light grey to whitish-gray plumage", + "breast: bluish-black transitioning to greyish-white on sides", + "crown: iridescent bluish-black feathers", + "forehead: bluish-black with indigo shine", + "eyes: dark, piercing with grey periorbital ring", + "legs: pale pinkish-gray and slender", + "wings: dark indigo with greyish-white tips", + "nape: iridescent bluish-black feathers", + "tail: black with indigo-blue highlights, forked", + "throat: bright shiny bluish-black" + ], + "jambu fruit dove": [ + "back: emerald green feathers with a slight shine", + "beak: small, curved, and pale bluish-gray", + "belly: soft, pastel yellowish-green feathers", + "breast: rosy pink plumage with a gradient to the belly", + "crown: deep violet-blue feathers on its head", + "forehead: emerald green merging into the crown", + "eyes: deep black with a white eye-ring", + "legs: short, pinkish-gray with strong toes", + "wings: green feathers with dark edges and pinkish-violet primaries", + "nape: emerald green feathers blending into the back", + "tail: green feathers, darkening towards the edges", + "throat: delicate pastel pink, merging into breast color" + ], + "james flamingo": [ + "back: bright pink feathers covering the bird's spine", + "beak: downward-curving black and white hooked bill", + "belly: soft, pale pink feathers on the lower body", + "breast: vibrant pink plumage across chest area", + "crown: feathered pink head with an elongated, featherless patch on the back", + "forehead: smooth pink plumage at the front of the head", + "eyes: small, dark round eyes with a gentle expression", + "legs: long, slender, dark pink legs with webbed feet", + "wings: large, graceful pink wings edged with black tips", + "nape: delicate transition from the head to the back of the neck with pink feathers", + "tail: short, fan-shaped tail with pink and black feathers", + "throat: smooth, pink feathers covering the front of the neck" + ], + "jameson antpecker": [ + "back: olive-brown plumage", + "beak: sharp, slender black bill", + "belly: pale yellowish-white hue", + "breast: relatively soft, buff-colored feathers", + "crown: dark brown crown feathers", + "forehead: subtly contrasting brown shade", + "eyes: bright black with a white eye-ring", + "legs: sturdy, beige-colored limbs", + "wings: olive-brown covered with faint pale spots", + "nape: brownish color with a pale collar", + "tail: long, brown feathers with white edges", + "throat: smooth, light buff-colored plumage" + ], + "jameson firefinch": [ + "back: vibrant reddish-brown feathers", + "beak: short, conical, and grayish-black", + "belly: deep crimson with white spots", + "breast: fiery red with white speckles", + "crown: bright red with faint streaks", + "forehead: striking red with a white eye-ring", + "eyes: small, black, and alert", + "legs: slender and dark gray", + "wings: reddish-brown with darker flight feathers", + "nape: rich red with a faint darker pattern", + "tail: short, reddish-brown with black banding", + "throat: brilliant red with small white spots" + ], + "jameson snipe": [ + "back: brown and striped pattern", + "beak: long, straight, and slender", + "belly: white with faint barring", + "breast: buff color with dark spotting", + "crown: dark brown with lighter stripes", + "forehead: buff with faint brown lines", + "eyes: small and dark", + "legs: greenish-yellow and long", + "wings: brown with patterned coverts and elongated outer feathers", + "nape: buff with brownish streaks", + "tail: long and pointed, brown with barring", + "throat: whitish with faint spotting" + ], + "jameson wattle eye": [ + "back: vibrant green with subtle blue iridescence", + "beak: small and black-tipped", + "belly: cream-colored with fine streaks", + "breast: pale yellow with light streaks", + "crown: electric blue with white spots", + "forehead: bright blue merging with the crown", + "eyes: large and black, encircled by thick blue eye-ring", + "legs: slender and grayish", + "wings: vibrant green, with black and white flight feathers", + "nape: electric blue transitioning to green", + "tail: long and black, with green iridescence", + "throat: golden-yellow with small white spots" + ], + "japanese accentor": [ + "back: olive-brown with dark streaks", + "beak: short and conical, grayish-black", + "belly: light grayish-brown", + "breast: reddish-brown with dark streaks", + "crown: olive-brown with dark streaks", + "forehead: light grayish-brown", + "eyes: black with whitish eye-ring", + "legs: pinkish-brown, sturdy", + "wings: olive-brown with dark streaks, rounded shape", + "nape: olive-brown with dark streaks", + "tail: long and dark brown, with white outer feathers", + "throat: reddish-brown with dark streaks" + ], + "japanese bush warbler": [ + "back: olive-brown and smooth", + "beak: fine, pointed, and black", + "belly: light yellowish-white hue", + "breast: pale yellow with fine streaks", + "crown: olive-green with slight fading", + "forehead: smooth and olive-brown", + "eyes: round, small, and black", + "legs: slender, long, and pinkish-brown", + "wings: olive-brown with slight barring", + "nape: olive-green blending with the back", + "tail: long, brownish, with faint bars", + "throat: pale yellow, merging with the breast" + ], + "japanese cormorant": [ + "back: dark, green-tinted feathers", + "beak: sharp, strong, and hooked", + "belly: soft, cream-colored plumage", + "breast: sleek, black feathers", + "crown: black, sleek plumage on the head", + "forehead: smooth, flat, and black", + "eyes: striking, penetrating, and white", + "legs: short, powerful, and web-footed", + "wings: large, black, and broad", + "nape: dark, slender feathers", + "tail: long, stiff, and dark-colored", + "throat: cream or white-colored under feathers" + ], + "japanese grosbeak": [ + "back: vibrant yellow-green hue", + "beak: strong, conical, silver-grey", + "belly: white underside with black streaks", + "breast: bright golden-yellow plumage", + "crown: red or black on the head", + "forehead: wide black stripe extending to the eye", + "eyes: dark, round with white eye-ring", + "legs: slate-blue with strong claws", + "wings: black with elegant white patches", + "nape: black band dividing crown and back", + "tail: black with white outer-feathers", + "throat: golden-yellow with black side-streaks" + ], + "japanese leaf warbler": [ + "back: vibrant greenish-yellow", + "beak: slender and pointed", + "belly: light yellowish-white", + "breast: pale yellow", + "crown: bright yellow-green", + "forehead: greenish-yellow", + "eyes: small, dark, with pale eyering", + "legs: long and slender, light pinkish-brown", + "wings: olive-green with white edges", + "nape: greenish-yellow", + "tail: greenish with white outer feathers", + "throat: pale yellow" + ], + "japanese murrelet": [ + "back: dark gray-brown with small white marks", + "beak: short, black, and pointed", + "belly: white with a slight pale brown touch", + "breast: grayish brown with fine white markings", + "crown: blackish brown extending over the neck", + "forehead: slightly paler brown than the crown", + "eyes: small and black with thin eye rings", + "legs: dark gray with webbed feet", + "wings: dark gray-brown with white strips", + "nape: dark brown with slight white marks", + "tail: short and blackish-brown with white tips", + "throat: pale grayish-brown with fine white streaks" + ], + "japanese night heron": [ + "back: dark grayish-blue feathers", + "beak: sharp, black, and slightly downward curving", + "belly: white with black streaks", + "breast: white and gray with black markings", + "crown: black with elongated feathers", + "forehead: black with short white streaks", + "eyes: bright, yellow with dark pupil", + "legs: long, yellow, and sturdy", + "wings: broad, grayish-blue with black and white markings", + "nape: black with distinctive white streaks", + "tail: short, dark gray with white streaks", + "throat: white with fine black markings" + ], + "japanese paradise flycatcher": [ + "back: vibrant, dark blue feathers", + "beak: small, black, and pointed", + "belly: white to cream, long, silky plumage", + "breast: bright white or rufous, blending into belly", + "crown: iridescent blue or black, smoothly curved", + "forehead: dark blue or black, seamlessly blending into the crown", + "eyes: dark, beady, and expressive", + "legs: slender, light brown or grey", + "wings: elongated, dark blue feathers with white edging", + "nape: iridescent blue or black, consistent with crown", + "tail: long, dramatically streaming white or rufous ribbons", + "throat: smooth, white or rufous, adjoining the breast" + ], + "japanese pygmy woodpecker": [ + "back: olive-green with striking white speckles", + "beak: short, chisel-like, and black", + "belly: creamy white with minimal streaks", + "breast: whitish with small black spots", + "crown: blackish with white streaks", + "forehead: white with a touch of olive-green", + "eyes: dark and small with a white eye-ring", + "legs: grayish-blue and sturdy", + "wings: olive-brown with white bars", + "nape: black and white streaks", + "tail: black with bands of white", + "throat: pure white with no markings" + ], + "japanese quail": [ + "back: light brown with black speckles", + "beak: small, grayish-black hook", + "belly: white and cream feathers", + "breast: blue-gray with dark spots", + "crown: rust-colored with black streak", + "forehead: buff-colored patch", + "eyes: large, dark brown", + "legs: short, pale pinkish-gray", + "wings: brown with darker stripes", + "nape: pale brown with darker streaks", + "tail: squared, brown with black barring", + "throat: pale cream with black stripes" + ], + "japanese scops owl": [ + "back: brownish-grey feathers with black speckles", + "beak: short, curved, and light-grey", + "belly: greyish-white with dark streaks", + "breast: pale grey and brown streaked feathers", + "crown: rounded head with dark markings", + "forehead: light-grey feathers with slightly darker spots", + "eyes: large, black, and forward-facing", + "legs: feathered and light-grey", + "wings: broad, rounded, and grey-brown", + "nape: pale grey with thin black stripes", + "tail: medium length, brownish-grey feathers with black bands", + "throat: light-grey feathers with a hint of white" + ], + "japanese sparrowhawk": [ + "back: light greyish-brown with dark streaks", + "beak: sharp, hooked, and black", + "belly: creamy white with reddish-brown vertical stripes", + "breast: off-white with rust-red streaks", + "crown: dark grey with a slight crest", + "forehead: light grey blending into the crown", + "eyes: piercing yellow with a black outline", + "legs: yellow-orange with sharp talons", + "wings: greyish-brown with black-tipped feathers", + "nape: light grey with darker streaks", + "tail: long, barred greyish-brown with black bands", + "throat: white with thin reddish-brown streaks" + ], + "japanese thrush": [ + "back: iridescent blue-black feathers", + "beak: short, straight, and yellowish", + "belly: white with black spots or streaks", + "breast: vibrant orange-red or maroon", + "crown: glossy blue-black with slight crest", + "forehead: smooth, blue-black feathers", + "eyes: small, black, and alert", + "legs: thin, yellowish, with sharp claws", + "wings: dark blue-black with white or gray tips", + "nape: blue-black feathers blending into the back", + "tail: long and dark with white corners or outer feathers", + "throat: white with black streaks or stripes" + ], + "japanese tit": [ + "back: olive-green with contrasting white stripes", + "beak: small, black, and pointed", + "belly: white with thin black streaks", + "breast: yellowish-white with a black central stripe", + "crown: black with white patch on each side", + "forehead: black and glossy", + "eyes: dark brown with white eye-ring", + "legs: bluish-gray and sleek", + "wings: greenish-black with white markings", + "nape: black with a white collar", + "tail: black with white outer feathers", + "throat: black with a white border" + ], + "japanese wagtail": [ + "back: sleek black plumage", + "beak: thin, dark, and slightly curved", + "belly: bright white feathers", + "breast: black and white mixed plumage", + "crown: glossy black with contrasting white strip", + "forehead: stark white band", + "eyes: bold black with a white circle around", + "legs: long, dark slender legs", + "wings: black with prominent white patches", + "nape: black with a white line separating from the crown", + "tail: long, black with white outer feathers", + "throat: striking black and white pattern" + ], + "japanese waxwing": [ + "back: sleek, grayish-brown plumage", + "beak: short, strong, blackish-grey", + "belly: pale greyish-white, smoothly feathered", + "breast: reddish-pink hue, fades to grey", + "crown: velvety, reddish-pink crest", + "forehead: white streak above eyes", + "eyes: dark with white eye-ring", + "legs: sturdy, dark grey", + "wings: dark grey, bold white and yellow markings", + "nape: slightly reddish, blending into back", + "tail: dark grey, squared-off, yellow-tipped", + "throat: white, contrasted against reddish breast" + ], + "japanese wood pigeon": [ + "back: dark bluish-grey feathers", + "beak: short, black, and stout", + "belly: pale grey-white plumage", + "breast: chestnut-brown with a purplish sheen", + "crown: dark bluish-grey with slight greenish tint", + "forehead: bluish-grey, slightly lighter than the crown", + "eyes: dark brown with a white ring around the eye", + "legs: reddish-purple with short, strong claws", + "wings: dark bluish-grey with black flight feathers", + "nape: dark bluish-grey, similar to the back", + "tail: dark bluish-grey feathers with a black terminal band", + "throat: pale grey-white, contrasting with the darker surrounding plumage" + ], + "japanese woodpecker": [ + "back: dark green with white speckles", + "beak: long, chisel-like, and pale gray", + "belly: white with black streaks", + "breast: white with black streaks", + "crown: bright red crest", + "forehead: red with a white patch", + "eyes: small, dark, and beady", + "legs: short, gray, and sturdy", + "wings: dark green with white spots and vivid red markings", + "nape: red and white streaks", + "tail: black with white tips, stiff, and wedge-shaped", + "throat: white with black streaks" + ], + "javan banded pitta": [ + "back: vibrant blue and green pattern", + "beak: short, strong, and orange", + "belly: deep blue with black bands", + "breast: bright blue and green hues", + "crown: striking blue and purple", + "forehead: vivid blue and purple with black outline", + "eyes: dark, focused gaze with white ring", + "legs: strong, orange-colored", + "wings: brilliant blue and green with black stripes", + "nape: cobalt blue with a black band", + "tail: blue feathers with prominent black barring", + "throat: bold orange-red with black streaks" + ], + "javan blue flycatcher": [ + "back: vibrant blue feathers", + "beak: small, black, slightly curved", + "belly: paler blue and white feathers", + "breast: bright blue plumage", + "crown: deep blue with lighter edges", + "forehead: striking blue-to-white gradient", + "eyes: round, black, with white eye-ring", + "legs: slender and dark", + "wings: rich blue with black streaks", + "nape: deep blue with a lighter shade on the neck", + "tail: lengthened, dark blue with white tips", + "throat: white transitioning to blue" + ], + "javan blue banded kingfisher": [ + "back: vibrant blue with black banding", + "beak: strong, long, black", + "belly: white with blue banding", + "breast: white with blue streaks", + "crown: brilliant blue with a black band", + "forehead: bright blue", + "eyes: dark, surrounded by blue feathers", + "legs: reddish-orange with black claws", + "wings: blue with black banding", + "nape: blue with a black collar", + "tail: blue with black banding", + "throat: white with a hint of blue" + ], + "javan bush warbler": [ + "back: olive-brown feathers", + "beak: small, slender, and curved", + "belly: pale and creamy-white", + "breast: light buff with subtle streaks", + "crown: brownish with a faint crest", + "forehead: smooth, olive-brown", + "eyes: dark, beady with pale eyering", + "legs: sturdy, pinkish-brown", + "wings: rounded, olive-brown with faint bars", + "nape: olive-brown, blending with the crown", + "tail: slightly forked, olive-brown with faint bars", + "throat: pale buff, unmarked" + ], + "javan cochoa": [ + "back: vibrant blue-green feathers", + "beak: short and stout, blackish-gray", + "belly: bright blue underparts", + "breast: striking blue plumage", + "crown: deep blue with a slight crest", + "forehead: vibrant blue-green feathers", + "eyes: dark brown with thin-blue eye-ring", + "legs: sturdy grayish-brown", + "wings: bright blue with black flight feathers", + "nape: blue-green blended with the back", + "tail: long, black with blue central feathers", + "throat: electric blue feathers" + ], + "javan cuckooshrike": [ + "back: sleek grayish-black plumage", + "beak: sharp, black, slight hook at tip", + "belly: pale gray with a hint of yellow", + "breast: light gray merging into belly", + "crown: smooth, dark gray", + "forehead: unmarked gray", + "eyes: piercing black with white eyering", + "legs: strong, black with sharp talons", + "wings: slate gray with bold white wingbars", + "nape: unblemished gray", + "tail: long, blackish with white tips", + "throat: pale gray transitioning to breast" + ], + "javan flameback": [ + "back: golden-yellow with black stripes", + "beak: long, curved, and pale ivory", + "belly: white with black bars", + "breast: white with black bars", + "crown: red in males, black-striped yellow in females", + "forehead: red in males, black-striped yellow in females", + "eyes: dark with pale eye-ring", + "legs: strong and grayish", + "wings: black with white speckles and yellow edges", + "nape: red in males, black-striped yellow in females", + "tail: black with white bars", + "throat: white with black bars" + ], + "javan frogmouth": [ + "back: brown with light streaks", + "beak: wide, hooked, yellowish-brown", + "belly: pale cream with brown mottling", + "breast: pale brown with darker streaks", + "crown: same as back, with a slight crest", + "forehead: mottled brown, blends with crown", + "eyes: large and dark, surrounded by a pale ring", + "legs: short, feathered, grayish-brown", + "wings: long and rounded, brown with pale streaks", + "nape: mottled brown, blends with back", + "tail: brown with light bands, fan-shaped", + "throat: pale cream, streaked with light brown" + ], + "javan fulvetta": [ + "back: olive-brown feathers", + "beak: short, sharp, grayish-black", + "belly: pale gray-white plumage", + "breast: soft grayish-brown feathers", + "crown: brownish-gray head feathers", + "forehead: royal gray covering skull", + "eyes: alert, deep black orbs", + "legs: sturdy, grayish-brown limbs", + "wings: olive-brown, flight-ready feathers", + "nape: olive-brown neck plumage", + "tail: horizontally striped, brownish-black", + "throat: light gray feathers with gentle curve" + ], + "javan gray throated white eye": [ + "back: pale olive-green feathers", + "beak: small, sharp, black", + "belly: light grayish-white", + "breast: white with a slight gray tint", + "crown: green with a hint of yellow", + "forehead: white and unmarked", + "eyes: large, dark, and expressive", + "legs: slender and grayish-blue", + "wings: green with a yellow tinge", + "nape: greenish-yellow", + "tail: green with subtle black banding", + "throat: pale gray" + ], + "javan hawk eagle": [ + "back: golden-brown feathered with dark streaks", + "beak: sharp, curved black hooked beak", + "belly: creamy-white with dark brown horizontal bars", + "breast: rich golden-brown feathers with dark streaks", + "crown: brownish-black head feather crest", + "forehead: creamy-white with dark streaks", + "eyes: sharp, piercing yellow-golden eyes", + "legs: strong yellow legs with powerful talons", + "wings: long, broad brown wings with dark barring", + "nape: dark brown feathers with golden tinge", + "tail: long, banded brown and dark gray tail feathers", + "throat: creamy-white with dark streaks" + ], + "javan kingfisher": [ + "back: vibrant azure-blue with slight green-golden tinges", + "beak: strong black dagger-shaped", + "belly: white to beige with a hint of pale blue", + "breast: bright rufous-orange with white patches", + "crown: iridescent azure-blue with green-golden shades", + "forehead: striking glossy blue with dark edge", + "eyes: dark brown with a white periorbital ring", + "legs: sturdy dark gray with strong talons", + "wings: brilliant blue-green with dark flight feathers", + "nape: rich azure-blue with a green-golden sheen", + "tail: long and narrow, deep blue with blackish tips", + "throat: white leading to rufous-orange on upper chest" + ], + "javan munia": [ + "back: brown-grey feathers", + "beak: pale blue-grey with a black tip", + "belly: white with fine dark barring", + "breast: overlapping dark grey and white feathers", + "crown: dark grey with fine white streaks", + "forehead: greyish-white", + "eyes: black with white eye-ring", + "legs: pinkish-grey", + "wings: dark brown with white-tipped coverts", + "nape: dark grey with slight white markings", + "tail: long, dark brown with white-tipped feathers", + "throat: dark grey with faint white streaks" + ], + "javan myna": [ + "back: dark grey feathers", + "beak: yellow, pointed", + "belly: light grey, feathers", + "breast: light grey, feathers", + "crown: black feathers, slight crest", + "forehead: black feathers, slight crest", + "eyes: bright white, circular, outlined in yellow", + "legs: yellow, slender", + "wings: dark grey feathers, white patches at base", + "nape: black, feathers", + "tail: forked, dark grey feathers", + "throat: light grey, feathers" + ], + "javan owlet": [ + "back: greenish-brown with black stripes", + "beak: short, sharp, and black", + "belly: pale gray with dark speckled markings", + "breast: white with black barring", + "crown: dark brown with a slight crest", + "forehead: dark brown blending with the crown", + "eyes: large, dark brown, and prominent", + "legs: feathered and light gray", + "wings: greenish-brown with black banding", + "nape: dark brown connecting to the crown", + "tail: long, dark greenish-brown with black bars", + "throat: white and unmarked" + ], + "javan pied starling": [ + "back: black and white patterned feathers", + "beak: sharp, yellow, and pointed", + "belly: white plumage with black markings", + "breast: mainly white with black streaks", + "crown: glossy black feathers", + "forehead: sleek black feathers", + "eyes: small, dark, and alert", + "legs: yellowish with sharp claws", + "wings: black and white feathers", + "nape: black feathers merging into white", + "tail: long, black and white feathers", + "throat: white with black streaks" + ], + "javan plover": [ + "back: brownish-grey feathers", + "beak: short, black, and pointed", + "belly: white with brown speckles", + "breast: white, blending into speckled belly", + "crown: brownish-grey with a faint streak pattern", + "forehead: white with a brownish-grey border", + "eyes: small, black with a white eyering", + "legs: long, slender, and pale yellow", + "wings: brownish-grey with white edging on wingtips", + "nape: brownish-grey with a faint streak pattern", + "tail: short, brownish-grey with white edges", + "throat: white, blending into the breast" + ], + "javan pond heron": [ + "back: pale brown with white streaks", + "beak: long, slender, and yellow", + "belly: white and fluffy", + "breast: buff-colored with brown streaks", + "crown: black with a shaggy crest", + "forehead: white and sleek", + "eyes: small and dark", + "legs: long, thin, and yellow", + "wings: pale brown with contrasting white patches", + "nape: black with a shaggy appearance", + "tail: short and buff-colored", + "throat: white and smooth" + ], + "javan scimitar babbler": [ + "back: brownish-grey feathers", + "beak: short, curved, blackish", + "belly: greyish-white with brown tinge", + "breast: greyish-white feathers", + "crown: rusty-brown head", + "forehead: small white eyebrows", + "eyes: dark with a white eye ring", + "legs: strong, pinkish-brown", + "wings: brownish-grey with lighter bands", + "nape: reddish-brown feathers", + "tail: long, curved, brown", + "throat: white with dark streaks" + ], + "javan scops owl": [ + "back: brownish-grey feathers with black streaks", + "beak: short, curved, and dark grey", + "belly: white with distinct brown spots", + "breast: white with fine brown barring", + "crown: greyish-brown with black streaks", + "forehead: white with tan streaks", + "eyes: large and round, dark yellow-orange", + "legs: feathered, light brown with black streaks", + "wings: mottled brown with dark bars", + "nape: brownish-grey with white spots", + "tail: long, barred with light and dark brown shades", + "throat: white with brown streaks" + ], + "javan shortwing": [ + "back: vibrant blue feathers", + "beak: small and pointed", + "belly: light gray plumage", + "breast: pale gray coloring", + "crown: striking blue crest", + "forehead: blue-gray shades", + "eyes: dark, beady orbs", + "legs: slender, blue-gray limbs", + "wings: vivid blue with narrow white bars", + "nape: subtly blended blue-gray hues", + "tail: short and tapered, blue feathers", + "throat: pale grayish-white undertones" + ], + "javan sunbird": [ + "back: vibrant bluish-black plumage", + "beak: slender, curved, and long", + "belly: bright yellow feathers", + "breast: vivid yellow plumage", + "crown: metallic green iridescence", + "forehead: shiny emerald-green", + "eyes: small and dark", + "legs: short and grayish", + "wings: bluish-black with green highlights", + "nape: iridescent green transitioning to blue", + "tail: long and slender, bluish-black", + "throat: glistening green meets yellow breast" + ], + "javan tesia": [ + "back: greenish-brown with fine dark streaks", + "beak: thin, slightly curved, pale gray", + "belly: yellowish, with faint dark streaks", + "breast: yellowish, blending into the belly color", + "crown: brownish-gray with greenish tint", + "forehead: slightly paler shade of brownish-gray", + "eyes: dark with white eyering", + "legs: long, slender, pale gray", + "wings: greenish-brown, short, rounded shape", + "nape: brownish-gray, like crown, with slight greenish tint", + "tail: short, greenish-brown with faint dark bars", + "throat: very pale yellow, almost white" + ], + "javan trogon": [ + "back: vibrant greenish-blue feathers", + "beak: short, stout, and black", + "belly: bright crimson color", + "breast: deep red feathers", + "crown: rich emerald green", + "forehead: brilliant blue-green hue", + "eyes: dark, small, with a thin black ring", + "legs: thin, gray, with strong toes", + "wings: green-blue with black bars", + "nape: deep green feathers", + "tail: elongated, green-blue with black bars", + "throat: bright red plumage" + ], + "javan whistling thrush": [ + "back: dark blue-black feathers", + "beak: short, straight, black", + "belly: slightly lighter blue-black feathers", + "breast: deep blue-black feathers with iridescent sheen", + "crown: smooth, deep blue-black head feathers", + "forehead: gleaming blue-black feathers", + "eyes: small, round, dark eyes", + "legs: robust, black legs", + "wings: wide, blue-black feathery wings", + "nape: transitioning blue-black feathery neck", + "tail: long, blue-black tail feathers", + "throat: smooth, deep blue-black throat feathers" + ], + "javan white eye": [ + "back: olive-green feathered surface", + "beak: small, sharp black bill", + "belly: creamy white underparts", + "breast: pale yellowish-white plumage", + "crown: olive-green with faint blue tint", + "forehead: slightly paler green than crown", + "eyes: large, distinct white eye-ring", + "legs: slender, gray-blue limbs", + "wings: greenish-blue with lighter edge feathers", + "nape: greenish-olive connecting to the back", + "tail: long, blue-green tail feathers", + "throat: soft, creamy white front feathers" + ], + "javan woodcock": [ + "back: earthy brown with dark markings", + "beak: long, slender, and dull brown", + "belly: pale buff with dark speckles", + "breast: russet-brown with dark spots", + "crown: streaked brown and black", + "forehead: paler buff, blending into the crown", + "eyes: dark, round, and alert", + "legs: short, pale pinkish-grey", + "wings: brownish-red with black bars", + "nape: buff-colored with dark stripes", + "tail: rufous with dark banding", + "throat: pale buff with fine dark streaks" + ], + "jelski black tyrant": [ + "back: sleek black feathers", + "beak: small, sharp, and black", + "belly: lighter black, slightly fluffy", + "breast: deep black, plump", + "crown: smooth black feathers", + "forehead: black crest, slightly raised", + "eyes: small, piercing, and dark", + "legs: slender, black and scaly", + "wings: fairly long, black with prominent feathers", + "nape: curved black feathers at the back of the neck", + "tail: short, fan-shaped, black feathers", + "throat: deep black, slightly puffed" + ], + "jelski chat tyrant": [ + "back: olive-green plumage covering the bird's body", + "beak: short and black, perfect for catching insects", + "belly: pale yellowish-white, contrasting with upper body", + "breast: light grayish, seamlessly transitioning to the belly", + "crown: olive-yellow, merging with the back's colors", + "forehead: grayish-white, underlining the eyes", + "eyes: dark and round, framed by a white eye-ring", + "legs: thin and black, with strong, agile feet", + "wings: olive-green with dark bars, allowing for quick flights", + "nape: olive-yellow, blending with the crown and back", + "tail: dark, with visible white outer feathers when spread", + "throat: white, contrasting with the bird's darker head" + ], + "jerdon babbler": [ + "back: olive-brown with light feather streaks", + "beak: short, sharp, and pale in color", + "belly: off-white with dark scalloped patterns", + "breast: creamy-white with olive-brown streaks", + "crown: dark brown with pale feather tips", + "forehead: creamy-white with fine streaks", + "eyes: small, dark, and alert", + "legs: slender and pale brown", + "wings: olive-brown, long, and rounded", + "nape: brown with light streaks", + "tail: long, dark brown, and slightly graduated", + "throat: creamy-white with light brown markings" + ], + "jerdon baza": [ + "back: dark grayish-brown with fine white streaks", + "beak: short, hooked, black tip", + "belly: light gray with dark gray bars", + "breast: pale gray with narrow white streaks", + "crown: dark brown with white streaks", + "forehead: dark grayish-brown", + "eyes: bright yellow-orange with black pupils", + "legs: strong, yellow", + "wings: long, pointed, with white bars on the primaries", + "nape: dark grayish-brown with fine white streaks", + "tail: long, dark brown with white bars", + "throat: pale gray with dark gray bars" + ], + "jerdon bushchat": [ + "back: brownish-grey plumage", + "beak: short, cone-shaped, black", + "belly: white with streaks of brown", + "breast: pale orange-brown", + "crown: dark brown with white streaks", + "forehead: light brown with fine streaks", + "eyes: large and dark, encircled by white", + "legs: long, slender, and pale", + "wings: moderately long, brown with white markings", + "nape: brown with fine white streaks", + "tail: dark brown with white outer feathers", + "throat: creamy-white with brown streaks" + ], + "jerdon bushlark": [ + "back: light brown with streaks", + "beak: slim, slightly curved", + "belly: creamy white or pale yellow", + "breast: buff or light brown with faint streaks", + "crown: streaked brown with a faint crest", + "forehead: subtly lighter brown", + "eyes: dark with a thin white eye-ring", + "legs: yellow-brown or light gray", + "wings: brown with dark-edged feathers", + "nape: brown with streaks", + "tail: brownish-black with white-tipped outer feathers", + "throat: white or pale creamy" + ], + "jerdon courser": [ + "back: brownish-grey with black streaks", + "beak: short and curved, pale pinkish-brown", + "belly: white with some brown streaks", + "breast: white or pale buff, streaked with brown", + "crown: pale brown with blackish streaks", + "forehead: light brown with darker streaks", + "eyes: pale yellow to yellowish-brown", + "legs: grayish-blue, long and slim", + "wings: long, with dark brown streaks and white spotting", + "nape: pale brown with black streaks", + "tail: long, slightly rounded with dark brown, light brown, and white streaks", + "throat: whitish or pale buff with brown streaks" + ], + "jerdon leafbird": [ + "back: vibrant green feathers", + "beak: slender, slightly curved bill", + "belly: light yellow plumage", + "breast: yellow with blue patches (males) / greenish-yellow (females", + "crown: bright blue patch on head (males) / green (females", + "forehead: bright blue streak (males) / green (females", + "eyes: dark and circular, with white eye-ring", + "legs: strong, grey, with zygodactyl feet for grasping branches", + "wings: green with blue outer edge (males) / green (females", + "nape: green with hints of blue (males) / green (females", + "tail: long, green, and forked", + "throat: golden yellow with black streaks (males) / greenish-yellow (females" + ], + "jerdon minivet": [ + "back: olive-green upper body", + "beak: relatively short and pointy", + "belly: pale, lemon-yellow", + "breast: vibrant orange-yellow", + "crown: dark gray with slightly raised crest", + "forehead: close-feathered, grayish-black", + "eyes: small black with white eye-ring", + "legs: sturdy gray", + "wings: black primary feathers with yellowish edges", + "nape: dark gray transitioning from crown", + "tail: long and slender with black and white bands", + "throat: brilliant orange-yellow" + ], + "jerdon nightjar": [ + "back: earthy brown shades with black streaks", + "beak: small, narrow, brownish-black", + "belly: mix of gray and brown, white speckles", + "breast: pale brown, white spotting", + "crown: rich brown with black streaks", + "forehead: light brown, faint black markings", + "eyes: large, dark brown, cat-like", + "legs: short, pale brown", + "wings: elongated, mottled shades of brown", + "nape: brownish-gray, light black streaks", + "tail: long, fan-shaped, varying brown tones", + "throat: creamy white, grayish-brown edges" + ], + "jet antbird": [ + "back: sleek, dark feathers", + "beak: sharp, thin, and elongated", + "belly: pale, spotted plumage", + "breast: white or gray with horizontal stripes", + "crown: black with subtle streaks", + "forehead: smooth, feathered crest", + "eyes: small, round, and dark", + "legs: sturdy and brownish-gray", + "wings: broad, rounded with intricate patterns", + "nape: feathered, transition between crown and back", + "tail: long, slender, and fan-like", + "throat: paler than breast, often with darker markings" + ], + "jet manakin": [ + "back: sleek, iridescent green", + "beak: short, black, and curved", + "belly: soft, off-white plumage", + "breast: emerald green feathers", + "crown: vivid green, rounded crest", + "forehead: bright green continuation of crown", + "eyes: round, black, vividly captivating", + "legs: dark, slender, and strong", + "wings: curved, iridescent green with black edges", + "nape: green feathers fading into soft white", + "tail: long, black, fan-shaped feathers", + "throat: white, blending into breast plumage" + ], + "jobi manucode": [ + "back: deep iridescent green", + "beak: short, black, and curved", + "belly: glossy purple-green", + "breast: vibrant emerald green", + "crown: shimmering metallic blue", + "forehead: gleaming blue-violet", + "eyes: dark, surrounded by feathered line", + "legs: short and black", + "wings: iridescent green-blue with purple sheen", + "nape: vibrant metallic blue", + "tail: flowing black, elongated feathers", + "throat: lustrous greenish-blue" + ], + "johanna sunbird": [ + "back: vibrant green with a metallic sheen", + "beak: long and slender, black in color", + "belly: bright yellow with orange tints", + "breast: rich orange-red hue", + "crown: iridescent green, sun-like sheen", + "forehead: gleaming green with a touch of blue", + "eyes: small and black, surrounded by green feathers", + "legs: thin and black with delicate feet", + "wings: green with blue and yellow edges, patterned", + "nape: metallic green, transitioning to the back", + "tail: elongated and forked, green with blue tips", + "throat: brilliant orange-red, contrasting with belly" + ], + "johannes tody tyrant": [ + "back: greenish-olive in color", + "beak: small and sharp black beak", + "belly: dull olive-yellow shade", + "breast: slightly lighter olive-yelllow with a hint of grey", + "crown: rich olive-brown color", + "forehead: darkest at the top, fading slightly towards the crown", + "eyes: large and round with a dark brown iris", + "legs: black and slender with small claws", + "wings: short and round, with greenish-brown upperwing coverts and flight feathers", + "nape: olive-brown", + "tail: square-shaped, short, and brownish-black", + "throat: light greyish-yellow" + ], + "johnson tody flycatcher": [ + "back: olive-green with slight sheen", + "beak: straight, short, black", + "belly: pale yellow", + "breast: bright yellow", + "crown: blackish with concealed orange crest", + "forehead: blackish, narrow band", + "eyes: dark brown, near white eyering", + "legs: slender, dark gray", + "wings: dark brown, edgings olive-green", + "nape: olive-green, blending with back", + "tail: blackish, outer feathers with white tips", + "throat: bright yellow, contrasting with breast" + ], + "jos plateau indigobird": [ + "back: olive-green with dark streaks", + "beak: short, thick, and black", + "belly: off-white with fine black streaks", + "breast: pale grayish-white with dark streaks", + "crown: deep indigo with a glossy sheen", + "forehead: shining deep blue to purple", + "eyes: dark brown with a white eye-ring", + "legs: dark gray with sharp claws", + "wings: dark olive-green with fine black streaks", + "nape: deep indigo blue with a glossy sheen", + "tail: relatively short, dark olive-green with fine black streaks", + "throat: grayish-white with fine black streaks" + ], + "josephine lorikeet": [ + "back: vibrant green feathers with iridescent sheen", + "beak: curved, orange-red bill", + "belly: bright green feathered underbelly", + "breast: brilliant blue-violet plumage", + "crown: yellowish-green head with orange tint", + "forehead: radiant red-orange grading to green", + "eyes: dark, round, and expressive", + "legs: short, strong gray limbs", + "wings: vivid green and blue flight-feathers", + "nape: transitioning colors from blue-violet to yellowish-green", + "tail: long, green feathers with blue-violet undertones", + "throat: blue and yellow feathers adorning neck" + ], + "jouanin petrel": [ + "back: sleek dark gray plumage", + "beak: long, slender, and black", + "belly: light gray to white underparts", + "breast: white feathers with gray spots", + "crown: dark gray with a slightly rounded shape", + "forehead: smooth gray with a gentle slope", + "eyes: black, medium-sized, with a keen gaze", + "legs: black, moderately long, and webbed feet", + "wings: elongated, sharp, dark gray on top, lighter below", + "nape: dark gray, blending into the crown and back", + "tail: forked, dark gray with white edges", + "throat: white feathers with feature gray speckling" + ], + "joyful greenbul": [ + "back: vibrant green feathers", + "beak: strong, curved, and black", + "belly: pale yellow with subtle streaks", + "breast: light greenish-yellow plumage", + "crown: rich green with a slight yellow streak", + "forehead: bright green and smooth", + "eyes: alert, dark eyes with a white eye-ring", + "legs: slender and dark gray", + "wings: deep green with yellowish edges", + "nape: bold green transitioning to the back", + "tail: long and green with yellow tips", + "throat: soft yellow merging into the breast" + ], + "juan fernandez firecrown": [ + "back: vibrant green-bronze feathers", + "beak: long, slender, and curved for nectar", + "belly: pale gray plumage", + "breast: orange-red feathers with iridescence", + "crown: brilliant golden-red crest", + "forehead: orange-red plumage with metallic sheen", + "eyes: dark, small, and beady", + "legs: gray and thin, with sharp claws", + "wings: short, rounded, and iridescent green-bronze", + "nape: green-bronze and shimmering", + "tail: fan-shaped with a mix of iridescent green-bronze and orange-red feathers", + "throat: gleaming orange-red and iridescent" + ], + "juan fernandez petrel": [ + "back: sleek dark gray feathers", + "beak: long, slender, and black", + "belly: white with soft gray mottling", + "breast: light gray and white blend", + "crown: dark gray, smooth contour", + "forehead: smooth dark gray feathers", + "eyes: small and black, piercing gaze", + "legs: strong and black with webbed feet", + "wings: long, pointed, dark gray with narrow white streaks", + "nape: dark gray, continuous with crown", + "tail: v-shaped, black-edged white feathers", + "throat: white with faint gray shading" + ], + "juan fernandez tit tyrant": [ + "back: olive-brown with slight streaking", + "beak: thin, straight, blackish", + "belly: pale yellowish with greyish flanks", + "breast: soft yellowish-grey", + "crown: silvery-grey with black lines", + "forehead: subtly streaked silver-grey", + "eyes: dark with pale grey eye-ring", + "legs: blackish, slender, and long", + "wings: dark brown with light brown edges", + "nape: olive-brown streaked with grey", + "tail: dark brown with light outer edges", + "throat: pale greyish-white" + ], + "jungle babbler": [ + "back: olive-brown feathers", + "beak: short and strong", + "belly: pale grayish-white", + "breast: creamy-brown plumage", + "crown: golden-olive feathers", + "forehead: smooth golden-olive", + "eyes: dark and round", + "legs: slender and brown-gray", + "wings: olive-brown with light feather edges", + "nape: golden-olive", + "tail: long and tapered, olive-brown", + "throat: whitish-gray" + ], + "jungle bush quail": [ + "back: intricate brown-black pattern", + "beak: short, stout, grayish-brown", + "belly: whitish with black streaks", + "breast: rusty orange and black stripes", + "crown: reddish-brown with a central black stripe", + "forehead: short black crest", + "eyes: small, black, alert", + "legs: strong, pale gray, scaled", + "wings: rounded, brown with black bars", + "nape: reddish-brown, striped", + "tail: short, brown, square-ended", + "throat: white, with thin black stripe" + ], + "jungle myna": [ + "back: olive-brown feathers", + "beak: yellow with bluish base", + "belly: creamy white underside", + "breast: white with slight grey streaks", + "crown: black crest with tufted feathers", + "forehead: black with faint marking", + "eyes: bright yellow with black outline", + "legs: pale yellow with strong claws", + "wings: dark grey-brown with light edging", + "nape: sleek black feathers", + "tail: long, black fan-like tail feathers", + "throat: white with black streaks" + ], + "jungle nightjar": [ + "back: brownish-grey with black streaks", + "beak: short and wide, pale grey", + "belly: white with faint brown bars", + "breast: brownish-grey with black bars", + "crown: dark grey with streaks", + "forehead: white eyebrows, black streaks", + "eyes: large and black, surrounded by white", + "legs: short and feathered, brownish-grey", + "wings: long and pointed, with brown bars", + "nape: dark grey with white spots", + "tail: brownish-grey, barred feathers with white tips", + "throat: white, streaked with brown" + ], + "jungle owlet": [ + "back: brownish-grey feathers with a slight sheen", + "beak: sharp, hooked, grey colored", + "belly: lighter brown, vertically streaked with cream-white", + "breast: mottled brown with grey and white bands", + "crown: dark brown with elongated white spots", + "forehead: lighter brown, fine white speckles", + "eyes: large, dark brown-black with noticeable yellow border", + "legs: strong, feathered, greyish-yellow with sharp talons", + "wings: rounded, brownish-grey with faint white bands", + "nape: dark brown, white-tipped feathers", + "tail: short, fan-shaped, brown with multiple horizontal white bands", + "throat: light brown, white vertical stripes" + ], + "jungle prinia": [ + "back: olive-brown with subtle streaks", + "beak: short, pointed, and black", + "belly: pale creamy-yellow with light streaks", + "breast: yellowish-white and lightly streaked", + "crown: rufous-brown with a hint of crest", + "forehead: pale yellow with fine streaks", + "eyes: dark brown with thin eye-ring", + "legs: pinkish-gray, slender and strong", + "wings: olive-brown with faint bars", + "nape: rufous-brown with light streaks", + "tail: long, narrow, and white-edged", + "throat: white with gray streaking" + ], + "junin antpitta": [ + "back: olive-brown feathers with a hint of golden tones", + "beak: black and moderately long, slightly curved at the tip", + "belly: pale buffy white with light brown undertones", + "breast: soft golden brown, transitioning to lighter hue towards belly", + "crown: rich chestnut-brown, gradually fading into the back", + "forehead: slightly lighter brown than the crown", + "eyes: dark and round, surrounded by a ring of light-colored feathers", + "legs: slender and pinkish-gray, with sharp claws for perching", + "wings: olive-brown with blackish edges and thin white bars", + "nape: chestnut-brown, blending into the olive-brown back", + "tail: short, dark brown with faint white bars", + "throat: creamy white, bordered by a band of golden brown feathers" + ], + "junin canastero": [ + "back: streaked brown and buff patterns", + "beak: thin, elongated, and slightly curved", + "belly: pale buff color with fine streaks", + "breast: buff-colored with subtle stripes", + "crown: rufous-brown with a slight crest", + "forehead: lighter brown with fine streaks", + "eyes: small, dark, surrounded by pale eyerings", + "legs: slender and long, pale pinkish-brown", + "wings: brown with buff-edged feathers and bars", + "nape: streaked brown and buff", + "tail: long and brown with pale feather tips", + "throat: whitish with fine brown streaks" + ], + "junin grebe": [ + "back: dark brownish-grey with lighter feather edging", + "beak: sharp, pointed, and black", + "belly: white with a slight grayish tint", + "breast: light grayish-white", + "crown: dark brownish-grey", + "forehead: slightly lighter brownish-grey", + "eyes: small, round, and black", + "legs: short, strong, dark-colored with webbed toes", + "wings: dark brownish-grey and compact", + "nape: dark brownish-grey with lighter feather edging", + "tail: short and sturdy with dark brownish-grey feathers", + "throat: white with a slight grayish tint" + ], + "junin tapaculo": [ + "back: dark grayish-brown feathers", + "beak: short, stout, and black", + "belly: grayish-black with slight barring", + "breast: grayish-brown with faint barring", + "crown: dark grayish-brown feathers", + "forehead: slightly lighter grayish-brown", + "eyes: small, black, and expressive", + "legs: sturdy, featherless, and tan", + "wings: short, rounded, and grayish-brown", + "nape: dark grayish-brown with faint barring", + "tail: short, rounded, and grayish-brown", + "throat: slightly lighter gray with subtle barring" + ], + "juniper titmouse": [ + "back: slate-gray with subtle, brownish streaks", + "beak: short, thick, blackish color", + "belly: pale gray, elongated proportions", + "breast: light gray, faintly streaked", + "crown: dark gray, crest feathers", + "forehead: pale gray, blending into the crown", + "eyes: black, prominent against light gray face", + "legs: bluish-gray with strong, gripping toes", + "wings: slate gray, oval-shaped with dark flight feathers", + "nape: gray with slight lighter coloring", + "tail: long, dark gray, fan-shaped with distinct white corners", + "throat: pale gray, well-defined against breast" + ], + "kadavu fantail": [ + "back: olive-grey feathers with slight sheen", + "beak: small, black, and curved for catching insects", + "belly: light cream to white with a hint of yellow", + "breast: pale greyish-white merging with belly", + "crown: olive-brown with a slight sheen", + "forehead: similar to the crown, olive-brown with sheen", + "eyes: black orbs, gazing alertly", + "legs: delicate, black, and slender", + "wings: olive-brown with rich rufous tinge", + "nape: olive-brown, connecting crown to back", + "tail: long, fan-like, tipped with white and black bands", + "throat: greyish-white blending into the breast" + ], + "kadavu honeyeater": [ + "back: olive-brown feathers with subtle streaks", + "beak: long, curved black beak for nectar feeding", + "belly: pale yellowish color with fine brown streaks", + "breast: bright yellow feathers with faint brown markings", + "crown: dark brownish-black feathers, rounded shape", + "forehead: black feathers blending into the crown", + "eyes: small, black-beady, surrounded by yellowish skin", + "legs: slender, gray legs with sharp claws", + "wings: olive-brown with darker brown flight feathers", + "nape: olive-brown plumage with slight streaks", + "tail: long, blackish-brown feathers with white tips", + "throat: vibrant yellow with a few distinct streaks" + ], + "kaempfer tody tyrant": [ + "back: vibrant green feathers", + "beak: small, hooked, black tip", + "belly: whitish-yellow, fluffy", + "breast: pale yellow plumage", + "crown: top of the head with greenish-blue hue", + "forehead: bright yellow-green patch above eyes", + "eyes: tiny, dark, and inquisitive", + "legs: slim, sturdy, greyish-brown", + "wings: green with faint black barring", + "nape: green and yellow transition seamlessly", + "tail: elongated, greenish-blue feathers with a slight fork", + "throat: light yellow, unmarked" + ], + "kaempfer woodpecker": [ + "back: olive-green with subtle black streaks", + "beak: straight, chisel-shaped, black", + "belly: buff-colored with black bars", + "breast: white with light brown streaks", + "crown: crimson red with black edges", + "forehead: red with black markings", + "eyes: dark, beady with grayish-white eye-ring", + "legs: short, grayish-green with sharp claws", + "wings: brownish-black with white bars and spots", + "nape: black with white spots", + "tail: black with white barring, rigid central feathers", + "throat: mainly white with brown streaks" + ], + "kai cicadabird": [ + "back: vibrant blue feathered back", + "beak: sharp, black, elongated beak", + "belly: soft grayish-white underbelly", + "breast: deep blue plumage", + "crown: shimmering azure head feathers", + "forehead: smooth blue-tinted feathers", + "eyes: piercing, round, dark eyes", + "legs: long, thin, black legs", + "wings: broad, rounded, blue and black wings", + "nape: slate blue feathers at base of neck", + "tail: fan-like tail with contrasting blue and black feathers", + "throat: pale white feathers with grayish-blue tinge" + ], + "kalahari scrub robin": [ + "back: earthy brown with subtle streaks", + "beak: short, black, stout", + "belly: light, creamy-white", + "breast: soft beige with light speckles", + "crown: warm chestnut-brown", + "forehead: white, contrasting band", + "eyes: dark, beady, and alert", + "legs: lanky, light brown", + "wings: mottled brown and tan feathers", + "nape: light speckles on a warm hazelnut base", + "tail: brown with lighter tips, often fanned out", + "throat: pale, creamy-white" + ], + "kalao blue flycatcher": [ + "back: vibrant blue feathers covering the upper body", + "beak: thin, pointed, black beak for catching insects", + "belly: finely streaked, lighter shade of blue plumage", + "breast: bright blue feathers meeting the belly region", + "crown: vivid blue plumage, slightly darker than the back", + "forehead: continuation of crown's blue color towards the beak", + "eyes: beady and black, set within blue feathers", + "legs: slender, grey-black legs for perching on branches", + "wings: vivid blue feathers with darker tips for agile flight", + "nape: blue plumage connecting the crown to the back region", + "tail: elongated, stunning blue feathers with darker tips", + "throat: lighter blue feathers blending into the breast area" + ], + "kalij pheasant": [ + "back: dark blue-grey feathers with white streaks", + "beak: black, medium-sized, and slightly curved", + "belly: light, silvery-grey feathers", + "breast: feathery white with a hint of blue", + "crown: glossy blue-black feathers", + "forehead: deep blue to purplish-black feathers", + "eyes: bright, small, and black", + "legs: long, sturdy, greyish and feathered", + "wings: metallic blue-black with white tipping", + "nape: bluish-black transitioning to white streaks", + "tail: long, arched, blue-black feathers with white edging", + "throat: blackish-blue feathers with white-collar" + ], + "kalkadoon grasswren": [ + "back: rich brown plumage with dark streaks", + "beak: short, slender, and curved black bill", + "belly: creamy-white with pale brown streaks", + "breast: buff-colored with brownish highlights", + "crown: dark brownish-gray with subtle striations", + "forehead: lighter gray blending into crown color", + "eyes: large, round, and black with white eyering", + "legs: sturdy and grayish-brown, well-adapted for hopping", + "wings: brownish-gray with distinct black-and-white barring", + "nape: dark brown blending seamlessly with crown", + "tail: long and broad, displaying dark barring and white tips", + "throat: pale gray, contrasting with richer colors of breast and belly" + ], + "kamchatka leaf warbler": [ + "back: olive-green with well-defined pale stripe", + "beak: pointed, slender, and dark-colored", + "belly: whitish with pale yellow undertones", + "breast: pale yellow with faint streaks", + "crown: olive-green with a slightly raised crest", + "forehead: yellowish-green blending with the crown", + "eyes: bold white-eye ring with dark iris", + "legs: pale pinkish-brown and sturdy", + "wings: olive-green with two distinct wing bars", + "nape: olive-green merging with the back", + "tail: dark brownish-green with white outer feathers", + "throat: pale yellow, unmarked and blending into breast" + ], + "kandt waxbill": [ + "back: vibrant brown with fine white streaks", + "beak: short and thick, silver-gray color", + "belly: light grayish-white with subtle brown speckles", + "breast: pale reddish-brown fading into lighter white", + "crown: dark brown with fine white streaks", + "forehead: dark brown with subtle white accents", + "eyes: small and black with thin white eye-ring", + "legs: slender and pale pinkish-gray", + "wings: brown with faint white edging on feathers", + "nape: brown with fine white streaks, transitioning into the back", + "tail: dark brown with white feather tips", + "throat: soft whitish-gray with pale reddish-brown flecks" + ], + "karamoja apalis": [ + "back: olive-grey plumage", + "beak: slim, pointed, and black", + "belly: whitish-grey hue", + "breast: grayish-white plumage", + "crown: dull grey, slightly darker", + "forehead: similar to the crown, slightly duller", + "eyes: dark brown with subtle white eye-ring", + "legs: pale pink, medium length", + "wings: olive-grey with hints of white", + "nape: greyish-olive hue", + "tail: olive-grey with white outer feathers", + "throat: whitish-grey hue" + ], + "karoo bustard": [ + "back: broad and rounded, covered in brown and white feathers", + "beak: strong and sharp, slightly curved downward, greyish in color", + "belly: white-feathered with black markings,-plump", + "breast: grey-brown with white spots and dark streaks", + "crown: dark grey-brown feathers with a white central stripe", + "forehead: white, with brown streaks extending from the base of the beak", + "eyes: large and alert, with a yellow-orange ring around the pupil", + "legs: thick and robust, light-brown with partially-feathered tarsi", + "wings: brown and white with a distinct pattern of white spots, long and wide", + "nape: white feathers tinged with brown", + "tail: medium length, white with dark brown barring and a wide dark brown terminal band", + "throat: white and well-defined, contrasting with the grey-brown neck" + ], + "karoo chat": [ + "back: brownish-grey feathered back", + "beak: small, thin, black beak", + "belly: white and fluffed underbelly", + "breast: ashy grey front feathers", + "crown: brown to greyish head feathers", + "forehead: pale grey to white stripe", + "eyes: small, dark, round eyes", + "legs: slender, dark-grey legs", + "wings: grey-brown wings with slight barring", + "nape: greyish-brown nape feathers", + "tail: dark grey-brown, with outer white tail feathers", + "throat: pale grey to white throat area" + ], + "karoo lark": [ + "back: earthy brown with delicate streaks", + "beak: short and stout, light-colored", + "belly: pale grey with brown tint", + "breast: buffy-grey, subtle streaks", + "crown: rufous with dark brown streaks", + "forehead: buffy-orange, defined streaks", + "eyes: dark brown, piercing gaze", + "legs: slender and greyish", + "wings: brown with grey tinge, white-edged tips", + "nape: rufous with dark streaks", + "tail: pale brown, forked with white edging", + "throat: pale buff with soft streaks" + ], + "karoo long billed lark": [ + "back: light brown with subtle streaks", + "beak: elongated, slender, and curved", + "belly: pale buff with some fine markings", + "breast: mottled earthy tones", + "crown: light brown with fine streaks", + "forehead: slightly paler than the crown", + "eyes: dark, small, and alert", + "legs: slender and long, pale pinkish-brown", + "wings: brown with pale edges on feathers", + "nape: light brown with fine streaks", + "tail: brown and long, slightly forked", + "throat: whitish with light mottling" + ], + "karoo prinia": [ + "back: light brown, streaked texture", + "beak: thin, pointed, dark grey", + "belly: light, creamy white", + "breast: pale greyish-brown", + "crown: warm brown, lightly streaked", + "forehead: faint buffy-white stripe", + "eyes: dark, small, round, surrounded by pale eyering", + "legs: grey, slender, with long toes", + "wings: brown, fine blackish barring", + "nape: streaked light brown, blending with crown", + "tail: long, graduated, dark-brown/black central feathers", + "throat: whitish, contrast with warm breast color" + ], + "karoo scrub robin": [ + "back: olive-brown with faint streaks", + "beak: sharp, curved, dark colored", + "belly: pale grayish-white with brownish tinges", + "breast: light gray with subtle brown markings", + "crown: dark brown with thick pale streak", + "forehead: pale grayish-brown blending into crown", + "eyes: dark brown with faint eye ring", + "legs: long, slender, pinkish-brown", + "wings: olive-brown with faint white spots", + "nape: olive-brown with subtle streaks", + "tail: long, dark brown with white outer tail feathers", + "throat: white with indistinct gray streaks" + ], + "karoo thrush": [ + "back: brownish-grey with subtle markings", + "beak: strong, slightly curved, and yellowish-orange", + "belly: light cream color with darker spots", + "breast: pale greyish-brown with distinct black spots", + "crown: uniform brownish-grey", + "forehead: smooth grey-brown transition from crown to eyes", + "eyes: dark and alert, surrounded by light-colored feathers", + "legs: strong and sturdy, with a pale brown tone", + "wings: greyish-brown with faint, darker barring", + "nape: slightly darker than the crown, blending into the back", + "tail: moderately long and brownish-grey with faint black stripes on feathers", + "throat: pale creamy-white with a hint of grey and dark spots" + ], + "kashmir flycatcher": [ + "back: slate-grey upperparts", + "beak: short, sturdy, and dark", + "belly: pale grey underparts", + "breast: orange-rust color", + "crown: grey head", + "forehead: slate-grey with white eyebrows", + "eyes: dark with white eye-ring", + "legs: dark and slender", + "wings: grey with white wingbars", + "nape: slate-grey", + "tail: grey with white outer feathers", + "throat: white and unmarked" + ], + "kashmir nutcracker": [ + "back: dark brown with white streaks", + "beak: strong, sharp, and black", + "belly: pale grayish-brown with white spots", + "breast: white-streaked dark brown", + "crown: dark brown with white streaks", + "forehead: white-streaked dark brown", + "eyes: black with a white eyebrow-like streak", + "legs: long, robust, and gray", + "wings: dark brown with white-tipped feathers", + "nape: dark brown with white streaks", + "tail: long, dark brown with white-tipped feathers", + "throat: pale grayish-brown" + ], + "kashmir nuthatch": [ + "back: blue-gray feathers with a lightly streaked pattern", + "beak: short, strong, and slightly curved for gripping insects", + "belly: soft white with faint grayish-blue hues", + "breast: creamy-white with a hint of pale orange", + "crown: blue-gray with a slightly darker shade than the back", + "forehead: lighter blue-gray contrasting the crown", + "eyes: black, beady, and surrounded by a white eye-ring", + "legs: sturdy, short, and pale pinkish-brown", + "wings: blue-gray with black bars and white tips on flight feathers", + "nape: blue-gray, smoothly blending with the crown and back", + "tail: blue-gray, slightly forked, and white outer tail feathers", + "throat: vibrant white, contrasting with the breast color" + ], + "katanga masked weaver": [ + "back: vibrant yellow feathers", + "beak: short, pointed, black", + "belly: bright yellow, slightly fluffy", + "breast: brilliant yellow with a hint of orange", + "crown: golden yellow crest", + "forehead: yellow with small black mask", + "eyes: rounded, dark, and alert", + "legs: slender, grayish-brown", + "wings: black and white streaks with yellow edges", + "nape: yellow with fine black streaks", + "tail: boldly-striped black and yellow feathers", + "throat: pale yellow with a faint black line" + ], + "kauai amakihi": [ + "back: greenish-yellow feathers", + "beak: sharp, curved, black", + "belly: light yellowish-green", + "breast: pale yellow", + "crown: olive-green with grey streaks", + "forehead: yellow and grey mix", + "eyes: dark with faint grey eye-ring", + "legs: greyish-black, thin", + "wings: greenish with faint black bars", + "nape: greenish-yellow with grey streaks", + "tail: greenish, slightly forked", + "throat: light yellow" + ], + "kauai elepaio": [ + "back: olive-brown, slightly lighter than wings", + "beak: short and stout, black-brown in color", + "belly: off-white with light brown streaks", + "breast: off-white with light brown streaks, blending into belly", + "crown: rusty-brown color, differing in shade from the forehead", + "forehead: yellowish-brown with a subtle shading into the crown", + "eyes: dark brown with a prominent white eye ring", + "legs: grey-brown, slim and sturdy", + "wings: olive-brown with faint white bars", + "nape: olive-brown, continuous with the back coloration", + "tail: olive-brown with white tips on outer feathers", + "throat: off-white with light brown streaks, slightly paler than the breast" + ], + "kawall parrot": [ + "back: vibrant green feathers covering the dorsal side", + "beak: strong, hooked, cream-colored beak", + "belly: light green feathers on the lower abdomen", + "breast: slightly darker green feathers, blending with belly colors", + "crown: striking blue feathers at the top of the head", + "forehead: continuation of the blue crown, transitioning to green", + "eyes: dark, beady eyes with a white eye-ring", + "legs: sturdy gray legs with sharp claws", + "wings: green primary feathers with blue-tinted edges, used for powerful flight", + "nape: green feathers covering the neck area, transitioning to blue", + "tail: long green feathers with blue tips, used for balance and steering", + "throat: lighter green feathers around the neck, transitioning to belly color" + ], + "kea": [ + "back: dark olive-green feathers", + "beak: large, curved, hooked and dark greyish-brown", + "belly: reddish-orange with dark feather tips", + "breast: greyish-brown with dark feather tips", + "crown: dark olive-green with a slightly rounded shape", + "forehead: dark olive-green feathers and slightly protruding above eyes", + "eyes: dark-brown with a curious, intelligent appearance", + "legs: sturdy, greyish-brown and feathered", + "wings: dark olive-green with bright, reddish-orange underwing coverts", + "nape: dark olive-green with a slight gradient from the head", + "tail: long, dark green and slightly tapered", + "throat: greyish-brown with some dark feather tips" + ], + "keel billed motmot": [ + "back: vibrant green feathers", + "beak: long, straight, and black", + "belly: pale yellow plumage", + "breast: turquoise blue feathers", + "crown: deep blue with a dark cap", + "forehead: radiant blue feathers", + "eyes: large and black, surrounded by a pale eyering", + "legs: slender black", + "wings: bright green with blue and black patterns", + "nape: rich green feathers", + "tail: long and racket-shaped, blue with black edges", + "throat: white separated from belly by black band" + ], + "keel billed toucan": [ + "back: vibrant green feathers", + "beak: large, curved, multicolored", + "belly: yellow-orange plumage", + "breast: bright yellow feathers", + "crown: striking black and blue", + "forehead: bold blue markings", + "eyes: dark with prominent blue eye ring", + "legs: strong, grayish-blue", + "wings: mix of green and blue feathers", + "nape: black and blue plumage", + "tail: long, dark feathers with white tips", + "throat: white or light blue, surrounded by black plumage" + ], + "kelp goose": [ + "back: sleek and dark feathering", + "beak: orange with black tip", + "belly: white with soft down", + "breast: white feathers merging with belly", + "crown: dark smooth feathers across head", + "forehead: dark feathers transitioning to lighter shade toward beak", + "eyes: small and dark, slightly hidden behind feathers", + "legs: orange and webbed for swimming", + "wings: dark feathers with white undersides", + "nape: smooth, dark feathers extending from head to back", + "tail: short and dark, slightly pointed", + "throat: white, blending with breast and belly" + ], + "kelp gull": [ + "back: greyish-white, smooth feathers", + "beak: strong, yellow with a red spot", + "belly: white, soft plumage", + "breast: white and fluffy", + "crown: dark grey, blending with the back", + "forehead: white to grey transition", + "eyes: piercing, white orbital ring", + "legs: yellowish-green and webbed", + "wings: grey, slightly darker on tips", + "nape: greyish-white, continuous with the back", + "tail: white with dark band on the edge", + "throat: white, blending into the breast" + ], + "kemp longbill": [ + "back: sleek, grayish-brown plumage", + "beak: elongated, curved, and slender", + "belly: pale, cream-colored feathers", + "breast: soft, pale cream plumage", + "crown: grayish-brown with faint streaks", + "forehead: smooth, pale gray feathers", + "eyes: dark, round, and alert", + "legs: sturdy, grayish-brown limbs", + "wings: long, grayish-brown feathers", + "nape: faintly streaked, grayish-brown", + "tail: elongated, straight with brown and white tips", + "throat: pale cream, subtle feathering" + ], + "kenrick starling": [ + "back: iridescent green feathers", + "beak: thin, pointed, and yellow", + "belly: white and fluffy", + "breast: bright reddish-orange", + "crown: metallic purple sheen", + "forehead: small white markings", + "eyes: clear and dark brown", + "legs: long, thin, and gray", + "wings: shining green with black markings", + "nape: metallic green hue", + "tail: long, forked, and iridescent green", + "throat: creamy white with a brownish tint" + ], + "kentish plover": [ + "back: pale brownish-grey with subtle black streaks", + "beak: short, black, and slightly curved", + "belly: white with minimal markings", + "breast: light greyish-brown, blending with the belly", + "crown: sandy-brown with a faint black stripe", + "forehead: light sandy-brown, blending with the crown", + "eyes: black with a white eyering", + "legs: dull yellowish-orange", + "wings: sandy-brown with black and white markings", + "nape: greyish-brown matching the crown", + "tail: white with black outer feathers and a brownish center", + "throat: white, blending with the belly" + ], + "kenya rufous sparrow": [ + "back: rich chestnut-brown color with some streaks", + "beak: short, conical, and pale grey", + "belly: creamy-white with some brown patches", + "breast: warm rufous-brown shade", + "crown: chestnut-colored with a pale streak", + "forehead: reddish-brown with a cream streak", + "eyes: dark, beady, surrounded by pale eyering", + "legs: sturdy and pale pinkish-gray", + "wings: brown with faint rufous edging", + "nape: chestnut-brown with slight streaks", + "tail: brownish with rufous outer feathers", + "throat: cream-colored with thin brown streaks" + ], + "kerguelen petrel": [ + "back: dark grey plumage", + "beak: black, slightly hooked", + "belly: light grey feathers", + "breast: pale grey plumage", + "crown: dark grey with a subtle pattern", + "forehead: grey, merging to the crown", + "eyes: black, ringed with lighter grey", + "legs: black, short legs", + "wings: long, dark grey with a white underside", + "nape: dark grey feathers", + "tail: black, moderately forked", + "throat: light grey with a darker tone near the beak" + ], + "kerguelen shag": [ + "back: dark bluish-grey feathers", + "beak: long, hooked, and yellow-orange", + "belly: white with darker streaks near legs", + "breast: white feathers mixed with bluish-grey", + "crown: dark bluish-grey feathers with a slight crest", + "forehead: slightly paler bluish-grey feathers", + "eyes: bright blue eye-ring with a yellow-orange iris", + "legs: pinkish-red and webbed", + "wings: dark bluish-grey with white edges on flight feathers", + "nape: lighter grey feathers transitioning to darker back", + "tail: dark bluish-grey, short, and slightly wedge-shaped", + "throat: white with some bluish-grey streaks" + ], + "kerguelen tern": [ + "back: sleek, grayish-white feathers", + "beak: sharp, black, and thin", + "belly: soft, white plumage", + "breast: white feathers with subtle gray markings", + "crown: black, streamlined feathers from forehead to nape", + "forehead: smooth black feathers continuing from the crown", + "eyes: bright, intelligent gaze with black or dark brown iris", + "legs: long, thin, and black with webbed feet", + "wings: long, elegant, with gray and white feathers", + "nape: transition from black crown to grayish-white back", + "tail: short, forked, with gray-white feathers", + "throat: white feathers, slightly grayer near breast" + ], + "kermadec petrel": [ + "back: dark grey with a slightly brownish tinge", + "beak: black, medium-sized, and slightly hooked", + "belly: off-white or light grey with some dark spots", + "breast: dark grey mixed with brownish tones", + "crown: dark grey, blending with the forehead", + "forehead: dark grey, seamlessly extending from the crown", + "eyes: black and small with a thin white eye-ring", + "legs: pinkish-grey with dark scaly patches", + "wings: long and dark grey with some white markings", + "nape: dark grey, merging with the crown and back", + "tail: dark grey with a slight brownish hue and a white tip", + "throat: off-white or pale grey, transitioning to the dark breast feathers" + ], + "key west quail dove": [ + "back: brownish-gray with sparse, darker markings", + "beak: short and stout, grayish-black", + "belly: grayish-brown with a slight pinkish tone", + "breast: pale pinkish-brown, fading to gray", + "crown: reddish-brown with a slight crest", + "forehead: reddish-brown, blending into the crown", + "eyes: dark brown with a thin, white eye ring", + "legs: short and strong, reddish-pink", + "wings: brownish-gray with distinct black and white markings", + "nape: reddish-brown, blending into the back", + "tail: brownish-gray with white outer tail feathers", + "throat: pale gray, fading into the breast" + ], + "kikuyu white eye": [ + "back: olive-green feathers", + "beak: short, black, and pointed", + "belly: pale gray-white underparts", + "breast: soft greenish-gray feathers", + "crown: bright yellow stripe", + "forehead: greenish-yellow feathers", + "eyes: large, white eye-ring", + "legs: slender, dark gray", + "wings: olive-green with black-tipped feathers", + "nape: yellowish-green feathers", + "tail: olive-green with black-tipped feathers", + "throat: greenish-gray with faint yellow stripe" + ], + "kilimanjaro white eye": [ + "back: olive-green upper body", + "beak: short, black, and pointed", + "belly: pale white underparts", + "breast: white with light gray streaks", + "crown: grayish-green cap", + "forehead: dark gray feathering", + "eyes: large and white-rimmed", + "legs: light gray with black claws", + "wings: olive-green with dark gray flight feathers", + "nape: grayish-green with light streaks", + "tail: short and olive-green with black edges", + "throat: white with light gray streaks" + ], + "kilombero cisticola": [ + "back: golden-brown with faint streaks", + "beak: short, sharp, and pointed", + "belly: cream-colored with yellowish tint", + "breast: pale brown with a slight yellow tinge", + "crown: golden-brown with dark streaks", + "forehead: pale brown with golden tint", + "eyes: small, round, and dark", + "legs: long, slender, and light-colored", + "wings: golden-brown with dark lines and white edges", + "nape: plain golden-brown", + "tail: short, rounded, and golden-brown", + "throat: light yellowish-brown" + ], + "kilombero weaver": [ + "back: vibrant yellow-green plumage", + "beak: thick, cone-shaped, dark-grey", + "belly: bright yellow feathers", + "breast: deep yellow, slightly elongated feathers", + "crown: golden yellow with fine black streaks", + "forehead: rich golden-yellow feathers", + "eyes: small, reddish-brown, encircled with a white eyering", + "legs: strong, greyish blue, with sharp claws", + "wings: yellow-green edged, dark-brown", + "nape: golden-yellow, streaked with black", + "tail: dark brown with yellow edges, slightly forked, neat", + "throat: vivid yellow, bordered by thin black lines" + ], + "kimberley honeyeater": [ + "back: olive-green with lighter streaks", + "beak: long and curved, blackish-grey", + "belly: pale yellow with thin streaks", + "breast: vibrant yellow with black streaks", + "crown: blueish-black with fine streaking", + "forehead: blueish-black, blending into crown", + "eyes: dark brown with thin white eye-ring", + "legs: slender, dark grey", + "wings: olive-green with dark flight feathers", + "nape: olive-green with slight streaking", + "tail: olive-green, slightly darker with white tips", + "throat: lemon-yellow with black streaks" + ], + "king bird of paradise": [ + "back: vibrant red and yellow feathers", + "beak: elongated, slender, and slightly curved", + "belly: soft and fluffy white feathers", + "breast: vivid red plumage with iridescent sheen", + "crown: brilliant green with slightly raised crest", + "forehead: emerald green feathers bordering the beak", + "eyes: dark, beady, and expressive", + "legs: slender and strong, with sharp claws", + "wings: bright red with contrasting black feathers", + "nape: radiant green transition from crown to back", + "tail: two elongated, wire-like feathers with ornamental disk plumes", + "throat: deep red feathers leading to the belly" + ], + "king penguin": [ + "back: sleek, dark grey feathers", + "beak: long, slender, orange and black", + "belly: white, smooth feathers", + "breast: robust, white feathers", + "crown: black, rounded feathers", + "forehead: black, smooth feathers", + "eyes: small, dark, and expressive", + "legs: short, thick, and webbed", + "wings: short, strong flippers", + "nape: smooth, black feathers", + "tail: short, stiff, and wedge-shaped", + "throat: bright orange-yellow coloring" + ], + "king of saxony bird of paradise": [ + "back: vibrant iridescent blue-green", + "beak: short and hooked, black", + "belly: creamy white feathers", + "breast: blue-green plumage with white accents", + "crown: golden-yellow crest", + "forehead: radiant blue feathers", + "eyes: dark with white eye-ring", + "legs: strong, greyish-blue", + "wings: striking blue-green with black tips", + "nape: iridescent blue-green with hints of purple", + "tail: long, curved wire-like feathers with blue-green discs", + "throat: velvety black with metallic blue sheen" + ], + "kinglet manakin": [ + "back: bright green feathers", + "beak: small and black", + "belly: yellowish-white underparts", + "breast: golden-yellow patch", + "crown: fiery red-orange crest", + "forehead: greenish-yellow plumage", + "eyes: black and beady", + "legs: slim and gray", + "wings: green with yellow edges", + "nape: greenish-yellow feathered", + "tail: short and rounded, green", + "throat: white or pale yellow" + ], + "kiritimati reed warbler": [ + "back: uniform olive-brown", + "beak: long and slender, black in color", + "belly: whitish-yellow undertones", + "breast: light olive-brown with faint streaking", + "crown: olive-brown, with streaks of yellow", + "forehead: slightly lighter olive-brown", + "eyes: dark brown, surrounded by faint eye-ring", + "legs: long and pale, with strong feet", + "wings: olive-brown with faint streaks", + "nape: olive-brown with yellow streaks", + "tail: long and olive-brown", + "throat: light and unstreaked olive-tan" + ], + "kirk white eye": [ + "back: sleek and smooth feathers", + "beak: short, sharp, and pointed", + "belly: rounded with white plumage", + "breast: white-feathered and prominent", + "crown: eye-catching, pale-colored crest", + "forehead: smooth and slightly elevated", + "eyes: striking, large, white-ringed", + "legs: slender and scaly, with sharp talons", + "wings: long, wide, and patterned plumage", + "nape: gracefully curved, connecting head to body", + "tail: lengthy and fan-shaped, with barred feathers", + "throat: unblemished white, transitioning to breast" + ], + "kirtland warbler": [ + "back: bluish-gray feathers", + "beak: short, black, and conical", + "belly: bright yellow hue", + "breast: yellow with black streaks", + "crown: bluish-gray cap", + "forehead: striking yellow coloration", + "eyes: black with white eye-ring", + "legs: pinkish-black, strong", + "wings: grayish-blue with white bars", + "nape: bluish-gray, matches crown", + "tail: moderately long, deep blue color", + "throat: bright yellow, unmarked" + ], + "kittlitz murrelet": [ + "back: dark grey plumage", + "beak: short and pointed", + "belly: white underside", + "breast: greyish-white feathers", + "crown: dark grey head", + "forehead: slightly lighter grey", + "eyes: small, black, and round", + "legs: short and webbed", + "wings: small, dark grey, and pointed", + "nape: darker grey feathers", + "tail: short and fan-like", + "throat: lighter grey feathers" + ], + "kittlitz plover": [ + "back: brownish-grey with fine black streaks", + "beak: short, pale pinkish-orange with dark tip", + "belly: white, blending with breast color", + "breast: creamy white with pale brownish-grey band", + "crown: brownish-grey with mottled black streaks", + "forehead: white with patches of black streaks", + "eyes: dark with conspicuous white eye-ring", + "legs: pale pinkish-orange, slender and medium-length", + "wings: brownish-grey with black and white bars on upperwing coverts", + "nape: brownish-grey with fine black streaks", + "tail: white outer feathers, central feathers greyish-brown with dark barring", + "throat: white, sharply demarcated from breast band" + ], + "klaas cuckoo": [ + "back: greenish-bronze upperparts", + "beak: short, curved, black", + "belly: creamy-white", + "breast: light yellow with black bars", + "crown: greenish-bronze head", + "forehead: slightly lighter green than crown", + "eyes: narrow black eye stripe", + "legs: strong, greyish-blue", + "wings: long, greenish-bronze", + "nape: greenish-bronze, continuous with crown", + "tail: long, greenish-bronze, graduated", + "throat: vibrant yellow" + ], + "klages antbird": [ + "back: dark grey with light feather edges", + "beak: sturdy, black, and slightly curved", + "belly: whitish-grey with light streaks", + "breast: greyish-white with subtle streaking", + "crown: black with narrow white streaks", + "forehead: black with faint white streaks", + "eyes: small and bright with a white eyering", + "legs: slender and dark grey", + "wings: dark grey with light-edged feathers", + "nape: black with white streaking", + "tail: long and graduated with pale-grey tips", + "throat: pale grey with narrow white streaks" + ], + "klages antwren": [ + "back: olive-brown with subtle streaks", + "beak: thin, pointed, and black", + "belly: pale grayish-white", + "breast: gray with faint streaks", + "crown: olive-brown, darker than back", + "forehead: pale grayish-white", + "eyes: dark with white eye-ring", + "legs: pale pinkish or grayish", + "wings: olive-brown, elongated, with faint bars", + "nape: olive-brown, same as crown", + "tail: long, olive-brown with faint barring", + "throat: pale grayish-white with thin streaks" + ], + "klages gnatcatcher": [ + "back: pale gray with subtle blue tones", + "beak: small and thin, blackish", + "belly: whitish-gray", + "breast: pale gray, slightly lighter than the back", + "crown: blue-gray with contrasting blackish eyeline", + "forehead: pale gray, similar to the back", + "eyes: small and black with prominent white eyering", + "legs: thin and black, with moderate length", + "wings: blue-gray with white edges, slightly darker than the back", + "nape: pale gray, consistent with the back color", + "tail: long and slim, blue-gray with white outer feathers", + "throat: white, contrasting with the pale gray breast" + ], + "kloss leaf warbler": [ + "back: olive-green with faint streaks", + "beak: fine, pointed, and blackish", + "belly: pale yellow, unmarked", + "breast: light yellow-green with sparse streaking", + "crown: olive-green, unmarked", + "forehead: pale olive-yellow", + "eyes: dark with white eyering", + "legs: pale pinkish-grey", + "wings: olive-green with faint wingbars", + "nape: olive-green, continuous with crown", + "tail: dark olive with yellowish edges on outer feathers", + "throat: pale yellow, unmarked" + ], + "knob billed fruit dove": [ + "back: greenish-bronze with purplish sheen", + "beak: short, stout, hooked tip", + "belly: pale gray with violet hues", + "breast: orange-rufous, fading to gray", + "crown: green with purple gloss", + "forehead: bright golden-yellow", + "eyes: dark reddish-brown, encircled by blue eyering", + "legs: short, pinkish-gray with scaled pattern", + "wings: greenish-bronze, darker at the tips", + "nape: iridescent green with a purple sheen", + "tail: long, narrow, greenish-bronze with yellow and white tips", + "throat: gray, transitioning to orange-rufous at breast" + ], + "knobbed hornbill": [ + "back: olive-brown feathered with light streaks", + "beak: large, bright yellow-orange, with a conspicuous casque", + "belly: white and light grey plumage", + "breast: white feathered with a hint of gray", + "crown: black plumage with a slight purple sheen", + "forehead: black feathers transitioning to the casque", + "eyes: dark brown with a yellow-orange eye-ring", + "legs: strong, grayish-black with zygodactyl feet", + "wings: black and white feathers with a spotted pattern", + "nape: black feathered connecting to the back", + "tail: long central feathers, black and white barred pattern", + "throat: white to light gray feathers merging with the breast" + ], + "knysna turaco": [ + "back: vibrant green plumage", + "beak: short, red curved tip", + "belly: lighter green feathers", + "breast: rich green with blue highlights", + "crown: characteristic green crest", + "forehead: bluish-green feathers", + "eyes: surrounded by dark blue patches", + "legs: grayish-black, strong", + "wings: striking red and blue feathers", + "nape: dark green with blue accents", + "tail: long, green and red feathers", + "throat: green feathers fading into blue" + ], + "knysna warbler": [ + "back: olive-green with streaks", + "beak: slim, slightly curved, dark", + "belly: pale yellowish-white", + "breast: light olive-brown with faint streaks", + "crown: olive-green blending to gray", + "forehead: pale gray, slightly streaked", + "eyes: small, black, with pale yellow eye ring", + "legs: long, grayish-brown", + "wings: olive-green with faint streaks", + "nape: olive-green with gray tinge", + "tail: short, olive-green with dark tips", + "throat: pale yellowish-white" + ], + "knysna woodpecker": [ + "back: olive-brown with black spots", + "beak: straight, pointed, and dark gray", + "belly: pale brown with white spots and bars", + "breast: light brown with white spots and bars", + "crown: red in males, grayish-brown in females", + "forehead: grayish-brown with black speckles", + "eyes: black with white orbital ring", + "legs: gray with strong, sharp claws", + "wings: olive-brown with black bars and white speckles", + "nape: grayish-brown with black spots", + "tail: olive-brown with white bars and black speckles", + "throat: whitish with dark streaks" + ], + "koepcke hermit": [ + "back: olive-brown feathered", + "beak: long, slender, and curved", + "belly: pale gray with subtle streaks", + "breast: softly tawny-orange", + "crown: dark rufous with a crest", + "forehead: olive-toned feathers", + "eyes: small, dark, round", + "legs: long, scaly, grayish", + "wings: olive-brown with light streaks", + "nape: rufous-colored", + "tail: long and rufous with brown bars", + "throat: white feathers with light streaking" + ], + "koepcke screech owl": [ + "back: brownish-grey with dark spots", + "beak: sharp, hooked, yellowish-brown", + "belly: creamy-white with dark streaks", + "breast: light brown with streaked pattern", + "crown: rounded, spotted with brown and black", + "forehead: prominent, dark feathered brow", + "eyes: large, piercing yellow with black outline", + "legs: feathered, sturdy with sharp talons", + "wings: broad, brown with dark spots and bands", + "nape: pale gray-brown with small dark markings", + "tail: medium length, barred with dark bands", + "throat: light-colored with subtle streaks" + ], + "kofiau monarch": [ + "back: deep blue-black feathers", + "beak: black, straight, and sharp", + "belly: pale yellow with characteristic patterns", + "breast: vibrant golden-yellow", + "crown: blue-black with a slight crest", + "forehead: deep blue-black feathers", + "eyes: dark, round with thin black eye-ring", + "legs: short, grayish-blue", + "wings: blue-black with unique white markings", + "nape: deep blue-black with a slight collar", + "tail: elongated and broad, blue-black with white tips", + "throat: bright golden-yellow color" + ], + "kofiau paradise kingfisher": [ + "back: vibrant blue with shining feathers", + "beak: long, black, and slightly curved", + "belly: bright white and plump", + "breast: beautiful mix of white and teal", + "crown: glossy blue-green with an elegant crest", + "forehead: bold, teal blue with a smooth finish", + "eyes: strikingly black and alert", + "legs: bright red-orange and sturdy", + "wings: stunning iridescent blue-green", + "nape: rich teal blue with a hint of green sheen", + "tail: elongated with vibrant blue feathers", + "throat: white with a soft, feathered elegance" + ], + "koklass pheasant": [ + "back: earthy brown with intricate black and white patterns", + "beak: strong, medium-length, and slightly curved", + "belly: pale grayish-white speckled with dark spots", + "breast: deep chestnut-brown with thin white and black stripes", + "crown: velvety black and highly crested", + "forehead: black with inconspicuous facial wattles", + "eyes: deep brown, sharp, and alert", + "legs: sturdy, pinkish-gray, and feathered", + "wings: short, rounded, and brown with prominent white bars", + "nape: deep chestnut-brown with fine white stripes", + "tail: long and dark brown with broad black bands", + "throat: white with black mottled patterns" + ], + "kolombangara leaf warbler": [ + "back: olive-brown with faint streaks", + "beak: slender, slightly curved, and black", + "belly: whitish with yellowish tinges", + "breast: light yellowish-green", + "crown: olive-green with indistinct pale eyebrow", + "forehead: olive-brown, blending with crown", + "eyes: dark, surrounded by faint white eyering", + "legs: pale pinkish-grey, long and slender", + "wings: olive-brown, with faint wing bars", + "nape: olive-brown, continuation of back color", + "tail: olive-brown, square-ended feathers", + "throat: pale yellow, fading into breast color" + ], + "kolombangara monarch": [ + "back: olive-green feathers", + "beak: short, black, and slightly curved", + "belly: pale yellow or off-white", + "breast: olive-green fading to a yellowish tone", + "crown: bright orange or golden yellow", + "forehead: golden yellow feathers", + "eyes: encircled by a black eye patch", + "legs: short, sturdy, dark grey", + "wings: olive-brown with faint yellowish edges", + "nape: olive-green with golden yellow streaks", + "tail: olive-brown with some yellow tips", + "throat: golden yellow, slightly paler than the crown" + ], + "kolombangara white eye": [ + "back: olive-green upper body", + "beak: short, slender, and black", + "belly: yellowish-white underside", + "breast: pale yellow chest", + "crown: bright golden-yellow top of the head", + "forehead: golden-yellow strip above eyes", + "eyes: white eye-ring surrounding dark pupil", + "legs: pale gray and thin", + "wings: olive-green with dark flight feathers", + "nape: olive-green neck area", + "tail: olive-green, moderately long, and slightly forked", + "throat: yellowish-white, blending into breast" + ], + "kopje warbler": [ + "back: light brown with subtle streaks", + "beak: slender, slightly curved", + "belly: off-white with faint markings", + "breast: pale yellow-toned", + "crown: warm brown with streaks", + "forehead: lighter brown, blending into crown", + "eyes: dark, gazing bead", + "legs: thin, pale gray", + "wings: brownish-patterned with contrasting bands", + "nape: warm brown, blending into back", + "tail: long, rounded with barring", + "throat: off-white, unmarked" + ], + "kori bustard": [ + "back: well-camouflaged light brown with black patterns", + "beak: strong, slightly curved, and yellow-gray in color", + "belly: light with brown and black patterns", + "breast: whitish with black crossbars and brown horizontal specks", + "crown: light gray-brown with faint indistinct lines", + "forehead: whitish with a slight ridge", + "eyes: dark brown with a light grayish-blue eye-ring", + "legs: sturdy, long, and dull gray in color", + "wings: large, rounded, with intricate light brown and black patterns", + "nape: light gray-brown with fine vermiculations", + "tail: long, with white, brown, and black banding patterns", + "throat: white with a black v-shaped streak" + ], + "kosrae fruit dove": [ + "back: vibrant green with subtle dark streaks", + "beak: short and curved, light pinkish-orange", + "belly: pale grey with a slight yellow tinge", + "breast: deep rusty-orange, fading to grey towards the belly", + "crown: iridescent purple with green at the edges", + "forehead: bright, metallic-green feathers", + "eyes: dark, surrounded by a pale grey eye-ring", + "legs: short and sturdy, reddish orange", + "wings: green with hints of turquoise and dark streaks", + "nape: metallic green, transitioning into the purple crown", + "tail: greenish-grey with black tips on feathers", + "throat: white feathers with a faint, rusty-orange hue" + ], + "kosrae white eye": [ + "back: greenish-yellow feathers", + "beak: small, black, pointed", + "belly: light grayish-white", + "breast: pale yellow", + "crown: dark olive-green", + "forehead: thin, white eyering", + "eyes: black with white eyering", + "legs: gray, slender", + "wings: olive-green with slightly darker edge", + "nape: olive-green blend with the back", + "tail: olive-green, rounded", + "throat: pale yellow, similar to breast" + ], + "kretschmer longbill": [ + "back: olive-green with subtle streaks", + "beak: elongated and slightly curved", + "belly: pale yellow with light streaks", + "breast: buff-colored and streaked", + "crown: olive-green with a prominent eyestripe", + "forehead: light olive-green", + "eyes: dark with white eye-ring", + "legs: pale pinkish-gray", + "wings: olive-green with light feather edges", + "nape: olive-green with faint streaks", + "tail: long and olive-green with narrow, white tips", + "throat: off-white with fine, dark streaks" + ], + "kr\u00fcper nuthatch": [ + "back: blue-gray plumage with clear contours", + "beak: short, pointed, and dark-colored", + "belly: creamy white, softly feathered", + "breast: white with faint orange tint", + "crown: bluish-gray with a dark stripe", + "forehead: slightly paler bluish-gray", + "eyes: ink-black, surrounded by pale gray", + "legs: sturdy, yellowish-brown", + "wings: gray-blue feathers, black primary feathers", + "nape: bluish-gray, continuing from the crown", + "tail: square-cut, deep blue-gray with blackish outer feathers", + "throat: bright white, accentuated by dark border" + ], + "kuhl lorikeet": [ + "back: vibrant green feathers", + "beak: bright orange, curved tip", + "belly: lighter green, soft feathers", + "breast: rich yellow-green plumage", + "crown: blue, slightly raised feathers", + "forehead: greenish-blue, smooth transition to crown", + "eyes: black, surrounded by green feathers", + "legs: gray, strong", + "wings: green, blue-tipped feathers, strong span", + "nape: green, blending to cape feathers", + "tail: elongated, green with blue tips", + "throat: light green, small feathers" + ], + "kungwe apalis": [ + "back: olive-green feathers", + "beak: short, pointed, and black", + "belly: light yellowish-white", + "breast: yellow with black streaks", + "crown: dark gray with pale streaks", + "forehead: grayish-white", + "eyes: small, dark, surrounded by white eyering", + "legs: fairly long, grayish-brown", + "wings: olive-green with black and yellow markings", + "nape: pale gray streaked with black", + "tail: longish, olive-green with dark bands", + "throat: bright yellow" + ], + "kurdish wheatear": [ + "back: light grayish-blue with streaks of darker gray", + "beak: thin, pointed, dark gray", + "belly: white, occasionally with a faint bluish tint", + "breast: pale blue-gray", + "crown: subtly darker grayish-blue", + "forehead: pale grayish-blue, sometimes with thin white lines", + "eyes: black, surrounded by white eye-ring", + "legs: long, slender, grayish-pink", + "wings: ashy gray bordered by white tips", + "nape: pale grayish-blue", + "tail: dark gray with white outer feathers", + "throat: bold white with a gray semicollar" + ], + "kurrichane thrush": [ + "back: mottled brown with small black spots", + "beak: smooth, yellow-brown with a black tip", + "belly: creamy white with light brown spots", + "breast: light brown with dark brown speckles", + "crown: darker brown with a streaked pattern", + "forehead: slightly paler brown than the crown", + "eyes: piercing black with a thin white eyering", + "legs: slender, pale pinkish-brown", + "wings: brown with buff-colored wing bars and black spots", + "nape: buff-colored with faint brown streaks", + "tail: medium length, brown with black bars and a white tip", + "throat: whitish with faint light brown spots" + ], + "la sagra flycatcher": [ + "back: olive-green, smooth feathers", + "beak: thin, black, and pointed", + "belly: pale yellow, soft feathers", + "breast: light gray, smooth feathers", + "crown: dark gray with slight crest", + "forehead: blackish-brown, blending into crown", + "eyes: dark, round with a white ring", + "legs: long, slender, and gray", + "wings: blackish-brown with pale wingbars", + "nape: gray, connecting to the back", + "tail: long, blackish-brown with white outer feathers", + "throat: white, distinct from breast" + ], + "la selle thrush": [ + "back: olive-brown with subtle streaks", + "beak: dark and slender", + "belly: off-white with dark spots", + "breast: creamy-white with bold black spots", + "crown: dark brown with pale streaks", + "forehead: pale brown, blending with crown", + "eyes: dark, surrounded by faint white ring", + "legs: long and delicate, pale pinkish-brown", + "wings: olive-brown with faint pale bars", + "nape: brown with pale streaks, blending with crown", + "tail: olive-brown, long with white outer edges", + "throat: creamy-white with black streaks" + ], + "laced woodpecker": [ + "back: sleek black-and-white stripes", + "beak: sturdy, pointed, chisel-like", + "belly: gentle white hue", + "breast: plain white contrast", + "crown: striking red patch", + "forehead: red pattern continuation", + "eyes: small, inquisitive, and dark", + "legs: strong, gray, and scaly", + "wings: black, barred with white", + "nape: thick black band", + "tail: long, black with white accents", + "throat: pale white feathers" + ], + "lacrimose mountain tanager": [ + "back: vibrant blue-green with subtle dark streaks", + "beak: black, sturdy and cone-shaped", + "belly: yellowish-green with a hint of blue", + "breast: deep turquoise graduating to lighter blue", + "crown: glossy black with blue iridescence", + "forehead: black with hints of deep blue", + "eyes: dark, almost black, with a faint white eyering", + "legs: dark grey and slender", + "wings: dark blue with bright blue-green streaks", + "nape: rich black, joining the crown and back", + "tail: long, dark blue with blue-green edges", + "throat: deep blue, contrasting the yellowish belly" + ], + "ladder tailed nightjar": [ + "back: dark brown with well-defined streaks", + "beak: short, slightly hooked, and blackish", + "belly: grayish-white with fine horizontal bars", + "breast: dark brown with light streaks and spots", + "crown: brownish-gray with an intricate pattern", + "forehead: pale cream with a subtle pattern", + "eyes: large, dark, and wide-set for enhanced night vision", + "legs: slender and pale with adaptive claws for perching", + "wings: long, pointed, and brown with feathered patterns", + "nape: light brown with subtle, intricate markings", + "tail: long with ladder-like patterns and white patches", + "throat: speckled gray with light markings" + ], + "lady amherst pheasant": [ + "back: vibrant camouflage of blue, green, and black feathers", + "beak: strong, curved, yellow-orange bill", + "belly: soft, white plumage", + "breast: reddish-orange feathers with black edging", + "crown: black crest feathers with iridescent green shine", + "forehead: iridescent blue-green feathers", + "eyes: alert, dark and round", + "legs: long, sturdy, reddish-gray", + "wings: mixture of blue, green, and black feathers", + "nape: long, striking, black and white striped feathers", + "tail: extravagant, long feathers in a mixture of white, black, and green shades", + "throat: bold red patch of feathers" + ], + "lafresnaye piculet": [ + "back: olive green with subtle markings", + "beak: short, straight, pale-colored", + "belly: pale buff with light streaks", + "breast: buff with darker spots", + "crown: rufous with fine black bars", + "forehead: pale buff", + "eyes: dark with white eye-ring", + "legs: grayish-pink", + "wings: olive green with black bars", + "nape: olive green with black markings", + "tail: short, black with white bands", + "throat: pale buff with light streaks" + ], + "lafresnaye vanga": [ + "back: black and white patterned feathers", + "beak: large, hooked, and greyish-blue", + "belly: white and slightly fluffy", + "breast: white with black streaks", + "crown: black with a hint of blue sheen", + "forehead: black with slight iridescence", + "eyes: small and dark, with a white eye-ring", + "legs: long and bluish-grey", + "wings: black and blue with white patches", + "nape: black with a bluish sheen", + "tail: long and black, with white edging", + "throat: white with some black streaks" + ], + "lagden bushshrike": [ + "back: dark green with a slight sheen", + "beak: short and stout, hooked at the tip, blackish-gray", + "belly: rich yellow-orange hue", + "breast: bright orange-red with a black border", + "crown: glossy greenish-black", + "forehead: striking red coloration", + "eyes: large and piercing, dark brown", + "legs: strong and sturdy, grayish-black", + "wings: mixture of dark green and black, with hints of metallic blue", + "nape: greenish-black, transitioning to red on the forehead", + "tail: long and black with green and blue shimmer", + "throat: vibrant orange-red, bordered by black" + ], + "laggar falcon": [ + "back: sleek, elongated feathers in various shades of brown", + "beak: strong, sharply hooked, and yellowish-grey", + "belly: creamy white with dark, vertical streaks", + "breast: pale, off-white chest with sparse, brown markings", + "crown: brownish-gray with a well-defined streak pattern", + "forehead: light grayish-white with fine, dark streaks", + "eyes: large and dark brown, bordered by a yellow-orange ring", + "legs: sturdy, yellow, and equipped with sharp talons", + "wings: long, pointed, with brown and white patterns", + "nape: gray-brown with a subtle pattern of dark streaks", + "tail: banded with dark brown and white stripes", + "throat: pale white with light brown, horizontal streaks" + ], + "lake duck": [ + "back: smooth feathers with varying shades of brown", + "beak: flat and wide, bluish-grey with a black tip", + "belly: pale white or cream-colored underside", + "breast: rich chestnut brown with white speckles", + "crown: brownish-black crest over the head", + "forehead: slight tuft of dark feathers", + "eyes: bright red or orange, surrounded by dark feathers", + "legs: strong and thick, dark grey or black with webbed feet", + "wings: broad and pointed, exhibiting iridescent green or blue when in flight", + "nape: connecting the head to the back, brownish-grey", + "tail: short, slightly rounded, with dark feathers", + "throat: lighter shade of brown with thin white streaks" + ], + "lance tailed manakin": [ + "back: vibrant green feathers", + "beak: small, black, and sharp", + "belly: yellowish-white plumage", + "breast: bright green feathers", + "crown: greenish-blue head with a slight crest", + "forehead: bright green with blue blending", + "eyes: beady black surrounded by green feathers", + "legs: slim, grayish-black", + "wings: green, short and rounded", + "nape: green transitioning to yellowish-white", + "tail: long black, lance-shaped feathers", + "throat: yellowish-white plumage" + ], + "lanceolated monklet": [ + "back: olive-brown with small, dark speckles", + "beak: short, black, and hooked", + "belly: creamy-white with slight streaking", + "breast: buff-gray with dark streaks and spots", + "crown: dark brown with rufous crown patch", + "forehead: yellowish-brown with faint lines", + "eyes: dark brown with a pale eyering", + "legs: grayish-yellow with short, sharp claws", + "wings: olive-brown with white wing bars", + "nape: dark brown with reddish and white streaks", + "tail: short, dark brown with white outer tail feathers", + "throat: white with faint lines and streaks" + ], + "lanceolated warbler": [ + "back: light brown with dark streaks", + "beak: thin and pointy, dark-greyish", + "belly: white or pale yellowish", + "breast: white with light brown streaks", + "crown: dark brown with lighter streaks", + "forehead: light brown with streaks", + "eyes: small and black, surrounded by a light eye-ring", + "legs: thin and pale, short claws", + "wings: brownish with dark streaks, rounded tips", + "nape: light brown with dark streaks", + "tail: dark brown with light edges and forked shape", + "throat: whitish with faint brown streaks" + ], + "lanner falcon": [ + "back: sleek, grayish-brown feathers", + "beak: sharp, curved, yellowish with dark tip", + "belly: white with reddish-brown spots", + "breast: creamy white with speckled patterns", + "crown: dark grayish-brown, smooth feathers", + "forehead: pale gray with sleek plumage", + "eyes: large, dark brown with yellow orbital ring", + "legs: strong, yellow with sharp talons", + "wings: long, pointed, grayish-brown with dark spots", + "nape: pale gray, feathered with fine streaks", + "tail: grayish-brown, barred with thin bands", + "throat: creamy white with a slight reddish hue" + ], + "lappet faced vulture": [ + "back: dark-brown feathers with paler edges", + "beak: large, robust, and hooked, with a pale-yellow color near the base", + "belly: dark-brown feathers with paler edges", + "breast: mostly featherless with wrinkled pinkish skin", + "crown: small patch of smooth white feathers", + "forehead: featherless, revealing dark grayish-black skin", + "eyes: dark, rounded, and penetrating, encircled by pinkish skin", + "legs: long, thick, scaly, and dark gray in color", + "wings: wide, with dark-brown primary flight feathers and lighter brown secondary feathers", + "nape: short mane of long white feathers", + "tail: dark-brown feathers with pale edges, with a slight fan shape", + "throat: featherless, with loose, wrinkly pinkish skin" + ], + "large blue flycatcher": [ + "back: vibrant blue feathers", + "beak: strong black, medium-length", + "belly: light grayish-blue", + "breast: soft blue plumage", + "crown: deep azure crest", + "forehead: bright blue", + "eyes: piercing black orbs", + "legs: sturdy black limbs", + "wings: bold blue with black accents", + "nape: striking cobalt", + "tail: long cerulean feathers", + "throat: pale gray-blue" + ], + "large cuckooshrike": [ + "back: sleek slate-grey feathers", + "beak: sturdy black hook-shaped", + "belly: pale grayish-white and smooth", + "breast: soft gray with slight barring", + "crown: dark gray with a hint of black luster", + "forehead: smooth gray blending with crown", + "eyes: piercing yellow with a black ring", + "legs: strong and charcoal-colored", + "wings: elongated and blackish-grey, with white patches", + "nape: continuous grey from the crown", + "tail: blackish with subtle white bands", + "throat: soft pale gray plumage" + ], + "large elaenia": [ + "back: olive-brown with subtle feather patterns", + "beak: medium-sized, grayish-black, slightly hooked", + "belly: pale yellowish-white", + "breast: light olive-gray", + "crown: grayish, with a slight crest", + "forehead: light gray", + "eyes: small, black, surrounded by pale eyering", + "legs: long, slender, grayish-black", + "wings: olive-brown with two white wing bars", + "nape: olive-brown with hints of gray", + "tail: medium-length, olive-brown with lighter edges", + "throat: pale yellowish-white" + ], + "large fig parrot": [ + "back: vibrant green feathers", + "beak: short, stout, and hooked", + "belly: light green with blue streaks", + "breast: bright blue and green feathers", + "crown: vivid orange and yellow crest", + "forehead: turquoise and blue hues", + "eyes: dark, surrounded by pale blue rings", + "legs: short and sturdy", + "wings: long, green with blue edges", + "nape: brilliant blue feathers", + "tail: relatively short and green", + "throat: green with yellow accents" + ], + "large frogmouth": [ + "back: mottled brown and gray camouflage pattern", + "beak: wide, hooked, and grayish", + "belly: pale gray with brown streaks", + "breast: gray and buff streaks, dappled", + "crown: dark brown with lighter speckles", + "forehead: grayish-brown with lighter markings", + "eyes: large, yellow, and forward-facing", + "legs: thick, feathered, dark gray", + "wings: broad and rounded, mottled with gray and brown", + "nape: brownish-gray with lighter streaks", + "tail: long, fan-shaped, banded in gray and brown", + "throat: pale buff with narrow dark streaks" + ], + "large gray babbler": [ + "back: light gray feathers with subtle patterns", + "beak: strong, slightly curved, blackish", + "belly: pale gray with slightly darker streaks", + "breast: soft gray with fine streaks", + "crown: darker gray with lighter streaks", + "forehead: smooth, light gray with subtle markings", + "eyes: small, black, with a faint grayish eye-ring", + "legs: strong, scaly, dark colored", + "wings: grayish-brown with white and black bands on the primaries and secondaries", + "nape: pale gray blending into the crown", + "tail: long, grayish-brown with white tips and dark bands", + "throat: soft gray, finely streaked" + ], + "large green pigeon": [ + "back: vibrant green feathers", + "beak: short, stout, and beige", + "belly: pale green underside", + "breast: rich emerald plume", + "crown: smooth green feathers", + "forehead: bright green patch", + "eyes: black beady gaze", + "legs: sturdy, grayish limbs", + "wings: wide, lush green span", + "nape: green feathered curve", + "tail: elongated, fanlike feathers", + "throat: lighter green shade" + ], + "large ground finch": [ + "back: dark brown feathers", + "beak: thick and short", + "belly: light brown with grayish streaks", + "breast: brownish-black plumage", + "crown: black or dark brown feathers", + "forehead: black or dark brown plumage", + "eyes: small and black", + "legs: sturdy and gray", + "wings: dark brown with barred pattern", + "nape: black or dark brown feathers", + "tail: short with dark brown feathers", + "throat: black or dark brown plumage" + ], + "large hawk cuckoo": [ + "back: strong, slate-grey plumage", + "beak: powerful, black curved bill", + "belly: white with dark streaks", + "breast: greyish-white, barred appearance", + "crown: ashy-grey with fine streaks", + "forehead: smooth, grey feathers", + "eyes: piercing, orange-yellow", + "legs: long, scaly, yellowish-grey", + "wings: broad, dark grey, with curved tips", + "nape: smoky-grey, striped feathers", + "tail: long, greyish-brown, with dark bars", + "throat: pale grey, faintly streaked" + ], + "large lifou white eye": [ + "back: vibrant green feathers covering the dorsal side", + "beak: slender, slightly curved black beak", + "belly: pale grey-white coloration with soft feathers", + "breast: light grey plumage transitioning from the belly", + "crown: bright green feathers atop the head", + "forehead: greenish-yellow feathers above the beak", + "eyes: large, round, dark eyes surrounded by a white ring", + "legs: slender, greyish-brown with small feet and claws", + "wings: bright green with a greyish-white fringe on the underside", + "nape: vivid green feathers connecting the crown to the back", + "tail: long, green tail feathers with a greyish-white underside", + "throat: soft grey-white feathers blending with breast and belly" + ], + "large niltava": [ + "back: deep blue plumage", + "beak: strong, black, short", + "belly: bright orange feathers", + "breast: rich rust coloration", + "crown: dark blue feathers", + "forehead: vibrant blue coloring", + "eyes: deep black, piercing gaze", + "legs: sturdy, dark gray", + "wings: deep blue with black wingtips", + "nape: lush blue plumage", + "tail: long, dark blue with black tips", + "throat: reddish-orange hue" + ], + "large scimitar babbler": [ + "back: brownish-gray feathers", + "beak: long, curved, and black", + "belly: white with black streaks", + "breast: rufous-orange plumage", + "crown: dark gray with white streaks", + "forehead: pale gray and slightly crested", + "eyes: dark brown with white eyering", + "legs: strong, grayish-blue", + "wings: rounded, brownish-gray with white markings", + "nape: dark gray, streaked with white", + "tail: elongated, black-tipped, white feathers", + "throat: bright white with black edges" + ], + "large scrubwren": [ + "back: rich olive-brown plumage", + "beak: slender, slightly curved, dark bill", + "belly: light grey underparts", + "breast: inconspicuous pale-grey streaks", + "crown: rufous-brown with white speckles", + "forehead: boldly-streaked white lines", + "eyes: rounded, dark with white eyering", + "legs: pale pinkish-grey, robust and long", + "wings: olive-brown with faint lighter markings", + "nape: rufous-brown, often ruffled", + "tail: long and gradient rufous-brown", + "throat: smooth grey with subtle white streaks" + ], + "large tree finch": [ + "back: greenish-brown feathers", + "beak: thick and broad, black", + "belly: pale yellowish-white", + "breast: dense, grayish-white feathers", + "crown: dark blackish-brown", + "forehead: grayish-brown feathers", + "eyes: small and round, black", + "legs: sturdy, dark grey", + "wings: greenish-brown feathers with black edges", + "nape: grayish-brown plumage", + "tail: long, dark-greenish brown feathers", + "throat: greyish-white feathers" + ], + "large woodshrike": [ + "back: olive-brown feathers", + "beak: strong, hooked upper mandible", + "belly: creamy-white plumage", + "breast: streaked with gray-brown", + "crown: dark brown crest", + "forehead: lighter brown feathers", + "eyes: piercing, yellowish-white", + "legs: long, blackish-gray", + "wings: broad, dark brown with white bars", + "nape: olive-brown, like the back", + "tail: elongated, brown with white tips", + "throat: streaked grayish-white" + ], + "large wren babbler": [ + "back: brownish-grey feathers with subtle streaks", + "beak: long, slender, and slightly curved", + "belly: soft white to light grey plumage", + "breast: pale grey feathers with some spotting", + "crown: dark brown with faint streaks", + "forehead: light reddish-brown plumage", + "eyes: small, black, and alert", + "legs: strong and medium length with scaly texture", + "wings: rounded with brown and white barring", + "nape: darker brown with lighter streaks", + "tail: long and narrow, dark brown with white tips", + "throat: white-to-grey feathers with delicate spots" + ], + "large billed antwren": [ + "back: grayish-brown feathers", + "beak: large, sturdy, black", + "belly: white with faint gray streaks", + "breast: grayish-white and fluffy", + "crown: black with coppery highlights", + "forehead: black patches, feathered", + "eyes: large, dark brown", + "legs: strong, grayish blue", + "wings: elongated, gray and brown", + "nape: warm brown, feathered", + "tail: long, dark brown with white tips", + "throat: white, contrasting with upper body" + ], + "large billed crow": [ + "back: sleek black feathers", + "beak: prominent, large, and sturdy", + "belly: slightly rounded, black plumage", + "breast: full and glossy black", + "crown: smooth black feathers with a slight peak", + "forehead: flat and covered with short black feathers", + "eyes: dark, piercing, and intelligent", + "legs: strong, black, and scaly", + "wings: wide, black, and powerful", + "nape: black, smooth feathers at the back of the neck", + "tail: long black feathers, fan-shaped", + "throat: glossy black with a streamlined curve" + ], + "large billed gerygone": [ + "back: light olive-green feathers", + "beak: long, curved, black", + "belly: pale, creamy-white color", + "breast: light-cream feathered", + "crown: olive-brown with streaks", + "forehead: faintly lined olive-brown", + "eyes: round, black, and shiny", + "legs: thin, light-orange", + "wings: short, olive-green with off-white bars", + "nape: olive-brown, white-throated", + "tail: dark, fan-shaped with white tips", + "throat: white and unmarked" + ], + "large billed lark": [ + "back: light brown with streaked feathers", + "beak: long, heavy, and slightly curved", + "belly: pale off-white or yellowish", + "breast: light brown with streaked or spotted pattern", + "crown: streaked with light brown and black feathers", + "forehead: lighter brown with slight streaking", + "eyes: small, black, and observant", + "legs: strong and slender, pale pink or brown hue", + "wings: brown with darker streaks and light edges", + "nape: light brown with streaked feathers", + "tail: notched, with brown central feathers and lighter outer feathers", + "throat: pale off-white or yellowish with brown streaks or spots" + ], + "large billed leaf warbler": [ + "back: olive-green with a slight yellowish tinge", + "beak: long, robust, and curved", + "belly: creamy white with a light olive wash", + "breast: pale yellow with faint streaking", + "crown: olive-green, distinct yellow stripe over eyes", + "forehead: olive-green, merging into the crown", + "eyes: dark brown, encircled by a pale eye-ring", + "legs: pale pinkish-brown, strong and well-suited for perching", + "wings: olive-green with striking yellow edges on flight feathers", + "nape: olive-green, blending with the back and crown", + "tail: long and slender, olive-green with yellowish edges", + "throat: yellowish-white with a hint of pale streaking" + ], + "large billed reed warbler": [ + "back: olive-brown with faint streaks", + "beak: long, slender, slightly curved", + "belly: whitish with pale brown undertones", + "breast: pale brown with subtle streaks", + "crown: warm brown with faint streaking", + "forehead: smooth olive-brown", + "eyes: small, black, alert", + "legs: sturdy and pale pinkish-brown", + "wings: brown with distinct feather patterns", + "nape: olive-brown with slight streaking", + "tail: long, narrow, brown with faint barring", + "throat: whitish with light brown streaks" + ], + "large billed scrubwren": [ + "back: olive-brown plumage", + "beak: prominent and elongated", + "belly: pale cream-white", + "breast: streaked shades of brown", + "crown: brownish-grey with soft streaks", + "forehead: pale and plain", + "eyes: beady black with white eye-rings", + "legs: long and slender", + "wings: short and rounded", + "nape: greyish-brown", + "tail: fairly long and straight-edged", + "throat: cream-white with subtle streaks" + ], + "large billed seed finch": [ + "back: olive-green feathers with streaks", + "beak: thick, wide, and sharp edged", + "belly: pale yellowish-white with subtle markings", + "breast: bright yellow streaks blending into belly", + "crown: black feathers with slight shine", + "forehead: small black feathers lined above beak", + "eyes: dark brown surrounded by thin, white eye ring", + "legs: strong, light grey with sharp claws", + "wings: olive-green feathers, black tips, and streaks", + "nape: black stripe starting from crown to the back", + "tail: medium length, straight, olive-green with black tips", + "throat: bright yellow feathers with a tinge of olive-green" + ], + "large billed tern": [ + "back: smooth, gray feathers", + "beak: long, sharp and black", + "belly: white, soft plumage", + "breast: white, rounded feathers", + "crown: grayish-black, textured feathers", + "forehead: sleek, white plumage", + "eyes: small, round, dark", + "legs: long, thin, yellowish-orange", + "wings: broad, gray-white with black tips", + "nape: gray, sleek feathers", + "tail: short, fan-like, white-gray", + "throat: white, smooth feathers" + ], + "large footed finch": [ + "back: sleek, brownish feathers", + "beak: strong, curved, black beak", + "belly: creamy white, slightly speckled", + "breast: subtly streaked, outlined with dark brown", + "crown: smooth, dark plumage", + "forehead: vibrant browny-yellow", + "eyes: round, dark, and expressive", + "legs: sturdy, long, and grey", + "wings: broad, brown, with white streaks", + "nape: soft, dark-feathered transition", + "tail: fan-shaped, brown with white accents", + "throat: pale, streaked with darker lines" + ], + "large footed tapaculo": [ + "back: dark gray, densely feathered", + "beak: short, sturdy, black", + "belly: grayish-white, fluffed feathers", + "breast: pale gray, rounded", + "crown: dark gray, slightly raised", + "forehead: smooth, grayish-black", + "eyes: small, dark, alert", + "legs: large, strong, pale pink", + "wings: short, rounded, gray", + "nape: dense, dark gray feathers", + "tail: short, fan-shaped, gray", + "throat: light gray, soft feathers" + ], + "large headed flatbill": [ + "back: smooth, curved surface", + "beak: broad, slightly curved", + "belly: rounded, soft texture", + "breast: full, rounded shape", + "crown: large, flat, prominent", + "forehead: wide, flat area", + "eyes: round, alert, expressive", + "legs: slender, strong limbs", + "wings: broad, slightly rounded", + "nape: long, flat, well-defined", + "tail: wide, flat, fan-shaped", + "throat: slender, slightly curved" + ], + "large tailed antshrike": [ + "back: slate-grey with fine black streaks", + "beak: thick and hooked, black in color", + "belly: creamy off-white, fading to pale yellow", + "breast: greyish-white with pale black barring", + "crown: black with a distinct crest", + "forehead: black and slightly feathered", + "eyes: small and black, encircled by pale skin", + "legs: sturdy, dark grey with sharp claws", + "wings: broad and rounded, slate-grey with white tips", + "nape: black with thin white streaks", + "tail: long and black, with white outer tail feathers", + "throat: white with a hint of grey" + ], + "large tailed dove": [ + "back: smooth, greyish-brown feathers", + "beak: small, hooked, pale grey", + "belly: soft, pale grey feathers", + "breast: buff-gray, streaked with brown", + "crown: slightly darker gray, rounded", + "forehead: light gray, smooth feathers", + "eyes: small, dark, and round", + "legs: short, pinkish-gray, scaled", + "wings: long, gray-brown, with black accents", + "nape: light gray, well-defined feathers", + "tail: prominent, fan-shaped, dark gray with white tips", + "throat: faint brown with pale gray streaks" + ], + "large tailed nightjar": [ + "back: mottled brown and gray camouflage pattern", + "beak: short and stout, dark gray color", + "belly: light brown with dark streaks and spots", + "breast: pale brown with darker brown marbling", + "crown: mottled gray and brown with a tinge of rufous", + "forehead: mottled gray-brown with whitish streaks", + "eyes: large, dark, and forward-facing", + "legs: short and feathered, with pale cream and brown bands", + "wings: mottled brown and gray with prominent white patches", + "nape: mottled gray and brown, blending with the crown", + "tail: long with broad feathers, dark brown and gray bands, and white corners", + "throat: creamy-white washed with brown and gray streaks" + ], + "lark like brushrunner": [ + "back: sleek brown feathers", + "beak: thin, curved, sharp", + "belly: light beige plumage", + "breast: speckled brown and white", + "crown: slightly raised, streaked", + "forehead: light, unmarked feathers", + "eyes: small, black, alert", + "legs: slender, long, powerful", + "wings: lengthy, strong, brown", + "nape: smoothly blended with crown", + "tail: rounded, pointed feathers", + "throat: smooth, pale contrast" + ], + "lark like bunting": [ + "back: brownish streaked feathers", + "beak: short, conical shape", + "belly: white with slight markings", + "breast: white, faintly streaked", + "crown: brown with light streaks", + "forehead: whitish with brown markings", + "eyes: small, dark with white ring", + "legs: pale pink, slender", + "wings: brown with pale edges", + "nape: brownish-grey, marked", + "tail: brown with white outer edges", + "throat: white, unmarked" + ], + "latakoo lark": [ + "back: sleek, iridescent feathers", + "beak: sharp, narrow, and curved", + "belly: soft and off-white plumage", + "breast: striking orange or red patch", + "crown: flat with blackish feathers", + "forehead: mix of black and white feathers", + "eyes: alert and round, dark color", + "legs: strong and thin with grey color", + "wings: long, pointed with dark markings", + "nape: smooth transition from crown to back feathers", + "tail: short with dark-rimmed, white outer feathers", + "throat: off-white with a hint of grayish-blue" + ], + "latham francolin": [ + "back: reddish-brown with black streaks", + "beak: short and stout, pale bluish-gray", + "belly: buff-colored with black bars", + "breast: pale gray with white speckles", + "crown: chestnut-brown with white streaks", + "forehead: buffy-white with narrow black stripes", + "eyes: dark brown, surrounded by a light gray ring", + "legs: robust and feathered, red-orange", + "wings: reddish-brown with distinctive white spots", + "nape: grayish-white with black stripes", + "tail: short, black with white bars", + "throat: buffy-white, bordered by black lines" + ], + "latham snipe": [ + "back: light brown with faint streaks", + "beak: long and straight, brownish-gray", + "belly: white mixed with brownish hues", + "breast: buff-colored with dark spots", + "crown: dark brown with light stripes", + "forehead: light brown with white strip in center", + "eyes: small and black, surrounded by white", + "legs: pale yellow or brownish-gray, long and slender", + "wings: brown with dark feathers, gold and white edge", + "nape: brown with faint markings", + "tail: barred brown and white feathers", + "throat: pale buff with distinct blackish-brown stripes" + ], + "lattice tailed trogon": [ + "back: greenish-bronze feathers", + "beak: short, thick, and curved", + "belly: pale grey", + "breast: cherry red, fading into gray", + "crown: deep iridescent green", + "forehead: bright metallic green", + "eyes: large, round, dark brown", + "legs: short, sturdy", + "wings: iridescent green to blue", + "nape: greenish-bronze feathers", + "tail: long, dark, and square-tipped", + "throat: cherry red" + ], + "laughing dove": [ + "back: light brownish-grey with dark feather edges", + "beak: short and black, slightly curved", + "belly: beige with a rosy tint and subtle spotting", + "breast: warm pink or buff with dark spots", + "crown: light brown with a subtle blue-grey sheen", + "forehead: bluish-grey with slightly darker feather edges", + "eyes: dark brown eyes with thin white eye-ring", + "legs: short, pink to red, with scaled texture", + "wings: soft brown with bold black spots and blue-grey accents", + "nape: light brown with dark feather edges transitioning to grey", + "tail: long and tapered with black and white outer feathers", + "throat: creamy-white, unmarked and smooth appearance" + ], + "laughing falcon": [ + "back: yellowish white with faint dark streaks", + "beak: strong, short, and dark hooked beak", + "belly: creamy white with light barring", + "breast: buff with distinctive dark vertical streaks", + "crown: yellowish white and smooth", + "forehead: yellowish-white extending to cheeks", + "eyes: dark, expressive, surrounded by dark mask", + "legs: strong, short, yellow scaled, and sharp talons", + "wings: long, broad, and beautifully barred", + "nape: yellowish white and smooth", + "tail: light with dark bands, fan-shaped", + "throat: creamy white, unmarked" + ], + "laughing kookaburra": [ + "back: brownish with black bars", + "beak: robust, large, dark color", + "belly: pale, whitish hue with brown spots", + "breast: white with slight brown spots", + "crown: dark, with small white spots", + "forehead: brownish-black striping", + "eyes: bright, dark with white eyebrows", + "legs: sturdy, grayish-blue", + "wings: reddish-brown with black striping", + "nape: brownish-white, well-defined", + "tail: long, prominent blue markings", + "throat: white, subtly streaked with black" + ], + "laura woodland warbler": [ + "back: olive-green with subtle streaks", + "beak: thin, pointed, and black", + "belly: pale yellow with faint streaks", + "breast: yellowish-white with light streaks", + "crown: bright yellow with black stripes", + "forehead: vibrant yellow with a slight curve", + "eyes: small, round, and black with white eyering", + "legs: long, slender, and pinkish-brown", + "wings: olive-green with white wingbars and black secondary feathers", + "nape: yellowish-green with a black stripe", + "tail: dark olive-green with white outer feathers and black tips", + "throat: bright yellow and unmarked" + ], + "laurel pigeon": [ + "back: dark grey with greenish sheen", + "beak: strong black hooked beak", + "belly: white with grey shading", + "breast: dark grey-green", + "crown: dark grey with bluish tint", + "forehead: greyish-blue", + "eyes: dark brown with thin eyering", + "legs: bright red with strong, scaly texture", + "wings: broad with dark grey-green color and a white patch", + "nape: dark grey with greenish-gloss", + "tail: long, dark grey with a white band near the tip", + "throat: greyish-white with a small dark patch" + ], + "lava gull": [ + "back: dark gray, smooth feathers", + "beak: black, hooked tip", + "belly: grayish-white, soft plumage", + "breast: dark gray, dense feathers", + "crown: dark gray, smooth head", + "forehead: slightly lighter gray, sleek feathers", + "eyes: large, expressive, dark brown", + "legs: sturdy, black, webbed feet", + "wings: dark gray, elongated feathers", + "nape: dark gray, short feathers", + "tail: fan-shaped, dark gray feathers", + "throat: grayish-white, fine feathers" + ], + "lavender waxbill": [ + "back: bluish-grey feathers with lavender hues", + "beak: petite, silver-grey, and pointed", + "belly: soft lavender-grey feathers", + "breast: vibrant lavender plumage", + "crown: vibrant lavender with hints of grey", + "forehead: smooth lavender with light grey streaks", + "eyes: round, black with a subtle white circle", + "legs: dainty, greyish-blue", + "wings: grey with hints of lavender, black-tipped coverts", + "nape: bluish-grey meeting lavender crown", + "tail: long, grey feathers with dark tips", + "throat: gentle lavender with a smooth transition to breast" + ], + "lawes parotia": [ + "back: black and glossy feathers", + "beak: short, delicate, grayish", + "belly: shades of brown feathers", + "breast: iridescent golden-yellow feathers", + "crown: long curved black feathers", + "forehead: black feathers with fine barring", + "eyes: dark, round, expressive", + "legs: strong, grayish-blue", + "wings: short and rounded, black with hints of teal", + "nape: curved black tufts of feathers", + "tail: elongated black feathers, iridescent teal edges", + "throat: puffy and black with iridescent blue markings" + ], + "lawrence goldfinch": [ + "back: olive-green with black streaks", + "beak: slender, conical, sharp, pale pink", + "belly: bright yellow", + "breast: vibrant yellow", + "crown: black with some greenish sheen", + "forehead: black", + "eyes: tiny, black, bead-like", + "legs: pinkish-grey", + "wings: black with white patches and yellow bars", + "nape: olive-green", + "tail: black with white tips on outer feathers", + "throat: bright yellow" + ], + "lawrence thrush": [ + "back: olive-brown with fine streaks", + "beak: thin and slightly curved", + "belly: whitish-grey with light markings", + "breast: pale grey with fine streaks", + "crown: olive-brown with streaks, slightly raised", + "forehead: dull olive-brown", + "eyes: dark brown, encircled by a faint eye-ring", + "legs: light pinkish-brown", + "wings: olive-brown with buff wing bars", + "nape: olive-brown, streaked with fine lines", + "tail: olive-brown, often slightly flicked upwards", + "throat: whitish with thin streaks" + ], + "layard parakeet": [ + "back: green and blue feathered", + "beak: orange-red with dark tip", + "belly: light green and yellow tint", + "breast: bluish-green plumage", + "crown: bright blue top of the head", + "forehead: green with blue markings", + "eyes: orange-red eye ring surrounding brown pupil", + "legs: grayish-blue with sharp claws", + "wings: green with blue hints and a red patch under", + "nape: greenish-blue feathers curving around the neck", + "tail: long, blue-green feathers with yellow tips", + "throat: yellow-green with a slight blue hue" + ], + "layard warbler": [ + "back: olive-brown with a hint of green", + "beak: thin and pointed, blackish-brown", + "belly: off-white with light streaking", + "breast: pale yellowish-brown with thin streaks", + "crown: grayish-olive with darker streaks", + "forehead: grayish with a slight yellow tinge", + "eyes: dark brown with white eye-ring", + "legs: long and slender, dark gray", + "wings: olive-green with faint barring", + "nape: grayish-olive, blending into the back", + "tail: long and dark with white outer feathers", + "throat: pale grayish-white with light streaking" + ], + "layard white eye": [ + "back: olive-green feathers", + "beak: thin, black, and slightly curved", + "belly: bright yellow underparts", + "breast: vibrant yellow plumage", + "crown: rounded, grey-white area", + "forehead: pale grey feathers", + "eyes: large, distinctive white eye-ring", + "legs: pale grey, slender limbs", + "wings: olive-green with well-defined feathers", + "nape: transition between grey-white crown and olive-green back", + "tail: short, olive-green feathers with black tips", + "throat: lemon-yellow, continuing into yellow breast" + ], + "laysan duck": [ + "back: dark brown feathers and streamlined shape", + "beak: short, rounded, with black coloration", + "belly: light brown with small white flecks", + "breast: whitish with darker brown spotting", + "crown: dark brown feathers covering the top of the head", + "forehead: darker brown feathers fading to light brown towards the beak", + "eyes: black with a thin white eye ring", + "legs: strong, orange-webbed feet for swimming", + "wings: brown with white edges and flight feathers", + "nape: dark brown feathers at the back of the neck", + "tail: short and squared, with brown feathers", + "throat: lighter brown with some white flecks" + ], + "laysan finch": [ + "back: olive-brown feathers", + "beak: thick and slightly curved", + "belly: creamy-white hue", + "breast: lightly-streaked brown", + "crown: olive-brown coloring", + "forehead: brownish plumage", + "eyes: small and black", + "legs: sturdy and greyish-blue", + "wings: olive-brown with subtle markings", + "nape: olive-brown feathers", + "tail: fairly short with slight fork", + "throat: light streaks on greyish-white background" + ], + "lazuli kingfisher": [ + "back: vibrant blue feathers with streaks of white", + "beak: large, black, and dagger-like", + "belly: white with rufous-orange markings", + "breast: deep rufous-orange color", + "crown: brilliant blue with white streaks", + "forehead: striking white patch", + "eyes: dark, beady, and expressive", + "legs: short and gray-black", + "wings: iridescent blue with black and white bands", + "nape: azure blue with white speckles", + "tail: elongated, blue with bold black and white markings", + "throat: white with a slight rufous-orange tinge" + ], + "lazuline sabrewing": [ + "back: vibrant turquoise feathers", + "beak: long, thin, black", + "belly: metallic green-blue shading", + "breast: iridescent greenish-blue", + "crown: shining deep blue hue", + "forehead: gleaming azure flash", + "eyes: small, round, dark", + "legs: slender, gray-black", + "wings: shimmering turquoise, elongated", + "nape: bright blue-green plumage", + "tail: forked, black, and teal", + "throat: luminous green-blue glow" + ], + "leach storm petrel": [ + "back: blackish-brown color with a smooth texture", + "beak: thin, black, curved, sharp for catching prey", + "belly: pale grayish-white underside, narrow black stripe along center", + "breast: pale grayish-white with a dark patch on each side", + "crown: blackish-brown, rounded shape, covers the top of the head", + "forehead: blackish-brown, smooth slope leading to the beak", + "eyes: small, round, black, positioned on either side of the head", + "legs: slender, dark gray, webbed feet for swimming", + "wings: long, pointed, blackish-brown feature for flying", + "nape: blackish-brown, connects the crown and back of the bird", + "tail: forked, blackish-brown, helps with steering and balance", + "throat: pale grayish-white, meets with the pale underside of the bird" + ], + "leaden antwren": [ + "back: light grey coloring, smooth feathers", + "beak: short, thin, and sharp, black", + "belly: pale grey-white hue, soft feathers", + "breast: light grey coloring, feathery texture", + "crown: slightly darker grey, small crest feathers", + "forehead: light grey hue, smooth feathers", + "eyes: black and round, white eye-ring", + "legs: thin and black, long claws", + "wings: light grey, medium length, pointed tips", + "nape: light grey coloring, smooth feathers", + "tail: long and grey, slightly darker tips", + "throat: pale grey-white, soft feathers" + ], + "leaden flycatcher": [ + "back: slate-gray, smoothly feathered", + "beak: short, hooked, dark", + "belly: pale grayish-white", + "breast: dingy grey", + "crown: dark slate-blue", + "forehead: bluish-grey", + "eyes: dark brown, alert", + "legs: grayish-black, slender", + "wings: slate blue, rounded", + "nape: matching slate-gray", + "tail: dark blue-gray, medium length", + "throat: light grey-white" + ], + "leaf lorikeet": [ + "back: vibrant green feathers", + "beak: orange-red, slightly curved", + "belly: lime green feathers", + "breast: bright green plumage", + "crown: emerald green, crest-like", + "forehead: green merging with blue", + "eyes: black, surrounded by thin, white eye-ring", + "legs: orange, with strong feet for perching", + "wings: green, with blue and yellow highlights", + "nape: green with slight blue highlights", + "tail: long, green feathers with yellow tips", + "throat: yellow-green, with hints of blue" + ], + "leaf love": [ + "back: vibrant green feathers", + "beak: small, sharp, orange-red tip", + "belly: soft, light green plumage", + "breast: bright yellowish-green feathers", + "crown: deep green, merging with the nape", + "forehead: radiant green, distinctively edged", + "eyes: dark, inquisitive, with a white eye-ring", + "legs: sturdy, grayish, with strong toes", + "wings: vibrant green, slightly pointed edges", + "nape: transition from green to deep blue", + "tail: elongated, broad, blue-violet feathers", + "throat: pale green, contrasting with breast" + ], + "least boobook": [ + "back: olive-brown with dense white spots", + "beak: dark, sharp, and hooked", + "belly: whitish with brown streaks", + "breast: pale with rufous-brown markings", + "crown: dark-brown with white spots", + "forehead: slightly paler than the crown", + "eyes: bright yellow on a dark facial disk", + "legs: feathered, with strong talons", + "wings: rounded, with brown and white bars", + "nape: similar in appearance to the crown", + "tail: long and dark, with narrow white barring", + "throat: white with brown streaks" + ], + "least honeyguide": [ + "back: olive-brown with subtle streaks", + "beak: short and stout with a slightly curved tip", + "belly: whitish with fine dark streaks", + "breast: pale with dark brown speckles", + "crown: olive-brown with faint streaks", + "forehead: slightly paler olive-brown", + "eyes: dark brown with a white eye-ring", + "legs: short and sturdy, light pinkish-gray", + "wings: dark brown with olive-brown edges", + "nape: olive-brown with subtle streaks", + "tail: dark brown with olive-brown outer feathers", + "throat: pale with fine dark streaks" + ], + "least nighthawk": [ + "back: plain brown with subtle markings", + "beak: short and wide, dark grey", + "belly: light brown with fine dark streaks", + "breast: pale brown with fine dark streaks", + "crown: dark brown with lighter streaks", + "forehead: light brown with fine dark markings", + "eyes: large and dark, adapted for night vision", + "legs: short and slender, dark brown", + "wings: long and pointed, dark brown with light streaks", + "nape: light brown with fine dark streaks", + "tail: dark brown with white bars, slightly forked", + "throat: light beige with fine dark markings" + ], + "least pauraque": [ + "back: brownish-gray mottled plumage", + "beak: small, black, and pointed", + "belly: pale buff mixed with gray markings", + "breast: grayish-brown, streaked with white", + "crown: brownish-gray with dark streaks", + "forehead: lighter gray-brown, blending into the crown", + "eyes: large, dark, with an amber hue", + "legs: short, reddish-brown, with scaly texture", + "wings: long, brownish-gray with black and white patterns", + "nape: grayish-brown with darker streaks", + "tail: long, reddish-brown with black and white barring", + "throat: pale buff with light streaks" + ], + "least pygmy owl": [ + "back: petite, greenish-brown feathers", + "beak: tiny, yellowish, sharp", + "belly: light gray with white streaks", + "breast: grayish-brown, dense plumage", + "crown: greenish-brown, round head", + "forehead: tiny, blending into crown", + "eyes: large, yellow, intimidating", + "legs: short, yellow, strong", + "wings: rounded, greenish-brown with white spots", + "nape: neck area with greenish-brown feathers", + "tail: short, greenish-brown with white bars", + "throat: small, light gray with white streaks" + ], + "least seedsnipe": [ + "back: brownish-gray with mottled pattern", + "beak: short, stout, and conical", + "belly: white or pale gray", + "breast: light gray-brown with fine barring", + "crown: brown with fine black streaks", + "forehead: pale gray-brown with faint streaks", + "eyes: dark brown, encircled by a pale eye-ring", + "legs: yellowish or pale gray, slender", + "wings: short and rounded, with brown and white markings", + "nape: gray-brown with fine black streaks", + "tail: short and squared, brown with white outer feathers", + "throat: buffy-white with light gray barring" + ], + "least storm petrel": [ + "back: dark grey-brown plumage", + "beak: small, black, and slender", + "belly: light grey or whitish hue", + "breast: greyish-brown feathers", + "crown: dark, grey-brown feathers", + "forehead: greyish-brown with a slightly darker tint", + "eyes: small, dark, and well-camouflaged", + "legs: long, black, and thin", + "wings: dark grey-brown with a white bar in the middle", + "nape: greyish-brown with a subtle dark line", + "tail: grey-brown, deeply forked", + "throat: pale grey or white with light grey-brown streaks" + ], + "leconte sparrow": [ + "back: streaked with reddish-brown and gray, blending with surrounding habitat", + "beak: small, cone-shaped, and pale pinkish-gray", + "belly: off-white with faint streaks or spots, providing camouflage", + "breast: buffy brown with dark streaks, enhancing its ground-dwelling appearance", + "crown: reddish-brown with a central gray stripe, adding contrast", + "forehead: pale gray with fine white lines, helping identify the species", + "eyes: dark, surrounded by a faint eye-ring, for better vision in dim habitats", + "legs: slender and pinkish-gray, supporting a ground-dwelling lifestyle", + "wings: short and rounded with distinct reddish-brown markings, providing agility", + "nape: reddish-brown with a central gray stripe, similar to the crown", + "tail: short and notched with dark barring, aiding in quick maneuvers", + "throat: off-white with dark streaks, continuing down from the breast" + ], + "leconte thrasher": [ + "back: pale grayish-brown with streaks", + "beak: long, curved, and light gray", + "belly: creamy white with subtle spots", + "breast: whitish-gray with slight streaks", + "crown: grayish-brown with a slight crest", + "forehead: smooth and grayish-brown", + "eyes: dark brown with a faint white eye-ring", + "legs: long and grayish-blue", + "wings: pale grayish-brown with bold, dark markings", + "nape: smooth and grayish-brown", + "tail: long, grayish-brown with dark barring", + "throat: pale gray with faint streaks" + ], + "legge hawk eagle": [ + "back: dark brown dense feathers", + "beak: strong, hooked, blackish gray", + "belly: lighter brown with fine, black streaks", + "breast: reddish-brown, mottled with white tips", + "crown: dark brown and slightly raised", + "forehead: lighter brown with black streaks", + "eyes: piercing, golden-yellow", + "legs: strong, feathered, yellow talons", + "wings: broad, dark brown with broad bars", + "nape: dark brown, dense feathers", + "tail: long, banded, dark brown and white", + "throat: lighter brown with faint streaks" + ], + "lemon dove": [ + "back: pale brown, smooth feathers", + "beak: short, curved, light pinkish-brown", + "belly: pale buff, soft plumage", + "breast: creamy-buff with light pink blush", + "crown: soft grayish-brown with fine streaks", + "forehead: buff-tinged gray", + "eyes: dark brown with pale eyering", + "legs: pinkish, thin and delicate", + "wings: pale brown with light grayish markings", + "nape: grayish-brown, streaked with white", + "tail: pale brown, slightly pointed feathers", + "throat: light buff with subtle streaks" + ], + "lemon bellied crombec": [ + "back: olive-green feathers", + "beak: small, thin, and pointed", + "belly: bright lemon-yellow hue", + "breast: pale yellow feathers", + "crown: plain greyish-brown", + "forehead: slightly paler brown", + "eyes: small, black, alert", + "legs: thin, long, grey", + "wings: short, rounded, brown", + "nape: grey-brown feathers", + "tail: short, fan-shaped", + "throat: pale yellow plumage" + ], + "lemon bellied flycatcher": [ + "back: olive green with slight greyish hues", + "beak: thin, black, and slightly curved", + "belly: vibrant lemon yellow", + "breast: light yellow with faded streaks", + "crown: bright olive green", + "forehead: pale yellow with slight green tinge", + "eyes: small, dark, beady eyes", + "legs: slender, grey-black and delicate", + "wings: olive green with faint yellow patches", + "nape: olive green with greyish undertones", + "tail: long, greyish-green with white tips", + "throat: yellow with fine dark streaks" + ], + "lemon bellied white eye": [ + "back: olive-green feathers", + "beak: slender, curved black beak", + "belly: vibrant lemon-yellow hue", + "breast: white blending into lemon-yellow", + "crown: olive-green with slight yellow tinge", + "forehead: white feathers blending into green", + "eyes: piercing, dark surrounded by white eye-ring", + "legs: pale grey and slender", + "wings: olive-green with minimal white markings", + "nape: olive-green with a hint of yellow", + "tail: greenish hue with white-tipped feathers", + "throat: white merging into yellow breast" + ], + "lemon breasted seedeater": [ + "back: vibrant green feathers", + "beak: small, pointed, grayish-black", + "belly: bright yellow feathers", + "breast: lemon-yellow plumage", + "crown: dark olive-green", + "forehead: charcoal black feathers", + "eyes: beady black, surrounded by faint white rings", + "legs: slender grayish-blue", + "wings: greenish-brown with hints of yellow", + "nape: olive-green with subtle yellow streaks", + "tail: brownish-black, slightly forked", + "throat: bright yellow feathers" + ], + "lemon browed flycatcher": [ + "back: bright olive-green with tinges of yellow", + "beak: short, sharp, and black", + "belly: vibrant yellow with some white mix", + "breast: bold yellow with subtle olive tones", + "crown: intense lemon-yellow stripe bordered by black", + "forehead: striking patch of lemon-yellow", + "eyes: small, round, and dark", + "legs: slender and black", + "wings: medium length, olive-green with black accents", + "nape: olive-green with a hint of yellow", + "tail: long and olive-green with black edges", + "throat: pale yellow, blending into the breast" + ], + "lemon chested greenlet": [ + "back: vibrant green feathers", + "beak: slender, pointed black", + "belly: soft lemon yellow", + "breast: bright lemon shade", + "crown: rich green plumage", + "forehead: green with slight yellow tint", + "eyes: small, black, alert", + "legs: sturdy with dark gray claws", + "wings: green with lighter underside, well-defined", + "nape: smooth green transitioning to lemon", + "tail: green with elongated yellow-edged feathers", + "throat: light lemon-yellow color" + ], + "lemon rumped warbler": [ + "back: olive-green with a slight yellowish tinge", + "beak: slender and pointed, black-brown", + "belly: pale yellowish-white", + "breast: light yellow with faint streaks", + "crown: bright yellow-green with a bluish tint", + "forehead: vibrant orange-yellow stripe", + "eyes: dark with a thin white eye-ring", + "legs: pale flesh-toned with strong claws", + "wings: dark greenish-gray with yellowish edging", + "nape: brilliant yellow with contrasting dark eyestripe", + "tail: dark greenish-black with white outer tips", + "throat: bright yellow with a slight orange hue" + ], + "lemon spectacled tanager": [ + "back: bright yellow with greenish tinge", + "beak: short and stout, black in color", + "belly: vibrant yellow hue", + "breast: rich yellow with a slight orange tone", + "crown: deep black with a hint of blue", + "forehead: striking lemon-yellow", + "eyes: small and black, encircled by yellow spectacles", + "legs: slender and gray", + "wings: greenish-blue with black edges", + "nape: black, blending into the yellow back", + "tail: long and black, with greenish-blue outer feathers", + "throat: bright lemon-yellow, contrasting with black breast" + ], + "lemon throated barbet": [ + "back: vibrant green plumage", + "beak: stout, ivory bill", + "belly: pale yellow feathers", + "breast: bright yellow underparts", + "crown: red-capped head", + "forehead: bold crimson hue", + "eyes: dark, beady gaze", + "legs: sturdy grey limbs", + "wings: green, strong flight feathers", + "nape: green, with a tinge of red", + "tail: short, green, squared-off", + "throat: lemon-yellow coloration" + ], + "lemon throated leaf warbler": [ + "back: olive-green upperparts", + "beak: thin, pointed, and dark", + "belly: white with pale yellow undertones", + "breast: white with light yellow hues", + "crown: olive-green top with a yellow stripe", + "forehead: bright yellow with a hint of olive-green", + "eyes: dark, round, and small", + "legs: pale and slender with sharp claws", + "wings: olive-green to blend with its environment", + "nape: olive-green with lighter feathers", + "tail: long and pointed, greenish-brown", + "throat: vibrant lemon-yellow, distinctive" + ], + "lesser antillean bullfinch": [ + "back: dark grey feathers", + "beak: short, robust, black", + "belly: light grey coloration", + "breast: grey plumage", + "crown: blackish cap", + "forehead: sleek black feathers", + "eyes: dark, bead-like", + "legs: thin, black", + "wings: grey, short and rounded", + "nape: grey with darker feather tips", + "tail: dark, forked structure", + "throat: slightly lighter grey than breast" + ], + "lesser antillean flycatcher": [ + "back: olive-green with a slight sheen", + "beak: small, pointy, and black", + "belly: pale yellow with faint streaks", + "breast: light yellow fading into white", + "crown: bright yellow with a distinct crest", + "forehead: olive-green blending into the crown", + "eyes: dark and round with a thin white eye-ring", + "legs: slender, grey, and sturdy", + "wings: olive-green with faint wing bars", + "nape: olive-green with a subtle dark stripe", + "tail: dark and moderately long with white outer feathers", + "throat: white leading into the breast" + ], + "lesser antillean pewee": [ + "back: olive-brown with slight greenish tinge", + "beak: thin, angled, and grayish-black", + "belly: pale yellow with faint streaks", + "breast: yellowish-olive with light streaking", + "crown: olive-brown with faint grayish patches", + "forehead: slightly lighter, grayish-brown", + "eyes: dark brown with pale eye-ring", + "legs: dull grayish-brown with thin toes", + "wings: olive-brown with faint wing bars", + "nape: olive-brown with subtle streaks", + "tail: slightly forked, olive-brown with faint white edges", + "throat: light yellow with very faint streaks" + ], + "lesser antillean saltator": [ + "back: olive-green upper body", + "beak: short, stout, conical, blackish", + "belly: yellow to olive-yellow underbody", + "breast: olive-gray upper breast, unmarked", + "crown: bluish-gray head, slight crest", + "forehead: olive-gray, blending with crown", + "eyes: dark, encircled by pale eyering", + "legs: strong, dark gray", + "wings: olive-green, short, rounded", + "nape: olive-gray, continuous with back", + "tail: olive-green, moderately long, dark banding", + "throat: white, clearly demarcated" + ], + "lesser antillean swift": [ + "back: dark brown to black feathers", + "beak: short and slightly curved", + "belly: grayish-white coloration", + "breast: grayish-brown shade, lighter than back", + "crown: dark brown with slightly glossier feathers", + "forehead: narrow grayish-white band", + "eyes: small and dark-colored", + "legs: short, featherless with dark claws", + "wings: long, slender with dark brown feathers", + "nape: dark brown flowing into the crown", + "tail: short, square-shaped with dark brown feathers", + "throat: grayish-white, merging with the belly color" + ], + "lesser antillean tanager": [ + "back: rich green with a hint of blue", + "beak: short and stout, grayish color", + "belly: vibrant orange-yellow", + "breast: bright yellow with greenish flanks", + "crown: brilliant green-blue", + "forehead: vivid blue-green", + "eyes: dark with a pale eye-ring", + "legs: grayish-black, fairly short", + "wings: greenish-blue with bold yellow edging", + "nape: bright green-blue, like the crown", + "tail: shiny green-blue with yellow tips", + "throat: brilliant yellow-orange" + ], + "lesser bird of paradise": [ + "back: colorful, shimmering feathers", + "beak: black, sharp-edged, hooked", + "belly: pale yellow, soft plumage", + "breast: bright yellow-green, vibrant plumage", + "crown: black, velvety feathers", + "forehead: red-orange plumes, iridescent", + "eyes: dark, piercing gaze", + "legs: slender, grayish-black", + "wings: long, dark, curved feathers", + "nape: brilliant, greenish-blue sheen", + "tail: elongated, wire-like, adorned with black feathers", + "throat: white, slightly tufted feathers" + ], + "lesser black coucal": [ + "back: dark brown with iridescent sheen", + "beak: short, sharp, black", + "belly: deep black feathers", + "breast: black with hint of glossy purple", + "crown: rich dark brown with iridescent highlights", + "forehead: dark brown, smooth feathers", + "eyes: round, dark, and alert", + "legs: long, slender, dark gray", + "wings: black with purple sheen, wide shape", + "nape: dark brown, iridescent feathers", + "tail: long, black with a purple shimmer", + "throat: black, slightly lighter than belly" + ], + "lesser black backed gull": [ + "back: light grey feathers", + "beak: yellow with red spot", + "belly: white underside", + "breast: white plumage", + "crown: grey head feathers", + "forehead: smooth grey feathers", + "eyes: pale yellow with black pupil", + "legs: yellow with webbed feet", + "wings: grey with black tips", + "nape: slightly darker grey feathers", + "tail: white with black band", + "throat: white, sleek plumage" + ], + "lesser blue eared starling": [ + "back: glossy dark blue feathers", + "beak: sharp, black curve", + "belly: vibrant blue shade", + "breast: shimmering blue hue", + "crown: deep blue crested feathers", + "forehead: smooth, blue metallic plumage", + "eyes: sharp, black piercing gaze", + "legs: thin, dark sturdy limbs", + "wings: radiant blue with elongate feathers", + "nape: iridescent blue neck", + "tail: long, majestic blue feathers", + "throat: shiny blue underfeathers" + ], + "lesser bristlebill": [ + "back: olive-green, slightly darker upper", + "beak: short, slightly curved, blackish", + "belly: buff-white, unmarked underparts", + "breast: pale yellow, well-defined border", + "crown: dark olive-green, inconspicuous crest", + "forehead: grayish-white, thin bristles", + "eyes: dark brown, encircled by grayish-white feathers", + "legs: long, slender, pale pinkish-gray", + "wings: broad, olive-green with blue-black flight feathers", + "nape: olive-green, connecting to the back", + "tail: long, blue-black central feathers, olive-green edges", + "throat: buff-white, slightly lighter than breast" + ], + "lesser coucal": [ + "back: dark, glossy blackish-brown feathers", + "beak: short, slightly curved black beak", + "belly: creamy-white with black streaks", + "breast: rufous-brown, thickly streaked plumage", + "crown: blackish feathers with coppery sheen", + "forehead: blackish-brown feathers", + "eyes: deep brown with prominent white eyering", + "legs: long, bluish-grey, with sharp claws", + "wings: rounded, dark brown edged with rufous", + "nape: dark, with metallic greenish-black feathers", + "tail: long and graduated, blackish-brown with rufous tips", + "throat: buffy-white streaking on blackish background" + ], + "lesser crested tern": [ + "back: sleek gray feathers", + "beak: sharp, long, and orange", + "belly: clean white plumage", + "breast: smooth white feathers", + "crown: black with a crest", + "forehead: striking black cap", + "eyes: intense, dark gaze", + "legs: slender, orange-red limbs", + "wings: strong, long, and gray", + "nape: black crest continuation", + "tail: forked and stretching out", + "throat: soft white feathering" + ], + "lesser cuckooshrike": [ + "back: bluish-gray plumage", + "beak: short, hooked, pale gray", + "belly: white with fine grayish streaks", + "breast: pale gray or grayish-white", + "crown: ash-gray with darker streaks", + "forehead: narrow bluish-gray band", + "eyes: deep chestnut-brown", + "legs: long, slender, yellowish", + "wings: dark gray with white wingbars", + "nape: grayish-blue or bluish-gray", + "tail: long, squared-off, dark gray with white edges", + "throat: white with faint gray streaks" + ], + "lesser elaenia": [ + "back: olive-green upper body feathers", + "beak: short, thin, and black", + "belly: pale-white with subtle streaks", + "breast: light grayish-brown", + "crown: olive-toned with a pale-yellow crest", + "forehead: grayish-white and slightly angled", + "eyes: dark, small, and expressive", + "legs: slender with blackish-gray color", + "wings: olive-green with white wing bars", + "nape: olive-green feathers transitioning to gray", + "tail: dark and forked with white outer edges", + "throat: pale grayish-white with a sleek look" + ], + "lesser fish eagle": [ + "back: dense brown feathers covering upper body", + "beak: strong, hooked, yellow-tipped black beak", + "belly: lightly streaked pale-brownish and white feathers", + "breast: white feathers with brown streaks", + "crown: dark brown feathers with a slight crest", + "forehead: dark brown feathers, near seamlessly blending with the crown", + "eyes: piercing yellow irises with dark pupils", + "legs: thick yellow scaly legs with formidable black talons", + "wings: wide, brown wings with white patches at the base", + "nape: rich brown feathers transitioning from the crown", + "tail: long, dark brown feathers with white bands near the tips", + "throat: white-streaked brown feathers leading from the lower beak towards the breast" + ], + "lesser flamingo": [ + "back: light pink feathers with a smooth curve", + "beak: downward-curved, black tip with pink base", + "belly: pale pink to white, soft and round", + "breast: vibrant pink, full and rounded", + "crown: slightly darker pink, rounded top", + "forehead: lighter pink, slightly raised above the eyes", + "eyes: medium-sized, dark with a thin white outline", + "legs: long, thin, pink to red with webbed feet", + "wings: pink with black edges, long and tapered", + "nape: pale pink to white, slightly curved", + "tail: short, pink with crisp black tips", + "throat: lighter pink, slender leading to the breast" + ], + "lesser florican": [ + "back: earthy brown with black streaks", + "beak: short and sharp, yellowish-brown", + "belly: white with fine black barring", + "breast: black with white spots and streaks", + "crown: dark blackish-brown", + "forehead: narrow white crest", + "eyes: small with dark brown irises", + "legs: long, slender, and yellowish", + "wings: brownish-black with white spotting", + "nape: black with fine white streaks", + "tail: long and slender, black with white edges", + "throat: white with black feathers" + ], + "lesser frigatebird": [ + "back: sleek, dark-feathered surface", + "beak: long, hooked, grayish shade", + "belly: slim, white feathers", + "breast: white, smooth-feathered contour", + "crown: glossy black, even surface", + "forehead: black, narrow-sloping area", + "eyes: dark, alert, expressive orbs", + "legs: lean, powerful, with webbed feet", + "wings: elongated, gracefully tapered", + "nape: slender black neck region", + "tail: lengthy, sharp, and forked", + "throat: puffed red, inflatable gular sac" + ], + "lesser grass finch": [ + "back: brown feathers with streaky patterns", + "beak: small, conical, and pale pinkish-gray", + "belly: whitish with light brown streaks", + "breast: buff-colored with dark streaks", + "crown: reddish-brown with gray edges", + "forehead: reddish-brown and smooth", + "eyes: dark and rounded, surrounded by thin white eyering", + "legs: pale pinkish-gray, slender and strong", + "wings: brown with black and white markings", + "nape: reddish-brown fading to gray", + "tail: brown with white outer edges, long and tapered", + "throat: buff-white with some streaking" + ], + "lesser gray shrike": [ + "back: light gray with subtle streaks", + "beak: black, short, and hook-tipped", + "belly: pale white with faint grayish markings", + "breast: clean white with subtle gray undertones", + "crown: ash gray with a faint crest", + "forehead: light gray, blending with the crown", + "eyes: black and beady, with a white eyebrow-like curve", + "legs: thin, dark gray, with sharp claws", + "wings: gray and black feathers with white patches", + "nape: light gray, seamlessly transitioning from the crown", + "tail: long, black, with white outer feathers and squared tip", + "throat: pure white, contrasting with the gray head" + ], + "lesser green leafbird": [ + "back: vibrant green with slight golden tinge", + "beak: slender, curved, and black", + "belly: yellowish-green with hints of black", + "breast: bright yellow-green", + "crown: vivid green with blue and black streaks", + "forehead: bright golden and green mix", + "eyes: small, black, and bright", + "legs: greyish-brown and thin", + "wings: green with blue-black feather tips", + "nape: green with yellow blending", + "tail: long, green, and slightly forked", + "throat: bright yellow with blue streaks" + ], + "lesser greenlet": [ + "back: olive-green feathers", + "beak: small, pointed, dark gray", + "belly: pale yellow underparts", + "breast: light greenish-yellow feathers", + "crown: olive-green with faint streaks", + "forehead: pale olive-green", + "eyes: dark with pale eye-ring", + "legs: dark gray, slender", + "wings: olive-green with faint wing-bars", + "nape: olive-green with faint streaks", + "tail: olive-green with dark banding", + "throat: yellowish-white shading" + ], + "lesser ground cuckoo": [ + "back: brownish-grey feathers with subtle barring", + "beak: long, slim, and slightly curved black beak", + "belly: light cream with faint black barring", + "breast: greyish-brown feathers with horizontal barring", + "crown: dark grey with fine black streaks", + "forehead: greyish-white with fine black streaks", + "eyes: dark brown, framed by black feather markings", + "legs: long, greyish-blue with strong talons", + "wings: rounded, dark brown with white edges on some feathers", + "nape: dark grey with fine black streaks", + "tail: long, black, and white feathers with alternating bands", + "throat: greyish-white with faint black streaks" + ], + "lesser ground robin": [ + "back: brownish-grey feathers", + "beak: short, sharp, and black", + "belly: light grey with small streaks", + "breast: reddish-orange hue", + "crown: shaded dark grey to black", + "forehead: contrasting light grey", + "eyes: small, round, and black", + "legs: thin, long, and dark brown", + "wings: grey with darker brown edges", + "nape: subtle grey feathers", + "tail: short and rectangular with grey and brown tones", + "throat: light grey, blending with the breast color" + ], + "lesser honeyguide": [ + "back: grayish-brown with subtle markings", + "beak: short, pointed, and dark in color", + "belly: whitish-gray with fine dark spots", + "breast: grayish-brown with small dark markings", + "crown: dull gray-brown with faint streaks", + "forehead: similar to crown, dull gray-brown", + "eyes: small, dark and well-defined", + "legs: sturdy and dark-colored", + "wings: grayish-brown with faint bars and markings", + "nape: grayish-brown with slight streaks", + "tail: squared and dark, with white outer feather tips", + "throat: pale gray with fine dark streaks" + ], + "lesser hoopoe lark": [ + "back: light brown with blackish streaks", + "beak: slender and down-curved, black", + "belly: whitish or pale buff with sparse dark spotting", + "breast: pale buff with darker streaks", + "crown: light brown with fine blackish streaks, small crest", + "forehead: light brown and streaked, like crown", + "eyes: dark, encircled by white eyering", + "legs: long and slender, dull pink or grayish", + "wings: brownish with black and white markings, pointed", + "nape: light brown with fine blackish streaks, like crown", + "tail: brownish with white outer feathers, elongated central feathers", + "throat: whitish or pale buff, unmarked" + ], + "lesser horned owl": [ + "back: brown with white speckles and streaks", + "beak: sharp, hooked, yellowish", + "belly: buff-colored with dark brown vertical barring", + "breast: pale buff with dark brown horizontal streaks", + "crown: rounded, brown with white streaks and small ear tufts", + "forehead: pale buff with small brown streaks", + "eyes: large, piercing yellow with black pupils", + "legs: feathered, buff-colored with brown barring", + "wings: brown with white bars, large broad feather tips", + "nape: brownish with pale edges on feathers", + "tail: brown with several narrow white bars", + "throat: buff with dark brown streaks" + ], + "lesser hornero": [ + "back: brownish-grey feathers", + "beak: short and straight, pale in color", + "belly: buff-colored", + "breast: brownish-white", + "crown: dark brown streaks", + "forehead: brownish-grey", + "eyes: small and black", + "legs: pale pinkish-grey", + "wings: brown with darker streaks", + "nape: brownish-grey with dark streaks", + "tail: short, brown", + "throat: pale, creamy white" + ], + "lesser jacana": [ + "back: brownish-black plumage with light streaks", + "beak: elongated, slightly curved, and dark-colored", + "belly: white or pale gray with light barring", + "breast: orangish-brown with barring pattern", + "crown: dark with light streaks, slight crest", + "forehead: black feathers meeting at a point", + "eyes: large and dark, with a thin white eye-ring", + "legs: long and slender, with greenish-yellow color", + "wings: black with white spots and a deep orange patch", + "nape: brownish-black feathers with light streaks", + "tail: short and dark with white bands", + "throat: white or pale gray with light barring" + ], + "lesser kestrel": [ + "back: grayish-blue feathers with dark streaks", + "beak: short, hooked, black color", + "belly: pale creamy-white with light streaks", + "breast: white with dark brown spots", + "crown: gray-blue with dark streaks", + "forehead: pale grayish-blue", + "eyes: large, dark brown with yellow eyering", + "legs: yellow-orange with sharp claws", + "wings: grayish-blue with black spotted upper wings", + "nape: grayish-blue with dark streaks", + "tail: long, gray-blue with black terminal band", + "throat: white with light brown streaks" + ], + "lesser kiskadee": [ + "back: olive-brown with streaks", + "beak: strong, black, hooked", + "belly: bright yellow", + "breast: yellow with faint streaks", + "crown: black with a concealed yellow stripe", + "forehead: white to pale yellow", + "eyes: dark brown with white eyestripe", + "legs: long, black or grey", + "wings: brownish-black with white tips", + "nape: olive-brown, lighter than back", + "tail: long, dark brown with white outer feathers", + "throat: white or pale yellow" + ], + "lesser masked owl": [ + "back: streaked brownish feathers", + "beak: sharp, curved, blackish", + "belly: white with brown speckles", + "breast: creamy white with fine brown barring", + "crown: pale brown with darker streaks", + "forehead: streaked brownish-gray", + "eyes: dark, piercing, surrounded by off-white mask", + "legs: feathered with light gray barring", + "wings: pale brown with darker brown bars and bands", + "nape: streaked brown with lighter, buff-colored edges", + "tail: long, fan-shaped, barred with varying shades of brown", + "throat: creamy white, with light streaks on the sides" + ], + "lesser masked weaver": [ + "back: olive-yellow feathers", + "beak: black, conical shape", + "belly: bright yellow plumage", + "breast: vibrant yellow feathers", + "crown: black, slightly raised", + "forehead: intense black feathers", + "eyes: black, surrounded by golden yellow", + "legs: dull pink color, strong", + "wings: black with yellow highlights", + "nape: olive-yellow plumage", + "tail: black and yellow intermixed feathers", + "throat: bright golden-yellow color" + ], + "lesser melampitta": [ + "back: dark, bluish-black plumage", + "beak: short, black, and slightly curved", + "belly: deep black", + "breast: dark, bluish-black feathers", + "crown: deep black with a slight sheen", + "forehead: similar to crown, deep black", + "eyes: small, dark, and round", + "legs: dark gray/black, slender, and sturdy", + "wings: deep black with bluish-black sheen, relatively broad", + "nape: deep black, connects crown to back", + "tail: straight, short, and black", + "throat: deep black, sometimes with slightly paler feathers" + ], + "lesser moorhen": [ + "back: dark brownish-black feathers", + "beak: greenish-yellow and stout", + "belly: dark slate grey with faint barring", + "breast: slate grey fading to white flanks", + "crown: deep, dark black coloration", + "forehead: black plumage", + "eyes: bright red with black pupils", + "legs: long, greenish-yellow with long toes", + "wings: dark, greenish-black with faint white edges", + "nape: black merging with the crown", + "tail: short, dark, and flicked upwards", + "throat: white, contrasting with the dark breast" + ], + "lesser necklaced laughingthrush": [ + "back: olive-brown with black streaks", + "beak: black, slightly curved", + "belly: white with faint black markings", + "breast: white with black necklace-like band", + "crown: gray with faint black streaks", + "forehead: gray with black speckles", + "eyes: round and dark", + "legs: sturdy and grayish-pink", + "wings: brown with black wingtips", + "nape: grayish-white", + "tail: long and brown with black markings", + "throat: white with black streaks" + ], + "lesser noddy": [ + "back: dark grey to black feathers", + "beak: small, pointed, black", + "belly: pale grey, light feathers", + "breast: light grey plumage", + "crown: blackish-grey feathers", + "forehead: grey shading to black", + "eyes: dark, rounded, and beady", + "legs: short, dark grey", + "wings: long, blackish-grey, pointed", + "nape: pale grey feather pattern", + "tail: black, forked, elongated", + "throat: light grey shading to black" + ], + "lesser nothura": [ + "back: brownish with black streaks", + "beak: short and stout, light grayish", + "belly: light beige with black speckles", + "breast: buff-colored with dark spots", + "crown: dark brown with pale edges", + "forehead: pale brown, blending into crown", + "eyes: dark and round, surrounded by beige", + "legs: slender, grayish-brown", + "wings: brown with black and white barred pattern", + "nape: dark brown with beige markings", + "tail: short and rounded, brown with black bars", + "throat: buff-colored, blending into breast" + ], + "lesser prairie chicken": [ + "back: brown and tan feathers with striped pattern", + "beak: short, stout, and slightly curved", + "belly: buff-colored with brownish barring", + "breast: light brown with dark brown barring", + "crown: reddish-brown with central white stripe", + "forehead: reddish-brown with white markings", + "eyes: round and dark", + "legs: feathered, grayish-brown and sturdy", + "wings: brown with tan, white, and black markings", + "nape: buff with dark barring", + "tail: elongated, central two feathers barred and others plain", + "throat: white with brown border, males have distinctive orange air sacs" + ], + "lesser racket tailed drongo": [ + "back: dark iridescent black feathers", + "beak: strong and hooked, black color", + "belly: slightly paler black feathers", + "breast: dark black plumage", + "crown: glossy black feathers with slight crest", + "forehead: smooth black feathers", + "eyes: dark brown, circled with black feathers", + "legs: strong, black, and slender", + "wings: long, dark, and pointed with black feathers", + "nape: black feathers connecting to the back", + "tail: elongated, black, with racket-shaped feathers at tips", + "throat: black feathers blending into the breast" + ], + "lesser redpoll": [ + "back: streaked brown with hints of red", + "beak: small, pointed, pale-yellowish", + "belly: white with grayish streaks", + "breast: rosy red with streaks", + "crown: vibrant red feathers", + "forehead: bright red patch", + "eyes: small and dark-colored", + "legs: slender light brown", + "wings: dusky brown with white wing-bars", + "nape: streaked brown with red tinges", + "tail: dark brown with white edges", + "throat: whitish with streaks" + ], + "lesser rhea": [ + "back: light brown with white streaks", + "beak: short, curved, and grey", + "belly: soft and pale grey", + "breast: white with brownish tint", + "crown: light brown with faint streaks", + "forehead: light brown and smooth", + "eyes: dark, almond-shaped, and alert", + "legs: long, slender, and greyish-blue", + "wings: stubby and rounded, with flightless appearance", + "nape: delicately feathered and light brown", + "tail: short, fan-like, with white and brown alternating feathers", + "throat: smooth, pale, and slender" + ], + "lesser roadrunner": [ + "back: brownish and streaked with white markings", + "beak: long, straight, and dark-colored", + "belly: pale gray with black streaking", + "breast: light gray with faint spotting", + "crown: brown with a crest of feathers", + "forehead: buff-colored with a white eye-stripe", + "eyes: large and dark, encircled by a white ring", + "legs: long, slender, and grayish-blue", + "wings: dark brown with white patches on the underside", + "nape: brown with a prominent white stripe", + "tail: long and dark brown with white-tipped feathers", + "throat: light gray with faint dark streaks" + ], + "lesser sand plover": [ + "back: grayish-brown with fine, dark streaks", + "beak: short, stout, and black", + "belly: clean and white", + "breast: white with a hint of buff-colored feathers", + "crown: brownish-gray with some dark streaks", + "forehead: white with a faint, dark eyebrow stripe", + "eyes: dark and beady, surrounded by white eye-ring", + "legs: long, thin, and pale yellow", + "wings: grayish-brown with white wing-bars", + "nape: brownish-gray, blending with the crown", + "tail: short, white, and slightly forked, with dark outer feathers", + "throat: white, extending down to the breast" + ], + "lesser seedcracker": [ + "back: olive-brown with dark streaks", + "beak: black, strong, and conical", + "belly: white with brown markings", + "breast: pale brown with subtle dark streaks", + "crown: chestnut, bordered by thin black band", + "forehead: chestnut, continuous with the crown", + "eyes: black with thin white eye-ring", + "legs: dark gray, medium length", + "wings: olive-brown with black streaks, rounded tips", + "nape: chestnut-colored, continuous with the crown", + "tail: olive-brown with dark streaks, moderately long", + "throat: pale throat with thin brown streaks" + ], + "lesser shortwing": [ + "back: blue-grayish feathers", + "beak: short and sharp", + "belly: pale gray", + "breast: gray-blue", + "crown: dark blue fading to gray", + "forehead: light navy blue", + "eyes: black beads", + "legs: thin stump-like", + "wings: rounded, slate blue", + "nape: bluish-gray plumage", + "tail: dark, short blue fan", + "throat: pale gray-white" + ], + "lesser shrike tyrant": [ + "back: streaked grayish-brown feathering", + "beak: robust, black, and hooked", + "belly: pale white or yellowish hue", + "breast: soft white with gray-brown streaks", + "crown: dark gray with a slight crest", + "forehead: light gray, blending into the crown", + "eyes: bold black with a white eye-ring", + "legs: long, slender, and black", + "wings: dark grayish-brown with white patches", + "nape: grayish-brown, connecting with the crown", + "tail: long, black, with white outer feathers", + "throat: bright white, contrasting with streaked breast" + ], + "lesser spotted eagle": [ + "back: brownish-grey plumage", + "beak: sharp, hooked, blackish-grey", + "belly: pale white with brown spots", + "breast: cream with brown streaks", + "crown: dark brown feathers", + "forehead: light brown merging to dark", + "eyes: piercing yellow", + "legs: strong, yellow, featherless", + "wings: brown with white spots, broad", + "nape: brown with a slightly lighter shade", + "tail: brown, barred with dark bands", + "throat: cream-colored with brownish tint" + ], + "lesser spotted woodpecker": [ + "back: black and white horizontal stripes", + "beak: sharp, pointed, chisel-like", + "belly: white, unmarked", + "breast: white, without streaks", + "crown: red for males, white for females", + "forehead: whitish, with black central stripe", + "eyes: small, black, in white surrounding", + "legs: short, strong, gray", + "wings: black, with white oval-shaped spots", + "nape: white and black striped", + "tail: strongly barred, black and white, rigid for supporting while perching", + "throat: white, with black \"zigzag\" pattern" + ], + "lesser striped swallow": [ + "back: light grey-blue feathers", + "beak: slender and pointed black", + "belly: pale grey-white underfeathers", + "breast: light orange-reddish hue", + "crown: slightly crested, grey-blue", + "forehead: grey-blue merging into the crown", + "eyes: small, dark, and expressive", + "legs: short, black, and slender", + "wings: long, pointy, grey-blue feathers", + "nape: grey-blue feathers meeting the back", + "tail: elongated outer feathers, forked shape", + "throat: light orange-reddish hue" + ], + "lesser swallow tailed swift": [ + "back: sleek and streamlined blackish-brown feathers", + "beak: small, flat, sharp-edged, and dark", + "belly: lighter grayish-brown feathers", + "breast: smooth grayish-brown plumage", + "crown: blackish with a slightly glossy appearance", + "forehead: flat, dark feathers above the beak", + "eyes: small, dark, and alert-looking", + "legs: slender and dark, with sharp claws", + "wings: elongated, pointed, and powerful for swift flight", + "nape: dark feathers transitioning to the crown", + "tail: forked and long for agile maneuvering", + "throat: lighter gray, contrasting with the darker head" + ], + "lesser swamp warbler": [ + "back: olive-brown with faint streaks", + "beak: long, slender, and slightly curved", + "belly: pale buff with light streaks", + "breast: creamy white with faint streaks", + "crown: dark olive-green with a narrow pale stripe", + "forehead: olive-brown, blending with the crown", + "eyes: small, dark, encircled by pale eyering", + "legs: long, slender, and pale brown-yellow", + "wings: olive-brown with faint barring patterns", + "nape: olive-green, blending with the crown", + "tail: reddish-brown, short, and slightly rounded", + "throat: pale buff with faint grey streaks" + ], + "lesser vasa parrot": [ + "back: dark grey feathered body", + "beak: charcoal grey, curved hook shape", + "belly: slightly lighter grey, soft feathers", + "breast: smooth grey feathers, sometimes with faint white patches", + "crown: dark grey, slightly raised feathered crest", + "forehead: smooth grey feathers above beak", + "eyes: dark, round with a faint white eye-ring", + "legs: strong, dark grey limbs with zygodactyl toes", + "wings: rounded, dark grey feathers with lighter edges", + "nape: grey feathers meeting at the back of the head", + "tail: long, dark grey feathers with lighter tips", + "throat: pale grey feathers, sometimes with a faint white patch" + ], + "lesser violetear": [ + "back: metallic green upperparts", + "beak: small, black, and slender", + "belly: grayish-green with a hint of blue", + "breast: vibrant greenish-blue with a violet hue", + "crown: shining greenish-blue with a violet tint", + "forehead: bright metallic green", + "eyes: dark brown with a black outline", + "legs: short, sturdy, and black", + "wings: metallic green-blue, long, and pointed", + "nape: bold green hue with violet shades", + "tail: dark iridescent blue-green with a darker shade", + "throat: striking violet-blue patch" + ], + "lesser wagtail tyrant": [ + "back: light olive-green", + "beak: thin and black", + "belly: pale yellow", + "breast: light yellow", + "crown: grayish-brown", + "forehead: whitish streak", + "eyes: dark with white eye-ring", + "legs: slender and grayish", + "wings: dark gray with brownish edging", + "nape: grayish-olive", + "tail: long and blackish", + "throat: pale yellowish white" + ], + "lesser whistling duck": [ + "back: brownish-gray feathers", + "beak: short, dark gray with a pale tip", + "belly: white with black spots", + "breast: chestnut-colored feathers", + "crown: dark brown, smooth feathers", + "forehead: slightly paler brown feathers", + "eyes: small, dark, and bead-like", + "legs: orange or yellow-toned, short", + "wings: brownish-gray with white edges", + "nape: transitions from dark brown to chestnut", + "tail: short, dark brown with pale streaks", + "throat: lighter chestnut, blending into breast" + ], + "lesser white fronted goose": [ + "back: greenish-brown with white feather edges", + "beak: stout, pinkish-orange with dark nail", + "belly: white with gray-brown undertones", + "breast: pale grayish-brown with faint white streaks", + "crown: dark brown, narrow white stripe", + "forehead: white extending to eye patches", + "eyes: dark with pale yellow eye-ring", + "legs: stubby, bright orange", + "wings: greenish-brown with curved white edges", + "nape: dark brown with white stripes", + "tail: short, brown with white upper tail coverts", + "throat: pale grayish-brown with white streaks" + ], + "lesser whitethroat": [ + "back: pale brown with a hint of gray", + "beak: short, thin, and pointed", + "belly: whitish with pale gray undertones", + "breast: light-grayish brown with faint streaks", + "crown: grayish-brown with a very narrow, darker stripe", + "forehead: light grayish-brown, blending into crown", + "eyes: black, with white eye-ring", + "legs: long, slender, and pale brown", + "wings: pale brown with contrasting darker brown feather edges", + "nape: pale brown, transitioning from crown to back", + "tail: brown with white outer tail feathers", + "throat: white, with light gray flanks" + ], + "lesser woodcreeper": [ + "back: brown and streaked feathers", + "beak: long, curved, and sharp", + "belly: pale buff to white color", + "breast: brownish with fine streaks", + "crown: reddish-brown with faint streaks", + "forehead: slightly lighter reddish-brown", + "eyes: dark brown with white eyering", + "legs: sturdy and grayish", + "wings: brown with fine barring and spots", + "nape: reddish-brown, blending into the crown", + "tail: long and straight with dark brown feathers", + "throat: pale and unstreaked" + ], + "lesser yellow headed vulture": [ + "back: dark gray-black feathers", + "beak: strong, hooked, pale gray", + "belly: lighter gray-black feathers", + "breast: gray-black plumes", + "crown: black, feathery tufts", + "forehead: bare, pale yellow skin", + "eyes: dark, piercing gaze", + "legs: long, yellow-gray, scaly", + "wings: large, gray-black, fingered tips", + "nape: black, feathery tufts", + "tail: fan-shaped, black feathers", + "throat: bare, pale yellow skin" + ], + "lesser yellownape": [ + "back: yellowish-olive with black streaks", + "beak: dark grey and stout", + "belly: whitish-grey with faint yellow tones", + "breast: light yellow with black streaks", + "crown: golden-yellow with a black crest", + "forehead: yellowish-green", + "eyes: dark brown with light grey eyerings", + "legs: greyish-blue with strong claws", + "wings: black with yellowish bars", + "nape: bright yellow with black streaks", + "tail: black with yellowish outer feathers", + "throat: pale yellow with black streaks" + ], + "lesson motmot": [ + "back: vibrant green and blue feathers", + "beak: long, slightly curved, and black", + "belly: light blue or turquoise feathers", + "breast: turquoise and green feathers with black markings", + "crown: blue or green with a black stripe", + "forehead: turquoise or green, sometimes with a black line or patch", + "eyes: dark with a white or yellow ring", + "legs: short and gray or black", + "wings: broad and rounded, multicolored with green, blue, and black feathers", + "nape: turquoise or green with black striping or markings", + "tail: long and racket-shaped, blue and black with a distinctive bare-shafted feather on each side", + "throat: light blue or green with black markings" + ], + "lesson seedeater": [ + "back: sleek, brown feathers", + "beak: short, conical shape", + "belly: pale, off-white plumage", + "breast: light brown with subtle streaks", + "crown: rich chestnut color", + "forehead: smooth, brown feathers", + "eyes: small, black, and alert", + "legs: slender and grayish-blue", + "wings: brown with white streaks", + "nape: chestnut-brown transition", + "tail: elongated, dark brown feathers", + "throat: off-white with faint streaks" + ], + "letter winged kite": [ + "back: sleek, grayish-brown", + "beak: sharp, hooked, black", + "belly: white with faint gray streaks", + "breast: pale gray with fine barring", + "crown: dark gray with a slight crest", + "forehead: light gray to white", + "eyes: bright yellow, intense gaze", + "legs: yellowish-orange, strong", + "wings: long, pointed, black with white patches", + "nape: grayish-brown, blending into back", + "tail: square, black with bold white bands", + "throat: white, blending into breast" + ], + "lettered aracari": [ + "back: vibrant green", + "beak: long, yellow-orange with black tip", + "belly: light yellow", + "breast: golden yellow", + "crown: black with greenish shine", + "forehead: greenish-black", + "eyes: dark brown, surrounded by blue skin", + "legs: blueish-gray", + "wings: green with black markings", + "nape: black, green-hued", + "tail: green with black bands", + "throat: yellow with subtle red stripe" + ], + "levaillant cisticola": [ + "back: light brown with streaks", + "beak: short and sharp", + "belly: light yellowish-brown", + "breast: pale brown with subtle markings", + "crown: streaked brown and rusty color", + "forehead: short, pale eyebrows", + "eyes: small and black", + "legs: thin and pale", + "wings: rusty brown with light edges", + "nape: warm brown with fine streaks", + "tail: short and notched", + "throat: pale cream color" + ], + "levaillant cuckoo": [ + "back: olive-green upperparts", + "beak: curved, yellowish upper bill with dark tip", + "belly: creamy white with dark barring", + "breast: olive-green with white and black streaks", + "crown: olive-green with faint streaks", + "forehead: olive-green with paler streaks", + "eyes: deep red with pale eyering", + "legs: grayish-blue with strong claws", + "wings: olive-green with white spots", + "nape: olive-green with faint streaks", + "tail: long and broad, greenish with dark bars", + "throat: creamy white with dark streaks" + ], + "levaillant woodpecker": [ + "back: vibrant green feathers with darker markings", + "beak: sturdy, chisel-shaped black beak", + "belly: creamy white with black spots", + "breast: light grayish-green with black streaks", + "crown: bright red with black borders", + "forehead: red feathers fading to black", + "eyes: dark, beady and alert", + "legs: gray and sturdy with sharp claws", + "wings: green feathers with black bars", + "nape: green fading to black", + "tail: dark green with black and white bars", + "throat: pale gray with black spots" + ], + "levant sparrowhawk": [ + "back: tawny-brown with dark streaks", + "beak: sharp, black hooked upper jaw with a yellow base", + "belly: bluish-white with brown streaks", + "breast: bluish-white with dark brown barring", + "crown: tawny-brown with fine streaks", + "forehead: bluish-white with dark streaks", + "eyes: bright yellow with a black pupil", + "legs: yellow and slender with sharp talons", + "wings: long and pointed, with brown bars on the upper side and white on the underside", + "nape: tawny-brown with fine streaks", + "tail: dark brown banded with 5-6 broader, white bands, and a squared-off tip", + "throat: bluish-white with fine dark streaks" + ], + "lewin honeyeater": [ + "back: olive-green feathers", + "beak: long, slender, and curved", + "belly: yellowish-white with light streaks", + "breast: bright yellow with dark streaks", + "crown: dark olive-green", + "forehead: yellow stripe above the eyes", + "eyes: dark, piercing gaze", + "legs: slim, gray-blue with sharp claws", + "wings: olive-green with yellow highlights", + "nape: dark green with yellow accents", + "tail: olive-green with yellow-tipped outer feathers", + "throat: bright yellow with distinct markings" + ], + "lewin rail": [ + "back: olive-brown with subtle streaks", + "beak: short, stout, and slightly curved", + "belly: pale buff with faint barring", + "breast: pale buff with fine brown streaks", + "crown: dark brown with fine white flecks", + "forehead: olive-brown, blending into the crown", + "eyes: small, dark, and alert", + "legs: sturdy and pinkish-gray", + "wings: short, rounded, and olive-brown with white streaks", + "nape: brown with faint white streaks", + "tail: short, blackish-brown with white tips", + "throat: pale buff, unmarked" + ], + "leymebamba antpitta": [ + "back: olive-brown feathers", + "beak: short, sturdy, and black", + "belly: pale yellowish-brown", + "breast: yellowish-brown with olive tinge", + "crown: olive-brown with faint streaks", + "forehead: slightly paler olive-brown", + "eyes: large, black, and prominent", + "legs: strong, long, and pinkish-brown", + "wings: rounded, olive-brown with faint barring", + "nape: olive-brown with faint streaks", + "tail: short, olive-brown with faint barring", + "throat: pale yellowish, contrasting with breast" + ], + "leyte plumed warbler": [ + "back: olive-green with darker streaks", + "beak: slender, slightly curved, dark gray", + "belly: pale yellow to off-white", + "breast: creamy yellow with olive tinges", + "crown: olive-green with fine streaks", + "forehead: pale olive to yellowish-green", + "eyes: dark brown with thin, off-white eye-ring", + "legs: long, dark gray", + "wings: olive-green with darker feather edges", + "nape: olive-green with faint streaks", + "tail: long, olive-green with dark streaks", + "throat: creamy yellow to warm white" + ], + "liben lark": [ + "back: brownish-grey feathers with subtle streaks", + "beak: slender, straight, and pale yellowish-brown", + "belly: light and creamy with fine dark streaks", + "breast: buff-colored with small brown spots", + "crown: sandy brown with faint streaks or stripes", + "forehead: light buff with thin dark lines", + "eyes: small, black, and bright", + "legs: relatively long, thin, and pale yellow-brown", + "wings: long and pointed, marked with dark brown and creamy white", + "nape: pale brown with faint streaks", + "tail: brown with white outer feathers and dark central feathers", + "throat: creamy white with some fine dark streaks" + ], + "lichtenstein sandgrouse": [ + "back: sandy brown with subtle black markings", + "beak: short and stout, with a curved tip", + "belly: white or pale buff with black bands", + "breast: brownish grey with horizontal dark bands", + "crown: sandy brown with slight black markings", + "forehead: pale grey transitioning to sandy brown", + "eyes: dark with a thin, white eye ring", + "legs: short, feathered, and grey", + "wings: brownish-grey with dark primaries and white-tipped secondaries", + "nape: sandy brown blending into the back", + "tail: short and pointed, brownish-grey with black and white bands", + "throat: pale grey with thin, black necklace-like band" + ], + "lidth jay": [ + "back: vibrant blue with white streaks", + "beak: short, black, and slightly curved", + "belly: pale gray with subtle blue tint", + "breast: vibrant blue mixed with gray hues", + "crown: bright blue crest atop the head", + "forehead: dark blue with a slight gradient", + "eyes: round, black, with a white ring around them", + "legs: slim, gray, and strong", + "wings: vivid blue with intricate white and black patterns", + "nape: rich blue with white streaks", + "tail: long, blue feathers with contrasting white tips", + "throat: soft grayish blue, blending with the breast color" + ], + "light crowned spinetail": [ + "back: brownish-grey plumage", + "beak: short, thin, and pointed", + "belly: cream-colored feathers", + "breast: light brown with faint streaks", + "crown: light rust-orange with slight crest", + "forehead: pale rust-colored", + "eyes: small, dark, and round", + "legs: slender and pinkish-grey", + "wings: greyish-brown with faint barring", + "nape: light rust-orange continuing from the crown", + "tail: long, dark brown with white tips", + "throat: pale cream-colored feathers" + ], + "light mantled albatross": [ + "back: light gray with smooth feathers", + "beak: long, hooked, pale pinkish-yellow", + "belly: white and slightly rounded", + "breast: white feathers with a soft texture", + "crown: light gray, rounded contour feathers", + "forehead: light gray with a gentle slope", + "eyes: black, round, located on the sides of the head", + "legs: short, with webbed feet, and pale pink color", + "wings: long, slender, light gray on top, and white below", + "nape: light gray, connecting crown and back feathers", + "tail: narrow, elongated, light gray feathers", + "throat: white, with a smooth appearance" + ], + "light vented bulbul": [ + "back: olive-brown feathered", + "beak: short and slightly curved", + "belly: white with faint streaks", + "breast: white and fluffy", + "crown: black with a slight crest", + "forehead: black and smooth", + "eyes: dark and round, outlined by white rings", + "legs: gray, thin, and short", + "wings: olive-brown with darker flight feathers", + "nape: olive-brown shading", + "tail: long and tapered, olive-brown with white tips", + "throat: white and unmarked" + ], + "lilac breasted roller": [ + "back: vibrant turquoise plumage", + "beak: short, black, and pointed", + "belly: soft lavender feathers", + "breast: beautifully striped with various shades of blue", + "crown: deep royal-blue head feathers", + "forehead: dark turquoise coloration", + "eyes: large, dark, and expressive", + "legs: featherless, and dark grey scaling", + "wings: distinct mix of turquoise and cobalt blue", + "nape: brilliant azure feather blending", + "tail: elongated, streaming, and violet-tipped feathers", + "throat: white base with blue band accent" + ], + "lilac crowned parrot": [ + "back: green-feathered with a slight bluish tint", + "beak: strong, curved, and light grey", + "belly: vibrant green with a slight yellow touch", + "breast: bright green with lighter hues", + "crown: lilac-pink coloration on top of the head", + "forehead: vibrant green, transitioning into the lilac crown", + "eyes: round with a white eye-ring and dark brown iris", + "legs: greyish-black with strong, gripping claws", + "wings: mainly green with blue and red highlights on the underside", + "nape: green feathers transitioning into the lilac crown", + "tail: long, green feathers with red and blue undersides", + "throat: bright green with a slight yellowish hue" + ], + "lilac tailed parrotlet": [ + "back: vibrant green feathers", + "beak: short, curved, orange", + "belly: light blueish-green feathers", + "breast: soft blue plumage", + "crown: emerald green feathers", + "forehead: bright green merging with the crown", + "eyes: black with a white eye-ring", + "legs: light grey, strong and slender", + "wings: green with touches of purple-blue at tips", + "nape: green with hints of lilac bluish color", + "tail: long, lilac-blue feathers", + "throat: soft green fading to blueish-white" + ], + "lilian lovebird": [ + "back: vibrant green feathers covering the upper body", + "beak: small, hooked, and red-orange in color", + "belly: light green feathers with occasional yellow touches", + "breast: bright green plumage transitioning to a yellow hue near the belly", + "crown: violet-blue feathers atop the head, creating a \"cap", + "forehead: white to light green feathers just above the beak", + "eyes: dark, with a white eye-ring, alert and expressive", + "legs: short, scaly, grayish legs with sharp claws for perching", + "wings: bright green outer feathers with black flight feathers underneath", + "nape: violet-blue feathers on the back of the head leading down to the neck", + "tail: elongated, greenish-blue feathers with black tips", + "throat: light green feathers, becoming yellowish closer to the breast" + ], + "limestone leaf warbler": [ + "back: olive-green feathers", + "beak: thin, pointed, dark gray", + "belly: pale yellow, subtly streaked", + "breast: yellowish-green, lightly streaked", + "crown: bright yellow stripe", + "forehead: light olive-green feathers", + "eyes: small, black, surrounded by a pale eyering", + "legs: long, slender, pale pinkish-gray", + "wings: olive-green with faint wing bars", + "nape: olive-green with yellow undertones", + "tail: olive-green, slightly forked", + "throat: yellowish-white, unmarked" + ], + "lina sunbird": [ + "back: vibrant green and blue iridescent feathers", + "beak: long, curved and black", + "belly: pale yellow with occasional green feathers", + "breast: bright yellow merging into green-blue", + "crown: iridescent green-blue with a slight crest", + "forehead: shining green-blue feathers above the beak", + "eyes: small and black, surrounded by green-blue feathers", + "legs: slender and black with sharp claws", + "wings: iridescent green-blue with black flight feathers", + "nape: bright green-blue with a transition to the back", + "tail: elongated and pointed, with iridescent green-blue feathers and black edges", + "throat: bright yellow with green-blue iridescence at the sides" + ], + "line cheeked spinetail": [ + "back: olive-brown with faint streaks", + "beak: slightly curved, slender and dark-gray", + "belly: pale buff with gray-brown streaks", + "breast: white-brown with darker streaks", + "crown: dark brown with rufous streaks", + "forehead: rusty-brown coloration", + "eyes: small and black, ringed with pale gray-brown", + "legs: long and pinkish-gray", + "wings: olive-brown with rufous edging", + "nape: rusty-brown with faint streaks", + "tail: long, rufous with dark spines and white tips", + "throat: pale with gray-brown streaks" + ], + "line fronted canastero": [ + "back: olive-brown with subtle streaks", + "beak: slender and slightly curved", + "belly: buffy to pale brown", + "breast: pale brown with fine barring", + "crown: rufous-brown with a distinct stripe", + "forehead: buffy-white with a dark line above the eye", + "eyes: dark brown with a white eye-ring", + "legs: long and pinkish-brown", + "wings: olive-brown with rufous edges on flight feathers", + "nape: olive-brown with darker streaks", + "tail: long and brown with a pale buff tip", + "throat: whitish with faint streaks" + ], + "lineated barbet": [ + "back: green with subtle streaks", + "beak: stout, pale yellow", + "belly: yellow with irregular dark markings", + "breast: greenish-yellow with dark streaks", + "crown: turquoise-blue with dark streaks", + "forehead: red with blue borders", + "eyes: dark with pale yellow eye-ring", + "legs: grayish-brown with strong feet", + "wings: green with patterned feather tips", + "nape: green with dark streaks", + "tail: greenish-blue with dark bands", + "throat: green with a bluish tinge" + ], + "lineated foliage gleaner": [ + "back: olive-brown with subtle streaks", + "beak: slightly curved, pale bill", + "belly: creamy white with fine streaks", + "breast: buffy-chestnut, fading into belly", + "crown: rufous-brown with fine streaks", + "forehead: rufous-brown, extending to crown", + "eyes: dark, surrounded by pale eyering", + "legs: long and slender, grayish", + "wings: brownish with light wingbars", + "nape: olive-brown, blending into the back", + "tail: brown, slightly forked and long", + "throat: pale, streaked with brownish feathers" + ], + "lineated woodpecker": [ + "back: striped black and white pattern", + "beak: strong, chisel-shaped grayish bill", + "belly: pale brown with dark spots", + "breast: whitish with black streaks", + "crown: bright red for males, black for females", + "forehead: red in males, black in females", + "eyes: small, dark, round", + "legs: short, sturdy grayish legs", + "wings: black with white streaks or spots", + "nape: black with white markings", + "tail: black with white outermost feathers", + "throat: whitish with dark streaks" + ], + "lined antshrike": [ + "back: sleek black feathers with white streaks", + "beak: sharp, slightly hooked, and black", + "belly: white feathers with thin black stripes", + "breast: white feathers with bold black streaks", + "crown: dense black feathers with white streaks", + "forehead: black feathers with white streaks", + "eyes: small, dark, with a yellow eye ring", + "legs: slender, grayish, with sharp claws", + "wings: predominantly black with white markings", + "nape: black feathers with white streaks", + "tail: elongated, black with white tips and edges", + "throat: white feathers with thin black stripes" + ], + "lined forest falcon": [ + "back: sleek gray feathers", + "beak: sharp, black hooked beak", + "belly: creamy white with faint streaks", + "breast: white with grayish-brown stripes", + "crown: smooth grayish-brown crown", + "forehead: light gray shading", + "eyes: dark, piercing gaze", + "legs: strong, yellow-orange legs", + "wings: broad wings with gray and brown bands", + "nape: grayish-brown feathers", + "tail: long, banded tail with white tip", + "throat: pale gray with minimal markings" + ], + "lined quail dove": [ + "back: olive-brown feathers, slightly darker than wings", + "beak: short, curved, black upper bill and pinkish lower bill", + "belly: creamy-white fading to light brown at sides", + "breast: pale reddish-brown with bold black bars and white edging", + "crown: light rusty-brown with grayish edges", + "forehead: pale beige fading into rusty-brown crown", + "eyes: dark brown, surrounded by narrow white eyering", + "legs: short, dark pink legs with stout feet", + "wings: olive-brown with slightly darker flight feathers", + "nape: reddish-brown with lighter grayish-brown edges", + "tail: grayish-brown with darker brown central feathers, white tip", + "throat: creamy-white, meeting pale rusty-brown breast" + ], + "lined seedeater": [ + "1. back: greenish-yellow feathers", + "2. beak: short, cone-shaped, greyish-black", + "3. belly: light yellow-white feathers", + "4. breast: larger light yellow-white area", + "5. crown: dark grey or black head stripe", + "6. forehead: greyish-brown feathers", + "7. eyes: small, dark, with white eye-ring", + "8. legs: slender, greyish-brown", + "9. wings: greenish-yellow, dark-streaked feathers", + "10. nape: greyish-brown, greenish-yellow edges", + "11. tail: dark brown, greenish-yellow edges", + "12. throat: white or light yellow-white patch" + ], + "lita woodpecker": [ + "back: patterned black and white feathers", + "beak: strong, sharp, chisel-like", + "belly: creamy-white with black streaks", + "breast: white with black spotted sides", + "crown: bold red stripe or patch", + "forehead: white with black streaks", + "eyes: dark, round with white eye-ring", + "legs: short, strong, clawed", + "wings: black with white spots and bars", + "nape: black and white striped", + "tail: stiff, black feathers with white tips", + "throat: white or pale cream color" + ], + "little barbet": [ + "back: green, olive-tinted feathers", + "beak: short, thick, curved upper beak", + "belly: light green, faintly streaked", + "breast: green-yellow, slightly streaked", + "crown: red forehead patch, black and white streaks", + "forehead: bright red strip", + "eyes: dark, inquisitive gaze", + "legs: short, sturdy with a bluish-gray tinge", + "wings: green with blue and yellow patches", + "nape: white streaks, black collar", + "tail: broad, square-tipped with green and blue feathers", + "throat: pale yellow, lightly streaked" + ], + "little bee eater": [ + "back: vibrant green upper feathers", + "beak: slender black elongated", + "belly: golden-yellow underparts", + "breast: pale blue coloration", + "crown: bright green, slightly raised", + "forehead: green with blue highlights", + "eyes: dark, surrounded by black stripe", + "legs: small, dark, and sturdy", + "wings: striking green with black tips", + "nape: green with slight blue tint", + "tail: long central feathers, dark blue with black edges", + "throat: bright red-orange patch" + ], + "little bittern": [ + "back: striped light and dark brown pattern", + "beak: long, sharp, and light yellow", + "belly: pale creamy-white with faint brown streaks", + "breast: darker brown with visible white streaks", + "crown: dark brown transitioning to the nape", + "forehead: light brown, blending into the crown", + "eyes: sharp, round, and well-defined black orbs", + "legs: long, slender, and greenish-yellow", + "wings: broad and rounded, brown with light feather markings", + "nape: continuation of dark brown crown with lighter markings", + "tail: short and pointed with brown and white streaks", + "throat: lighter in color, creamy white with subtle brown linear markings" + ], + "little black cormorant": [ + "back: sleek black feathers", + "beak: long, slender, and hooked", + "belly: smooth black plumage", + "breast: dark, shiny feathers", + "crown: evenly black coloration", + "forehead: flat and black", + "eyes: greenish-blue and intense", + "legs: short and webbed", + "wings: broad and black", + "nape: black, with narrow feathers", + "tail: elongated, black feathers", + "throat: black, sleek plumage" + ], + "little bronze cuckoo": [ + "back: olive-bronze feathers with subtle sheen", + "beak: slim, pointed, and black", + "belly: pale cream-white hue", + "breast: lightly scaled with bronze and gray barring", + "crown: bronze-tinged green feathers", + "forehead: greenish-bronze fading into the crown", + "eyes: black with a white eye-ring", + "legs: slim, pale gray with strong claws", + "wings: olive-bronze with fine white streaks", + "nape: olive-green blending into the back", + "tail: slim, long with bronze-green feathers and white tips", + "throat: white, faintly streaked with gray" + ], + "little brown bustard": [ + "back: dark brown feathers with light streaks", + "beak: short and curved, light brown", + "belly: light brown, blending into surrounding feathers", + "breast: dense, pale brown feathers with dark spots", + "crown: speckled brown feathers with a slight crest", + "forehead: pale brown, transitioning into the crown", + "eyes: small and black, surrounded by light brown feathers", + "legs: slender, light gray-brown with sharp claws", + "wings: mottled brown feathers with white, black, and beige markings", + "nape: dark brown feathers connecting the crown to the back", + "tail: short and fan-shaped, brown with thin white bands", + "throat: light brown with a slightly darker brown stripe" + ], + "little bunting": [ + "back: olive-brown and streaked feathers", + "beak: conical and pale-colored", + "belly: whitish and lightly streaked", + "breast: buff-yellow and streaked", + "crown: chestnut-brown with dark central stripe", + "forehead: orange-yellow", + "eyes: black with pale eyering", + "legs: slender and pale pink", + "wings: brown and black with white-edged feathers", + "nape: olive-brown with streaks", + "tail: dark brown with white outer edges", + "throat: creamy-white and unmarked" + ], + "little bustard": [ + "back: earthy-brown feathers with black markings", + "beak: short, straight, and pointed in a grayish hue", + "belly: light cream-colored feathers with brown speckles", + "breast: pale brown plumage with darker markings", + "crown: well-defined, brownish-black stripe pattern", + "forehead: lighter brown contrasting with darker crown", + "eyes: small, dark, and alert, surrounded by a lighter area", + "legs: long, slender, and grayish-brown for easy camouflage", + "wings: pale brown and patterned with black bars and white spots", + "nape: lighter brown with darker streaks, blending with crown", + "tail: fan-shaped, brown feathers with black and white banding", + "throat: cream-colored with an inconspicuous pattern" + ], + "little buttonquail": [ + "back: light brown with dark speckles", + "beak: small, short, and pale", + "belly: light creamy hue", + "breast: soft, tawny brown", + "crown: subtle reddish-brown stripe", + "forehead: slightly paler brown", + "eyes: small, round, and dark", + "legs: short, thin, and brown", + "wings: mottled brown with fine patterns", + "nape: light brown with faint streaks", + "tail: short and fan-like, dark brown with white tips", + "throat: delicate, pale cream color" + ], + "little corella": [ + "back: light grey feathered back", + "beak: short, white, sharp-edged beak", + "belly: white, slightly round belly", + "breast: pale grey feathered breast", + "crown: white crest on top of the head", + "forehead: smooth, white, rounded forehead", + "eyes: dark and bright with pink eye-ring", + "legs: short, scaled grey legs", + "wings: long, grey-white feathers with yellow underside", + "nape: white feathers with subtle grey streaks", + "tail: short, rounded tail feathers with white and yellow accents", + "throat: white, short-feathered throat" + ], + "little cormorant": [ + "back: dark grey feathers", + "beak: slender, black, and slightly hooked", + "belly: charcoal grey underparts", + "breast: matte black plumage", + "crown: glossy navy-black head", + "forehead: slopes smoothly above the beak", + "eyes: sharp gaze with emerald green irises", + "legs: short and black with webbed feet", + "wings: long, sturdy, with a hint of metallic sheen", + "nape: smoothly transitions from head to back", + "tail: straight, black, fan-shaped feathers", + "throat: sleek black region with a slim profile" + ], + "little crake": [ + "back: pale grayish-brown with fine black barring", + "beak: short and yellowish", + "belly: white with light grayish-brown feather edges", + "breast: pale grayish-brown, fading to white near throat", + "crown: dark brown with lighter brown edges", + "forehead: pale with a slight brownish tint", + "eyes: small, dark brown", + "legs: long, greenish-yellow", + "wings: dark brown with paler feather edges", + "nape: brownish-gray with a slight hint of green", + "tail: short, dark brown with thin black and white barring", + "throat: white, clean and not patterned" + ], + "little crow": [ + "back: sleek black feathers", + "beak: strong, sharp, and black", + "belly: soft, dark plumage", + "breast: black and slightly puffed", + "crown: smooth black feathers", + "forehead: flat and black-feathered", + "eyes: shiny, intelligent gaze", + "legs: thin, black, and sturdy", + "wings: intricate black feathers", + "nape: black, curved neck feathers", + "tail: long, fan-shaped, black feathers", + "throat: black and smooth-feathered" + ], + "little cuckoo dove": [ + "back: soft grey feathers with a slight sheen", + "beak: short, slightly curved, black in color", + "belly: pale white-grey feathers with a hint of pink-brown hue", + "breast: delicate silver-grey feathers with a touch of pink", + "crown: rounded, grey feathers that slightly darken towards the nape", + "forehead: smooth, silver-grey, narrow forehead", + "eyes: bright black eyes with thin white eyerings", + "legs: slender, pinkish-grey legs with short claws", + "wings: medium-length wings with light grey and brown markings", + "nape: silver-grey feathers with a subtle sheen as they merge with the crown", + "tail: long, narrow tail feathers with white-edged tips and brown-grey coloration", + "throat: soft, white-grey feathers with a slight pink hue" + ], + "little curlew": [ + "back: light brown with fine streaks", + "beak: long, slender, and slightly curved", + "belly: whitish with brown speckles", + "breast: pale brown with fine streaks", + "crown: light brown with fine streaks", + "forehead: light brown blending into white", + "eyes: small and black, surrounded by a white patch", + "legs: thin and pale gray-brown", + "wings: speckled brown and white with subtle patterns", + "nape: light brown with fine streaks", + "tail: short with brown and white barring", + "throat: white with light brown streaks" + ], + "little eagle": [ + "back: sleek brown feathers", + "beak: sharp, hooked, yellowish", + "belly: light, speckled plumage", + "breast: pale brown with streaks", + "crown: dark brown feathers", + "forehead: smooth, lighter brown", + "eyes: piercing, yellow-rimmed", + "legs: strong, yellow talons", + "wings: broad, long, brown", + "nape: brown, feathered neck", + "tail: short, brown, barred feathers", + "throat: light, feathered, streaked" + ], + "little egret": [ + "back: smooth white feathers", + "beak: long, thin, black", + "belly: white and fluffy", + "breast: white, soft feathers", + "crown: white plumes, occasionally extended", + "forehead: white and sleek", + "eyes: small and yellow", + "legs: black and slender", + "wings: white, broad, and rounded", + "nape: white, short feathers", + "tail: white, medium length, and fan-shaped", + "throat: white, bare skin" + ], + "little flycatcher": [ + "back: olive-green feathers", + "beak: tiny and sharp for catching insects", + "belly: pale yellow plumage", + "breast: streaked with light gray", + "crown: faint grayish crest", + "forehead: smooth and rounded", + "eyes: small, dark, and alert", + "legs: slender and grayish-brown", + "wings: short and well-rounded, with bold white wing-bars", + "nape: pale olive-green", + "tail: moderately long with white outer tips", + "throat: clean pale gray" + ], + "little forktail": [ + "back: dark grey feathers with white streaks", + "beak: black, short, and straight", + "belly: white with grey speckles", + "breast: grey and white patchwork pattern", + "crown: black with white streaks", + "forehead: black with a white eyebrow stripe", + "eyes: dark, small, and alert", + "legs: light pink with scaled texture", + "wings: black with white bands and spots", + "nape: grey with white streaks", + "tail: long, black, and forked with white spots", + "throat: white with grey speckles" + ], + "little friarbird": [ + "back: pale brown with light feather markings", + "beak: long, curved, greyish-black", + "belly: whitish with brown streaks", + "breast: pale brown, softly streaked", + "crown: smooth grayish-brown", + "forehead: greyish-brown with slight crest", + "eyes: small, dark brown with pale eyering", + "legs: thin, greyish-black", + "wings: pale brown with darker flight feathers", + "nape: grayish-brown, blending with crown and back", + "tail: long, rounded, brown with white tips", + "throat: light gray with faint streaks" + ], + "little grassbird": [ + "back: brownish-grey feathers", + "beak: short and thin", + "belly: cream-colored with light markings", + "breast: pale brown with streaks", + "crown: dull brown with a slight crest", + "forehead: light brown with fine streaks", + "eyes: small and black", + "legs: thin and pinkish-brown", + "wings: brown with faint barring", + "nape: grey-brown with light streaks", + "tail: slender and long", + "throat: white with faint brown streaks" + ], + "little gray woodpecker": [ + "back: sleek, grayish feathers", + "beak: sturdy, chisel-like", + "belly: pale gray with white specks", + "breast: light gray plumage", + "crown: red or black stripe, depending on gender", + "forehead: white or light gray", + "eyes: round, black beads", + "legs: strong, clawed feet", + "wings: grayish speckles with white bars", + "nape: dark gray or black", + "tail: stiff, barred feathers", + "throat: grayish-white coloring" + ], + "little grebe": [ + "back: brownish-black plumage", + "beak: short, pointed, and black", + "belly: white with slight brown speckles", + "breast: chestnut-colored feathers", + "crown: dark brown extending to nape", + "forehead: sloping smoothly into the beak", + "eyes: small, round, dark", + "legs: short and greenish-yellow", + "wings: small, rounded with white wing bars", + "nape: continuous dark brown from crown", + "tail: short, stubby, and brown", + "throat: white with a hint of beige" + ], + "little green sunbird": [ + "back: vibrant green feathers", + "beak: long, slender and curved", + "belly: pale yellow and soft", + "breast: iridescent green and shiny", + "crown: glistening emerald green", + "forehead: bright green plumage", + "eyes: small, black and piercing", + "legs: thin, delicate and gray", + "wings: green feathers with white edges", + "nape: radiant green and smooth", + "tail: long, needle-like and green", + "throat: shimmering purple-blue" + ], + "little green woodpecker": [ + "back: vibrant green feathers", + "beak: strong, chisel-like ivory", + "belly: pale cream speckled with green", + "breast: light grayish-green plumage", + "crown: bright red stripes", + "forehead: emerald green feathers", + "eyes: round, inquisitive black orbs", + "legs: sturdy gray limbs", + "wings: shimmering green with golden spangling", + "nape: striking red with forest green", + "tail: elongated green feathers with black bars", + "throat: cool gray with green undertones" + ], + "little green pigeon": [ + "back: vibrant green feathers", + "beak: small, curved, and pale", + "belly: lighter green with soft plumage", + "breast: muted green with a slight yellowish tinge", + "crown: iridescent green with a smooth curve", + "forehead: bright green feathers transitioning to the crown", + "eyes: round and black, framed by delicate feathers", + "legs: thin and grayish, with petite talons", + "wings: sleek green feathers with a tinge of blue, tapering at tips", + "nape: smooth transition from the crown to the back", + "tail: elongated green feathers with dark tips", + "throat: lighter green with a hint of yellow, blending into the breast" + ], + "little greenbul": [ + "back: vibrant green feathers", + "beak: small, slender, and curved", + "belly: light green with pale streaks", + "breast: yellowish-green plumage", + "crown: olive-green with subtle striping", + "forehead: bright green feathers", + "eyes: dark, round, encircled by white rings", + "legs: thin, gray, with strong grip", + "wings: medium-sized, green with hints of yellow", + "nape: rich green with a slight crest", + "tail: long, green, and fanned", + "throat: pale green with soft streaks" + ], + "little ground tyrant": [ + "back: grayish-brown feathers", + "beak: short, black, and pointed", + "belly: white with light brown streaks", + "breast: light brownish-gray plumage", + "crown: dark gray with a black eyestripe", + "forehead: pale gray fading into crown", + "eyes: small, round, and dark", + "legs: long, slender, and yellowish", + "wings: brownish-gray with faint barring", + "nape: grayish-brown, blending in with back", + "tail: long, black with white tips", + "throat: pale grayish-white with light streaks" + ], + "little gull": [ + "back: sleek, grayish upper body", + "beak: small, thin, and red-tipped", + "belly: clean white underside", + "breast: white and fluffy", + "crown: dark-colored, rounded head", + "forehead: smooth, white, blending into the crown", + "eyes: dark, round, and alert", + "legs: short, red, with webbed feet", + "wings: sleek, grayish, with black-tipped primaries", + "nape: light-to-dark gradient of the neck feathering", + "tail: white with black outer edges and a forked shape", + "throat: white and unblemished" + ], + "little hermit": [ + "back: smooth, olive-green feathers", + "beak: long, slender, and slightly curved", + "belly: pale gray with light feathering", + "breast: grayish-brown with hints of green", + "crown: dark green with iridescent shine", + "forehead: slightly lighter green compared to crown", + "eyes: small, black, and alert", + "legs: thin, wiry, with sharp claws", + "wings: short, rounded, and greenish-brown", + "nape: olive-green with subtle pattern", + "tail: long, with white tip and outer feathers", + "throat: grayish-white with faint streaks" + ], + "little inca finch": [ + "back: olive-green feathers with darker streaks", + "beak: sharp, slender, and slightly curved", + "belly: pale yellow, subtly striped", + "breast: bright yellow with fine black streaks", + "crown: olive-green, gently rounded", + "forehead: bluish-gray with a slight tuft", + "eyes: dark, expressive with a thin white eye-ring", + "legs: sturdy, grayish-pink", + "wings: olive-green with faint yellow edges on the feathers", + "nape: olive-green, merging with the crown", + "tail: dark, elongated central feathers surrounded by olive-green outer feathers", + "throat: bright yellow, leading to the breast" + ], + "little kai white eye": [ + "back: petite greenish-white feathers", + "beak: slim curved black bill", + "belly: soft light cream fluff", + "breast: delicate white plumage", + "crown: small white patch on head", + "forehead: tiny off-white feathers", + "eyes: round beady black orbs", + "legs: slender grayish-pink stems", + "wings: greenish-white flight feathers", + "nape: pale greenish-white plumage", + "tail: short, square-ended feathers", + "throat: white, fluffy down" + ], + "little kingfisher": [ + "back: vibrant blue feathers", + "beak: small and sharp", + "belly: pale white color", + "breast: soft white plumage", + "crown: striking blue crest", + "forehead: bright blue patch", + "eyes: round and alert", + "legs: short and sturdy", + "wings: blue with white markings", + "nape: blue feathers meeting the white throat", + "tail: short and rounded", + "throat: white, transitioning to the breast" + ], + "little lorikeet": [ + "back: vibrant green feathers", + "beak: short, curved orange-red", + "belly: light yellow-green plumage", + "breast: yellowish-green feathers", + "crown: bright green with bluish hue", + "forehead: rich green feathers", + "eyes: dark, round with white eye-ring", + "legs: short, strong, grayish-blue", + "wings: green with blue-tinged tips", + "nape: bluish-green feather transition", + "tail: long, green with yellow undertail", + "throat: pale green with faint yellow specks" + ], + "little nightjar": [ + "back: dark brown plumage with white speckles", + "beak: short, curved black beak", + "belly: light brown with soft white mottling", + "breast: pale brown with fine, dark streaks", + "crown: dark greyish-brown with pale spots", + "forehead: camouflaged with pale and dark feather markings", + "eyes: large, round, dark eyes", + "legs: short, pale grey legs with fine scaling", + "wings: brown and black mottled feathers with white patches on the primary feathers", + "nape: dark brown with pale feather speckles", + "tail: long, rufous-brown tail with black and white bands", + "throat: pale greyish-brown with subtle streaks" + ], + "little owl": [ + "back: small, rounded, and heavily feathered", + "beak: curved, sharp, and yellowish-white", + "belly: pale, spotted with thin horizontal streaks", + "breast: light brown, streaked with darker brown lines", + "crown: reddish-brown, marked with white spots", + "forehead: lighter brown with faint horizontal marks", + "eyes: large, yellow, and expressive", + "legs: short, strong, and feathered down to the talons", + "wings: broad, rounded, and barred with varying shades of brown", + "nape: reddish-brown, patterned with white and dark brown spots", + "tail: short, squared-off, and barred with alternating shades of brown", + "throat: light beige with delicate mottled markings" + ], + "little paradise kingfisher": [ + "back: vibrant turquoise-blue feathers", + "beak: long, slender, and black", + "belly: white and fluffy feathers", + "breast: white with a hint of blue iridescence", + "crown: bright turquoise-blue with a glossy shine", + "forehead: deep blue blending into the turquoise crown", + "eyes: dark and round with a sharp gaze", + "legs: short, black, and sturdy", + "wings: striking blue and black with patterned markings", + "nape: rich, deep blue fading into the back", + "tail: elongated, with iridescent blue and black feathers", + "throat: white, with slight shimmer from iridescent feathers" + ], + "little penguin": [ + "back: bluish-grey feathers", + "beak: short, black, and pointed", + "belly: white underside", + "breast: white, curved", + "crown: dark blue-grey feathers", + "forehead: distinct white patch", + "eyes: small, black, and shiny", + "legs: short with pink webbed feet", + "wings: short, flippers-like for swimming", + "nape: dark-colored feathers", + "tail: short, wedge-shaped", + "throat: white with subtle markings" + ], + "little pied cormorant": [ + "back: sleek, dark feathers", + "beak: pointed, hooked tip", + "belly: white underbelly", + "breast: contrasting white feathers", + "crown: dark, gently sloping head", + "forehead: black, smooth curve", + "eyes: round, dark, and beady", + "legs: short, scaly, webbed feet", + "wings: broad, black, elongated", + "nape: dark, feathered, continuous with back", + "tail: long, narrow, dark feathers", + "throat: white, blending into breast" + ], + "little pied flycatcher": [ + "back: olive-brown with slight streaks", + "beak: short and conical, black", + "belly: creamy white with subtle markings", + "breast: grayish-white merging with the belly", + "crown: black with a white patch", + "forehead: small white patch above the beak", + "eyes: dark, beady, with prominent white eye-ring", + "legs: slender, grayish-brown", + "wings: blackish-brown with distinct white patch", + "nape: olive-brown, continuous with the back", + "tail: blackish-brown, white-edged outer feathers", + "throat: grayish-white blending into the breast" + ], + "little raven": [ + "back: glossy black feathers covering the bird's dorsal area", + "beak: slightly curved, strong, and dark grey in color", + "belly: shiny black lower body fluffed with feathers", + "breast: smooth iridescent black plumage across the chest", + "crown: sleek jet-black feathers on the top of the head", + "forehead: glossy black feathers smoothly transitioning into the beak", + "eyes: round and dark, with a curious and intelligent gaze", + "legs: slender, sturdy and in a dark grey shade", + "wings: robust and covered in pitch-black flight feathers", + "nape: smooth ebony feathers adorning the back of the bird's neck", + "tail: fan-shaped, featuring elongated, gleaming black feathers", + "throat: a delicate area of shiny black feathers leading down to the breast" + ], + "little ringed plover": [ + "back: olive-brown with white markings", + "beak: short, black, and slightly curved", + "belly: white with no markings", + "breast: white with a partial black band", + "crown: grey-brown with a white stripe", + "forehead: white with black border", + "eyes: dark with pale eyering", + "legs: yellowish-orange and thin", + "wings: grey-brown with white wing-bars", + "nape: grey-brown with white collar", + "tail: grey-brown with white outer feathers", + "throat: white and unmarked" + ], + "little rock thrush": [ + "back: slate-gray, mottled feathers", + "beak: slim, black, and pointed", + "belly: off-white to light gray plumage", + "breast: soft gray with faint streaks", + "crown: darker gray with light streaks", + "forehead: pale gray with a sleek appearance", + "eyes: small, black, and bright", + "legs: thin, twig-like, and black", + "wings: strong, slate-gray, with black markings", + "nape: lighter gray, blending into the crown", + "tail: long, fanned, with black and gray feathers", + "throat: smooth, pale gray plumage" + ], + "little rush warbler": [ + "back: olive-green with streaks", + "beak: thin, curved, blackish-brown", + "belly: pale yellowish-white", + "breast: light buff with faint streaks", + "crown: rich brown with faint streaks", + "forehead: lighter brown with delicate streaks", + "eyes: small, dark, rounded", + "legs: long, slender, pale brown", + "wings: olive-brown with faint streaks", + "nape: rich brown with faint streaks", + "tail: short, broad, olive-brown", + "throat: pale buff with fine streaks" + ], + "little shearwater": [ + "back: sleek, grayish-brown feathers", + "beak: slender, curved, blackish-brown", + "belly: white with a soft, fluffy texture", + "breast: pale grayish-white feathers", + "crown: grayish-brown with a smooth appearance", + "forehead: slightly darker grayish-brown than the crown", + "eyes: small, dark, and round with a keen expression", + "legs: short, dark gray with webbed feet for swimming", + "wings: long, slender, and grayish-brown with black-tipped primary feathers", + "nape: lighter grayish-brown than the back, blending with the crown", + "tail: short, dark gray with a fan-like appearance when spread", + "throat: pale gray, meeting the white belly area at a diffuse boundary" + ], + "little slaty flycatcher": [ + "back: slate gray feathered upper body", + "beak: small, dark, pointed insect catcher", + "belly: pale gray underside with soft, thin feathers", + "breast: subtle gray tone blending to the belly", + "crown: dark gray smooth feathers tapering to forehead", + "forehead: slightly lighter gray than the crown", + "eyes: black and shiny, surrounded by light gray feathers", + "legs: slender, black, and clawed for perching", + "wings: slate gray, folded when at rest", + "nape: smooth transition from crown to back", + "tail: long and slim, slate gray feathers with slight white tips", + "throat: soft gray, continuous tone with belly and breast" + ], + "little sparrowhawk": [ + "back: brownish-gray with fine white barring", + "beak: black, hooked tip, slightly curved", + "belly: white with dark brown barring", + "breast: creamy white with longitudinal brown streaks", + "crown: dark gray with slight white barring", + "forehead: grayish-brown with fine white stripes", + "eyes: bright yellow with dark, round pupils", + "legs: yellow, slim with sharp black talons", + "wings: long, rounded, with dark brown and white striped pattern", + "nape: grayish-brown with faint white barring", + "tail: medium length with dark gray and white horizontal bands", + "throat: creamy white with narrow brown streaks" + ], + "little spiderhunter": [ + "back: olive-green with subtle streaks", + "beak: long, slender, and curved", + "belly: pale yellow with fine streaks", + "breast: bright yellow with faint streaks", + "crown: olive-green with a slight crest", + "forehead: greenish-yellow, fading to olive-green", + "eyes: dark with a white eye-ring", + "legs: relatively short, pale pinkish-grey", + "wings: olive-green with blackish flight feathers", + "nape: olive-green with slight streaks", + "tail: long, dark greenish-brown with white tips", + "throat: bright yellow with fine streaks" + ], + "little spotted kiwi": [ + "back: small, pale brown with greyish-white spots", + "beak: long, slender, curved downward", + "belly: greyish-white with faint brown spots", + "breast: pale brown with greyish-white spots", + "crown: pale brown with faint small spots", + "forehead: slightly lighter brown, near eyes and beak", + "eyes: small, dark, with faint white ring", + "legs: short, stout, feathered", + "wings: small, brown, rounded, flightless", + "nape: pale brown with greyish-white spots", + "tail: short, brown, with faint white spots", + "throat: grayish-white, merging with breast color" + ], + "little stint": [ + "back: light brown with dark streaks", + "beak: thin, straight, black", + "belly: white with soft spotting", + "breast: pale brown with fine streaks", + "crown: brownish with a white central stripe", + "forehead: white, blending into the crown", + "eyes: dark, surrounded by an eye-ring", + "legs: black and slender", + "wings: brown and streaked with white edges", + "nape: tawny brown with dark streaks", + "tail: short and dark with white outer feathers", + "throat: white, connecting to breast feathering" + ], + "little sunangel": [ + "back: vibrant green feathers", + "beak: slim, elongated black bill", + "belly: pale grayish-white plumage", + "breast: shimmering green and copper", + "crown: iridescent green shimmer", + "forehead: bright, metallic green", + "eyes: small, dark brown orbs", + "legs: thin, black twig-like appendages", + "wings: rapid, agile, green-flecked flight", + "nape: lustrous green and copper tones", + "tail: short, fan-like with a green hue", + "throat: fiery, orange-red gorget" + ], + "little swift": [ + "back: streamlined, dark feathers", + "beak: small, pointed for insect-catching", + "belly: white or light grey plumage", + "breast: greyish-brown plumage", + "crown: dark feathers covering the top of the head", + "forehead: slightly paler feathers blending into the crown", + "eyes: round, small, black and alert", + "legs: short, delicate with sharp claws", + "wings: long, slender, and arc-shaped; black to dark brown color", + "nape: dark feathers connecting the crown to the back", + "tail: short, forked, with dark feathers", + "throat: light grey with a slight curve from the beak" + ], + "little tern": [ + "back: sleek, light gray coat", + "beak: sharp, black with a yellow base", + "belly: soft, white feathering", + "breast: white, gently blending with the wings", + "crown: black cap-like marking", + "forehead: white, slightly contrasting the black crown", + "eyes: small, dark and alert", + "legs: slender, orangish-yellow", + "wings: light gray with white-tipped feathers", + "nape: white, connecting the crown to the back", + "tail: forked, with white edges and a gray center", + "throat: white, seamlessly merging with the belly" + ], + "little thornbird": [ + "back: light brown with faint streaks", + "beak: long, slender, and curved", + "belly: pale cream with thin streaks", + "breast: creamy white with faint spots", + "crown: grayish-brown with a slight crest", + "forehead: smooth, light brown", + "eyes: small, round, and black", + "legs: thin, delicate, and gray", + "wings: brown with white spots and light edging", + "nape: light brown, blending with crown", + "tail: elongated, dark brown with white tips", + "throat: soft white, unmarked" + ], + "little tinamou": [ + "back: olive-brown with fine black barring", + "beak: slightly curved, grayish", + "belly: pale gray with dark bars", + "breast: buff-gray with subtle streaks", + "crown: slate-gray with slight dark bars", + "forehead: pale gray bordering crown", + "eyes: dark brown, encircled by lighter plumage", + "legs: pinkish-gray with strong, narrow toes", + "wings: olive-brown, marked with fine black bars", + "nape: slate-gray, transitioning into back shades", + "tail: short, olive-brown, dark barring pattern", + "throat: pale gray, blending into breast color" + ], + "little wattlebird": [ + "back: brownish-grey with faint streaks", + "beak: long, slender, and slightly curved", + "belly: dull grey with fine white streaks", + "breast: light grey with faint dark barring", + "crown: dark grey with a slight crest", + "forehead: pale grey fading to brownish-grey", + "eyes: dark black, surrounded by a thin greyish-white ring", + "legs: slender and dark grey", + "wings: brownish-grey with white-tipped feathers", + "nape: grey-brown with fine streaks", + "tail: long, fan-shaped with dark grey-brown feathers", + "throat: lighter grey with indistinct streaks" + ], + "little weaver": [ + "back: vibrant yellow-green feathers", + "beak: strong, sharp black beak", + "belly: light cream-colored underbelly", + "breast: golden brown chest feathers", + "crown: narrow olive-green crest", + "forehead: distinctive yellowish-orange brow", + "eyes: bright, inquisitive black eyes", + "legs: slender, black legs with flexible toes", + "wings: brightly colored yellow and green feathers", + "nape: pale olive-green nape feathers", + "tail: long, narrow tail feathers with dark tips", + "throat: light, creamy white throat patch" + ], + "little wood rail": [ + "back: streaked olive-brown feathers", + "beak: short, slightly curved, and yellowish", + "belly: buff-white with faint barring", + "breast: beige color with black-speckled pattern", + "crown: chestnut brown with a thin white stripe", + "forehead: grayish-white stripe above the eyes", + "eyes: small dark orbs surrounded by white feathers", + "legs: slender, long, and bright yellow", + "wings: olive-green with black and white spots", + "nape: chestnut brown with a white stripe", + "tail: long, olive-green with black and white bars", + "throat: plain white, free from markings" + ], + "little woodpecker": [ + "back: sleek, striped feathers", + "beak: sturdy, chisel-like shape", + "belly: soft, light-colored feathering", + "breast: spotted or barred pattern", + "crown: vibrant, distinctive crest", + "forehead: slightly rounded, colorful", + "eyes: sharp, alert gaze", + "legs: short, slender with strong toes", + "wings: elongated, black and white pattern", + "nape: marked with dark banding", + "tail: stiff, supportive base for pecking", + "throat: modest, plain feathering" + ], + "little woodstar": [ + "back: green-bronze feathers", + "beak: long, slender, and slightly curved", + "belly: light-gray and fluffy", + "breast: pale with light streaks", + "crown: iridescent green", + "forehead: bright emerald feathers", + "eyes: small, dark, and round", + "legs: thin, grayish-brown", + "wings: rapid, nearly invisible movement", + "nape: green-bronze with subtle iridescence", + "tail: fan-like, dark-tipped feathers", + "throat: shimmering violet or purple (male) or white (female" + ], + "little woodswallow": [ + "back: sleek dark gray-blue feathers", + "beak: short, sharp, black, and slightly hooked", + "belly: pale gray with a hint of dark gray-blue blending", + "breast: soft gray-blue plumage", + "crown: dark gray-blue color, smooth feathers", + "forehead: slightly lighter gray compared to the crown", + "eyes: small, black, bright, and alert", + "legs: short, thin, black, and delicately scaled", + "wings: dark gray-blue with strong feathers and curved tips", + "nape: smooth continuation of dark gray-blue crown feathers", + "tail: semi-fan-shaped, dark gray-blue feathers with a slight fork", + "throat: pale gray feathers, contrasting with darker upper parts" + ], + "littoral rock thrush": [ + "back: dark slate-grey with a brownish tinge", + "beak: black, slender, and slightly curved", + "belly: pale orange with white undertail coverts", + "breast: bright orange fading into the white belly", + "crown: dark slate-grey with a slight brownish tinge", + "forehead: dark slate-grey, blending into the crown", + "eyes: black with a white eye-ring", + "legs: black, long and slender", + "wings: dark grey with black edging and white wing bars", + "nape: dark slate-grey, continuous with the crown", + "tail: black with white outer tail feathers, slightly forked", + "throat: bright orange, blending into the breast" + ], + "livingstone flycatcher": [ + "back: dark green with slight iridescence", + "beak: black, thin, and slightly curved", + "belly: pale yellow with grayish streaks", + "breast: yellowish-green with gray tinge", + "crown: dark green with slight iridescence", + "forehead: black, contrasting with green crown", + "eyes: dark brown with pale white eye-ring", + "legs: blackish-gray and slim, with sharp claws", + "wings: greenish-black with lighter green edges", + "nape: dark green with subtle iridescence", + "tail: long, dark green with black tips", + "throat: pale grayish-yellow with fine streaks" + ], + "livingstone turaco": [ + "back: smooth green-blue feathers", + "beak: curved, bright orange", + "belly: turquoise feathered", + "breast: green-blue plumage", + "crown: distinctive bright red crest", + "forehead: green-blue feathers", + "eyes: big, round, framed with blue feathers", + "legs: slender, long, gray", + "wings: long, broad with green-blue feathers", + "nape: bright blue-green feathers", + "tail: elongated, green-blue with red tips", + "throat: vibrant blue plumage" + ], + "lizard buzzard": [ + "back: sleek, greyish-brown feathers", + "beak: short, hooked, blackish upper bill", + "belly: whitish-grey with brown barring", + "breast: pale grey with darker streaks", + "crown: dark grey with blackish-brown streaks", + "forehead: pale grey, slightly rounded", + "eyes: piercing yellow with black pupils", + "legs: yellow-orange, slender, and powerful", + "wings: broad, rounded, greyish-brown with black edges", + "nape: dark grey with subtle brown streaks", + "tail: long, greyish-brown with white edges", + "throat: pale grey, unmarked" + ], + "loango weaver": [ + "back: vibrant yellow with black markings", + "beak: strong, conical, black", + "belly: bright yellow", + "breast: yellow with black streaks", + "crown: black or chestnut-colored", + "forehead: black, extending to eye line", + "eyes: beady, dark brown", + "legs: long, slender, dark", + "wings: black with greenish-yellow highlights", + "nape: black or chestnut-colored", + "tail: black with yellow outer feathers", + "throat: yellow, blending into breast" + ], + "locustfinch": [ + "back: sleek, brownish-green feathers", + "beak: slender, pointed, and black", + "belly: pale yellow with faint streaks", + "breast: light brown with fine streaking", + "crown: olive-green with a subtle crest", + "forehead: smooth, unmarked, and light brown", + "eyes: dark, round, and alert", + "legs: thin, black, and slightly feathered", + "wings: elongated with brown and greenish hues", + "nape: smooth and olive-colored", + "tail: short, forked with a mix of brown and black", + "throat: creamy white with light streaking" + ], + "loetoe monarch": [ + "back: vibrant green with blue and orange speckles", + "beak: sharp, slender, and black", + "belly: bright yellow with intricate orange patterns", + "breast: striking blue and orange feathers", + "crown: bold orange crest with blue highlights", + "forehead: deep blue with a hint of green shimmer", + "eyes: large, round, and black with a white ring", + "legs: strong and charcoal gray with sharp talons", + "wings: magnificent blue and orange patterns, elongated shape", + "nape: lime green with soft white streaks", + "tail: long, iridescent green and blue feathers, fan-shaped", + "throat: brilliant yellow with fine, orange vertical lines" + ], + "loggerhead kingbird": [ + "back: olive-green upperparts", + "beak: black and stout", + "belly: grayish-white underparts", + "breast: grayish-white, slightly darker than belly", + "crown: blackish cap, slightly raised", + "forehead: blackish, blending with crown", + "eyes: dark, surrounded by gray feathers", + "legs: short, black", + "wings: dark, with two white wing bars", + "nape: olive-green, connecting back and crown", + "tail: black, with white feather edges", + "throat: grayish-white, connecting to breast" + ], + "loja tapaculo": [ + "back: dark gray plumage", + "beak: short and curved", + "belly: pale gray feathers", + "breast: slightly lighter gray", + "crown: dark gray with a rounded shape", + "forehead: smooth, gray feathers", + "eyes: small and black", + "legs: sturdy, pale pinkish-brown", + "wings: short and rounded, dark gray", + "nape: same color as the crown", + "tail: medium length, gray feathers", + "throat: lighter gray than the breast" + ], + "lompobattang flycatcher": [ + "back: soft, greenish-gray plumage", + "beak: thin, pointed, black", + "belly: pale yellow hue", + "breast: white with slight tinges of yellow", + "crown: olive-green feathers", + "forehead: pale greenish-yellow", + "eyes: dark, shiny, round", + "legs: slender, black", + "wings: greenish-grey and angled", + "nape: slightly darker greenish-grey", + "tail: long, black with light streaks", + "throat: bright white contrast" + ], + "lompobattang leaf warbler": [ + "back: olive-green feathers", + "beak: thin, pointed, and black", + "belly: light yellowish-white underside", + "breast: pale yellow breast feathers", + "crown: unmarked olive-green head", + "forehead: smooth olive-green plumage", + "eyes: small, dark, and round", + "legs: slender and pale pinkish-brown", + "wings: dark olive with faint wing bars", + "nape: unmarked olive-green neck", + "tail: long, dark olive, and slightly forked", + "throat: pale yellowish-white" + ], + "long billed bernieria": [ + "back: olive-green feathers covering the upper body", + "beak: elongated, slender, and slightly curved", + "belly: pale grayish-white underside", + "breast: light gray transitioning from the belly", + "crown: bright olive-green feathered top of the head", + "forehead: continuation of the olive-green crown to above the beak", + "eyes: small, dark, and well-defined, surrounded by green feathers", + "legs: thin, pale, and twig-like with sharp claws", + "wings: olive-green with hints of brown and white edges", + "nape: subtle gradient from the crown to the back feathers", + "tail: long, narrow feathers with dark and olive-green hues", + "throat: pale gray, blending into the breast and belly" + ], + "long billed bush warbler": [ + "back: olive-brown feathers", + "beak: long, slender, curved", + "belly: pale, whitish-yellow", + "breast: light olive-brown", + "crown: same color as back", + "forehead: light olive-brown", + "eyes: small, dark, surrounded by faint stripe", + "legs: pinkish-brown, slender", + "wings: olive-brown with faint bars", + "nape: olive-brown, matching back", + "tail: long, dark-tipped, narrow feathers", + "throat: pale, whitish-yellow" + ], + "long billed corella": [ + "back: pale white feathers with a subtle grey pattern", + "beak: long, white, slightly curved", + "belly: white, covered with soft feathers", + "breast: white and rounded, slight yellowish tinge", + "crown: white feathers, slightly raised", + "forehead: white, merging into the beak seamlessly", + "eyes: small, black, and alert", + "legs: grey and fairly short, ending in sharp-taloned feet", + "wings: white feathers with subtle grey patches, strong and sturdy", + "nape: white feathers transitioning into a yellowish hue at the back of the neck", + "tail: long feathers, white with pale grey tips", + "throat: white, blending seamlessly with breast and belly" + ], + "long billed crow": [ + "back: sleek black feathers", + "beak: elongated, slightly curved bill", + "belly: smooth black plumage", + "breast: black-feathered chest", + "crown: black, rounded head", + "forehead: black with sloping contour", + "eyes: small, sharp, black", + "legs: strong, black, scaly", + "wings: long, black, pointed feathers", + "nape: black feathers transition to neck", + "tail: lengthy, black, fan-shaped", + "throat: slim, black, streamlined" + ], + "long billed cuckoo": [ + "back: sleek, elongated body with speckled brownish-grey feathers", + "beak: long and sharply curved for insect-catching", + "belly: soft, lightly mottled feathery underbelly", + "breast: buff-colored and subtly striped with brown bands", + "crown: patchwork of mixed greyish-brown feathers", + "forehead: smooth, very slightly crested for streamlined flight", + "eyes: large, expressive with dark brown irises", + "legs: long, slender legs with scaly appearance and sharp claws", + "wings: wide, rounded wings with feathered fingertips", + "nape: subtle variation of greyish-brown plumage", + "tail: lengthy, slim with alternating bands of light and dark feathers", + "throat: pale, buff-colored feathers with thin streaks" + ], + "long billed gnatwren": [ + "back: small, compact, rich-brown feathers", + "beak: elongated, slender, slightly curved", + "belly: pale, off-white with fine gray streaks", + "breast: subtly speckled, light gray plumage", + "crown: black, sleek, pronounced feathers", + "forehead: marked, black with slight feather definition", + "eyes: large, dark, expressive with pale eyering", + "legs: thin, delicate, grayish-blue", + "wings: short, rounded, warm brown with faint barring", + "nape: velvety, smooth, dark-brown feathers", + "tail: lengthy, fine, graduated feathers with dark barring", + "throat: soft, light grey, contrasted with darker markings" + ], + "long billed hermit": [ + "back: elongated green-brown feathers", + "beak: long, slender, curved", + "belly: pale-toned patterned feathers", + "breast: pale cream soft plumage", + "crown: greenish iridescent hue", + "forehead: bright green feathers", + "eyes: deep-black with white outline", + "legs: short, powerful stilt-like", + "wings: large, fast, and agile", + "nape: bronze-green colored", + "tail: extended central feathers, white-tipped", + "throat: whitish, with subdued streaks" + ], + "long billed honeyeater": [ + "back: olive-green with slight yellow streaks", + "beak: elongated, curved, blackish", + "belly: pale yellow, thinly striped", + "breast: bright yellow, lightly streaked", + "crown: olive-green, slightly raised", + "forehead: olive-green, fading to yellow", + "eyes: round, dark, white outer ring", + "legs: slender, grayish-blue", + "wings: olive-brown, short and rounded", + "nape: olive-green, smoothly blended", + "tail: dark brown, narrow, slightly forked", + "throat: vivid yellow, merging into breast" + ], + "long billed murrelet": [ + "back: dark, grey-brown feathers", + "beak: elongated, pointed, black color", + "belly: white with fine streaks", + "breast: white, blending to gray", + "crown: dark grey-brown with a white eye-stripe", + "forehead: grey-brown, slightly paler", + "eyes: small, dark with white eye-ring", + "legs: short, bright blackish or pale blue", + "wings: rounded, dark with white scapulars", + "nape: dark grey-brown, blending with crown", + "tail: short, dark, fan-shaped", + "throat: white, contrasting with darker head" + ], + "long billed partridge": [ + "back: brownish-grey plumage with dark stripes", + "beak: long, slender, and curved downward", + "belly: buff-colored with dark barring", + "breast: pale brown with black spots", + "crown: reddish-brown with dark streaks", + "forehead: white stripe above the beak", + "eyes: dark and alert, surrounded by white markings", + "legs: strong, greyish with scaled appearance", + "wings: short, rounded brown with black bands", + "nape: reddish-brown with dark streaks", + "tail: brownish-grey, long and pointed feathers", + "throat: white with black and brown mottling" + ], + "long billed pipit": [ + "back: brownish-grey with subtle streaks", + "beak: elongated and slender, slightly curved", + "belly: pale white with light brown streaks", + "breast: light brown with faint markings", + "crown: streaked brown and buff", + "forehead: pale buff with fine brown streaks", + "eyes: dark and circular, white eye-ring", + "legs: long and pinkish-brown", + "wings: brownish with pale edges, noticeable wingbars", + "nape: buff-brown with faint streaks", + "tail: brown with white outer feathers, medium-length", + "throat: whitish with fine brown streaks" + ], + "long billed plover": [ + "back: brownish-grey feathers", + "beak: long, slender, and slightly curved", + "belly: white with soft streaks", + "breast: pale greyish-brown", + "crown: brown with a slight crest", + "forehead: white or buff stripe", + "eyes: dark, outlined by white markings", + "legs: yellow or greenish-yellow", + "wings: brownish-grey with black primaries", + "nape: white or buff stripe extending from eye", + "tail: short, brown with white outer feathers", + "throat: white or light buff" + ], + "long billed rhabdornis": [ + "back: sleek brown feathers", + "beak: elongated, powerful bill", + "belly: light, cream-colored feathers", + "breast: buffy-white with faint streaks", + "crown: dark brown with lighter streaks", + "forehead: buffy-white, narrow stripe", + "eyes: bright, inquisitive gaze", + "legs: slim, grayish legs", + "wings: brown with white bands", + "nape: streaked brown and buff", + "tail: long, narrow feathers with white tips", + "throat: pale with delicate streaks" + ], + "long billed spiderhunter": [ + "back: olive-green with thin black streaks", + "beak: elongated, curved, and black", + "belly: white or pale yellow with brown streaks", + "breast: yellowish-brown with thin black streaks", + "crown: olive-green with a faint yellowish tinge", + "forehead: light olive-green with black spots", + "eyes: dark brown with a white eyering", + "legs: strong, grayish with long toes", + "wings: olive-green with darker flight feathers", + "nape: olive-green with thin black streaks", + "tail: long, dark brown with dark bars", + "throat: pale yellow, sometimes with black speckling" + ], + "long billed starthroat": [ + "back: vibrant green feathers", + "beak: elongated, slender, and slightly curved", + "belly: light gray plumage", + "breast: grayish-white feathers", + "crown: iridescent green head cap", + "forehead: shiny green plumage", + "eyes: small, dark, and beady", + "legs: thin and black", + "wings: white-tipped, greenish-bronze feathers", + "nape: greenish-bronze plumage", + "tail: long, forked, and dark-feathered", + "throat: brilliant violet-blue patch" + ], + "long billed tailorbird": [ + "back: olive-green colored feathers", + "beak: long, slender, and curved", + "belly: whitish hue with light streaks", + "breast: light olive-green coloration", + "crown: olive-green with a rusty orange patch", + "forehead: pale rufous strip above eye", + "eyes: small and black, surrounded by light grayish feathering", + "legs: slim and brownish-gray", + "wings: olive-green with slightly darker flight feathers", + "nape: olive-green with rusty orange streaks", + "tail: long and dark olive-green with white tips", + "throat: whitish hue, sometimes with a rufous tint" + ], + "long billed thrush": [ + "back: olive-brown and streaked", + "beak: elongated, curved downward", + "belly: white with dark spots", + "breast: pale buff-orange with dark spots", + "crown: olive-brown with streaks", + "forehead: slightly lighter olive-brown", + "eyes: dark with white eyering", + "legs: long and slender, pale pinkish-brown", + "wings: olive-brown with faint bars", + "nape: streaked olive-brown", + "tail: long and brown with pale tips", + "throat: white with dark streaks" + ], + "long billed white eye": [ + "back: smooth, white feathers", + "beak: long, slender, and curved", + "belly: soft, white underbelly", + "breast: white feathers with some faint yellow tinge", + "crown: white with some pale-yellow highlights", + "forehead: sleek white feathers", + "eyes: round, black, and inquisitive", + "legs: thin, grayish-blue", + "wings: white with a slightly yellow tint", + "nape: white feathers transitioning to pale yellow", + "tail: long, white, fan-shaped", + "throat: delicate white feathers" + ], + "long billed woodcreeper": [ + "back: streaked brown and dark patterns", + "beak: elongated, slightly curved, and sharp", + "belly: cream-colored with brownish streaks", + "breast: pale with brownish streaks", + "crown: rusty brown with fine streaks", + "forehead: pale brown with fine streaks", + "eyes: dark, medium-sized, surrounded by pale feathers", + "legs: strong and grayish", + "wings: dark brown with pale spotting", + "nape: rusty-brown with fine streaks", + "tail: long, straight, brown with pale bands", + "throat: cream-colored with thin brown streaks" + ], + "long billed wren babbler": [ + "back: olive-brown with subtle streaks", + "beak: long, curved, and thin", + "belly: pale greyish-white", + "breast: greyish-brown with possible hint of buff", + "crown: dark brown with fine streaks", + "forehead: faintly paler brown", + "eyes: small, round, dark brown", + "legs: relatively short, pinkish-brown", + "wings: olive-brown with faint barring", + "nape: brown with thin streaks", + "tail: long, thin, brown with subtle bars", + "throat: pale greyish-white" + ], + "long crested eagle": [ + "back: dark brown feathers with pale spots", + "beak: sharp, black, curved beak", + "belly: white-grey with dark brown stripes", + "breast: white-grey with dark brown streaks", + "crown: long black crest with a white streak", + "forehead: dark, brown-black with a white streak", + "eyes: bright yellow with dark pupils", + "legs: yellow-colored, strong, and featherless", + "wings: dark brown with pale bands and white patches", + "nape: dark brown with a white streak", + "tail: banded with black and white stripes", + "throat: white-grey with faint dark brown streaks" + ], + "long crested myna": [ + "back: sleek black feathers", + "beak: sharp, yellowish-orange", + "belly: dark feathered underside", + "breast: shiny black plumage", + "crown: extended, narrow crest", + "forehead: smooth feathers transition into crest", + "eyes: piercing, dark orbs", + "legs: strong and dark, with sharp talons", + "wings: black with slight iridescence", + "nape: converging feathers at back of neck", + "tail: long, black, and slightly fanned", + "throat: smooth, black, and feathered" + ], + "long crested pygmy tyrant": [ + "back: olive-green feathered", + "beak: short and dark", + "belly: off-white and scaly", + "breast: pale yellow with scaly pattern", + "crown: long, sleek crest feathers", + "forehead: short plumes above eyes", + "eyes: small and dark", + "legs: slender and grayish", + "wings: short, rounded, olive-green", + "nape: olive-green feathers", + "tail: short and rounded", + "throat: pale yellow" + ], + "long legged buzzard": [ + "back: light brown feathers with subtle markings", + "beak: strong, sharp, yellowish-orange hooked beak", + "belly: off-white with brown streaks and bands", + "breast: white with dense brown streaks", + "crown: light brown feathers with a paler fringe", + "forehead: pale brown with a lighter streak", + "eyes: bright yellow with a stern gaze", + "legs: long, powerful, feathered, yellow-orange legs", + "wings: broad, light brown with dark edges and white lining", + "nape: pale brown with lighter streaks", + "tail: barred brown and white feathers with a wide dark terminal band", + "throat: white with brown streaks" + ], + "long legged pipit": [ + "back: light brown with streaks", + "beak: long and slender", + "belly: pale cream color", + "breast: whitish with brown streaks", + "crown: light brown with streaks", + "forehead: pale cream with light streaks", + "eyes: dark, round shaped", + "legs: long, thin, and pale pink", + "wings: brown with bold streaks", + "nape: pale cream with brown streaks", + "tail: long and brown with white edges", + "throat: pale cream with light streaks" + ], + "long tailed broadbill": [ + "back: vibrant shades of blue and green", + "beak: short, robust, black", + "belly: light yellow-feathered", + "breast: pale blue plumage", + "crown: deep blue with black edges", + "forehead: bright azure feathers", + "eyes: small, dark, lively", + "legs: gray, sturdy, short", + "wings: blue and green outer feathers", + "nape: bold black stripe", + "tail: elongated, vibrant blue and green", + "throat: pale blue to match breast" + ], + "long tailed bush warbler": [ + "back: olive-green with fine dark streaks", + "beak: thin, pointed, and black", + "belly: pale yellow with faint barring", + "breast: buff-colored with darker streaks", + "crown: olive-green with fine dark streaks", + "forehead: pale yellow with fine dark streaks", + "eyes: dark with pale eye-ring", + "legs: long and pale pinkish-brown", + "wings: olive-green with faint dark bars", + "nape: olive-green with fine dark streaks", + "tail: long and tapered, dark with pale feather tips", + "throat: buff-colored with faint dark streaks" + ], + "long tailed cinclodes": [ + "back: dark brown, streaked feathers", + "beak: long, slender, and slightly curved", + "belly: pale brownish-gray with darker streaks", + "breast: light brown, streaked with darker brown", + "crown: dark brown with subtle streaks", + "forehead: smooth brown, merging into the crown", + "eyes: small, black, and expressive", + "legs: sturdy, gray with sharp claws", + "wings: medium-sized, brown with faint markings", + "nape: lighter brown, connecting the crown and back", + "tail: long and dark brown with narrow bands", + "throat: pale brownish-gray with darker streaks" + ], + "long tailed cormorant": [ + "back: sleek, dark feathers", + "beak: long, hooked, and sharp-edged", + "belly: lightly feathered, white to grayish", + "breast: dark and glossy plumage", + "crown: black, with a slight crest", + "forehead: smooth, black progression from the crown", + "eyes: bright, emerald green", + "legs: strong, black, and webbed", + "wings: large, dark, and powerful for diving", + "nape: long, slender neck with dark feathers", + "tail: elongated and slender, mostly black", + "throat: black with lighter colored feathering near the base" + ], + "long tailed fantail": [ + "back: smooth, shining feathers", + "beak: small, sharp, curved", + "belly: lightly colored plumpness", + "breast: soft, puffed plumage", + "crown: sleek, delicate crest", + "forehead: fine, pale feathers", + "eyes: bright, alert gaze", + "legs: thin, agile limbs", + "wings: broad, graceful span", + "nape: slender, arched neckline", + "tail: elegant, elongated feathers", + "throat: smooth, swooping contours" + ], + "long tailed finch": [ + "back: olive-green feathers with dark streaks", + "beak: red bicolored, strong and conical shape", + "belly: pale white with faint streaks", + "breast: faint pale gray-brown with subtle streaks", + "crown: black or dark gray with white spots", + "forehead: contrasting red or bright yellow band", + "eyes: black, large, and round with white eye ring", + "legs: pale pink, thin, and lengthy", + "wings: black with white spots and mustard-yellow trailing edge", + "nape: light gray blending into back feathers", + "tail: long, narrow, and black with white outer tips", + "throat: white patch extending to cheeks and ear coverts" + ], + "long tailed fiscal": [ + "back: sleek black feathers", + "beak: sharp, hooked tip", + "belly: white under-feathers", + "breast: black chest plumage", + "crown: smooth black crest", + "forehead: smooth black feathers", + "eyes: sharp, piercing gaze", + "legs: thin, strong limbs", + "wings: elongated, black feathers", + "nape: black feathered neckline", + "tail: long, elegant streamers", + "throat: white plumage contrast" + ], + "long tailed glossy starling": [ + "back: iridescent purple-blue sheen", + "beak: sharp, yellow-orange", + "belly: shiny purple-blue", + "breast: glossy violet-blue feathers", + "crown: shimmering blue-green tones", + "forehead: smooth, vibrant blue", + "eyes: striking, dark, and round", + "legs: sturdy, dark gray", + "wings: gleaming purple-blue with a metallic sheen", + "nape: radiant green-blue hue", + "tail: long, tapered, and deep blue", + "throat: lustrous violet-blue shading" + ], + "long tailed ground dove": [ + "back: sleek, well-rounded contour", + "beak: short, stout, and slightly curved", + "belly: soft, lighter-colored feathers", + "breast: plump with bright, even coloring", + "crown: eye-catching crest of feathers on top of the head", + "forehead: smooth plumage, blending into the crown", + "eyes: alert and expressive, with a thin ring of color", + "legs: slender and strong, with scaled texture", + "wings: broad and powerful, with intricate feather patterns", + "nape: gracefully curving neck with closely packed feathers", + "tail: long, elegant streamers that flow behind the bird", + "throat: delicate, lighter-colored plumage below the beak" + ], + "long tailed ground roller": [ + "back: vibrant blue feathers", + "beak: strong, slightly curved black beak", + "belly: soft, light blue feathers", + "breast: bright blue and warm brown feathers", + "crown: stunning blue plumage", + "forehead: blue feathers fading to white", + "eyes: piercing yellow eyes with black pupils", + "legs: sturdy, dull-yellow legs", + "wings: multi-hued blue and brown feathers", + "nape: striking blue feathers meeting the back", + "tail: extraordinarily long, streamer-like blue tail feathers", + "throat: white feathers transitioning to blue on the breast" + ], + "long tailed hawk": [ + "back: sleek brown feathers", + "beak: strong, hooked, yellow", + "belly: light cream with brown markings", + "breast: buff-colored with brown streaks", + "crown: dark brown plumage", + "forehead: lighter brown than crown", + "eyes: sharp, golden gaze", + "legs: sturdy, yellow-orange", + "wings: broad, brown, and banded", + "nape: rich brown with buff edges", + "tail: long and barred, with white tips", + "throat: whitish, with brown streaks" + ], + "long tailed hermit": [ + "back: greenish-bronze feathers", + "beak: long, curved, and slender", + "belly: pale gray with light streaks", + "breast: grayish-white with soft barring", + "crown: greenish with a slight crest", + "forehead: bronze-green feathers", + "eyes: small, black, and piercing", + "legs: short with strong feet", + "wings: elongated, brownish-black with white-tipped feathers", + "nape: greenish-bronze with a slight collar", + "tail: long, white-tipped, and graduated", + "throat: white, sometimes with a grayish tinge" + ], + "long tailed honey buzzard": [ + "back: olive-brown feathers with white streaks", + "beak: strong, hooked, blackish-gray", + "belly: white with fine dark barring", + "breast: pale whitish-buff with dark streaks", + "crown: dark brown with a paler border", + "forehead: lighter brown blending into the crown", + "eyes: bold, piercing yellow", + "legs: sturdy, yellow-orange with sharp talons", + "wings: brown with black tips and white markings", + "nape: olive-brown with white streaks, like the back", + "tail: long, brown with wide white bands", + "throat: pale whitish-buff, like the breast" + ], + "long tailed koel": [ + "back: sleek black feathers", + "beak: sharp, pointed, black", + "belly: white and black speckles", + "breast: glossy black plumage", + "crown: smooth black feathers", + "forehead: shiny black with a slight curve", + "eyes: bright red and alert", + "legs: sturdy gray-black", + "wings: strong, black, and elongated", + "nape: black feathers transitioning into speckled pattern", + "tail: long, narrow, and black with white tips", + "throat: black with subtle sheen" + ], + "long tailed manakin": [ + "back: vibrant green feathers covering the upper body", + "beak: small, thin, and black, ideal for eating insects", + "belly: soft yellow to white plumage on the lower abdomen", + "breast: bright red to orange patch surrounded by green feathers", + "crown: vibrant green feathers covering the head's top", + "forehead: green feathers blending seamlessly with the crown", + "eyes: small, black, with a thin white eyering", + "legs: sturdy, grey, with strong toes for perching", + "wings: vivid green with black edges for long flights", + "nape: green feathers transitioning from the crown to the upper back", + "tail: long, black, and iridescent, extending well beyond the body", + "throat: green feathers extending downwards from the beak" + ], + "long tailed meadowlark": [ + "back: rich brown with black streaks", + "beak: straight, sharp, dark grey", + "belly: pale and streaked", + "breast: yellowish-orange with black markings", + "crown: reddish-brown with streaks", + "forehead: bright red patch", + "eyes: small, dark, alert", + "legs: long, thin, grey", + "wings: brown with black bars, white edges", + "nape: reddish-brown with streaks", + "tail: elongated, dark brown with white outer feathers", + "throat: yellowish-orange with black markings" + ], + "long tailed minivet": [ + "back: striped shades of green and black feathers", + "beak: sharp and yellowish-orange", + "belly: light green feathers with a yellow tinge", + "breast: vibrant yellow or orange feathers", + "crown: sleek black feathers", + "forehead: bold black and white striped pattern", + "eyes: small, round, and black", + "legs: thin and grey with sharp claws", + "wings: long with green, black, and white stripes", + "nape: layered black and green feathers", + "tail: long and slender with alternating black and green feathers", + "throat: bright yellow or orange, transitioning into the breast" + ], + "long tailed mockingbird": [ + "back: light brown and smooth feathers", + "beak: slender, long, and slightly curved", + "belly: pale gray with soft fluff", + "breast: grayish-white, faintly streaked", + "crown: brown feathers with slight crest", + "forehead: flat, light brown leading to eyes", + "eyes: black, round and alert", + "legs: pale, slender and strong", + "wings: brownish-gray, long with white bars", + "nape: light brown feathers connecting to the crown", + "tail: long with distinctive white outer feathers", + "throat: white with faint gray streaks" + ], + "long tailed myna": [ + "back: shiny black feathers", + "beak: strong, yellow-orange color", + "belly: black with hint of iridescence", + "breast: dark feathers with a purplish sheen", + "crown: glossy black crest", + "forehead: black and sleek", + "eyes: bright yellow with black pupils", + "legs: sturdy, dark grey color", + "wings: black with hints of green iridescence", + "nape: shiny black, smooth feathers", + "tail: long, contrasting white and black feathers", + "throat: black with a slight purple sheen" + ], + "long tailed nightjar": [ + "back: streaked brown and gray feathers", + "beak: short, wide, and light gray", + "belly: mottled with pale brown and gray", + "breast: speckled with cream and brown", + "crown: patterned with brown and gray plumage", + "forehead: adorned with subtle pale markings", + "eyes: large, black, and round for night vision", + "legs: thin and grayish-brown", + "wings: long, pointed, and patterned in earth tones", + "nape: blends with crown, lined with brown and gray feathers", + "tail: elongated and pointed, featuring distinct barring", + "throat: white patch framed by speckled brown" + ], + "long tailed paradigalla": [ + "back: dark iridescent-green feathers", + "beak: sharp, black curved tip", + "belly: velvety black plumage", + "breast: yellow-orange feathers", + "crown: greenish-black feathers", + "forehead: black with short green tinge feathers", + "eyes: dark brown surrounded by a blue eye-ring", + "legs: strong, grayish-blue", + "wings: black with greenish sheen", + "nape: small, black and iridescent", + "tail: long, trailing black feathers", + "throat: vivid yellow plumage" + ], + "long tailed parakeet": [ + "back: green feathered upper body", + "beak: sharp, hooked orange beak", + "belly: light green, soft belly feathers", + "breast: vibrant, green plumage", + "crown: striking blue feathers atop head", + "forehead: bright green, smooth feathers", + "eyes: small, piercing black eyes", + "legs: slender, scaly grey legs", + "wings: green, blue, and black wing feathers", + "nape: rich green feathers at the back of the neck", + "tail: elongated, narrow, blue and green tail feathers", + "throat: green, smooth feathers transitioning to the breast" + ], + "long tailed potoo": [ + "back: light brown feathered with subtle patterns", + "beak: short, sharp, dark-colored", + "belly: pale grayish-white with fine brown streaks", + "breast: grayish-white, lightly spotted", + "crown: dark brown, mottled with lighter shades", + "forehead: lighter brown, blending into crown", + "eyes: large, round, dark with a slightly red tint", + "legs: slender, grayish-brown", + "wings: long, patterned feathers with brown and white", + "nape: light brown, spotted with pale feather tips", + "tail: extended, with wide, alternating dark, and light bands", + "throat: pale grayish-white, minimal streaking" + ], + "long tailed reed finch": [ + "back: sleek, light brown feathers", + "beak: small, pointed black beak", + "belly: soft, off-white feathers", + "breast: pale brownish-grey plumage", + "crown: grayish-brown feathers with darker streaks", + "forehead: smooth, ash-gray feathers", + "eyes: round, dark, and alert", + "legs: slim, black and durable", + "wings: long, brown with black streaks", + "nape: subtly darker brown feathers", + "tail: remarkably elongated, narrow, black tail feathers", + "throat: light grayish-white feathering" + ], + "long tailed rosefinch": [ + "back: vibrant olive-green feathers", + "beak: sharp, pointed pinkish-orange", + "belly: soft pinkish-white feathers", + "breast: rosy pink feathers with hints of white", + "crown: prominent red streaks", + "forehead: fiery red plumage, fading to pink", + "eyes: round, black, and alert", + "legs: delicate, long, and pinkish-orange", + "wings: olive-green with contrasting white streaks", + "nape: striking red that softens to pink", + "tail: elegant, elongated, and forked with olive-green feathers", + "throat: brilliant red blending into rose-colored breast feathers" + ], + "long tailed shrike": [ + "back: grayish-brown upper body", + "beak: strong, hooked black bill", + "belly: white underbelly with dark rufous flanks", + "breast: pale gray or white chest", + "crown: black head with distinct crest", + "forehead: black band across the brow", + "eyes: dark, piercing gaze", + "legs: strong, grayish-brown legs", + "wings: black primary feathers with white patch", + "nape: grayish-brown feathers at the back of head", + "tail: long, elegant black tail feathers", + "throat: pearl white with a black stripe" + ], + "long tailed sibia": [ + "back: sleek black feathers", + "beak: long, slightly curved", + "belly: white with faint grey streaks", + "breast: black plumage", + "crown: black with white streaks", + "forehead: white, horizontal band", + "eyes: dark and round", + "legs: sturdy and grey", + "wings: black with white edging", + "nape: prominent white stripe", + "tail: elongated, black and white feathers", + "throat: black with subtle grey markings" + ], + "long tailed silky flycatcher": [ + "back: smooth, silky plumage", + "beak: slim, pointed bill", + "belly: pale grayish-white underparts", + "breast: light gray, slightly puffed", + "crown: sleek, dark crest", + "forehead: smooth, dark feathers", + "eyes: dark, alert, and focused", + "legs: slender, dark and sturdy", + "wings: elongated, elegant, and dark", + "nape: silky dark plumage continuation", + "tail: remarkably long and dark streamers", + "throat: grayish-white, unassuming" + ], + "long tailed starling": [ + "back: iridescent green feathers", + "beak: sharp, straight, black", + "belly: dark, glossy feathers", + "breast: shiny, purple-blue plumage", + "crown: bold, metallic green", + "forehead: vibrant green sheen", + "eyes: dark, beady, and alert", + "legs: long, slender, black", + "wings: shimmering green with hints of blue", + "nape: bright green, gradient to darker shades", + "tail: elongated, tapering, glossy green-blue", + "throat: iridescent purple-blue feathers" + ], + "long tailed sylph": [ + "back: shimmering green-blue feathers", + "beak: small, slender, and sharp", + "belly: iridescent turquoise hue", + "breast: vibrant, bluish-green plumage", + "crown: metallic green with a delicate crest", + "forehead: shiny green-blue sheen", + "eyes: round, small, and black", + "legs: thin, delicate, grayish-blue", + "wings: broad, rounded, and colorful", + "nape: gleaming green-blue feathers", + "tail: long, flowing, ribbon-like feathers", + "throat: luminous turquoise shade" + ], + "long tailed tapaculo": [ + "back: olive-brown and streaked", + "beak: short and wide", + "belly: grayish-white", + "breast: pale gray with subtle streaks", + "crown: dark and rounded", + "forehead: olive-brown", + "eyes: black and small", + "legs: sturdy with sharp claws", + "wings: short and rounded", + "nape: olive-brown with streaks", + "tail: long and spiny", + "throat: grayish-white" + ], + "long tailed thrush": [ + "back: sleek, earth-toned feathers", + "beak: strong, pointed, and yellowish", + "belly: off-white and speckled", + "breast: light brown with dark streaks", + "crown: dark brown with slight crest", + "forehead: soft brown fading into the crown", + "eyes: round, black, and expressive", + "legs: thin, strong, and yellowish-gray", + "wings: brown with white wingbars", + "nape: brown with a hint of olive", + "tail: long and pointed with white streaks", + "throat: lightly speckled white" + ], + "long tailed tit": [ + "back: sleek grayish-black feathers", + "beak: short, sharp, and black", + "belly: white and fluffy", + "breast: white with rose-colored tints", + "crown: black with white streaks", + "forehead: small white patch", + "eyes: dark and round", + "legs: slender and dark gray", + "wings: grayish-black with streaks of white", + "nape: white and fluffy", + "tail: long, prominent, and black", + "throat: white with a hint of pink" + ], + "long tailed triller": [ + "back: sleek, olive-green feathers", + "beak: sharp, pointed, black", + "belly: pale yellow, soft feathers", + "breast: vibrant yellow plumage", + "crown: olive-green with faint streaks", + "forehead: smooth, olive-green feathers", + "eyes: dark, round, alert", + "legs: slender, grayish-blue", + "wings: olive-green with black markings", + "nape: smooth, olive-green feathers", + "tail: elongated, black with white tips", + "throat: pale yellow, short feathers" + ], + "long tailed tyrant": [ + "back: sleek, greenish-black plumage", + "beak: sharp, pointed black beak", + "belly: soft, whitish-grey feathers", + "breast: smooth, white feathered area", + "crown: slightly raised, black feathers", + "forehead: greenish-black, leading to crown", + "eyes: alert, piercing black eyes", + "legs: thin, grey, strong limbs", + "wings: elongated, black with greenish tint", + "nape: smoothly curved, greenish-black feathers", + "tail: long, forked black appendage", + "throat: white feathers, contrasting with darker plumage" + ], + "long tailed widowbird": [ + "back: sleek black feathers", + "beak: small, sharp, and pointed", + "belly: black and elongated", + "breast: black with a slight sheen", + "crown: black feathers with a rounded shape", + "forehead: smooth black feathers", + "eyes: round and dark with a white ring", + "legs: slender and dark", + "wings: black and aerodynamically shaped", + "nape: black feathers transitioning to the long tail", + "tail: extremely long and elegant black plumes", + "throat: black feathers with slight iridescence" + ], + "long tailed wood partridge": [ + "back: dark-brown feathers with subtle markings", + "beak: short, curved, and sharp", + "belly: light-gray feathers with black bands", + "breast: chestnut-colored with fine black markings", + "crown: red and gray feathers with a distinctive crest", + "forehead: light gray with bold black stripe", + "eyes: small, round, and black", + "legs: sturdy, grayish-pink, with sharp claws", + "wings: able to rapidly open, barred patterns of black, brown, and white feathers", + "nape: grayish-brown feathers blending into back", + "tail: elongated, slender, and multi-colored with barred patterns", + "throat: white with a black border that merges into chestnut breast" + ], + "long tailed woodcreeper": [ + "back: streaked brown and black feathers", + "beak: long, slightly curved, sharp", + "belly: cream-colored and striped", + "breast: striped brown and black", + "crown: dark reddish-brown", + "forehead: reddish-brown feathers", + "eyes: dark, round, and small", + "legs: long, slender, grayish-brown", + "wings: brown and black with barred pattern", + "nape: reddish-brown, striped", + "tail: elongated, stiff with barred pattern", + "throat: light cream-colored with streaks" + ], + "long tailed woodnymph": [ + "back: iridescent green feathers", + "beak: long, slender and slightly curved", + "belly: pale gray with green tint", + "breast: shimmering emerald green", + "crown: vibrant green with a slight crest", + "forehead: smooth, bright green feathers", + "eyes: small and dark, surrounded by green", + "legs: thin, slate-gray with tiny talons", + "wings: elongated, dark green with purple sheen", + "nape: iridescent green transitioning to turquoise", + "tail: long, thin, purple-blue feathers with a white tip", + "throat: gleaming green plumage" + ], + "long toed lapwing": [ + "back: olive-brown with white spots", + "beak: long, slender, and black", + "belly: white with dark streaks on sides", + "breast: white with black markings", + "crown: dark brown with white stripe", + "forehead: white with black markings on sides", + "eyes: large, black, and round", + "legs: long, slender, and yellow", + "wings: black and white feathers with a green sheen", + "nape: olive-brown with white spots", + "tail: black with white outer feathers", + "throat: white with dark streaks" + ], + "long toed stint": [ + "back: brownish-gray with light streaks", + "beak: long, thin, and slightly curved", + "belly: white with light brown speckling", + "breast: buff-colored with dark brown streaks", + "crown: brown with darker streaks", + "forehead: pale with fine streaks", + "eyes: small, dark, and well-defined", + "legs: long, slender, and yellowish-green", + "wings: brownish-gray with white wingbars", + "nape: mottled with dark brown and light brown", + "tail: rounded, barred with dark and light brown", + "throat: white with light brown speckling" + ], + "long trained nightjar": [ + "back: camouflaged feather patterns", + "beak: small, slender, and sharp", + "belly: pale feathers with dark streaks", + "breast: mottled brown and gray plumage", + "crown: dark plumage with subtle patterns", + "forehead: slightly raised with fine feathers", + "eyes: large, dark, and round for nocturnal vision", + "legs: short and thin with small feet", + "wings: long, pointed, and well-suited for silent flight", + "nape: dark, blending into back and crown plumage", + "tail: elongated and ornate with prominent train feathers", + "throat: lightly speckled with subtle feather markings" + ], + "long tufted screech owl": [ + "back: dark brown and gray plumage", + "beak: sharp, hooked, pale gray", + "belly: streaked with white and reddish-brown feathers", + "breast: reddish-brown plumage with white streaks", + "crown: dark gray with white and reddish-brown spots", + "forehead: tufted, long, with dark brown feathers", + "eyes: large, yellow, encircled by a black \"mask", + "legs: feathered, pale gray", + "wings: barred pattern, dark gray and brown", + "nape: dark gray with reddish-brown spots", + "tail: long, rounded, barred with gray and brown", + "throat: white with fine reddish-brown streaks" + ], + "long wattled umbrellabird": [ + "back: sleek black feathers", + "beak: large, hooked, sharp", + "belly: black, soft plumage", + "breast: prominent, dark feathers", + "crown: distinctive crest of feathers", + "forehead: black, covered by crest", + "eyes: small, dark, alert", + "legs: strong, black, scaly", + "wings: broad, rounded, black", + "nape: covered in dark, smooth feathers", + "tail: long, black, narrow", + "throat: long wattle hanging down" + ], + "long whiskered owlet": [ + "back: small and brownish-gray", + "beak: short and sharp", + "belly: white with brown streaks", + "breast: white with brown spots", + "crown: brownish-gray with white streaks", + "forehead: white and small", + "eyes: large, round, and black", + "legs: short and feathered", + "wings: brownish-gray with white spots", + "nape: brownish-gray with white streaks", + "tail: brownish-gray and short", + "throat: whitish with light brown markings" + ], + "long winged antwren": [ + "back: olive-grey feathers", + "beak: hooked and slender", + "belly: off-white and light grey", + "breast: light grey with black streaks", + "crown: black or dark grey feathers", + "forehead: black or dark grey feathers", + "eyes: dark with pale eye-ring", + "legs: long and slender", + "wings: elongated with dark plumage", + "nape: black or dark grey feathers", + "tail: long and tapered", + "throat: off-white or light grey" + ], + "long winged harrier": [ + "back: sleek and feathered", + "beak: sharp, hooked tip", + "belly: light, barred plumage", + "breast: buff-colored with streaks", + "crown: dark, smooth feathers", + "forehead: slightly prominent", + "eyes: intense, yellow gaze", + "legs: thin, agile, yellow legs", + "wings: lengthy, narrow, and pointed", + "nape: well-defined, dark feathers", + "tail: long, banded, fan-shaped", + "throat: buff-colored, bare skin" + ], + "longuemare sunangel": [ + "back: iridescent green feathers", + "beak: slender, black and curved", + "belly: pale gray plumage", + "breast: shimmering purple-blue feathers", + "crown: bright green, crest-like", + "forehead: brilliant emerald green", + "eyes: small, dark, and beady", + "legs: dark gray and skinny", + "wings: short and rounded, greenish blue", + "nape: metallic green feathered", + "tail: short and forked, dark blue-green", + "throat: dazzling and bluish-purple" + ], + "lord howe rail": [ + "back: dark brown with black streaks", + "beak: long, slender, and curved downward", + "belly: brownish-grey with lighter feathers", + "breast: reddish-brown with dark spots", + "crown: dark brown with black lines", + "forehead: lighter brown with small black streaks", + "eyes: small, beady, and black", + "legs: short, sturdy, and greenish-yellow", + "wings: short and rounded, dark brown with black streaks", + "nape: dark brown with black streaks", + "tail: long and narrow with dark brown and black feathers", + "throat: reddish-brown with white flecks" + ], + "lorentz whistler": [ + "back: sleek bluish-grey feathers", + "beak: slender, curved black beak", + "belly: light greyish-white underbelly", + "breast: muted greyish-blue plumage", + "crown: dark grey crest atop the head", + "forehead: smooth, sleek bluish-grey", + "eyes: round, dark, and alert", + "legs: slender and strong with black tint", + "wings: long, blue-grey feathers with subtle striping", + "nape: bluish-grey transition from the crown", + "tail: sturdy, slightly forked blue-grey feathers", + "throat: pale grey throat with delicate white markings" + ], + "loria satinbird": [ + "back: iridescent green-blue", + "beak: small, black and pointed", + "belly: shiny, deep blue", + "breast: vibrant, royal blue", + "crown: glossy, turquoise blue", + "forehead: bright, metallic blue", + "eyes: large, dark, round", + "legs: short, gray, and strong", + "wings: shimmering, multicolored blue-green", + "nape: lustrous, greenish-blue", + "tail: elongated, iridescent blue feathers", + "throat: electric, bright blue" + ], + "loten sunbird": [ + "back: iridescent green with hints of blue", + "beak: long, slender, and curved", + "belly: bright yellow with orange tinges", + "breast: vibrant yellow-orange", + "crown: shimmering metallic purple-blue", + "forehead: shining metallic green", + "eyes: small, dark, and round", + "legs: slender grayish-black", + "wings: shimmering green-blue with dark, branched feathers", + "nape: iridescent green transitioning to metallic purple-blue", + "tail: elongated, with central feathers extending beyond others", + "throat: brilliant yellow with an orange hue" + ], + "louisiade white eye": [ + "back: olive-green feathers covering the upper body", + "beak: short, black and slender for eating insects", + "belly: pale greyish-white with faint yellow undertones", + "breast: light grey with subtle yellow tinges", + "crown: vibrant greenish-yellow feathers on the head", + "forehead: bright yellow feathers on the upper portion", + "eyes: large, distinctive white eye-ring surrounding a dark eye", + "legs: slender, grey legs with sharp claws for perching", + "wings: olive-green with black flight feathers and white tips", + "nape: yellow-green feathers transitioning to olive-green", + "tail: long and tapered, olive-green feathers with white edges", + "throat: pale grey, merging with the breast coloration" + ], + "lovely cotinga": [ + "back: vibrant blue feathers", + "beak: short and black", + "belly: light blue plumage", + "breast: bright turquoise feathers", + "crown: brilliant blue head", + "forehead: rich blue hue", + "eyes: small and dark", + "legs: slender black limbs", + "wings: vivid blue with rounded tips", + "nape: blue feathers meeting the crown", + "tail: long, blue, and slightly forked", + "throat: lighter blue plumage" + ], + "lovely fairywren": [ + "back: vibrant blue feathers with hints of purple", + "beak: petite black bill perfect for catching insects", + "belly: soft-grey underside for balance and camouflage", + "breast: eye-catching striking blue plumage", + "crown: sky blue crest that stands tall on its head", + "forehead: bright blue feathers transition from the crown", + "eyes: tiny black beads filled with curiosity", + "legs: slender, almost inconspicuous black legs", + "wings: mixture of azure and darker blue shades for powerful flight", + "nape: transition zone connecting the crown to the body", + "tail: elongated, fan-like blue feathers for zipping through the air", + "throat: stunning blue that contrasts with a smaller area of black feathers" + ], + "lovely sunbird": [ + "back: vibrant blue and green iridescence", + "beak: long, slender, and curved", + "belly: pale yellow with metallic sheen", + "breast: shimmering turquoise and purple", + "crown: gleaming emerald green", + "forehead: radiant yellow to orange gradient", + "eyes: dark, expressive, and round", + "legs: slim, dainty, and black", + "wings: short and rounded, with green and blue hues", + "nape: metallic golden-green", + "tail: elongated, inky black with a slight curve", + "throat: brilliant orange and red with a golden shimmer" + ], + "loveridge sunbird": [ + "back: vibrant green feathers", + "beak: long, thin, and curved", + "belly: bright yellow plumage", + "breast: iridescent blue-green", + "crown: shimmering emerald crest", + "forehead: radiant green stripe", + "eyes: small, dark, and alert", + "legs: slender and black", + "wings: iridescent green with flashes of blue", + "nape: brilliant green merging into yellow", + "tail: long and forked, with green and blue shimmer", + "throat: gleaming metallic blue" + ], + "lowland akalat": [ + "back: olive-brown feathers", + "beak: small, thin, black", + "belly: pale gray-white", + "breast: reddish-brown", + "crown: dark brown", + "forehead: olive-brown", + "eyes: round, black", + "legs: slender, pale pink", + "wings: olive-brown with slight wing-bars", + "nape: olive-brown", + "tail: reddish-brown, medium-length", + "throat: grayish-white" + ], + "lowland peltops": [ + "back: black with iridescent blue sheen", + "beak: strong, wide, and black", + "belly: white and fluffy", + "breast: black and glossy", + "crown: black with small crest", + "forehead: black and smooth", + "eyes: dark, large, and round", + "legs: sturdy and black", + "wings: black with white-tipped feathers", + "nape: black and sleek", + "tail: long, black with white-tipped feathers", + "throat: white and soft" + ], + "lowland sooty boubou": [ + "back: dark grey plumage", + "beak: black, straight, and strong", + "belly: smokey-grey underparts", + "breast: slate grey feathers", + "crown: blackish-brown cap", + "forehead: dusky grey shade", + "eyes: dark brown iris", + "legs: black with sharp claws", + "wings: dark grey with white tips", + "nape: grey with lighter streaks", + "tail: long, black with white outer feathers", + "throat: charcoal-grey color" + ], + "lowland white eye": [ + "back: olive-green feathers", + "beak: short, pointed, black", + "belly: pale yellow plumage", + "breast: soft yellow feathers", + "crown: bright yellow-green", + "forehead: lighter olive-green", + "eyes: large, white eye-ring", + "legs: pale gray, slender", + "wings: greenish with faint yellow edges", + "nape: olive-green plumage", + "tail: greenish-yellow, slightly forked", + "throat: yellowish-white feathers" + ], + "luapula cisticola": [ + "back: light brown with streaks", + "beak: sharp, pointed, black", + "belly: creamy white with faint barring", + "breast: pale buff with streaks", + "crown: rufous with pale streaks", + "forehead: buffy-white with streaks", + "eyes: round and dark", + "legs: slender, pale pinkish-gray", + "wings: brownish with faint barring", + "nape: rufous with pale streaks", + "tail: russet, short, fan-shaped", + "throat: white, unmarked" + ], + "lucy warbler": [ + "back: olive-green, spotted with darker streaks", + "beak: thin and pointed, designed for insect-catching", + "belly: pale yellow or white with faint streaks", + "breast: yellowish-green, becoming whiter towards the centre", + "crown: olive-green streaked with black", + "forehead: pale olive with a central stripe", + "eyes: black with faint white eye-ring", + "legs: pale pink or grey, thin and strong", + "wings: olive-green with dark flight feathers", + "nape: olive-green with black streaks", + "tail: dark brown with white tips on outer feathers", + "throat: bright yellow, unmarked" + ], + "ludwig bustard": [ + "back: dark brown feathers with lighter streaks", + "beak: long, slightly curved, and pale yellow", + "belly: off-white with black spots and stripes", + "breast: greyish-brown with fine white speckles", + "crown: dark brown and slightly raised with white streaks", + "forehead: light sandy brown with white streaks", + "eyes: dark and round, surrounded by a light brown patch", + "legs: sturdy and pale yellow, with long black talons", + "wings: large and long, with a mix of dark and light brown, and white speckles", + "nape: noticeable white collar separating the neck from the back of the head", + "tail: long and fan-shaped, with brown and white feathers", + "throat: white with delicate black stripes and spots" + ], + "l\u00fchder bushshrike": [ + "back: vibrant olive-green with scattered black spots", + "beak: powerful, hooked, black", + "belly: light yellow with a hint of green", + "breast: bright yellow blending to greenish-yellow", + "crown: vibrant orange-red", + "forehead: orange-red, fading into olive-green", + "eyes: dark, piercing, surrounded by a small patch of white feathers", + "legs: strong, greyish-blue", + "wings: olive-green with black primary feathers and white-tipped secondaries", + "nape: olive-green with a touch of orange near the crown", + "tail: long, graduated, olive-green with black and white markings", + "throat: golden-yellow, bordered by a thin black band" + ], + "lunulated antbird": [ + "back: olive-brown with light feather edges", + "beak: short, sharp, and black", + "belly: creamy-white with thin streaks", + "breast: white with black crescents", + "crown: black with a crescent-shaped white pattern", + "forehead: dark with white crescent markings", + "eyes: dark with thin white eyering", + "legs: pale pinkish-gray", + "wings: olive-green with faint crescent patterns", + "nape: black with crescent-shaped markings", + "tail: long, olive-green with pale tips", + "throat: white with crescent-shaped dark streaks" + ], + "luzon bleeding heart": [ + "back: greenish-brown with subtle iridescence", + "beak: short and sharp, light-colored", + "belly: pale grayish-white with red streaks", + "breast: intense red patch resembling blood", + "crown: brownish with faint blue sheen", + "forehead: dark brown blending into the crown", + "eyes: small, dark, surrounded by blue skin", + "legs: long, slender, pinkish-gray", + "wings: brown with greenish-blue sheen and white spots", + "nape: brown with a slight bluish tinge", + "tail: elongated, dark brown with white tips", + "throat: white fading into pale gray" + ], + "luzon boobook": [ + "back: brownish-feathered and streaked", + "beak: sharp, curved, grayish-black", + "belly: pale yellowish with dark spots", + "breast: whitish-brown with streaks", + "crown: dusky brown with pale spots", + "forehead: feathered, brownish-white", + "eyes: large, dark, and forward-facing", + "legs: robust, grayish", + "wings: rounded, brown with light markings", + "nape: brownish-gray and streaked", + "tail: dark-brown with lighter bands", + "throat: whitish with fine, dark streaks" + ], + "luzon flameback": [ + "back: greenish-yellow feathers with streaks of black", + "beak: long, slender, and slightly curved", + "belly: light cream with hints of yellow", + "breast: bright yellow with black streaks", + "crown: fiery red on the male, duller reddish-brown on the female", + "forehead: red or reddish-brown, similar to the crown", + "eyes: small, dark, with a white eye-ring", + "legs: grey and slender with strong claws", + "wings: greenish-yellow with black streaks and white patches", + "nape: bright green with the same streaks as the back", + "tail: black feathers with white tips and a yellow central patch", + "throat: white or light cream, often with some yellow wash" + ], + "luzon hornbill": [ + "back: dark greenish-black feathers", + "beak: large, curved, ivory-white", + "belly: pale grey to off-white", + "breast: deep black with slight sheen", + "crown: glossy black with short crest", + "forehead: wide, ivory-white stripe", + "eyes: small, deep-set, dark brown", + "legs: dark grey with strong claws", + "wings: dark greenish-black, broad, rounded", + "nape: glossy black merging with crest", + "tail: wide, black, white-tipped feathers", + "throat: black fading to pale grey" + ], + "luzon racquet tail": [ + "back: vivid green feathers", + "beak: short, sharp, and light-colored", + "belly: light green hue", + "breast: bright green plumage", + "crown: vibrant green with a slight blue tinge", + "forehead: rich green feathers", + "eyes: small, dark, and round", + "legs: grayish-blue and sturdy", + "wings: green with striking blue edges", + "nape: blue-green feathers", + "tail: elongated, greenish-blue, racquet-shaped feathers", + "throat: yellowish-green patch" + ], + "luzon rail": [ + "back: olive-brown with darker streaks", + "beak: short and straight, pale grayish", + "belly: white with blackish barring", + "breast: white blended with gray", + "crown: dark brown with subtle streaks", + "forehead: pale grayish-brown", + "eyes: dark with white eye-ring", + "legs: long and slender, pale gray", + "wings: short and rounded, brownish-black with white markings", + "nape: olive-brown with darker streaks", + "tail: short and black, slightly rounded", + "throat: whitish-gray with faint streaks" + ], + "luzon redstart": [ + "back: vibrant reddish-orange feathers", + "beak: short, pointed black beak", + "belly: white underside with orange tinge", + "breast: bright red-orange plumage", + "crown: bold red-orange feathers", + "forehead: red-orange patch above the bill", + "eyes: small, round, black eyes", + "legs: slender and black in color", + "wings: black with red-orange patches", + "nape: red-orange plumage at the back of the head", + "tail: black and long with red-orange accents", + "throat: brilliant white with orange shading" + ], + "luzon scops owl": [ + "back: grayish-brown with black streaks", + "beak: short, curved, pale gray", + "belly: white with brown bars", + "breast: light gray with dark streaks", + "crown: feathered, rounded, grayish-brown", + "forehead: grayish-brown with black speckles", + "eyes: large, piercing, orange-yellow", + "legs: pale gray with faint brown barring", + "wings: mottled grayish-brown with black markings", + "nape: grayish-brown with black streaks", + "tail: long, barred gray and black", + "throat: pale gray with faint brown streaks" + ], + "luzon striped babbler": [ + "back: olive-brown with faint streaks", + "beak: short and slightly curved", + "belly: pale yellowish-brown", + "breast: yellowish-brown with darker streaks", + "crown: rufous-brown, striped", + "forehead: pale beige with dark stripes", + "eyes: small and black", + "legs: slender and grayish-brown", + "wings: olive-green with reddish-brown edges", + "nape: rufous-brown with dark streaks", + "tail: long, graduated, and olive-brown", + "throat: pale yellow with faint streaks" + ], + "lyre tailed honeyguide": [ + "back: sleek, brown feathered", + "beak: thin, slightly curved", + "belly: pale, creamy hue", + "breast: white, spotted with brown", + "crown: dark brown, indistinct crest", + "forehead: smooth, brown feathered", + "eyes: small, black, slightly beady", + "legs: slender, dull orange", + "wings: long, brown with white spots", + "nape: brown, blends with crown", + "tail: elongated, lyre-shaped, adorned with white tips", + "throat: white, contrasts with surrounding feathers" + ], + "lyre tailed nightjar": [ + "back: brownish plumage with streaks and spots", + "beak: short, wide, hooked tip", + "belly: light brown with dark markings", + "breast: buff-colored feathers, barred pattern", + "crown: black and buff streaks, flattened crest", + "forehead: pale brown with fine black streaks", + "eyes: large, rounded, dark brown", + "legs: short, feathered, strong toes and claws", + "wings: long, rounded, marbled brown and black pattern", + "nape: light brown with black streaks and spots", + "tail: elongated, lyre-shaped, brown with white tips", + "throat: white with dusky bars, elongated feathers" + ], + "macaroni penguin": [ + "back: sleek black feathers", + "beak: strong, black-orange hooked beak", + "belly: white and smooth", + "breast: white, slightly rounded", + "crown: black feathers with a yellow crest", + "forehead: black with yellow lines above the eyes", + "eyes: dark, expressive, and round", + "legs: short, pink, and strong", + "wings: black and flipper-like", + "nape: black feathers, slim neck", + "tail: short, black, and stiff", + "throat: white with a black-bordered patch" + ], + "maccoa duck": [ + "back: silky dark-brown plumage", + "beak: bluish-grey, metallic sheen", + "belly: white with black markings", + "breast: chestnut-colored feathers", + "crown: round black head", + "forehead: smooth black plumage", + "eyes: strikingly white with black pupils", + "legs: sturdy black legs with webbed feet", + "wings: dark-brown primary feathers with white secondary feathers", + "nape: black extending down the neck", + "tail: short, and composed of black feathers", + "throat: white feathers transitioning to chestnut breast" + ], + "macgillivray prion": [ + "back: bluish-grey feathers with white streaks", + "beak: short and stout, pale blue with a black tip", + "belly: white and soft", + "breast: pale blue with a white patch", + "crown: greyish-blue with a characteristic peak", + "forehead: white markings above the beak", + "eyes: small and black, encircled by a thin white line", + "legs: bluish-grey with webbed feet", + "wings: long with dark grey primary feathers and bluish-grey secondary feathers", + "nape: grey with subtle white streaks", + "tail: short and slightly forked, bluish-grey in color", + "throat: white and unmarked" + ], + "macgillivray warbler": [ + "back: olive-green with darker streaks", + "beak: thin and pointed, blackish-gray", + "belly: white with faint dark streaks", + "breast: yellowish-white with dark streaks", + "crown: dark gray with a blue tint", + "forehead: pale yellow with grayish-blue edges", + "eyes: black with a prominent white eyering", + "legs: pinkish-gray and slender", + "wings: olive-green with two white wing bars", + "nape: grayish-blue transitioning to olive-green", + "tail: olive-green with white outer edges", + "throat: bright yellow" + ], + "macgregor bowerbird": [ + "back: olive-green feathers with a brown hue", + "beak: sturdy, straight, pale greyish-brown", + "belly: light grayish-brown with fine black barring", + "breast: creamy-white with fine black barring", + "crown: sleek, olive-green feathers with a brown hue", + "forehead: light olive-green transitioning to the crown", + "eyes: dark brown with thin, white eye-ring", + "legs: slender, greyish-brown", + "wings: olive-green with intricate brown patterns", + "nape: lighter olive-green, smoothly connecting the crown and back", + "tail: long, olive-green with fine brown patterns, slightly rounded", + "throat: creamy-white with distinct black barring" + ], + "macgregor honeyeater": [ + "back: olive-green, smooth feathers", + "beak: long, slender, curved downward", + "belly: pale yellow, soft plumage", + "breast: vibrant yellow, patch of black streaks", + "crown: olive-green, rounded crest", + "forehead: greenish-yellow, slight feathering", + "eyes: dark, round, framed by thin eye-ring", + "legs: thin, grayish-brown, strong", + "wings: olive-green, elongated, lined with white", + "nape: olive-green, slightly darker than back", + "tail: long, dark olive, thin white tips", + "throat: light yellow, faint streaks of green" + ], + "mackinlay cuckoo dove": [ + "back: pale grayish-brown with subtle green sheen", + "beak: short, black, and slightly curved", + "belly: light creamy white with grayish-brown edges", + "breast: pale ros\u00e9 pink with fine black-barred pattern", + "crown: glossy greenish-black with purple iridescence", + "forehead: smooth, light gray transitioning into crown", + "eyes: dark brown surrounded by grayish-white eye-ring", + "legs: short, sturdy, and reddish-brown", + "wings: gray-brown with black edges and white-tipped feathers", + "nape: greenish-black with purplish iridescence, blending with the crown", + "tail: long, tapered, grayish-brown with black edges and white tips", + "throat: pale white with finely barred grayish-brown pattern" + ], + "mackinnon shrike": [ + "back: grayish-green with subtle streaks", + "beak: strong, hooked black bill", + "belly: creamy-white with fine barring", + "breast: pale gray with faint streaks", + "crown: dark gray and smooth", + "forehead: dusky gray blending into crown", + "eyes: piercing dark black", + "legs: sturdy and dark gray", + "wings: black with white patches", + "nape: grayish-green merging into back", + "tail: long, black with white edges", + "throat: pale grayish-white and smooth" + ], + "macleay honeyeater": [ + "back: olive-green feathers extending down its spine", + "beak: long, curved black beak for nectar feeding", + "belly: creamy yellow underbelly with subtle streaks", + "breast: olive-green feathers fading to creamy yellow", + "crown: bright yellow patch on top of the head", + "forehead: olive-green meeting bright yellow crown", + "eyes: dark, round eyes with a faint eye-ring", + "legs: slim, dark grey legs with sharp claws", + "wings: olive-green with darker flight feathers", + "nape: olive-green feathers connecting head to back", + "tail: long, dark, graduated tail feathers", + "throat: creamy yellow with faint streaks" + ], + "macquarie shag": [ + "back: dark grey with white streaks", + "beak: long, narrow, and hooked", + "belly: pale grey with a slight brown tinge", + "breast: white with dark grey streaks", + "crown: black with a slight green sheen", + "forehead: steep slope with a black-green feather crest", + "eyes: bright blue with a red orbital ring", + "legs: black with webbed feet", + "wings: dark grey with white flight feathers", + "nape: black, blending into the dark grey of the back", + "tail: medium length, charcoal grey with a fan-like shape", + "throat: white with fine grey streaks" + ], + "macqueen bustard": [ + "back: golden brown with dark streaks", + "beak: greyish-yellow, strong and slightly curved", + "belly: white and lightly streaked", + "breast: buff-colored with black markings", + "crown: pale sandy color with black stripes", + "forehead: pale whitish-brown", + "eyes: dark brown, with white eyebrows", + "legs: dull yellow, long and sturdy", + "wings: wide and rounded, with dark and light brown barring", + "nape: pale sandy brown with black streaks", + "tail: long and broad, with alternating white and brown bands", + "throat: white, with faint black streaks" + ], + "madagascar bee eater": [ + "back: vibrant green feathers", + "beak: long, slender and black", + "belly: pale blue plumage", + "breast: bright green and yellow feathers", + "crown: emerald green with a distinctive crest", + "forehead: deep blue hue fading into green", + "eyes: large, dark brown with a hint of blue", + "legs: slim, black with sharp claws", + "wings: elongated, blue and green with a black edge", + "nape: green and blue meeting in a smooth gradient", + "tail: long, slender, blue with black tips", + "throat: bright yellow, contrasting with the blue belly" + ], + "madagascar blue vanga": [ + "back: deep blue feathers", + "beak: strong, black curved shape", + "belly: bright white underside", + "breast: white feathers merging with blue", + "crown: vibrant blue plumage", + "forehead: iridescent blue feathers", + "eyes: keen, black and surrounded by blue", + "legs: sturdy, dark grey with sharp claws", + "wings: striking blue with white edges", + "nape: rich blue feathers fading towards white", + "tail: elongated blue feathers with white tips", + "throat: white feathers seamlessly blending with blue" + ], + "madagascar blue pigeon": [ + "back: vibrant blue feathers", + "beak: short and hooked, light gray color", + "belly: slightly lighter blue hue", + "breast: rich blue plumage", + "crown: bright blue crest on the head", + "forehead: vibrant blue feathers transitioning into the crown", + "eyes: round and dark, encircled with white ring", + "legs: reddish-gray with scaled texture", + "wings: vivid blue feathers with dark primary feathers", + "nape: blue feathers connecting the crown to the back", + "tail: elongated, dark blue feathers with white tips", + "throat: bright blue plumage, slightly puffed" + ], + "madagascar buttonquail": [ + "back: brown and white speckled feathers", + "beak: small, pointed, and pale brown", + "belly: light brown with dark brown spots", + "breast: grayish-brown with black markings", + "crown: reddish-brown with black streaks", + "forehead: pale grayish-brown", + "eyes: dark, beady, and alert", + "legs: slender, grayish-brown", + "wings: short, rounded, with mottled brown and white feathers", + "nape: reddish-brown with faint black streaks", + "tail: short, brown with white markings", + "throat: light brown with fine black streaks" + ], + "madagascar buzzard": [ + "back: earthy brown feathers with white streaks", + "beak: sharp, hooked yellowish beak", + "belly: white feathers with brownish spots", + "breast: whitish feathers with brownish streaks", + "crown: brown feathers with lighter streaks", + "forehead: light brown with small white streaks", + "eyes: piercing yellow with a black pupil", + "legs: strong, yellow scaled legs with sharp talons", + "wings: brown feathers with white edges and streaks", + "nape: rich brown with lighter streaks", + "tail: brown feathers with white bands", + "throat: off-white feathers with a slight brown tinge" + ], + "madagascar cisticola": [ + "back: brownish-grey, slightly streaked plumage", + "beak: short, thin, pointy, black", + "belly: off-white, light grey, wispy", + "breast: light buff, greyish-brown", + "crown: reddish-brown, streaked or spotted", + "forehead: pale grey, small crest", + "eyes: round, small, dark brown", + "legs: slender, dark grey or black", + "wings: brownish-grey, pointed, some barring", + "nape: reddish-brown, streaks or spots", + "tail: short, fan-shaped, dark brown with lighter edges", + "throat: light grey, buff wash" + ], + "madagascar cuckoo hawk": [ + "back: dark brown feathers with light speckles", + "beak: black, curved, and sharp", + "belly: pale gray and white streaks", + "breast: light gray with fine barring", + "crown: dark brown with light speckles", + "forehead: grayish-white blending into crown", + "eyes: yellow with black pupils", + "legs: long, yellowish-green with sharp talons", + "wings: dark brown with white barred patterns", + "nape: light grayish-brown with fine barring", + "tail: long, dark brown feathers with white bands", + "throat: pale grayish-white with faint streaks" + ], + "madagascar cuckooshrike": [ + "back: dark slate-gray feathering", + "beak: short, hooked black beak", + "belly: off-white fading to grayish-white", + "breast: pale gray plumage", + "crown: dark grayish-black with slight feather crest", + "forehead: blackish-gray feathers", + "eyes: dark brown with pale-gray eye ring", + "legs: dark gray, long and slender", + "wings: long, dark gray with white-edged flight feathers", + "nape: slate-gray plumage with black border", + "tail: long, dark gray with white outer feathers and black tips", + "throat: off-white to light gray feathering" + ], + "madagascar fish eagle": [ + "back: brownish-black plumage", + "beak: sharp and hooked, yellowish", + "belly: white with dark edges", + "breast: white feathers, spotted pattern", + "crown: dark brown, slightly raised", + "forehead: white plumage, blending with crown", + "eyes: bright yellow, piercing gaze", + "legs: yellow, strong and scaled", + "wings: large, brown and white, powerful flight", + "nape: dark brown, connecting crown and back", + "tail: long, white feathers, dark tips", + "throat: white plumage, smooth transition to chest" + ], + "madagascar flufftail": [ + "back: olive-brown with faint streaks", + "beak: short, dark, and pointed", + "belly: light cream to white", + "breast: buffy-orange with black barring", + "crown: rufous-red with fine black streaks", + "forehead: rufous-red with black streaks", + "eyes: dark-rimmed and large", + "legs: long, slender, and dark", + "wings: olive-brown with barring", + "nape: rufous with black streaks", + "tail: short, brown, and fluffy", + "throat: white streaked with black" + ], + "madagascar grebe": [ + "back: light brown with faint stripes", + "beak: short and dark with a pale base", + "belly: white to pale grey", + "breast: warm chestnut color", + "crown: black with a slight crest", + "forehead: black to dark grey", + "eyes: bright red", + "legs: greenish-yellow with lobed toes", + "wings: dark brown with white patches", + "nape: black with light brown streaks", + "tail: short and dark brown", + "throat: white to pale grey" + ], + "madagascar green pigeon": [ + "back: vibrant green plumage", + "beak: short, curved, yellowish", + "belly: lighter green hue", + "breast: bright green feathers", + "crown: green with a hint of blue", + "forehead: greenish-blue shades", + "eyes: dark, surrounded by light blue ring", + "legs: red-orange with strong claws", + "wings: green with black and yellow markings", + "nape: greenish-blue transition", + "tail: long, green with black and white tips", + "throat: bright green and smooth" + ], + "madagascar harrier hawk": [ + "back: dark gray feathers with white spots", + "beak: black, hooked shape for grasping prey", + "belly: white and speckled with gray", + "breast: white with gray streaks and spots", + "crown: dark gray feathers with lighter streaks", + "forehead: pale gray with a slight white marking", + "eyes: bright yellow, large and round", + "legs: feathered yellow, strong and agile", + "wings: long, gray with white and dark gray bars", + "nape: grayish-white feathers with dark speckles", + "tail: gray feathers with white and dark gray bars", + "throat: white with gray speckles" + ], + "madagascar hoopoe": [ + "back: striking black and white striped pattern", + "beak: long, thin, and slightly curved", + "belly: warm orange-brown hue", + "breast: deep buff color, contrasting with belly", + "crown: prominent black and white crest, fan-like", + "forehead: lighter buff, leading into crest", + "eyes: small, dark, and well-defined", + "legs: relatively short, gray-blue in color", + "wings: broad, rounded, with black and white stripped pattern", + "nape: base of crest, continuation of back pattern", + "tail: long, black, featuring a bold white band", + "throat: buff-colored, blending with breast" + ], + "madagascar ibis": [ + "back: dark-greenish brown with grayish tips", + "beak: long, slender, and downward-curving", + "belly: off-white and light gray", + "breast: pale gray with white streaks", + "crown: white with a hint of gray", + "forehead: white and slightly feathered", + "eyes: dark brown with pale gray eye-ring", + "legs: long, dark gray with webbed feet", + "wings: dark greenish-brown with grayish tips", + "nape: white, blending into gray on the neck", + "tail: long, dark greenish-brown with grayish edges", + "throat: white and slightly feathered" + ], + "madagascar jacana": [ + "back: olive-brown plumage", + "beak: long, pointed, pale blueish-grey", + "belly: white underparts", + "breast: chestnut-brown feathers", + "crown: black feathers, red frontal shield", + "forehead: red frontal shield above beak", + "eyes: dark, watchful gaze", + "legs: long, slender, greyish-blue", + "wings: olive-brown, white stripes, visible in flight", + "nape: black, green iridescence", + "tail: short, olive-brown, white-tipped feathers", + "throat: white feathering" + ], + "madagascar lark": [ + "back: brownish with subtle streaks", + "beak: short and pointed", + "belly: pale cream or whitish", + "breast: light brown with faint streaks", + "crown: dark brown with streaks", + "forehead: lighter brown", + "eyes: small and dark", + "legs: slender and pale pinkish", + "wings: brown with fine streaks", + "nape: browner with streaks", + "tail: square-ended, brownish with darker bands", + "throat: whitish with faint streaks" + ], + "madagascar magpie robin": [ + "back: black, glossy feathers", + "beak: sharp, pointed, black", + "belly: white, fluffy feathers", + "breast: black-toned plumage", + "crown: smooth, black feathers", + "forehead: shiny, black feathers", + "eyes: round, beady, dark", + "legs: slender, grey, and long", + "wings: black with white patches, strong", + "nape: black, glossy textures", + "tail: lengthy, black, fan-shaped", + "throat: white, soft feathers" + ], + "madagascar munia": [ + "back: brownish-grey with fine white streaks", + "beak: silver-grey, pointed and conical", + "belly: light grey with subtle smoky undertones", + "breast: pale grey with hints of brown", + "crown: rich chestnut-brown with smooth texture", + "forehead: darker brown fading into the crown", + "eyes: small, shiny black with a narrow white eye-ring", + "legs: pale greyish-pink with slender digits", + "wings: warm brown with delicate white barring", + "nape: chestnut-brown blending into back feathers", + "tail: brown with faint white streaks, slightly forked", + "throat: soft grey, smoothly transitioned from breast" + ], + "madagascar nightjar": [ + "back: mottled brown and gray plumage", + "beak: short, wide, and black", + "belly: pale brown with black streaks", + "breast: rufous-brown with dark bars", + "crown: grayish-brown with darker stripes", + "forehead: pale gray with fine lines", + "eyes: large, dark brown, and wide-set", + "legs: pale brown and slender", + "wings: long, pointed, and brown with white spots", + "nape: grayish-brown with faint streaks", + "tail: fan-shaped, light brown with dark bars", + "throat: pale rufous with dark markings" + ], + "madagascar owl": [ + "back: brownish-grey plumage with fine white spots", + "beak: sharp, hooked, and dark grey", + "belly: light grey-white with dark vertical streaks", + "breast: pale grey with dark barring and streaks", + "crown: brownish-grey, inconspicuously streaked", + "forehead: slightly paler grey-brown", + "eyes: large and dark, encircled by a white facial disc", + "legs: feathered, medium length, pale yellow", + "wings: broad, rounded, brownish-grey with faint banding", + "nape: grey-brown with thin white streaks", + "tail: medium, broad, barred grey-brown and white", + "throat: lighter grey with weak dark streaks" + ], + "madagascar partridge": [ + "back: brown and black stripes", + "beak: short and curved, pale pinkish-white", + "belly: white with black or brown barring", + "breast: reddish-brown with black markings", + "crown: reddish-brown with black stripes", + "forehead: pale brown and smooth", + "eyes: dark brown with pale eyering", + "legs: stout and greyish", + "wings: rounded with brown and black patterning", + "nape: brown with dark stripes", + "tail: short and brown with fine black barring", + "throat: white with black speckling" + ], + "madagascar plover": [ + "back: golden-brown with black streaks", + "beak: short and thick, pale pinkish-orange", + "belly: white and sleek", + "breast: white with black spots and streaks", + "crown: golden-brown with black streaks", + "forehead: white with black streaks", + "eyes: dark with white eyebrow stripe", + "legs: long and slender, pale pinkish-orange", + "wings: golden-brown with black and white splotches, pointed tips", + "nape: golden-brown with black streaks", + "tail: long and slender, black and white patterned", + "throat: white with black streaks" + ], + "madagascar pochard": [ + "back: rich chestnut-brown feathers", + "beak: bluish-gray with black tip", + "belly: white mixed with brown speckles", + "breast: reddish-brown with subtle white streaks", + "crown: dark brown with slight reddish tint", + "forehead: slightly paler brown than crown", + "eyes: bright yellow-orange with black pupils", + "legs: short, sturdy and grayish-blue", + "wings: chestnut-brown with white secondary feathers", + "nape: chestnut-brown, blending into crown and back", + "tail: short, brown with white outer feathers", + "throat: white with some brown speckling" + ], + "madagascar pratincole": [ + "back: pale gray-brown with subtle streaks", + "beak: long, pointed, and black", + "belly: white with soft gray-brown tones", + "breast: light gray blending into the white belly", + "crown: smooth gray-brown with a slight crest", + "forehead: pale gray fading into the white throat", + "eyes: dark and lively, surrounded by a white stripe", + "legs: slender, reddish-brown with black claws", + "wings: long, pointed, and gray-brown with white accents", + "nape: gray-brown with a delicate white collar", + "tail: gray-brown, forked with white edges", + "throat: bright white, contrasting with the gray-brown head" + ], + "madagascar pygmy kingfisher": [ + "back: vibrant blue feathers", + "beak: short, black, and stout", + "belly: pristine white with light blue streaks", + "breast: white feathers with faint blue spots", + "crown: azure blue with a slight crest", + "forehead: deep blue feathers transitioning to lighter tones", + "eyes: small, round, and black", + "legs: short and pale orange", + "wings: brilliant blue with black striping", + "nape: blue feathers blending into the back", + "tail: short, blue, and black-banded", + "throat: white and unmarked" + ], + "madagascar rail": [ + "back: olive-brown with subtle dark speckles", + "beak: strong and slightly curved, yellowish-green", + "belly: bold white and grayish barred pattern", + "breast: neatly streaked with brown and white", + "crown: olive-brown with dark spots", + "forehead: similar to crown, often slightly lighter", + "eyes: piercing red with black outline", + "legs: sturdy and bright orange-red", + "wings: olive-brown with dark bars and white spots", + "nape: rich brown blending into back, with dark speckles", + "tail: moderately long with dark bars and white tip", + "throat: white with fine brown streaks" + ], + "madagascar sandgrouse": [ + "back: grayish-brown with black markings", + "beak: short and sturdy, pale pinkish", + "belly: creamy-white with speckled markings", + "breast: sandy-brown with black spots", + "crown: grayish-brown with fine black streaks", + "forehead: pale gray with black spots", + "eyes: dark brown with pale eyering", + "legs: pale pinkish-gray, unfeathered", + "wings: brownish-gray with black and white patterning", + "nape: grayish-brown with fine black streaking", + "tail: long and pointed, brownish-gray with black bands", + "throat: creamy-white with dark spots" + ], + "madagascar scops owl": [ + "back: light brown with mottled black and white streaks", + "beak: small, sharp, and pale gray", + "belly: whitish with brown and gray streaks", + "breast: mottled white and brown feathers", + "crown: dark brown with white speckles", + "forehead: light brown with a feathered \"eyebrow\" ridge", + "eyes: large, round, and bright yellow", + "legs: short and feathered with sharp talons", + "wings: brown with white speckled patterns, rounded tips", + "nape: light brown with dark streaks and white speckles", + "tail: brown with white bands and visible barring", + "throat: whitish with fine brown streaks" + ], + "madagascar serpent eagle": [ + "back: brownish feathers with white streaks", + "beak: short, strong, hooked, dark grey", + "belly: white with brown spots", + "breast: brownish-white with dark streaks", + "crown: dark brown with a crest", + "forehead: light brown feathers", + "eyes: intense yellow-orange", + "legs: yellow and featherless, sharp talons", + "wings: dark brown with white spots, broad and rounded", + "nape: lighter brown with white streaks", + "tail: dark brown with alternating white bands", + "throat: white with dark streaks" + ], + "madagascar snipe": [ + "back: brownish pattern with white stripes", + "beak: long and straight for probing", + "belly: buffy-white with dark streaks", + "breast: buffy-brown with dark speckles", + "crown: dark brown with white stripes", + "forehead: pale buff with brown streaks", + "eyes: small and beady, dark color", + "legs: slender, yellowish-green", + "wings: brown and patterned with buffy-white stripes", + "nape: brown with white stripes", + "tail: short, with black and white barred pattern", + "throat: creamy-white color" + ], + "madagascar sparrowhawk": [ + "back: slate grey feathers on the upper side", + "beak: short, hooked, and dark grey in color", + "belly: off-white to pale grey feathers", + "breast: light grey chest feathers with some subtle streaks", + "crown: grey with a slightly darker tone than the back", + "forehead: pale grey meeting the darker grey on the crown", + "eyes: large, light yellow-orange with a dark, round pupil", + "legs: short, strong yellow legs with sharp talons", + "wings: slate grey, long, and broad with blackish tips", + "nape: slate grey, same shade as the back", + "tail: dark greyish-brown feathers with a fan-like shape", + "throat: pale grey feathers bordered by streaked breast feathers" + ], + "madagascar spinetail": [ + "back: brownish-grey feathers with narrow streaks", + "beak: long, slender, and slightly curved", + "belly: pale grey with fine streaks", + "breast: greyish-brown with subtle barring", + "crown: dark grey with fine streaks", + "forehead: pale buff with dark streaks", + "eyes: dark brown with pale eye-ring", + "legs: short and strong, dark grey", + "wings: long and pointed with dark flight feathers", + "nape: greyish-brown with fine streaks", + "tail: long and graduated with central rufous coloring", + "throat: pale grey with fine dark streaks" + ], + "madagascar starling": [ + "back: metallic green-blue sheen", + "beak: black, sharp and slightly curved", + "belly: glossy greenish-blue", + "breast: shimmering green-blue", + "crown: bright green-blue, slight crest", + "forehead: iridescent green-blue", + "eyes: dark, surrounded by thin white eye-ring", + "legs: black, strong and thin", + "wings: green-blue with dark flight feathers", + "nape: glossy metallic green", + "tail: fairly long, green-blue, forked", + "throat: greenish-blue with faint feather streaks" + ], + "madagascar swamp warbler": [ + "back: brownish-olive feathers", + "beak: thin, dark, and pointed", + "belly: off-white with ginger markings", + "breast: creamy-white with light streaks", + "crown: reddish-brown with dark streaks", + "forehead: reddish-brown with thin streaks", + "eyes: dark, expressive, and round", + "legs: long, slender, and dark grey", + "wings: brownish-olive with dark flight feathers", + "nape: reddish-brown with dark streaks", + "tail: long, brownish-olive with a slight notch", + "throat: creamy-white with light streaking" + ], + "madagascar wagtail": [ + "back: creamy-grey feathers", + "beak: slender and black", + "belly: pale yellowish-white", + "breast: light grey with possible yellow tinge", + "crown: black with white streaks", + "forehead: white stripe above eyes", + "eyes: dark and round with white eyering", + "legs: dark grey and moderately long", + "wings: dark grey with white markings", + "nape: black with white streaks", + "tail: long and black with white edges", + "throat: white and unmarked" + ], + "madagascar wood rail": [ + "back: earthy brown feathers", + "beak: long, slightly curved, pinkish-orange", + "belly: light grayish-brown plumage", + "breast: soft gray with white streaks", + "crown: dusty brown with a slight crest", + "forehead: lighter brown, transitioning to the crown", + "eyes: deep black with thin white eye-ring", + "legs: sturdy, pinkish-orange", + "wings: brown with faint white markings", + "nape: smooth brown blending with the crown", + "tail: short, brown feathers with creamy-white tips", + "throat: light gray with white streaks" + ], + "madanga": [ + "back: vibrant green plumage", + "beak: short, stout, and black", + "belly: yellowish-white coloration", + "breast: bright yellow and prominent", + "crown: vivid green with contrasting black edges", + "forehead: green and marked with black", + "eyes: dark and sharp", + "legs: slender and greyish-brown", + "wings: green with black feather tips", + "nape: green and well-defined", + "tail: green with darker tail feathers", + "throat: yellowish-white hue" + ], + "madarasz tiger parrot": [ + "back: vibrant green with blue tint", + "beak: short and hooked, orange-red color", + "belly: pale yellow with faint green stripes", + "breast: bright yellow-green with dark green stripes", + "crown: deep blue with a metallic sheen", + "forehead: bright green blending into the blue crown", + "eyes: dark brown with a white eye-ring", + "legs: sturdy and grey, with strong zygodactyl feet", + "wings: vivid green with black flight feathers tipped in blue", + "nape: rich green with lighter streaks", + "tail: long and tapered, blue-green with black tips", + "throat: pale yellow merging into the striped breast" + ], + "madeira firecrest": [ + "back: olive-green and compact body", + "beak: short, slender, and sharp", + "belly: pale yellow with fine streaks", + "breast: golden-yellow with grey blending", + "crown: distinctive bright orange or yellow crest", + "forehead: bold black and white striped", + "eyes: dark, round, and prominent", + "legs: thin and wiry with sharp claws", + "wings: rounded and short with olive-brown feathers", + "nape: olive-green transitioning to the crown color", + "tail: short and square with dark feather edges", + "throat: off-white with a slight yellow tinge" + ], + "magdalena antbird": [ + "back: olive-brown feathers", + "beak: short, stout, black", + "belly: light gray with streaks", + "breast: pale gray with dense flocking", + "crown: dark gray with a crest", + "forehead: light gray with a subtle crest", + "eyes: dark, small, and round", + "legs: long, slender, grayish-black", + "wings: olive-brown with faint white markings", + "nape: gray with a smooth transition to the back", + "tail: long, brownish-black with light banding", + "throat: pale gray with fine streaks" + ], + "magdalena tapaculo": [ + "back: dark gray feathers blending with black", + "beak: short, sturdy, and black", + "belly: light gray, slightly mottled with white", + "breast: deep gray, fading to lighter gray on the flanks", + "crown: solid black cap on top of the head", + "forehead: black, seamless transition from the crown", + "eyes: small, dark, and well-hidden by surrounding feathers", + "legs: long, slender, and leaden gray", + "wings: short, rounded, with dark gray, almost black feathers", + "nape: continuation of the black on the crown, down to back", + "tail: fan-shaped, black, with inconspicuous white tips", + "throat: dark gray, merging with breast color" + ], + "magellanic cormorant": [ + "back: sleek, dark and elongated", + "beak: long, slender, and hook-tipped", + "belly: white and smooth", + "breast: black and glossy", + "crown: flat, black and rounded", + "forehead: sloping, dark-feathered", + "eyes: small, dark, and intense", + "legs: short, black, and webbed", + "wings: large, black, and powerful", + "nape: dark, merging with crown", + "tail: short, black, and fan-like", + "throat: white, contrasting with black neck" + ], + "magellanic diving petrel": [ + "back: blackish-grey with dense feathers", + "beak: short and hooked, dark grey", + "belly: whitish-grey, soft feathers", + "breast: dark grey plumage", + "crown: blackish-grey, smoothly curved", + "forehead: slightly lighter grey, feathered", + "eyes: small and dark, well-spaced", + "legs: short and strong, blue-grey", + "wings: dark grey, elongated and pointed", + "nape: blackish-grey, sturdy neck", + "tail: short and squared, dark grey feathers", + "throat: greyish-white, delicate feathers" + ], + "magellanic oystercatcher": [ + "back: dark blackish-brown feathers", + "beak: long, straight, and orange-red", + "belly: white underside with black markings", + "breast: black with slight white patch", + "crown: solid black head feathers", + "forehead: black, blending into the beak", + "eyes: round and dark with a white eye-ring", + "legs: long, strong, and reddish-orange", + "wings: blackish-brown with white stripes", + "nape: black, transitioning to brown on the back", + "tail: black with white outer tail feathers", + "throat: black, extending down from the chin" + ], + "magellanic penguin": [ + "back: black and white striped pattern", + "beak: long, thin, and black", + "belly: white and smooth", + "breast: white with black markings", + "crown: black and seamless", + "forehead: black with white border", + "eyes: round, black, and alert", + "legs: short, sturdy, and pinkish-yellow", + "wings: semi-flipper-like, black", + "nape: black with an elongated shape", + "tail: short and pointed", + "throat: white and smooth" + ], + "magellanic plover": [ + "back: soft grey feathers", + "beak: short and black", + "belly: white plumage", + "breast: white with grey speckles", + "crown: smooth grey feathers", + "forehead: grey plumage", + "eyes: black with white eye-ring", + "legs: pink and slender", + "wings: grey with white stripes", + "nape: grey feathers", + "tail: short and grey", + "throat: pale white feathers" + ], + "magellanic snipe": [ + "back: brown and white mottled feathers", + "beak: long, straight, and dark", + "belly: creamy white with light brown streaks", + "breast: pale brown with dark speckles", + "crown: streaked brown and white", + "forehead: white with brown streaks", + "eyes: round and dark", + "legs: slender and yellowish", + "wings: brown and white patterned feathers", + "nape: brown with white streaks", + "tail: brown, white-tipped, and fan-shaped", + "throat: white with light brown speckles" + ], + "magellanic tapaculo": [ + "back: dark gray with subtle streaks", + "beak: short and curved, black", + "belly: lighter gray, slightly mottled", + "breast: dark gray with sparse markings", + "crown: smooth, solid dark gray", + "forehead: slightly paler gray, blending with crown", + "eyes: small, dark, and well-camouflaged", + "legs: sturdy, feathered, and dark-colored", + "wings: dark gray, rounded, and short", + "nape: solid dark gray, consistent with crown", + "tail: short, dark gray, rounded edges", + "throat: pale gray, transitioning to darker breast color" + ], + "magellanic woodpecker": [ + "back: dark black with slight iridescence", + "beak: long, robust, chisel-like", + "belly: white with black horizontal bands", + "breast: bright red with black side panels", + "crown: bright crimson red", + "forehead: dark black with a hint of red", + "eyes: small, bright, black, and round", + "legs: dark gray with sturdy, clawed feet", + "wings: black with large white patches and streaks", + "nape: red with black edges", + "tail: black, stiff, and fan-shaped", + "throat: white with black horizontal bands" + ], + "magenta petrel": [ + "back: sleek, grayish-brown feathers", + "beak: black, stout, and short", + "belly: plain, pale gray plumage", + "breast: light grayish-white feathers", + "crown: dark-colored head feathers", + "forehead: smooth, relatively flat profile", + "eyes: bright black, with a focused gaze", + "legs: sturdy, pink-grey legs with webbed feet", + "wings: long, pointed, and powerful (blackish-brown in color", + "nape: shadowy band of grayish feathers", + "tail: broad blackish-brown feathers with a rounded shape", + "throat: lighter gray, blending into breast feathers" + ], + "magenta throated woodstar": [ + "back: vibrant green feathers", + "beak: long, slender, and black", + "belly: soft white plumage", + "breast: white extending to sides", + "crown: iridescent green", + "forehead: glittering magenta color", + "eyes: small and dark", + "legs: short and grayish", + "wings: rounded with purple-brown edges", + "nape: green feathers transitioning to magenta", + "tail: forked with dark outer edges", + "throat: striking magenta patch" + ], + "maghreb magpie": [ + "back: blue-green plumage with a metallic sheen", + "beak: strong, black, and slightly curved", + "belly: white feathers tinged with grey", + "breast: light grey, softly blending into the belly", + "crown: deep black feathers with a sleek appearance", + "forehead: smooth black feathers transitioning into the crown", + "eyes: bright, black, and expressive", + "legs: sturdy, dark grey with sharp claws", + "wings: vibrant blue-green, with white and black accents", + "nape: black feathers blending into the back", + "tail: long, black, with white outer feathers and a distinct fan shape", + "throat: greyish-white, lighter than the breast" + ], + "maghreb owl": [ + "back: tawny-brown with darker streaks", + "beak: blackish-gray and hooked", + "belly: pale buff with dark streaks", + "breast: tawny with dark vertical streaks", + "crown: tawny-brown with fine dark streaks", + "forehead: buff-white with faint dark streaks", + "eyes: large, dark brown, and surrounded by a white ring", + "legs: feathered and pale buff in color", + "wings: tawny with dark brown barring", + "nape: tawny-brown with faint dark streaks", + "tail: tawny with dark brown bands", + "throat: white with some dark speckling" + ], + "magnificent bird of paradise": [ + "back: vibrant green iridescent feathers", + "beak: sharp, slender black beak", + "belly: soft, white plumage", + "breast: striking yellow and blue feathers", + "crown: glossy black with emerald shimmer", + "forehead: sleek, shining greenish-black", + "eyes: round, black, and alert", + "legs: long, thin, grayish-blue", + "wings: wide, iridescent blue-green feathers", + "nape: glossy dark feathers with a hint of green", + "tail: elongated, velvety black plumes", + "throat: bright blue, throat fan for display" + ], + "magnificent riflebird": [ + "back: iridescent greenish-blue sheen", + "beak: short, sharp, and black", + "belly: velvet black with a slight shine", + "breast: metallic blue-green shimmer", + "crown: smooth, dark feathers with gloss", + "forehead: black with green-blue highlights", + "eyes: dark and piercing, framed by black", + "legs: sturdy and black, with strong claws", + "wings: black with a subtle green-blue tint", + "nape: sleek, shiny black feathers", + "tail: elongated and black with a hint of gloss", + "throat: eye-catching, bright metallic blue" + ], + "magnificent sunbird": [ + "back: iridescent green and blue feathers", + "beak: thin, curved, and black", + "belly: grayish-white to yellowish underparts", + "breast: shimmering violet-blue plumage", + "crown: bright metallic green head", + "forehead: shining green with a purple sheen", + "eyes: small, dark, and inquisitive", + "legs: slender, black, and agile", + "wings: shimmering blue and green, medium-sized", + "nape: vibrant green fading into blue", + "tail: dark, long, and forked", + "throat: radiant purple-blue sheen" + ], + "magpie mannikin": [ + "back: blue-black feathers with iridescent hints", + "beak: short, sharp, and silver-gray", + "belly: off-white to creamy gray plumage", + "breast: soft, off-white hue with gray undertones", + "crown: glossy blue-black feathers with metallic shine", + "forehead: bold, blue-black shine with iridescent sheen", + "eyes: small, black, and circular with alert gaze", + "legs: slender and gray, adept for perching", + "wings: blue-black with white patches, suited for short flights", + "nape: shimmering blue-black feathers transitioning to gray-white", + "tail: long, blue-black with white outer-feathers, fan-like spread", + "throat: off-white to grayish, smooth feather transition" + ], + "magpie shrike": [ + "back: glossy black feathers", + "beak: strong, hooked, black", + "belly: white and lightly feathered", + "breast: black with white underparts", + "crown: black and slightly raised", + "forehead: black, merging with crown", + "eyes: dark, accented by black feathers", + "legs: black and thin, with scaly feet", + "wings: long, black with white patches", + "nape: black, connecting to back", + "tail: elongated, black with white edges", + "throat: white, small feathers" + ], + "magpie starling": [ + "back: glossy iridescent black feathers", + "beak: strong, black, and slightly curved", + "belly: white feathery underside", + "breast: predominantly white, contrasting plumage", + "crown: shimmering metallic blue-green hues", + "forehead: iridescent blue-green feathers", + "eyes: dark, beady, and surrounded by blue-black plumage", + "legs: featherless black, powerful grips", + "wings: long and black with white patches", + "nape: glistening blue-green tinge on black feathers", + "tail: long, black, and white patterned feathers", + "throat: white plumage, merging with breast area" + ], + "magpie tanager": [ + "back: vibrant green feathers", + "beak: short, thin, and black", + "belly: pale yellow hue", + "breast: rich orange-red plumage", + "crown: vivid purple-blue iridescence", + "forehead: striking red feathers", + "eyes: large, dark, and round", + "legs: slender and black", + "wings: greenish-blue with white markings", + "nape: brilliant blue band", + "tail: elongated, iridescent green-blue feathers", + "throat: golden-yellow coloration" + ], + "magpie lark": [ + "back: sleek black feathers", + "beak: strong, pointed black beak", + "belly: clean white plumage", + "breast: crisp white breast feathers", + "crown: black cap with white streaks", + "forehead: stark black patch", + "eyes: bright, piercing gaze", + "legs: slender, black legs", + "wings: long, black and white wings", + "nape: black and white striped pattern", + "tail: elongated, black and white feathers", + "throat: smooth white plumage" + ], + "maguari stork": [ + "back: pale grey plumage", + "beak: long and slightly curved, red at the base and black at the tip", + "belly: white feathers", + "breast: white plumage", + "crown: featherless with deep red skin", + "forehead: red, exposed skin; may have white downy feathers", + "eyes: small and deep-set, surrounded by red skin", + "legs: long and slender, greyish-black", + "wings: wide and long with contrasting colors, upper wings grey and underwings white", + "nape: feathered, transitions from pale grey to a white throat", + "tail: long, white feathers with a slight v-shape", + "throat: white plumage, contrasting with the red crown and forehead" + ], + "makatea fruit dove": [ + "back: bright green plumage", + "beak: short, curved, and grayish", + "belly: pale brown plumage", + "breast: olive green with pinkish hue", + "crown: deep green feathers", + "forehead: vibrant green feathers", + "eyes: small, black, and round", + "legs: short, gray, and strong", + "wings: green upper-wing coverts, purple primary feathers", + "nape: green feathered", + "tail: long, purple outer feathers, olive upper tail coverts", + "throat: grayish-white plumage" + ], + "makira cicadabird": [ + "back: dark green plumage", + "beak: black, short and pointed", + "belly: light gray with faint streaks", + "breast: gray with lighter streaks", + "crown: dark greenish-brown", + "forehead: dark greenish-brown", + "eyes: black with white eye-ring", + "legs: grayish-black, slender", + "wings: dark green, long with lighter-edged feathers", + "nape: dark greenish-brown", + "tail: dark green, long and slightly forked", + "throat: light gray" + ], + "makira dwarf kingfisher": [ + "back: vibrant green feathers", + "beak: short, stout, orange-red", + "belly: pale yellow", + "breast: bright yellow with orange tinge", + "crown: deep green-blue", + "forehead: greenish-blue feathers", + "eyes: dark, beady with a white ring", + "legs: short, red-orange", + "wings: greenish-blue with white spots", + "nape: green-blue with yellow markings", + "tail: vibrant green with black and white bands", + "throat: pale yellow with orange hints" + ], + "makira honeyeater": [ + "back: dark olive-green feathers", + "beak: slightly curved yellow beak", + "belly: pale grey with fine streaks", + "breast: dusky grey plumage", + "crown: olive-green feathers with pale streaks", + "forehead: smooth olive-green feathers", + "eyes: round with a pale white eye-ring", + "legs: slender grey legs and feet", + "wings: dark olive-green with white tips", + "nape: olive-green feathers with faint pale streaks", + "tail: long, dark olive-green with white tips", + "throat: grey plumage with subtle streaks" + ], + "makira leaf warbler": [ + "back: greenish-yellow and slightly streaked", + "beak: slender and curved", + "belly: pale yellowish-green", + "breast: light greenish-yellow", + "crown: bright yellow with faint streaks", + "forehead: yellow and slightly streaked", + "eyes: dark with white eyering", + "legs: pale pinkish-gray", + "wings: greenish-brown with yellow edges", + "nape: greenish-yellow with faint streaks", + "tail: long and greenish-brown with yellow tips", + "throat: bright yellow and unmarked" + ], + "makira starling": [ + "back: olive-green feathered", + "beak: short, thick, silver-gray", + "belly: golden-yellow feathers", + "breast: vibrant yellow plumage", + "crown: sunburst gold on head", + "forehead: bright yellow feathers", + "eyes: dark, surrounded by yellow feathering", + "legs: strong, silver-gray bird limbs", + "wings: olive-green with golden highlights", + "nape: yellowish-green neck feathering", + "tail: elongated olive-green feathers", + "throat: brilliant yellow plumage" + ], + "makira thrush": [ + "back: olive-brown feathers with rufous tinges", + "beak: straight, sharp, and blackish-brown", + "belly: cream-white with brownish streaks", + "breast: grayish-white with dark brown spots", + "crown: dark brown with a slight reddish tint", + "forehead: smooth feathering with brown hues", + "eyes: dark, round, with thin white eye-ring", + "legs: strong and sturdy, light gray in color", + "wings: long and broad with brownish-olive feathers", + "nape: brown with a hint of rufous shade", + "tail: medium length, brownish-olive with dark brown bands", + "throat: creamy-white with fine brown streaks" + ], + "malabar barbet": [ + "back: vibrant green feathers", + "beak: short and stout, pale yellow", + "belly: light green with yellow undertones", + "breast: greenish-yellow plumage", + "crown: blue and purple patch of feathers", + "forehead: bright red feathers", + "eyes: small and black, with a white eye-ring", + "legs: short and sturdy, light gray", + "wings: green with blue edges and intricate pattern", + "nape: green with a hint of blue", + "tail: long and green, with blue and black bands", + "throat: bright red patch under the beak" + ], + "malabar gray hornbill": [ + "back: silvery-gray feathers with black edges", + "beak: curved yellowish-orange casqued bill", + "belly: pale gray with black streaks", + "breast: slightly darker gray than the belly", + "crown: dark gray with a slightly raised crest", + "forehead: lighter gray with a smooth gradient to the crown", + "eyes: small and brown, surrounded by a patch of bare bluish-black skin", + "legs: dark gray-black with zygodactyl feet (two forward, two backward facing toes", + "wings: black feathers with silvery-gray primary and secondary coverts", + "nape: dark gray with silky feathers forming a partial collar", + "tail: long, black feathers with white tips and a band of silvery-gray", + "throat: pale gray with thin black streaks" + ], + "malabar imperial pigeon": [ + "back: dark, metallic green to purple sheen", + "beak: sturdy, short, hooked pale pink", + "belly: light ashy gray", + "breast: silvery gray", + "crown: glossy greenish-blue dark shade", + "forehead: glossy greenish-blue dark shade", + "eyes: dark with a pale blue eye-ring", + "legs: strong red-pink legs and feet", + "wings: dark, metallic green with purple gloss", + "nape: silvery gray", + "tail: long, dark, broad feathers with a shimmering sheen", + "throat: lighter silvery gray" + ], + "malabar lark": [ + "back: light brown with streaks of white", + "beak: straight and narrow, pale yellow", + "belly: creamy white with brown streaks", + "breast: pale brown with darker streaks", + "crown: reddish-brown with pale streaks", + "forehead: light brown with a faint streak pattern", + "eyes: small and black, surrounded by faint markings", + "legs: thin and long, pale yellow", + "wings: rich brown with white-edged feathers", + "nape: light reddish-brown with pale streaks", + "tail: long and forked, dark brown with white tips", + "throat: white with fine brown streaks" + ], + "malabar parakeet": [ + "back: vibrant green feathers", + "beak: striking red-orange hue", + "belly: lighter green shade", + "breast: brilliant blue feathers", + "crown: deep blue hued head", + "forehead: rich blue-green color", + "eyes: dark with white eye-ring", + "legs: light gray and scaly", + "wings: green with blue accents", + "nape: stunning blue-green gradient", + "tail: long, green-blue feathers", + "throat: sky blue plumage" + ], + "malabar pied hornbill": [ + "back: dark black feathers with white tips", + "beak: large, curved, yellow and black casque", + "belly: white with black stripes", + "breast: predominantly white with black streaks", + "crown: black feathers with slight crest", + "forehead: black with a protruding casque", + "eyes: small, dark, surrounded by blue skin", + "legs: sturdy, greyish-black", + "wings: black and white, broad, and rounded", + "nape: black, feathers merging with crown and back", + "tail: long, black and white, central feathers elongated", + "throat: white with black streaks, connecting to the breast" + ], + "malabar starling": [ + "back: iridescent dark blue plumage", + "beak: short, slightly curved, pale yellow", + "belly: white, soft feathers", + "breast: white with a delicate grayish-blue tint", + "crown: glossy dark blue, sleek feathers", + "forehead: thick dark blue feathers", + "eyes: alert and bright, orange-ringed", + "legs: thin, light grey, and scaled", + "wings: deep, iridescent blue, angular tips", + "nape: dark blue, gleaming feathers", + "tail: long, straight, iridescent blue", + "throat: soft white, narrow feathers" + ], + "malabar trogon": [ + "back: deep purplish-blue with a velvety texture", + "beak: short, black, and slightly curved", + "belly: crimson-red in males; yellowish in females", + "breast: white with a black outline separating it from the belly", + "crown: deep blue with darker shade through the eyes to the nape", + "forehead: deep blue with a smooth glossy finish", + "eyes: dark with yellowish eyering surrounded by deep blue feathers", + "legs: dark grey and sturdy, with sharp talons", + "wings: rounded blue wings with dark grey or black primary feathers", + "nape: bluish-black, gradually shifting to the dark back feathers", + "tail: long with vivid blue feathers and black banding", + "throat: bright crimson in males; dull white in females" + ], + "malabar whistling thrush": [ + "back: dark blue-black feathers", + "beak: black and curved", + "belly: deep blue-black", + "breast: glossy blue-black plumage", + "crown: dark blue-black feathers", + "forehead: shining blue-black, smooth", + "eyes: round, black, expressive", + "legs: sturdy, gray-blue", + "wings: long, blue-black feathers", + "nape: glossy blue-black, thick-necked", + "tail: elongated blue-black feathers", + "throat: iridescent blue-black feathers" + ], + "malabar woodshrike": [ + "back: dark grey uppercoat", + "beak: short, black and hooked", + "belly: lighter grey underside", + "breast: grey-white with faint streaks", + "crown: dark grey, slightly raised", + "forehead: greyish-white", + "eyes: dark, round with white eyering", + "legs: slender, black", + "wings: dark grey with visible white patch", + "nape: slate-grey, connecting to crown", + "tail: long and dark grey with white outer feathers", + "throat: white-grey, blending into breast" + ], + "malachite sunbird": [ + "back: iridescent green feathers", + "beak: long, slender, and curved", + "belly: dark, metallic green", + "breast: bright emerald green", + "crown: shimmering green plumage", + "forehead: glossy green with some blue sheen", + "eyes: small, dark, and alert", + "legs: thin, grayish-black, and strong", + "wings: iridescent green and sharply pointed", + "nape: vibrant green feathers blending into the back", + "tail: elongated, black with blue-green sheen", + "throat: iridescent green with a hint of purple" + ], + "malagasy brush warbler": [ + "back: olive-brown feathers covering the upper body", + "beak: thin, slightly curved black beak for insect-catching", + "belly: creamy-white, with gentle brown streaks", + "breast: light buff color, marbled with brown markings", + "crown: unmarked olive-brown, with a slightly raised crest", + "forehead: smooth gradient of brown blending into the crown", + "eyes: small, dark-brown, surrounded by buff-colored eye-ring", + "legs: long, slender, pale gray for perching and hopping", + "wings: olive-brown, with faint buff-colored wing-bars", + "nape: olive-brown, connecting the crown and back seamlessly", + "tail: short, dark-brown with buff outer edges, often flicked up", + "throat: creamy-white, with faint brown streaks on the sides" + ], + "malagasy bulbul": [ + "back: olive-brown with hints of green", + "beak: slightly curved, dark gray", + "belly: pale cream to light gray", + "breast: grayish-white transitioning from olive-brown", + "crown: dark olive-brown", + "forehead: olive-brown fading into crown", + "eyes: dark brown with grayish-white eye-ring", + "legs: slender, dark gray", + "wings: olive-brown with faint wing bars", + "nape: olive-brown, blending with back", + "tail: long, olive-brown with faint white tips", + "throat: pale white to light gray" + ], + "malagasy coucal": [ + "back: dark brown with black streaks", + "beak: long and black, slightly curved", + "belly: creamy-white with black bars", + "breast: light brown with black stripes", + "crown: black with a glossy sheen", + "forehead: black and glossy", + "eyes: dark brown with a black ring", + "legs: strong, dark grey with sharp claws", + "wings: dark brown with black bands and white spots", + "nape: black with faint glossiness", + "tail: long and dark brown with black bars and white tips", + "throat: whitish-grey with black markings" + ], + "malagasy harrier": [ + "back: dark brown, streaked feathers", + "beak: sharp and hooked, blackish-gray", + "belly: whitish-gray with fine dark streaks", + "breast: pale gray, streaked with brown", + "crown: dark brown, streaked with pale gray", + "forehead: paler brown with fine streaks", + "eyes: yellow, piercing gaze", + "legs: long and yellow, feathered tarsi", + "wings: broad with a wingspan of 95-105 cm, dark brown with lighter edges", + "nape: dark brown with narrow pale streaks", + "tail: long with dark brown, gray, and white bands", + "throat: palest gray with fine dark streaks" + ], + "malagasy kestrel": [ + "back: light brown with dark brown speckles", + "beak: short and sharp, greyish-black", + "belly: creamy white with light brown spots", + "breast: pale reddish-brown with dark brown streaks", + "crown: mottled reddish-brown and white", + "forehead: pale red-brown with a few dark streaks", + "eyes: large and dark, with a bold black stripe behind each eye", + "legs: greyish-yellow with sharp talons", + "wings: pale reddish-brown with dark brown bars and white patches", + "nape: reddish-brown with fine white streaks", + "tail: reddish-brown with dark brown bars and a white tip", + "throat: pale cream with some light brown streaking" + ], + "malagasy kingfisher": [ + "back: vibrant blue upper back feathers", + "beak: long, sharp, red-orange bill", + "belly: white lower abdomen plumage", + "breast: pale gray-blue chest feathers", + "crown: bright blue head with a slight crest", + "forehead: broad, pale blue strip above beak", + "eyes: round, black and beady with white surroundings", + "legs: short, reddish-orange thin legs", + "wings: bold electric blue with black flight feathers", + "nape: blue to azure transition between head and back", + "tail: elongated, deep blue tail feathers with black tips", + "throat: white and gray patch below the beak" + ], + "malagasy palm swift": [ + "back: sleek, dark gray feathers", + "beak: slim, short, and pointed", + "belly: pale grey-white plumage", + "breast: slightly darker grey than belly", + "crown: dark gray with a slightly rounded shape", + "forehead: smooth, dark gray feathers", + "eyes: small, dark, and round", + "legs: short, slender, with sharp claws", + "wings: long, narrow, and pointed for swift flight", + "nape: dark gray, continuous with the crown", + "tail: short, forked, dark gray feathers", + "throat: light gray, transitioning to the breast color" + ], + "malagasy paradise flycatcher": [ + "back: vibrant blue-gray plumage", + "beak: thin and elongated black", + "belly: soft white underbelly feathers", + "breast: eye-catching rusty-red plumage", + "crown: topped with elongated, wispy feathers", + "forehead: smooth, transitioning blue-gray plumage", + "eyes: inquisitive dark, piercing gaze", + "legs: slender, agile, and black", + "wings: expansive blue-gray and red pattern", + "nape: elegantly merging blue-gray and red hues", + "tail: impressively long and fluttering", + "throat: shaded rusty-red plumage" + ], + "malagasy pond heron": [ + "back: white-grayish feathers with black spots", + "beak: long, thin, and sharp, yellow at base and black at tip", + "belly: white with some grayish-brown streaks", + "breast: white with gray-brown streaks and spots", + "crown: black with a greenish sheen and white streaks", + "forehead: white, connecting with the eyes", + "eyes: yellow with a blackish outer ring, slightly almond-shaped", + "legs: long, yellowish-green, with black claws", + "wings: white with black tips and spots on flight feathers", + "nape: black with greenish iridescence and white streaks", + "tail: short, white with black streaks and spots", + "throat: white with some gray-brown streaks" + ], + "malagasy sacred ibis": [ + "back: sleek, dark feathers", + "beak: long, slender, and curved", + "belly: white plumage with dark edges", + "breast: white with hints of brown", + "crown: featherless and black", + "forehead: dark and smooth", + "eyes: reddish-brown and round", + "legs: long and black", + "wings: long and dark with white edges", + "nape: partially white with dark edges", + "tail: elongated with dark feathers", + "throat: white with minor brown markings" + ], + "malagasy sunbird": [ + "back: vibrant green feathered covering", + "beak: slender, long, and curved for nectar extraction", + "belly: pale yellow, soft feathered underside", + "breast: bright orange-red plumage", + "crown: iridescent green head feathers", + "forehead: gleaming green plumage extending above eyes", + "eyes: small, round, and black for keen vision", + "legs: thin, sturdy, grayish-brown limbs", + "wings: elongated with green and blue shimmery feathers", + "nape: iridescent green feathers at the back of the neck", + "tail: elongated central feathers with blue-green iridescence", + "throat: brilliant orange-red feathers covering the neck" + ], + "malagasy swift": [ + "back: sleek gray-brown feathers", + "beak: short and slightly curved", + "belly: pale cream-white color", + "breast: white with some gray spots", + "crown: grayish-brown with light streaks", + "forehead: light-gray and sleek", + "eyes: small, black, and beady", + "legs: short and slender with sharp claws", + "wings: long, pointed, and dark gray", + "nape: light gray-brown with fine streaks", + "tail: forked and edged with white", + "throat: white with grayish-brown streaks" + ], + "malagasy turtle dove": [ + "back: soft grey with subtle silver sheen", + "beak: thin, slightly curved, black", + "belly: light grey with delicate mottling", + "breast: pale pinkish-grey with black spots", + "crown: glossy blue-grey feathers", + "forehead: smooth grey with a touch of light blue", + "eyes: dark brown with thin grey eye-ring", + "legs: slim, dark pink, with thin toes", + "wings: grey with white and black feather markings", + "nape: light grey with faint grey lines", + "tail: long, dark grey, with white outer feathers", + "throat: pale grey with a hint of pink undertone" + ], + "malaita white eye": [ + "back: vibrant green feathers", + "beak: slender, sharp, black", + "belly: yellowish-green hues", + "breast: bright yellow plumage", + "crown: olive-green with a slight crest", + "forehead: golden-yellow with a white band", + "eyes: large, with noticeable white rings", + "legs: petite, grayish-blue", + "wings: short, green with yellow edges", + "nape: green with some yellow tones", + "tail: dark, olive-green with yellow edging", + "throat: vibrant yellow feathers" + ], + "malawi batis": [ + "back: olive to gray-brown hue", + "beak: black and short", + "belly: white with black streaks", + "breast: grayish-white, faint black streaks", + "crown: dark gray, prominent black stripe", + "forehead: pale gray to white", + "eyes: large and black", + "legs: dark, slender, sturdy", + "wings: brownish-black, white patch", + "nape: gray-brown, black stripe", + "tail: black with white markings", + "throat: white, clean appearance" + ], + "malayan banded pitta": [ + "back: vibrant blue-green feathers", + "beak: short, stout, and yellow", + "belly: bright blue with faint black bands", + "breast: rich blue with black bands", + "crown: deep blue with a red stripe", + "forehead: red and slightly rounded", + "eyes: dark and encircled by bare orbital rings", + "legs: long and sturdy, pinkish-gray", + "wings: blue-green with black streaks", + "nape: bright blue with a hint of green", + "tail: short, with blue and black bands", + "throat: deep red with black borders" + ], + "malayan crested fireback": [ + "back: dark brown feathers with black patterns", + "beak: short, pale bluish-gray, slightly hooked", + "belly: deep grayish-blue with black line details", + "breast: dark brown to blend with back feathers", + "crown: orange crest with black and white stripes", + "forehead: grey and white band extending above eyes", + "eyes: small, dark brown with white thin eyelids", + "legs: long, slender greyish-brown legs with sharp claws", + "wings: brownish-black with spots of white", + "nape: covered with orange striped feathers", + "tail: black central feathers, surrounded by cinnamon-red outer feathers", + "throat: bare blue skin with some sparse feathers" + ], + "malayan crestless fireback": [ + "back: buff-brown with glossy black bars", + "beak: yellowish, stout and curved", + "belly: dark grey with dense white speckling", + "breast: bluish-black, contrasting with belly", + "crown: bluish-black with featherless red patch", + "forehead: bluish-black, merging into the crown", + "eyes: dark brown with yellow eye-ring", + "legs: yellowish, thick and strong", + "wings: buff-brown with black barring, rounded", + "nape: bluish-black, blending into the back", + "tail: long, rounded, black with buff bars", + "throat: bluish-black, continuous with the breast" + ], + "malayan laughingthrush": [ + "back: olive-brown with subtle feather streaks", + "beak: short, curved, and dark grey", + "belly: light grey with reddish-brown flanks", + "breast: pale grey with faint brown streaks", + "crown: dark brown with faint streaks", + "forehead: slightly lighter brown than crown", + "eyes: dark brown with thin grey eye-ring", + "legs: strong, grey-blue with sharp claws", + "wings: olive-brown with faint feather patterns", + "nape: dark brown, transitioning from the crown", + "tail: long, olive-brown with dark banding", + "throat: pale grey, blending into the breast" + ], + "malayan night heron": [ + "back: dark gray-brown with black streaks", + "beak: short and stout, greenish-yellow tip", + "belly: white with broad black stripes", + "breast: rufous-orange with black stripes", + "crown: dark gray with rufous-brown highlights", + "forehead: dark gray with faint rufous streaks", + "eyes: bright red-orange", + "legs: short and yellow-green", + "wings: dark gray-brown, rounded with rufous-edged feathers", + "nape: rufous-brown with black streaks", + "tail: short and dark gray-brown", + "throat: white with black-streaked sides" + ], + "malayan partridge": [ + "back: brownish-black with white streaks", + "beak: short and stout, pale yellow", + "belly: reddish-brown fading to white", + "breast: dark chestnut with white streaks", + "crown: dark reddish-brown", + "forehead: white with fine black stripes", + "eyes: dark brown with pale eye-ring", + "legs: strong and featherless, yellowish-brown", + "wings: rounded, brownish-black with reddish-brown fringe", + "nape: reddish-brown with white streaks", + "tail: short and rounded, brownish-black with reddish-brown tips", + "throat: white with fine black streaks" + ], + "malayan peacock pheasant": [ + "back: dark iridescent green with black barring", + "beak: short, pale ivory with a curved shape", + "belly: grayish-white with black spots and streaks", + "breast: metallic green-blue with black and white edging", + "crown: glossy blue-black with a small crest", + "forehead: metallic green-blue with a white stripe", + "eyes: dark brown with a prominent white eye-ring", + "legs: strong and grayish-brown with sharp spurs", + "wings: dark green-blue with multi-colored spots", + "nape: iridescent green with bold black barring", + "tail: long and wedge-shaped, with green, blue, and black barring", + "throat: grayish-white with black spots and streaks" + ], + "malayan whistling thrush": [ + "back: dark velvety blue hue", + "beak: sleek black, thin, pointed", + "belly: smooth, blue-black", + "breast: dark bluish-grey feathers", + "crown: brightly colored, deep blue", + "forehead: vibrant blue sheen", + "eyes: sharp, inquisitive, dark brown", + "legs: strong, grey-blue, scaled", + "wings: elongated, dark blue-black with minor white spotting", + "nape: deep blue, connecting crown and back", + "tail: long, blackish-blue, fanned when flying", + "throat: pale, blue-grey, blending with breast" + ], + "malaysian blue flycatcher": [ + "back: vibrant blue feathers covering the upper body", + "beak: slender, black, and pointed for catching insects", + "belly: soft, white feathers with a tinge of blue", + "breast: white feathers meeting the blue back feathers", + "crown: bright blue feathers adorning the top of the head", + "forehead: vivid blue feathers meeting the beak", + "eyes: alert, black eyes observing surroundings", + "legs: thin, black legs ending in sharp talons", + "wings: blue feathers with contrasting black wingtips", + "nape: blue feathers transitioning from the head to the back", + "tail: long, blue feathers with black accents for balance", + "throat: white feathers contrasting with the blue crown" + ], + "malaysian blue banded kingfisher": [ + "back: vibrant blue feathers with black streaks", + "beak: long, black, and slightly curved", + "belly: creamy white with blue banding", + "breast: white fading into blue bands", + "crown: bright blue with a black mask-like pattern", + "forehead: intense blue merging into the crown", + "eyes: round and dark, surrounded by black mask pattern", + "legs: short and reddish-brown", + "wings: blue with black and white detailing", + "nape: blue continuation from the crown", + "tail: striking blue with black-tipped feathers", + "throat: white transitioning into blue bands" + ], + "malaysian eared nightjar": [ + "back: brownish-gray with blackish streaks", + "beak: short, wide, and black", + "belly: whitish-gray with brownish speckles", + "breast: pale gray with blackish streaks and barring", + "crown: grayish-brown with black streaks", + "forehead: pale grayish-brown with faint streaks", + "eyes: large, dark, and slightly protruding", + "legs: short and feathered, with blackish feet", + "wings: long and pointed, with a cryptic pattern of browns, grays, and whites", + "nape: grayish-brown with darker streaks", + "tail: brownish-gray with blackish bars and a white tip", + "throat: pale gray with fine dark streaks" + ], + "malaysian hawk cuckoo": [ + "back: sleek, grey-brown feathers", + "beak: sharp, curved, and black", + "belly: white with dark streaks", + "breast: rufous-orange with black streaks", + "crown: grey-brown plumage", + "forehead: pale eyebrow-like stripe", + "eyes: dark and alert", + "legs: long, grey, and sturdy", + "wings: broad, rounded, grey-brown with dark barring", + "nape: grey-brown with faint streaks", + "tail: long, dark, and barred, with white tips", + "throat: white with dark streaks" + ], + "malaysian honeyguide": [ + "back: olive-brown with faint streaks", + "beak: short and robust, black", + "belly: whitish, tinged with pale yellow", + "breast: pale yellowish-brown", + "crown: rufous-brown, finely streaked", + "forehead: short, slightly paler than crown", + "eyes: dark brown surrounded by pale eye-ring", + "legs: grayish-blue, strong and sturdy", + "wings: brownish, flight feathers with white spots", + "nape: dull reddish-brown", + "tail: dark brown, subterminal white band", + "throat: pale yellow-white" + ], + "malaysian pied fantail": [ + "back: olive-brown color with a slight sheen", + "beak: small, thin, and black", + "belly: white with a hint of pale grey", + "breast: white, blending into the grey neck", + "crown: black, contrasting with the white forehead", + "forehead: white, extending to the eyebrows", + "eyes: dark brown with a small white ring", + "legs: dark grey and slender", + "wings: brownish-grey with white wing bars", + "nape: grey, connecting the black crown with the paler back", + "tail: long, black and white, fanned shape", + "throat: white with smooth grey transition to the breast" + ], + "malaysian plover": [ + "back: light brownish-grey plumage", + "beak: short, straight, grayish-black", + "belly: white and smooth", + "breast: white with light greyish-brown border", + "crown: light brownish-grey with white streaks", + "forehead: white with light brown streaks", + "eyes: dark, slightly oval-shaped with white eye-rings", + "legs: long, slender, grayish-yellow", + "wings: light brownish-grey with white wing bars", + "nape: light brownish-grey with white markings", + "tail: short, white-tipped with greyish-brown central feathers", + "throat: white and smooth" + ], + "malaysian rail babbler": [ + "back: dark olive-green feathers", + "beak: short, stout, and slightly curved", + "belly: pale gray with an orange-red hue", + "breast: rusty orange with subtle black streaks", + "crown: dark gray fading into olive-green at the nape", + "forehead: black with a small white eyebrow stripe", + "eyes: dark brown with a thin white eyering", + "legs: long, slender, with strong pale pink claws", + "wings: olive-green with dull blue patches", + "nape: slightly darker olive-green than the back", + "tail: long and tapered, with a mix of blue-gray and olive-green feathers", + "throat: white with a grayish tint, bordered by black lines" + ], + "malherbe parakeet": [ + "back: vibrant green feathers", + "beak: short, slightly curved, and pale yellowish", + "belly: light turquoise-blue plumage", + "breast: bright green with subtle blue hues", + "crown: brilliant lime-green feathers", + "forehead: green feathers with bluish-white spots", + "eyes: dark, round, with a white eye-ring", + "legs: strong, greyish-blue with sharp claws", + "wings: mix of bright green and blue feathers", + "nape: lime-green transitioning to turquoise", + "tail: long, narrow, blue-green feathers", + "throat: light-green feathers with a hint of blue" + ], + "mali firefinch": [ + "back: vibrant reddish-orange feathers", + "beak: short and conical, silver-gray color", + "belly: lighter reddish-orange hue", + "breast: bright and fiery red-orange", + "crown: striking red color with a slight orange tint", + "forehead: brilliantly colored red-orange feathers", + "eyes: small with a dark, round pupil surrounded by a white eye-ring", + "legs: short and sturdy, light gray to blending silver hue", + "wings: predominantly red-orange with dark streaks and black feathers", + "nape: red-orange hue, transitioning seamlessly from the crown", + "tail: reddish-orange feathers with black tips and subtle streaks", + "throat: fiery red transitioning seamlessly to the breast area" + ], + "malindi pipit": [ + "back: warm brown with subtle streaks", + "beak: long, slender, and pale pinkish-brown", + "belly: creamy white, lightly streaked", + "breast: buff-white with dark brown streaks", + "crown: pale brown with fine, dark streaks", + "forehead: off-white with soft streaks", + "eyes: dark, encircled by a pale eye ring", + "legs: long, thin, and pinkish-brown", + "wings: brown with white and buff-edged feathers", + "nape: light brown with soft, dark streaks", + "tail: brown with white outer feathers and dark barring", + "throat: unmarked, pale buff-white" + ], + "mallee emuwren": [ + "back: brownish-grey plumage", + "beak: small, pointy, black", + "belly: pale buff-colored feathers", + "breast: rufous brown plumage", + "crown: grey-brown with black streaks", + "forehead: bluish-grey feathers", + "eyes: small and black", + "legs: long, thin, and grey", + "wings: brown with streaks, short", + "nape: grey-brown feathered", + "tail: long, slender, and filamentous", + "throat: pale buff with fine streaks" + ], + "malleefowl": [ + "back: brownish-grey plumage with intricate patterns", + "beak: short, strong, and curved for digging in soil", + "belly: paler grey feathers with lighter markings", + "breast: predominantly grey-brown with some paler streaks", + "crown: sandy brown feathers with darker speckles", + "forehead: rounded with pale, speckled brown feathers", + "eyes: small, dark, and set on the side of the head", + "legs: strong, featherless with sharp claws for burrowing", + "wings: short, rounded, with brown and tan feather patterns", + "nape: pale brown feathers with fine, dark speckling", + "tail: short, fanned, with intricately patterned feathers", + "throat: lighter grey with slight barring or patterning" + ], + "manchurian bush warbler": [ + "back: olive-brown feathers", + "beak: short, slightly curved, dark-colored", + "belly: pale yellowish-white", + "breast: light brown with some streaks", + "crown: olive-brown with darker streaks", + "forehead: pale olive-brown", + "eyes: small, dark, circled by pale ring", + "legs: pale pinkish-brown", + "wings: olive-brown, rounded, with faint bars", + "nape: olive-brown with faint streaks", + "tail: rounded, olive-brown, with thin bars", + "throat: light cream-colored with faint streaks" + ], + "manchurian reed warbler": [ + "back: mottled brown and beige plumage", + "beak: thin and pointed, blackish-brown", + "belly: creamy-white with pale brown streaks", + "breast: buff-toned with brown streaks", + "crown: warm brown with faint streaks", + "forehead: brown with paler central stripe", + "eyes: small, dark, and beady", + "legs: slender, light pinkish-brown", + "wings: brown with pale beige bars", + "nape: brown with faint streaks", + "tail: dark brown with a slight fork", + "throat: off-white with thin brown streaks" + ], + "mandarin duck": [ + "back: beautifully patterned feathers with a range of colors", + "beak: short reddish-orange with serrated edges", + "belly: creamy white feathers with black spots", + "breast: bold orange feathers with black and white streaks", + "crown: glossy green with a purple sheen", + "forehead: dark green with a slight tuft", + "eyes: dark, round, and expressive", + "legs: orange-yellow and webbed", + "wings: multicolored with striking blue wingtips", + "nape: long, elegant and dark grey feathers", + "tail: fan-shaped with brown and cream stripes", + "throat: white with two black stripes framing it" + ], + "maned duck": [ + "back: sleek, brownish-black plumage", + "beak: large, wedge-shaped, multicolored", + "belly: white, soft-feathered", + "breast: deep rust-orange plumage", + "crown: black, with distinct, elongated mane-like feathers", + "forehead: black, smoothly blending into crown", + "eyes: dark, expressive", + "legs: strong, yellow-orange with webbed feet", + "wings: black and white, with iridescent green-blue secondary feathers", + "nape: black, with elongated mane feathers extending to back", + "tail: black, short and stiff", + "throat: white, connecting to the breast feathers" + ], + "maned owl": [ + "back: dark-brown feathers with white spots", + "beak: sharp, hooked, yellowish-brown", + "belly: light, dense, white-plumaged", + "breast: grey-brown feathers with white streaks", + "crown: round head with short, dark tufted mane", + "forehead: white feathers with grey-brown speckles", + "eyes: large, round, deep-orange", + "legs: white feathered with powerful, yellow talons", + "wings: grey-brown with white barring and spots", + "nape: grey-brown with white streaks", + "tail: long, grey-brown with white bars", + "throat: white, fluffy feathers" + ], + "mangrove blue flycatcher": [ + "back: bright blue feathers with a subtle sheen", + "beak: sharp, black, and slightly curved", + "belly: white with hints of pale blue", + "breast: rich blue coloration with white accents", + "crown: vibrant blue feathers meeting at the forehead", + "forehead: intense blue with a smooth gradient towards the crown", + "eyes: beady, black with a piercing gaze", + "legs: thin, grayish-black with knobby joints", + "wings: striking blue with dark flight feathers", + "nape: continuation of the brilliant blue crown", + "tail: long, dark blue feathers with lighter tips", + "throat: white with a gentle transition to the blue of the breast" + ], + "mangrove fantail": [ + "back: olive-brown and elongated feathers", + "beak: small, black, and narrow", + "belly: light gray with some white", + "breast: grayish with a hint of olive", + "crown: olive-brown and sleek", + "forehead: grayish-white blending into the crown", + "eyes: beady and black", + "legs: thin and black", + "wings: olive-brown with light feather tips", + "nape: lighter olive-brown with subtle streaks", + "tail: long, fan-shaped, and black edged with white", + "throat: lighter gray with subtle feather markings" + ], + "mangrove finch": [ + "back: dark brownish-gray feathers", + "beak: sturdy, slightly hooked black beak", + "belly: light cream-colored feathers", + "breast: pale grayish-brown plumage", + "crown: dark gray-brown feathers", + "forehead: slightly lighter gray-brown", + "eyes: small, dark, and round", + "legs: strong, black talons", + "wings: slightly reddish-brown wingbars", + "nape: gray-brown feathered neck", + "tail: dark, brownish-gray and slightly rounded", + "throat: soft cream-colored feathers" + ], + "mangrove gerygone": [ + "back: olive-brown with subtle striping", + "beak: slender and slightly curved", + "belly: pale, off-white", + "breast: creamy white with yellow tinge", + "crown: olive-brown with light streaks", + "forehead: smooth olive-colored", + "eyes: small and dark", + "legs: pale, slender, and long", + "wings: olive-brown with faint barring", + "nape: olive and slightly streaked", + "tail: long, edged with white", + "throat: clean white" + ], + "mangrove honeyeater": [ + "back: olive-green upper surface", + "beak: long, slender, and curved", + "belly: pale-yellow underside", + "breast: light yellowish-brown front", + "crown: olive-green top of the head", + "forehead: slightly paler green", + "eyes: round, dark with white eye-ring", + "legs: thin, grey, and twig-like", + "wings: olive-green with slight curve", + "nape: olive-green transition from the head to the back", + "tail: long, olive-green feathers with a slight upward curve", + "throat: lighter yellow-green front of the neck" + ], + "mangrove hummingbird": [ + "back: vibrant green feathered, slim and streamlined", + "beak: long, slender, and curved for nectar extraction", + "belly: pale gray with a hint of green on the sides", + "breast: iridescent green, shimmering in the sunlight", + "crown: bright green, almost metallic in appearance", + "forehead: sparkling green, blending into the crown", + "eyes: small, round, and dark, with a keen gaze", + "legs: thin and wiry, with sharp claws for perching", + "wings: swift and agile, ending in needle-like tips", + "nape: rich green, seamlessly connecting to the back", + "tail: forked, grayish feathers for precision in flight", + "throat: shiny green, contrasting with the lighter belly" + ], + "mangrove kingfisher": [ + "back: vibrant blue with black streaks", + "beak: long, red, and sharp", + "belly: white with faint grey streaks", + "breast: clean white and fluffy", + "crown: bright blue with black outlines", + "forehead: blue and slightly raised", + "eyes: dark, round, and alert", + "legs: red-orange with scaly texture", + "wings: vivid blue with black barring", + "nape: striking blue with black contours", + "tail: blue with black bands, slightly forked", + "throat: pristine white with sleek feathers" + ], + "mangrove pitta": [ + "back: vibrant green-blue feathers", + "beak: strong, black curved bill", + "belly: bright orange patch", + "breast: rich orange-red plumage", + "crown: deep blue-green cap", + "forehead: vivid blue-green feathers", + "eyes: round, dark, alert", + "legs: long, sturdy, pale pink", + "wings: blue-green with black accents", + "nape: bright green-blue hue", + "tail: short, blue-green with red underside", + "throat: brilliant orange-red feathers" + ], + "mangrove rail": [ + "back: greyish-brown feathered body", + "beak: strong, straight, greenish-yellow", + "belly: light grey feathered underside", + "breast: grey feathered chest area", + "crown: dark grey feathered head", + "forehead: greyish-brown feathered brow", + "eyes: dark, bold, round", + "legs: relatively long, greenish-yellow", + "wings: short, rounded; greyish-brown with white spots", + "nape: slightly lighter grey than crown", + "tail: short and broad, greyish-brown, white-tipped feathers", + "throat: pale grey feathered area under the beak" + ], + "mangrove robin": [ + "back: olive-brown feathers with faint streaks", + "beak: slender, pointed black bill", + "belly: white with subtle grayish streaks", + "breast: light grayish-brown, blending with belly", + "crown: dark gray with faint white markings", + "forehead: dark gray, blending into the crown", + "eyes: round and black, surrounded by a thin white eye-ring", + "legs: long and dark gray, ending in strong, curved claws", + "wings: olive-brown with faint white wing bars", + "nape: dark gray, blending into the back", + "tail: long and olive-brown, white at the tips, often fanned out", + "throat: light grayish-white, blending into breast" + ], + "mangrove swallow": [ + "back: sleek, iridescent blue-green", + "beak: black, slender, and pointed", + "belly: white, with a faint gray band", + "breast: bright, white plumage", + "crown: brilliant, blue-green metallic", + "forehead: shining, iridescent blue", + "eyes: dark, with a thin black eye-line", + "legs: black, with long, thin toes", + "wings: long, pointed, blue-green feathers", + "nape: vibrant, metallic blue-green", + "tail: forked, with blue-green and white feathers", + "throat: white, with a subtle gray band" + ], + "mangrove vireo": [ + "back: olive-green upper body", + "beak: sharp, slightly hooked, pale gray or brown", + "belly: creamy white underparts", + "breast: pale yellowish-white", + "crown: olive-green or gray head; yellow stripe above the eye", + "forehead: grayish to olive-green", + "eyes: dark, round, with white eyering", + "legs: slender, pale gray or pinkish-gray", + "wings: olive-green feathers; white wingbars", + "nape: olive-green; connected to crown", + "tail: olive-green feathers; white edges on outer tail feathers", + "throat: pale yellowish-white" + ], + "mangrove whistler": [ + "back: olive-brown with dense streaks", + "beak: long, slightly curved, and black", + "belly: white with a tinge of gray", + "breast: pale-buff blending to grayish-white", + "crown: dark brown with light streaks", + "forehead: olive-brown with faint streaks", + "eyes: dark brown with white eye-ring", + "legs: long, strong, and grayish-blue", + "wings: dark olive-brown with faint bars", + "nape: olive-brown streaked with light markings", + "tail: long and dark brown with white edges", + "throat: pale grayish-white with light streaks" + ], + "manicore warbling antbird": [ + "back: dark brown feathers with subtle markings", + "beak: sharp, pointed black beak for catching insects", + "belly: light gray with streaks of white plumage", + "breast: soft grayish-brown feathers, slightly darker than belly", + "crown: dark gray with faint black streaks", + "forehead: pale white markings, contrasting darker crown", + "eyes: bright, alert black eyes framed by white eye-ring", + "legs: long, slender grayish-blue legs for perching on branches", + "wings: brownish-black feathers with white bars for agile flight", + "nape: dark gray with faint streaks, connecting crown and back", + "tail: long, dark brown with white-tipped feathers for balance", + "throat: light gray, blending into the breast plumage" + ], + "mantanani scops owl": [ + "back: tawny brown, lightly barred with black", + "beak: short, grayish-white, hooked tip", + "belly: creamy white, streaked with dark brown", + "breast: creamy white with brown barring, rounded patterns", + "crown: tawny brown, blackish spotting", + "forehead: light brown, dense dark brown speckling", + "eyes: large, bright yellow-orange, encircled by black", + "legs: feathered, grayish-white, strong talons", + "wings: tawny brown, black and white barring, rounded tips", + "nape: tawny brown, blackish streaking", + "tail: brown, narrow white bars, fan-shaped", + "throat: creamy white, fine dark brown streaking" + ], + "mantled hawk": [ + "back: sleek, light brown feathers", + "beak: sharp, hooked, black tip", + "belly: whitish feathers with faint streaks", + "breast: white feathers with brown barring", + "crown: light brown head feathers", + "forehead: smooth, light brown transition to beak", + "eyes: piercing yellow gaze", + "legs: sturdy, yellow-orange with black talons", + "wings: broad, light brown with darker edges", + "nape: light brown feathers, continuous with back", + "tail: long, narrow with brown and white bands", + "throat: white and lightly streaked feathers" + ], + "manu antbird": [ + "back: brownish-grey feathers", + "beak: long, curved, and black", + "belly: white with dark streaks", + "breast: grey and heavily streaked", + "crown: dark rust color", + "forehead: rusty-red hue", + "eyes: dark, with an off-white eyering", + "legs: light pink, robust", + "wings: greyish-brown with light edging", + "nape: rusty color fading to brown", + "tail: long and brown, with white tips", + "throat: white, with a black malar stripe" + ], + "manus boobook": [ + "back: brownish-grey with faint white spots", + "beak: sharp, curved, yellowish-grey", + "belly: light beige with horizontal brown speckles", + "breast: buff-white with brown streaks", + "crown: greyish-brown with white markings", + "forehead: greyish-brown with distinct white eyebrows", + "eyes: large, yellow, nocturnally adapted", + "legs: yellowish-grey, feathered, with sharp talons", + "wings: brown with white bars and a wide wingspan", + "nape: greyish-brown with faint white spots", + "tail: brown with distinct white barring", + "throat: buff-white with brown streaks" + ], + "manus cicadabird": [ + "back: sleek bluish-black feathers", + "beak: short and sharp, dark in color", + "belly: light grey with fine streaks", + "breast: pale grey, merging with the belly", + "crown: bluish-black, smoothly rounded shape", + "forehead: slightly lighter than the crown, deep blue hue", + "eyes: alert black orbs, surrounded by thin white eyering", + "legs: thin, strong and black", + "wings: dark blue-black, long and slightly rounded", + "nape: bluish-black, converging with the back and crown", + "tail: long and slightly graduated, with dark blue-black feathers", + "throat: pale grey, blending seamlessly with the breast" + ], + "manus cuckooshrike": [ + "back: blue-gray plumage", + "beak: hooked, black", + "belly: creamy-white", + "breast: light gray", + "crown: dark gray", + "forehead: grayish", + "eyes: dark, medium-sized", + "legs: slender, gray", + "wings: blue-gray, long", + "nape: gray-blue", + "tail: long, graduated, blue-gray", + "throat: lighter gray" + ], + "manus fantail": [ + "back: olive-brown with hints of green iridescence", + "beak: small, thin, and black", + "belly: pale yellow with some light gray", + "breast: light yellowish-buff color", + "crown: brown-olive with some greenish sheen", + "forehead: slightly lighter olive-brown", + "eyes: small, round, and black with narrow white eyering", + "legs: thin and grayish-brown", + "wings: olive-brown with faint wing bars", + "nape: slightly darker olive-brown, with greenish sheen", + "tail: long, graduated with a striking black and white pattern", + "throat: light yellowish-buff color" + ], + "manus monarch": [ + "back: vibrant green plumage with contrasting black streaks", + "beak: slender, pointed, slightly curved beak in dark tone", + "belly: soft yellowish-green feathers with fine black markings", + "breast: bright green feathers with iridescent sheen", + "crown: glossy green with thin black accents", + "forehead: green area with a slight blue tinge", + "eyes: dark, piercing with an almost invisible white eye-ring", + "legs: medium length, sturdy, and dark grey in color", + "wings: green hues blending to blue, with contrasting black feathers and white tips", + "nape: dark, greenish-blue glossy region transitioning to the back", + "tail: long, iridescent green with black feathers and white edges", + "throat: rich green feathers with fine black striping" + ], + "manx shearwater": [ + "back: sleek, dark grey plumage", + "beak: long, slender, black, hooked shape", + "belly: bright white feathers", + "breast: white, rounded plumage", + "crown: dark grey, smooth contour", + "forehead: sloping from crown to beak", + "eyes: small, dark, set near beak", + "legs: short, pink, webbed feet", + "wings: long, slender, dark grey on top", + "nape: graceful, dark grey feathers", + "tail: short, dark grey, slightly forked", + "throat: white, soft transition to breast" + ], + "many banded aracari": [ + "back: vibrant green with black markings", + "beak: large, yellow, and black banded", + "belly: yellowish-white with dark bands", + "breast: rich red with narrow black bands", + "crown: deep green with faint black stripes", + "forehead: bright red-orange", + "eyes: dark brown, surrounded by blue skin", + "legs: grayish-blue with sharp talons", + "wings: green with black and pale yellow banding", + "nape: green with black markings", + "tail: elongated, black and green feathers with yellow tips", + "throat: red-orange with black edges" + ], + "many colored bushshrike": [ + "back: vibrant green plumage", + "beak: strong, hooked, black", + "belly: deep yellow feathers", + "breast: rich orange hue", + "crown: bright yellow with black streaks", + "forehead: striking yellow shades", + "eyes: deep black, piercing gaze", + "legs: sturdy, dark gray", + "wings: multicolored with green, yellow, and orange", + "nape: greenish-yellow transition", + "tail: long, fan-like, green with black streaks", + "throat: vibrant yellow with orange tinge" + ], + "many colored chaco finch": [ + "back: vibrant olive-green feathers", + "beak: small yet sturdy, light orange", + "belly: soft yellow undertones", + "breast: rich, chestnut brown", + "crown: deep gray-blue crest", + "forehead: eye-catching emerald green", + "eyes: tiny, black, and alert", + "legs: slender, light pinkish-gray", + "wings: multicolored, blending shades of blue, green, and brown", + "nape: pale green, transitioning to the crown", + "tail: elongated, layered feathers in hues of brown and green", + "throat: radiant beige with hints of orange" + ], + "many colored fruit dove": [ + "back: vibrant green feathers", + "beak: short, curved orange", + "belly: pale grey with hints of purple", + "breast: bright purple plumage", + "crown: iridescent blue-green", + "forehead: shiny emerald green", + "eyes: dark, piercing gaze", + "legs: slender, reddish-orange", + "wings: green and purple mix, fading to yellow at tips", + "nape: softly curved, green-hued neck", + "tail: long, elegant feathers with green, yellow, and purple tones", + "throat: brilliant yellow markings" + ], + "many colored rush tyrant": [ + "back: vibrant green hues", + "beak: small, slim, and black", + "belly: pale yellow softness", + "breast: bright yellow plumage", + "crown: rich olive-green glow", + "forehead: streaks of black and white", + "eyes: deep, piercing black", + "legs: slender, matching grey", + "wings: mix of green and yellow, visible during flight", + "nape: greenish tint blending with the crown", + "tail: elongated, green and black feathers", + "throat: striking yellow display" + ], + "many spotted hummingbird": [ + "back: iridescent green with blue tints", + "beak: long, slender, and black", + "belly: pale grayish with light speckles", + "breast: white with many vibrant spots", + "crown: bright emerald shimmering feathers", + "forehead: metallic green merging with the crown", + "eyes: small and black with a white eye-ring", + "legs: short and featherless, with dark small claws", + "wings: elongated, narrow, and bronze-green", + "nape: shimmering blue-green feathers", + "tail: forked with dark and light banding", + "throat: brilliant red with iridescent purple edges" + ], + "many striped canastero": [ + "back: light brown with thin dark stripes", + "beak: slightly curved, thin and black", + "belly: whitish hue with black streaks", + "breast: light brown with dark stripes", + "crown: dark brown with fine white stripes", + "forehead: light brown blending into the crown", + "eyes: small, black, outlined in white", + "legs: slender, blackish-gray", + "wings: brown with dark bars and white edges", + "nape: light brown with thin dark stripes", + "tail: long, brownish, barred with thin stripes", + "throat: white with small black streaks" + ], + "maquis canastero": [ + "back: brown and streaked", + "beak: thin and slightly curved", + "belly: whitish with brown streaks", + "breast: buff-colored with brown streaks", + "crown: rufous-brown, sometimes with a crest", + "forehead: rufous-brown with buff streaks", + "eyes: dark with white eye-ring", + "legs: strong and pale", + "wings: brown with buff wingbars", + "nape: rufous-brown with streaks", + "tail: long and brown with lighter tips", + "throat: buff-colored and streaked" + ], + "maracaibo tody flycatcher": [ + "back: vibrant green feathers", + "beak: short and pointy black beak", + "belly: light yellowish underparts", + "breast: vibrant yellow chest feathers", + "crown: bright greenish-yellow crown", + "forehead: shining green feathers", + "eyes: large, black and round", + "legs: thin gray legs and feet", + "wings: greenish, with yellow edges", + "nape: bright green feathers", + "tail: long, dark and fan-shaped", + "throat: vibrant yellow plumage" + ], + "marail guan": [ + "back: deep chestnut-brown, long feathers", + "beak: short, robust, ivory-colored", + "belly: creamy-white, occasionally with black barring", + "breast: rufous-chestnut, bordered with pale feathers", + "crown: black, with glossy blue-green shades", + "forehead: black feathers, bluish-green sheen", + "eyes: dark brown, slightly reddish hue", + "legs: strong, grayish-blue", + "wings: chestnut-brown, banded with white", + "nape: chestnut, blending into a dark blue-green shade", + "tail: long, chestnut-brown, with white-tipped feathers", + "throat: white, sometimes with black markings" + ], + "mara\u00f1on crescentchest": [ + "back: olive-brown hue", + "beak: short and black", + "belly: pale yellowish-white", + "breast: yellow-orange with dark crescents", + "crown: dull brown color", + "forehead: brownish hue", + "eyes: dark with an encircling pale eye-ring", + "legs: slender and grayish-brown", + "wings: olive-brown with dark flight feathers", + "nape: brown with a subtle reddish tint", + "tail: long and olive-brown", + "throat: bright yellow with distinctive crescent markings" + ], + "mara\u00f1on spinetail": [ + "back: olive-brown with subtle streaks", + "beak: short, sturdy, and slightly curved", + "belly: pale yellow with fine streaks", + "breast: creamy with brownish streaks", + "crown: rufous with a spiny crest", + "forehead: pale brown and slightly rounded", + "eyes: small, dark, with a pale eye-ring", + "legs: slender and grayish-brown", + "wings: dark brown with faint wing bars", + "nape: olive-brown with slight streaks", + "tail: long, narrow, and dark brown", + "throat: creamy-white and unmarked" + ], + "mara\u00f1on thrush": [ + "back: yellow-olive plumage", + "beak: straight, slender, black", + "belly: creamy-white tinge", + "breast: yellow-orange hue", + "crown: olive-toned with streaks", + "forehead: smooth, olive-yellow", + "eyes: dark, medium-sized, encircled by white eye-ring", + "legs: strong, grayish-blue", + "wings: yellow-olive with dark flight feathers", + "nape: streaked olive-brown", + "tail: olive-brown, long and slender", + "throat: yellow-white with faint streaks" + ], + "mara\u00f1on tyrannulet": [ + "back: olive-green feathers", + "beak: small, slender, and slightly hooked", + "belly: yellowish-white plumage", + "breast: pale grayish-white feathers", + "crown: pale grayish-white with an inconspicuous crest", + "forehead: faint whitish-gray coloration", + "eyes: dark, beady, and alert", + "legs: thin and grayish-black", + "wings: olive-green with darker feather tips", + "nape: pale grayish-white, blending into the back", + "tail: medium-length, olive-green with darker edges", + "throat: pale grayish-white, leading into the breast area" + ], + "marble faced bristle tyrant": [ + "back: sleek, grayish feathers", + "beak: petite, sharp and black", + "belly: whitish-gray with faint streaks", + "breast: light gray with soft texture", + "crown: smooth, marble-like pattern", + "forehead: pale, stone-like appearance", + "eyes: small, deep black, and piercing", + "legs: thin, lanky with dark gray hue", + "wings: medium-length, gray with barred pattern", + "nape: short, subtle feathers transitioning to crown", + "tail: lengthy, gray with light banding", + "throat: pale gray, contrasting with breast" + ], + "marbled frogmouth": [ + "back: mottled brown and gray feathers pattern", + "beak: wide, short, and hooked", + "belly: soft grayish-white underparts", + "breast: brown speckled with white spots", + "crown: dark brown with light streaks", + "forehead: pale buff with fine dark bars", + "eyes: large, forward-facing with yellowish rings", + "legs: short and sturdy, feathered down to its toes", + "wings: rounded, marbled brown with gray and rufous patterns", + "nape: gray-brown with pale streaks", + "tail: long, graduated, and brownish-gray with white bars", + "throat: grayish-white with fine dark streaks" + ], + "marbled honeyeater": [ + "back: olive-green with subtle marbling", + "beak: curved black with a sharp point", + "belly: cream with brown streaks", + "breast: pale cream with hints of brown", + "crown: dark olive-green with a slight crest", + "forehead: olive-green, blending into crown", + "eyes: dark and round with a white ring", + "legs: strong and grey, with sharp talons", + "wings: olive-green with faint marbled pattern", + "nape: olive-green fading to lighter shade", + "tail: long and olive-green with black bars", + "throat: soft cream with faint brown streaks" + ], + "marbled murrelet": [ + "back: greenish-black feathers", + "beak: short, dark, and pointed", + "belly: white with marbled underparts", + "breast: white with dark mottling", + "crown: dark head with brownish mottling", + "forehead: dark with subtle white feathers", + "eyes: small and black, surrounded by dark feathers", + "legs: short with webbed feet", + "wings: dark with white barring", + "nape: dark and mottled, blending into crown", + "tail: short and wedge-shaped", + "throat: dark with white streaks" + ], + "marbled teal": [ + "back: light brown feathers with a marbled texture", + "beak: short, bluish-gray with a black tip", + "belly: off-white with light brown speckles", + "breast: buff-colored, mixed with pale streaking", + "crown: subtle reddish-brown with fine, darker streaks", + "forehead: pale, blending into the brown crown", + "eyes: medium-sized, dark, encircled by thin white eye-ring", + "legs: relatively short, grayish-blue", + "wings: brownish-grey with iridescent green speculum", + "nape: light brown blending into the crown", + "tail: medium length, brownish-gray with marbled patterns", + "throat: off-white, blending into the breast area" + ], + "marbled wood quail": [ + "back: mottled brown with white spots", + "beak: short, curved, grayish-brown", + "belly: pale brown with black bars and white speckles", + "breast: reddish-brown with black barring and white streaks", + "crown: dark brown with a reddish tint", + "forehead: lighter brown with faint black speckles", + "eyes: dark, surrounded by a thin white eye-ring", + "legs: pinkish-gray with strong, sharp claws", + "wings: mottled brown with white speckles and black barring, rounded shape", + "nape: reddish-brown with a faint white stripe down the middle", + "tail: short, brown with black and white barring pattern", + "throat: pale gray with a light brown tinge" + ], + "marbled wren babbler": [ + "back: olive-brown with black streaks", + "beak: short, stout, and pale", + "belly: white with brown streaks", + "breast: buff-colored with dark spotting", + "crown: chestnut-brown with faint streaks", + "forehead: pale buff with brownish streaks", + "eyes: dark and beady, surrounded by pale eyering", + "legs: pinkish or light brown, fairly long", + "wings: short, rounded, olive-brown with black markings", + "nape: chestnut-brown, blending into back", + "tail: short, olive-brown with black bars", + "throat: white with brownish streaks" + ], + "marcapata spinetail": [ + "back: brownish and streaked with black lines", + "beak: short, strong, and hooked", + "belly: pale grayish-white hue", + "breast: tawny and streaked with black lines", + "crown: rufous with a spiky crest", + "forehead: brownish, merging into the crown", + "eyes: dark brown, surrounded by pale eye-ring", + "legs: dull pinkish color, strong and sturdy", + "wings: brownish with blackish barring", + "nape: brownish, continuously streaked from back", + "tail: long and brown with narrow black bars", + "throat: whitish, contrasting with breast" + ], + "mariana crow": [ + "back: dark, glossy feathers", + "beak: strong, black and hooked", + "belly: deep black with slight green sheen", + "breast: black with a green-tinted gloss", + "crown: dark, glossy feathers", + "forehead: smooth, black feathers", + "eyes: dark brown and alert", + "legs: black and sturdy", + "wings: shiny, black with a greenish shimmer", + "nape: glossy, black feathers", + "tail: long, black feathers with a green sheen", + "throat: black and slightly iridescent" + ], + "mariana fruit dove": [ + "back: green feathers with olive-bronze iridescence", + "beak: short, curved, grayish-blue", + "belly: pale yellow, soft plumage", + "breast: vibrant yellow with orange tinges", + "crown: dark green, slightly iridescent", + "forehead: reddish-orange to purple iridescence", + "eyes: dark, surrounded by blue-gray, bare eye-ring", + "legs: short, strong, grayish-blue", + "wings: medium length, green with blue covert feathers", + "nape: green with a slight golden sheen", + "tail: relatively short, green with blue-tipped feathers", + "throat: grayish-white, slightly paler than belly" + ], + "mariana kingfisher": [ + "back: vibrant blue with streaks of green", + "beak: long, dark, and slightly curved", + "belly: creamy white with fain blue tinges", + "breast: vivid turquoise fading into white", + "crown: deep azure with shimmering iridescence", + "forehead: electric blue with glossy shine", + "eyes: small, round, and dark", + "legs: short and sturdy with sharp claws", + "wings: striking blue with hints of green", + "nape: bright cerulean with subtle green hues", + "tail: elongated, vibrant blue feathers", + "throat: silky white leading to the breast" + ], + "mariana swiftlet": [ + "back: sleek, streamlined gray shading", + "beak: small yet sharp, black color", + "belly: soft white to gray plumage", + "breast: white patch with gray outline", + "crown: distinct dark gray cap", + "forehead: smooth, slightly lighter gray", + "eyes: tiny, beady, black", + "legs: short, hidden by feathers, dark gray", + "wings: narrow, long-pointed shape, gray", + "nape: smooth transition to gray crown", + "tail: square, short, gray with white tips", + "throat: pale gray, slightly curved feathers" + ], + "marigold lorikeet": [ + "back: vibrant green feathers", + "beak: curved, orange-red tip", + "belly: deep yellow with green edges", + "breast: golden-yellow plumage", + "crown: bright green with blue hues", + "forehead: iridescent green-blue", + "eyes: dark, surrounded by thin white eye-ring", + "legs: gray with scaly texture", + "wings: green with hints of yellow and blue", + "nape: green gradient to blue", + "tail: emerald green with blue undertones", + "throat: brilliant yellow with green streaks" + ], + "mariqua flycatcher": [ + "back: olive-green, streaked with black", + "beak: short, thin, black", + "belly: lemon-yellow, unmarked", + "breast: pale yellowish-olive, faint streaking", + "crown: olive-green with orange-brown highlights", + "forehead: olive-brown, unmarked", + "eyes: dark brown with pale eyering", + "legs: thin, black, slightly elongated", + "wings: olive-brown, marked with white wingbars", + "nape: olive-green with faint streaks", + "tail: long, dark olive-brown with white edges", + "throat: pale lemon-yellow, unmarked" + ], + "mariqua sunbird": [ + "back: iridescent green feathers", + "beak: long and slender, black or dark grey", + "belly: pale yellow or white with black streaks", + "breast: bright metallic blue or purple", + "crown: glossy green or purple sheen", + "forehead: iridescent green or purple", + "eyes: small and dark, with inconspicuous white ring", + "legs: grey or dark brown, thin and strong", + "wings: dark grey with green and blue shimmer", + "nape: iridescent green, smoothly transition from the crown", + "tail: forked with dark grey feathers, white patches on the outer edges", + "throat: bright blue or purple with metallic sheen" + ], + "markham storm petrel": [ + "back: dark grey plumage with black-tipped feathers", + "beak: short, slightly hooked, black beak", + "belly: pale grey, lightly speckled with black", + "breast: light grey with flecks of white and black", + "crown: glossy black, extending to nape", + "forehead: black to dark grey, merging with crown", + "eyes: dark brown with black surrounding feathers", + "legs: short, pinkish-grey with black webbed feet", + "wings: sleek, pointed, black with white underwing patches", + "nape: glossy black, connecting with crown and back", + "tail: forked, dark grey with black and white outer feathers", + "throat: light grey, mottled with white and black" + ], + "marmora warbler": [ + "back: olive-green feathers", + "beak: thin, pointed shape", + "belly: pale gray with faint streaks", + "breast: light gray with hints of green", + "crown: pale gray with olive-green streaks", + "forehead: light gray blending into crown", + "eyes: small and dark, with white eye ring", + "legs: slender and long, pale pinkish color", + "wings: olive-green with faint white bar", + "nape: olive-green with pale gray streaks", + "tail: long and narrow, olive-green with dark tips", + "throat: light gray with faint streaking" + ], + "maroon oriole": [ + "back: vibrant maroon feathers", + "beak: sharp, silver-gray", + "belly: bright maroon plumage", + "breast: rich maroon-red feathering", + "crown: dark crimson crest", + "forehead: smooth maroon-red", + "eyes: round with black iris", + "legs: slender grayish-brown", + "wings: maroon with black flight feathers", + "nape: deep maroon plumage", + "tail: long, maroon with black accents", + "throat: bright maroon feathering" + ], + "maroon pigeon": [ + "back: rich maroon feathered back", + "beak: short, curved black beak", + "belly: light maroon-underbelly", + "breast: deep maroon chest plumage", + "crown: subtly raised maroon crest", + "forehead: smooth maroon forehead", + "eyes: round, dark eyes with black pupils", + "legs: slender, pinkish-red legs", + "wings: wide maroon wings with black tips", + "nape: maroon, feathered nape", + "tail: long, maroon tail feathers with black accents", + "throat: lighter-shaded maroon throat area" + ], + "maroon woodpecker": [ + "back: dark maroon feathers", + "beak: strong, chisel-like, light gray", + "belly: pale cream with black markings", + "breast: rich maroon feathers", + "crown: glossy maroon plumage", + "forehead: smooth maroon feathers", + "eyes: bright, circular, black", + "legs: short, sturdy, gray", + "wings: maroon with black barring", + "nape: maroon with a black collar", + "tail: long, stiff, maroon, and black barred", + "throat: white or pale cream with fine black markings" + ], + "maroon backed accentor": [ + "back: reddish-brown plumage", + "beak: small, sharp, and black", + "belly: cream-colored with brown streaks", + "breast: warm brown with faint streaks", + "crown: reddish-brown feathers", + "forehead: smooth, buffy-brown feathers", + "eyes: small, dark, and round", + "legs: slender, light-grey legs", + "wings: reddish-brown with dark barring", + "nape: reddish-brown feathers", + "tail: reddish-brown with dark stripes", + "throat: cream-colored with fine brown streaks" + ], + "maroon backed whistler": [ + "back: vibrant maroon plumage", + "beak: sharp, slender, and dark", + "belly: white with faint maroon streaks", + "breast: striking white color", + "crown: deep maroon hue", + "forehead: smooth maroon plumage", + "eyes: bright, beady, and dark", + "legs: thin, sturdy, and dark colored", + "wings: maroon feathers with darker flight feathers", + "nape: rich maroon shading", + "tail: long and fan-like with maroon and dark feathers", + "throat: white, contrasting against maroon" + ], + "maroon bellied parakeet": [ + "back: vibrant green feathers", + "beak: small, beige hooked beak", + "belly: bright maroon coloration", + "breast: light green feathers", + "crown: mixture of emerald green and blue feathers", + "forehead: brilliant bluish-green feathers", + "eyes: small, black bead-like", + "legs: grey scaly legs with sharp claws", + "wings: green primary feathers, blue-tipped secondary feathers", + "nape: green feathers meeting maroon belly", + "tail: long, tapered green and blue feathers", + "throat: pale green, fading into maroon belly" + ], + "maroon belted chat tyrant": [ + "back: rich rusty-brown color", + "beak: thin, black, and pointed", + "belly: pale off-white hue", + "breast: creamy white with thin maroon band", + "crown: rufous-brown with streaks", + "forehead: faint reddish-orange", + "eyes: dark beady with white eyering", + "legs: slender grayish-black", + "wings: warm brown with faint rufous edges", + "nape: chestnut-brown with streaks", + "tail: rufous-brown, long and slightly forked", + "throat: bright clean white" + ], + "maroon breasted philentoma": [ + "back: dark brown with hints of maroon", + "beak: short, pointed, and black", + "belly: light maroon fading to white", + "breast: rich maroon color", + "crown: dark brown with a slight crest", + "forehead: dark brown, merging into the crown", + "eyes: small, round, with black pupils and white rings", + "legs: thin, grayish-brown", + "wings: dark brown with maroon edges and subtle patterning", + "nape: dark brown, transitioning into the back and crown", + "tail: long, dark brown with maroon undertones", + "throat: white, contrasting with the maroon breast" + ], + "maroon chested ground dove": [ + "back: subtle brownish hues with a glossy finish", + "beak: short, curved, dark gray color", + "belly: soft beige with a hint of reddish-brown", + "breast: vibrant maroon with feathered layers", + "crown: smooth light brown blending into the neck", + "forehead: light brown with a sleek appearance", + "eyes: small, dark, encircled by thin eye-ring", + "legs: slender, grayish, ending in delicate bird's feet", + "wings: earthy-toned, with subtle stripes and markings", + "nape: warm light brown with a gentle curve", + "tail: rounded, brownish feathers with a slight gradient", + "throat: beige undertone with maroon overtones" + ], + "maroon chinned fruit dove": [ + "back: rich green, covered in feathers", + "beak: small, hooked, pale orange", + "belly: pale purple-gray, soft feathers", + "breast: dark maroon, thick feathers", + "crown: greenish-blue, iridescent feathers", + "forehead: white feathers transitioning to green", + "eyes: black, round, with pale gray eye-ring", + "legs: thin, orange-red, strong", + "wings: greenish-blue, tapered, flight feathers", + "nape: bright green, dense feathers", + "tail: long, green, narrow feathers with a hint of blue", + "throat: vibrant maroon, soft feathers" + ], + "maroon faced parakeet": [ + "back: vibrant green feathers", + "beak: short, curved, greyish-white", + "belly: light green, soft feathers", + "breast: brilliant blue plumage", + "crown: maroon-brown coloration", + "forehead: maroon hue blending into green", + "eyes: small, dark, expressive", + "legs: slim, greyish, with sharp claws", + "wings: green and blue flight feathers", + "nape: transition from maroon to green", + "tail: long, green-blue, tapering feathers", + "throat: pale green, delicate feathers" + ], + "maroon fronted parrot": [ + "back: vibrant green feathers", + "beak: strong, curved, beige color", + "belly: light green with tinges of blue", + "breast: rich maroon-red plumage", + "crown: deep green with slight blue tint", + "forehead: bright maroon-red patch", + "eyes: dark brown, surrounded by white eye-ring", + "legs: sturdy, grayish-brown, zygodactyl feet", + "wings: vivid green, folded against body", + "nape: iridescent blue-green", + "tail: long, greenish-blue feathers, squared-off tips", + "throat: pale green feathers, slightly lighter than belly" + ], + "maroon naped sunbird": [ + "back: iridescent blue-green feathers", + "beak: long, slender, and slightly curved", + "belly: whitish with maroon streaks", + "breast: bright yellow and maroon patch", + "crown: glossy blue-violet feathers", + "forehead: metallic green sheen", + "eyes: round, small, and dark", + "legs: thin, brownish-gray", + "wings: deep blue and purple with metallic shine", + "nape: maroon color, transitioning to green", + "tail: long, dark blue with a forked shape", + "throat: vibrant shiny green" + ], + "maroon tailed parakeet": [ + "back: vibrant green feathers", + "beak: robust, light-colored", + "belly: light green with blue tint", + "breast: green with tinges of blue", + "crown: bright green with red touch", + "forehead: deep blue markings", + "eyes: black with white rings", + "legs: gray scales with zygodactyl feet", + "wings: vivid green upper, blue-green lower", + "nape: green with blue shadows", + "tail: maroon-red shade, elongated features", + "throat: green and pale blue blend" + ], + "marquesan swiftlet": [ + "back: dark brown with small white spots", + "beak: short and black, slightly curved", + "belly: dull white with brown speckles", + "breast: creamy white with light brown flecks", + "crown: dark brown with a narrow white band", + "forehead: slightly lighter brown than the crown", + "eyes: small, dark, and well-camouflaged", + "legs: short and black with strong claws", + "wings: long and narrow, dark brown with faint barring", + "nape: medium brown with white spots", + "tail: short and square, dark brown with pale tips", + "throat: pale white with sparse brown spotting" + ], + "marquesas ground dove": [ + "back: olive-brown feathers with subtle patterns", + "beak: short and sharp, pale grayish-pink", + "belly: pale gray with light streaks", + "breast: soft gray blending into belly", + "crown: distinct grayish-blue shade", + "forehead: smooth, grayish-blue transition into crown", + "eyes: dark brown with slight white ring around", + "legs: long and slender, pinkish-gray", + "wings: olive-brown with blackish spots and bars", + "nape: grayish-blue, continuing from crown and forehead", + "tail: olive-brown, medium length with subtle stripes", + "throat: pale gray, softly blending into breast" + ], + "marquesas imperial pigeon": [ + "back: grayish-white feathers with a smooth texture", + "beak: short and hooked, with a pale grayish-yellow color", + "belly: light gray plumage with a soft appearance", + "breast: pale gray-blue feathers, slightly puffed out", + "crown: slightly raised feathers with a darker gray hue", + "forehead: lighter gray plumage blending into the crown", + "eyes: dark brown and round, set in a white patch of feathers", + "legs: short and sturdy with yellow-to-orange scaly skin", + "wings: broad and rounded, with gray-blue and white feathers", + "nape: slightly darker gray plumage than the back and back of the head", + "tail: medium-length with a squared-off tip, gray-blue and white feathers", + "throat: pale gray-white feathers, blending into the breast area" + ], + "marquesas kingfisher": [ + "back: vibrant-blue feathers covering the main body", + "beak: black, strong, and slightly curved for catching prey", + "belly: soft, white feathers providing a gentle contrast to the blue back", + "breast: slightly bluish-white, complementing the blue back", + "crown: intense blue feathers, giving the head a regal appearance", + "forehead: a slight transition from blue to white feathers, merging with the eyes", + "eyes: black with a soulful gaze, encircled by soft white feathers", + "legs: sturdy, short, and black, perfect for perching in trees", + "wings: bold blue feathers with a slight gradient to darker shades on the edges", + "nape: continuation of the stunning blue from the crown, flowing down the back", + "tail: blue feathers with a narrow, slightly forked formation for agility in flight", + "throat: white feathers subtly transitioning from the bluish-white breast" + ], + "marquesas monarch": [ + "back: sleek black feathers", + "beak: long, slender, and curved", + "belly: white with light gray speckles", + "breast: white and fluffy", + "crown: black with a slight crest", + "forehead: smooth black feathers", + "eyes: bright, inquisitive gaze", + "legs: long, thin, and black", + "wings: elongated and black with white accents", + "nape: black feathers with a slight tuft", + "tail: long, black, and slightly forked", + "throat: white and smooth" + ], + "marsh antwren": [ + "back: dark gray feathers with white streaks", + "beak: thin, long, and black", + "belly: light gray with soft white spots", + "breast: grayish-white streaks on dark gray feathers", + "crown: dark gray plumage with lighter highlights", + "forehead: light gray feathers with fine white streaks", + "eyes: black with thin white eye-ring", + "legs: thin, long, and black", + "wings: dark gray with faint white bars and edges", + "nape: dark gray feathers with thin white streaks", + "tail: long, dark gray with thin white outer edges", + "throat: pale gray with fine white striations" + ], + "marsh babbler": [ + "back: olive-brown feathers with dark streaks", + "beak: long, slender and curved", + "belly: off-white with light brown streaks", + "breast: pale buff with dark streaks", + "crown: brown with dark streaks", + "forehead: paler brown with streaks", + "eyes: dark with white eye-ring", + "legs: long, slender and light brown", + "wings: olive-brown with darker markings", + "nape: brown with dark streaks", + "tail: long, olive-brown with dark streaks", + "throat: light buff with dark streaks" + ], + "marsh grassbird": [ + "back: olive-brown with streaks", + "beak: long, slender, and slightly curved", + "belly: buff-white with light streaks", + "breast: light buff with brown streaks", + "crown: dark brown with pale central stripe", + "forehead: light brown with fine streaks", + "eyes: dark with pale eyebrow stripe", + "legs: light pinkish-grey", + "wings: brownish with pale edges on feathers", + "nape: olive-brown with faint streaks", + "tail: long, brownish, and graduated with pale tips", + "throat: pale buff with light streaks" + ], + "marsh owl": [ + "back: light brown with dark speckles", + "beak: sharp, grayish-black", + "belly: white with sparse brown spots", + "breast: buff-colored with darker streaks", + "crown: mottled brown and buff", + "forehead: pale cream with light brown marks", + "eyes: large, dark, and expressive", + "legs: long and feathered, pale yellow with black talons", + "wings: brown with pale bands and dark tips", + "nape: mottled brown with cream-colored highlights", + "tail: long, brown with pale bands and dark bars", + "throat: pale buff with light brown markings" + ], + "marsh sandpiper": [ + "back: light grayish-brown with pale feather edges", + "beak: long, slender, and straight with dark grey color", + "belly: white with minimal markings", + "breast: white with faint grayish-brown streaks", + "crown: grayish-brown and streaked", + "forehead: white with grayish-brown streaks", + "eyes: dark and beady with a white eye-ring", + "legs: long and bright yellow-green", + "wings: grayish-brown with white edges on feathers", + "nape: grayish-brown and streaked", + "tail: white and slightly forked with grayish-brown outer feathers", + "throat: white and unmarked" + ], + "marsh seedeater": [ + "back: olive-green with dark streaks", + "beak: short and conical, pale gray", + "belly: grayish-white with light streaks", + "breast: dull gray with faint streaks", + "crown: olive-brown with darker streaks", + "forehead: light olive-brown", + "eyes: dark brown surrounded by pale eyering", + "legs: slender and gray", + "wings: olive-brown with pale wingbars and dark flight feathers", + "nape: olive-brown with dark streaks", + "tail: long and dark with olive-brown outer feathers", + "throat: grayish-white with faint streaks" + ], + "marsh tapaculo": [ + "back: olive-brown with dark streaks", + "beak: short and sturdy, blackish-gray", + "belly: buffy-white with brownish spots", + "breast: grayish-brown with pale streaks", + "crown: dark brown with blurry streaks", + "forehead: rufous-brown with blackish bands", + "eyes: black, beady, and bright", + "legs: strong, pinkish-gray with long toes", + "wings: brownish with rufous edging", + "nape: chestnut-brown with grayish streaks", + "tail: rufous with dark bars, fairly long", + "throat: pale, cinnamon-colored with irregular markings" + ], + "marsh tchagra": [ + "back: brownish-red plumage", + "beak: sturdy, slightly curved, black", + "belly: creamy white with fine brown streaks", + "breast: rufous-brown with some dark streaking", + "crown: dark brown with a noticeable crest", + "forehead: dark brown, slightly paler than the crown", + "eyes: large, dark brown, and expressive", + "legs: long, slender, greyish-blue", + "wings: rich brown with black feather edges", + "nape: dark brown, in line with the crown coloring", + "tail: long, brown, and broad with distinct black barring", + "throat: creamy white, transitioning into the breast color" + ], + "marsh tit": [ + "back: brownish-grey feathers", + "beak: short and black", + "belly: whitish-grey underparts", + "breast: light grey with a subtle buff tint", + "crown: dark blackish-brown", + "forehead: matte black patch", + "eyes: large, dark, and expressive", + "legs: thin and greyish-blue", + "wings: brownish-grey with white edges", + "nape: blackish-grey with dark stripes", + "tail: medium-length, brownish-grey", + "throat: black extending to the breast" + ], + "marsh warbler": [ + "back: olive-green with subtle streaks", + "beak: thin and pointed, dark gray", + "belly: off-white with a hint of yellow", + "breast: pale buff with faint streaks", + "crown: olive-green with distinct streaks", + "forehead: pale, blending into the crown", + "eyes: small, dark with a faint pale eyering", + "legs: pinkish-gray and slender", + "wings: olive-brown with faint barring", + "nape: olive-green, blending with the back", + "tail: olive-brown, notched at the tip", + "throat: pale buff, lighter than the breast" + ], + "marsh widowbird": [ + "back: glossy black with elongated feathers", + "beak: long and slender, dark grey in color", + "belly: black with a hint of dark iridescent blue", + "breast: black with a slight sheen", + "crown: black feathers with a subtle crest", + "forehead: smooth black with a slight peak", + "eyes: dark in color, encircled by inconspicuous grey feathers", + "legs: long and slender, dark grey to black in color", + "wings: black with large white patches near the tips", + "nape: black transitioning from the crown", + "tail: long and dramatic, black with distinctive white outer feathers", + "throat: black with a slight shine" + ], + "martens warbler": [ + "back: olive-green with subtle streaks", + "beak: thin, sharp, and black", + "belly: pale yellow with faint streaks", + "breast: vibrant yellow with fine streaks", + "crown: gray with black markings", + "forehead: light gray with few flecks", + "eyes: dark, beady, and expressive", + "legs: slender and black", + "wings: olive and black with white markings", + "nape: gray and smooth", + "tail: long, dark, and slightly forked", + "throat: bright yellow with thin streaks" + ], + "martial eagle": [ + "back: dark brown plumage with light streaks", + "beak: large, powerful, hooked and light grey", + "belly: white and fluffy with dark brown spots", + "breast: white feathers with dark brown spots", + "crown: dark brown feathers on top of head", + "forehead: dark brown plumage merging with the crown", + "eyes: bright yellow with black pupils, intense gaze", + "legs: feathered, powerful, light grey talons", + "wings: majestic, broad, dark brown with white patches beneath", + "nape: dark brown plumage connecting the head and back", + "tail: long, barred with horizontal light and dark grey bands", + "throat: white, feathers merging with breast and belly" + ], + "martinique oriole": [ + "back: black feathers with a slight green sheen", + "beak: long, slightly curved, and silver-gray", + "belly: bright yellow with faint streaks", + "breast: vibrant yellow blending with black on the sides", + "crown: solid black with a greenish luster", + "forehead: black, seamlessly connecting with the crown", + "eyes: dark brown with thin black eye-ring", + "legs: sturdy, grayish-blue with sharp claws", + "wings: black with a hint of green, white bars on secondaries", + "nape: black feathers blending into the back", + "tail: black and elongated with white edges on outer feathers", + "throat: brilliant yellow, contrasting with the black head" + ], + "marvelous spatuletail": [ + "back: shimmering green iridescence", + "beak: elongated, slender, and black", + "belly: snowy white plumage", + "breast: vibrant turquoise hue", + "crown: glossy green feathers", + "forehead: shining emerald metallic hues", + "eyes: piercing dark orbs", + "legs: short, strong, and black", + "wings: swift, sapphire-blue flight feathers", + "nape: gleaming green feathers", + "tail: resplendent lavender-blue spatule-shaped feathers", + "throat: smooth iridescent green" + ], + "masafuera rayadito": [ + "back: streaked olive-brown feathers", + "beak: short, thin, dark beak", + "belly: off-white with faint streaks", + "breast: buff-colored with darker streaks", + "crown: olive-brown with darker streaking", + "forehead: buff to brown with fine dark streaks", + "eyes: dark, relatively large", + "legs: pale pinkish-brown", + "wings: olive-brown with dark streaks", + "nape: olive-brown with subtle stripes", + "tail: long, dark brown with white outer feathers", + "throat: off-white to buff with faint streaks" + ], + "masatierra petrel": [ + "back: dark gray feathers with streamlined shape", + "beak: slender, dark hooked tip for catching prey", + "belly: off-white underside with soft plumage", + "breast: pale grayish-white feathers, rounded shape", + "crown: dark gray, slightly raised for a sleek appearance", + "forehead: smooth, dark gray blending into the crown", + "eyes: dark, round, wide-set in a gentle gaze", + "legs: slender, grayish-black with strong webbed feet", + "wings: long, narrow, dark gray with curved edges for gliding", + "nape: curved dark gray area connecting head and back", + "tail: forked, dark gray feathers for added maneuverability", + "throat: pale grayish-white, smoothly merging with breast" + ], + "mascarene martin": [ + "back: dark blue sheen with bronze-green iridescence", + "beak: short, black, sharp", + "belly: off-white, slightly greyish", + "breast: pale grey, diffused streaks", + "crown: deep blue-black, glossy", + "forehead: black with subtle blue sheen", + "eyes: small, round, dark brown", + "legs: blackish, slender, fairly short", + "wings: long, pointed, dark blue-black", + "nape: glossy blue-black, smooth transition from crown", + "tail: dark blue-black, slightly forked, elongated", + "throat: pale grey, blending into breast color" + ], + "mascarene paradise flycatcher": [ + "back: vibrant turquoise feathers", + "beak: sharp, elongated black bill", + "belly: creamy white underbelly", + "breast: light chestnut-orange plumage", + "crown: dark blue-black feathers", + "forehead: smooth, blue-black plumage", + "eyes: round, alert eyes with black pupils", + "legs: slender, grey legs with sharp claws", + "wings: iridescent turquoise feathers with extended black flight feathers", + "nape: deep black collar contrasting with colorful feathers", + "tail: striking black streamers extending beyond body length", + "throat: delicate white patch of feathers" + ], + "mascarene petrel": [ + "back: dark gray with white flecks", + "beak: long, slender hooked tip", + "belly: white with gray streaks", + "breast: white and gray mix", + "crown: dark gray with a slight crest", + "forehead: grayish-white fading to darker gray", + "eyes: deep black with white ring", + "legs: short, pinkish with webbed feet", + "wings: long, dark gray with white streaks", + "nape: grayish-white, slightly darker than forehead", + "tail: long, dark gray with central white band", + "throat: white with grayish streaks" + ], + "mascarene swiftlet": [ + "back: dark brownish-grey with small white markings", + "beak: short and slightly curved, black in color", + "belly: light grey with soft white feather patches", + "breast: greyish-brown, with subtle white markings", + "crown: dark brownish-grey with a slight sheen", + "forehead: muted dark grey merging with the crown", + "eyes: small and black, encircled by a narrow, white ring", + "legs: short and slender, with dark scales and black claws", + "wings: long and narrow, dark brownish-grey with white streaks", + "nape: greyish-brown blending with the crown and back", + "tail: square-shaped with dark grey feathers, and white tips", + "throat: soft light grey, with faint white feathering" + ], + "masked antpitta": [ + "back: olive-brown feathers", + "beak: short, stout, and pale", + "belly: grayish-white with light streaks", + "breast: light gray with brown streaks", + "crown: dark gray with a slight crest", + "forehead: lighter gray than crown", + "eyes: small, dark, and beady", + "legs: thin, long, and pinkish-gray", + "wings: olive-brown with some lighter streaks", + "nape: similar to the back, olive-brown", + "tail: short and square, olive-brown", + "throat: buff-white with a black \"mask" + ], + "masked apalis": [ + "back: olive green plumage", + "beak: slender, straight, black", + "belly: pale yellow feathers", + "breast: bright yellow plumage", + "crown: black and yellow stripes", + "forehead: distinct black mask", + "eyes: dark with thin yellow eyering", + "legs: sturdy, grey", + "wings: olive green with bold yellow bars", + "nape: olive green with yellow markings", + "tail: elongated, graduated, olive feathers", + "throat: bright yellow feathers" + ], + "masked bowerbird": [ + "back: olive-green with tinges of brown", + "beak: long, black, and slender", + "belly: pale yellow with dark streaks", + "breast: golden-yellow with black markings", + "crown: glossy black with feathers raised in a crest", + "forehead: black with short, tight feathers", + "eyes: bright blue with a black mask", + "legs: dark gray and sturdy", + "wings: olive-green with black edging on feathers", + "nape: olive-green, blending into the back", + "tail: long, dark brown with white tips", + "throat: pale yellow with dark streaks" + ], + "masked bunting": [ + "back: vibrant greenish-blue feathers", + "beak: short, conical, and dark gray", + "belly: whitish with streaks of brown", + "breast: pale blue with darker streaking", + "crown: deep blue with black mask", + "forehead: bright blue with black outline", + "eyes: small, black with pale gray eye-ring", + "legs: sturdy, grayish-blue", + "wings: blue with black and white highlights", + "nape: brilliant blue blending down to green", + "tail: dark blue with white outer feathers", + "throat: sky blue with black border" + ], + "masked cardinal": [ + "back: vibrant red upper feathers", + "beak: thick, light-colored cone-shaped", + "belly: soft grayish-white under-feathers", + "breast: deep red plumage", + "crown: bold black mask-like stripe", + "forehead: red feathers meeting black mask", + "eyes: round, black, and shiny", + "legs: slender, gray and scaly", + "wings: mix of red and gray feathers", + "nape: intense red neckline feathers", + "tail: red and gray elongated feathers", + "throat: red feathers transitioning into gray" + ], + "masked crimson tanager": [ + "back: vibrant crimson hue", + "beak: sharp, black, and pointed", + "belly: bright red-orange tone", + "breast: rich crimson color", + "crown: brilliant red plumage", + "forehead: fiery red feathers", + "eyes: small, black, and beady", + "legs: slender, black, and sturdy", + "wings: crimson with black edging", + "nape: intense red plumage", + "tail: elongated, red with black tips", + "throat: blazing red feathers" + ], + "masked duck": [ + "back: dark brown with subtle feather patterns", + "beak: short, cone-shaped, and black", + "belly: pale grey with faint markings", + "breast: cinnamon brown with thin black bars", + "crown: dark brown fading into black", + "forehead: narrow black stripe from the beak to the crown", + "eyes: small, dark, and set on the sides of the head", + "legs: strong yet short, with webbed feet for swimming", + "wings: dark brown feathers with iridescent edges", + "nape: grey and blending into the brown of the back", + "tail: short and pointed, with dark brown feathers", + "throat: light buff color with black speckling" + ], + "masked finfoot": [ + "back: olive-brown feathers with some white streaks", + "beak: long, grayish-blue, slightly curved", + "belly: white with faint black barring", + "breast: white with faint black barring", + "crown: dark slate-gray, crest-like", + "forehead: dark slate-gray, smooth", + "eyes: large, brown, expressive", + "legs: long, greenish-yellow, partially webbed", + "wings: olive-brown with white these streaks, rounded", + "nape: dark slate-gray, blending into back", + "tail: olive-brown, medium length, slightly fan-shaped", + "throat: white with some faint black barring" + ], + "masked flowerpiercer": [ + "back: dark blue with slight iridescence", + "beak: black, slender, and hooked", + "belly: light gray with a hint of blue", + "breast: pale gray-blue color", + "crown: deep matte black", + "forehead: black transitioning to blue toward the eyes", + "eyes: small with dark brown irises", + "legs: blue-gray with sharp, strong claws", + "wings: dark blue with apparent feathers", + "nape: midnight blue with a glossy shine", + "tail: long, slim, and blue-black", + "throat: black, fading to gray-blue on the sides" + ], + "masked fruiteater": [ + "back: vibrant green plumage", + "beak: short, hooked, orange-yellow", + "belly: pale greyish-white feathers", + "breast: lighter green gradient", + "crown: dark green top, distinctive crest", + "forehead: rich green, slightly paler than crown", + "eyes: dark, beady, surrounded by green feathers", + "legs: strong, orange-yellow, scaly", + "wings: bright green, medium length, rounded tips", + "nape: greenish, hint of yellow", + "tail: long, iridescent green, slight forking", + "throat: green plumage, lighter than body" + ], + "masked gnatcatcher": [ + "back: light grey-blue plumage", + "beak: slender and black", + "belly: delicate white feathers", + "breast: pale grey-blue shading", + "crown: black with a white stripe", + "forehead: slight white streaks", + "eyes: large and black, surrounded by light grey-blue", + "legs: thin and dark grey", + "wings: light grey-blue with white-tipped feathers", + "nape: soft grey-blue hue", + "tail: long and dark grey with white edges", + "throat: pale grey-blue with faint white stripes" + ], + "masked lark": [ + "back: brownish-grey feathers", + "beak: small, pointed, black", + "belly: whitish, slightly spotted", + "breast: pale brown with faint streaks", + "crown: sandy-brown with streaks", + "forehead: pale brownish-grey", + "eyes: small, dark with pale eyering", + "legs: thin, yellowish-brown", + "wings: brownish-grey with black tips", + "nape: light brown with darker streaks", + "tail: brownish-grey with black bars", + "throat: whitish, unmarked" + ], + "masked laughingthrush": [ + "back: olive-brown feathers", + "beak: short, stout, and black", + "belly: buff-white with black streaks", + "breast: white with black bars", + "crown: black with white spots", + "forehead: bold white and black stripes", + "eyes: dark brown with pale eyering", + "legs: long, slender, and gray", + "wings: olive-brown with black bars", + "nape: black with white flecks", + "tail: long, black, and white-tipped", + "throat: white with black streaks" + ], + "masked mountain tanager": [ + "back: vibrant blue and green feathers", + "beak: short, sturdy, and black", + "belly: bright yellow plumage", + "breast: orange-yellow feathers", + "crown: vivid blue feathers with black mask", + "forehead: striking black mask extending to the eyes", + "eyes: black with small white eye-ring", + "legs: gray and strong", + "wings: mix of blue, green, and black feathers", + "nape: bright blue feathers transitioning to green", + "tail: long and blue-green with black tips", + "throat: brilliant yellow-orange color" + ], + "masked saltator": [ + "back: olive-green feathers", + "beak: strong, conical-shaped, black", + "belly: white to pale yellow feathers", + "breast: grayish-white plumage", + "crown: black feathering", + "forehead: black with a thin white edge", + "eyes: dark brown with thin white eye-ring", + "legs: grayish-blue, strong and agile", + "wings: olive-green with white or yellowish bars", + "nape: olive-green merging with the crown", + "tail: olive-green with white outer feathers", + "throat: black mask extending from beak" + ], + "masked shining parrot": [ + "back: vibrant green feathers with a subtle shine", + "beak: short and hooked, bright orange-red", + "belly: rich lime green plumage transitioning into blue", + "breast: brilliant azure blue feathers", + "crown: emerald green with a slight mask-like pattern around the eyes", + "forehead: mixture of green and blue hues blending into the crown", + "eyes: intelligent, dark with an encircling, white eye-ring", + "legs: strong, grayish-green with sharp, curved claws", + "wings: radiant green with striking blue highlights at the tips", + "nape: softly shiny green feathers connecting to the back", + "tail: elongated, vibrant green with lighter, yellow-green edging near the tips", + "throat: bold blue feathers with a purple-ish hue" + ], + "masked shrike": [ + "back: shades of pale gray with black and white stripes", + "beak: black, hooked and sharp", + "belly: white with gray undertones", + "breast: white, blending into gray on sides", + "crown: black, extending down to nape", + "forehead: black with white stripe near eyes", + "eyes: dark with prominent white eye ring", + "legs: slender, gray-black", + "wings: black with white patches and narrow bars", + "nape: black, continuous from the crown", + "tail: long, black with white outer feathers", + "throat: white, contrasting with black mask" + ], + "masked tanager": [ + "back: vibrant green feathers", + "beak: short, sharp, black", + "belly: pale yellow with a tinge of green", + "breast: bright yellow blending into green", + "crown: green feathers with a black mask", + "forehead: black mask extending over eyes", + "eyes: small, black, and protruding", + "legs: slender, gray, and powerful", + "wings: green with darker flight feathers", + "nape: green transitioning to a yellow collar", + "tail: long, green, and fan-shaped", + "throat: bright yellow, contrasting with black mask" + ], + "masked tityra": [ + "back: sleek, grayish-black plumage", + "beak: small, pale yellow with a hook", + "belly: white with light gray streaks", + "breast: white, slightly puffed out", + "crown: black with a rounded crest", + "forehead: black, smooth feathers", + "eyes: small, dark with white eye-ring", + "legs: sturdy, gray-green in color", + "wings: grayish-black, broad feathers", + "nape: black, smoothly transition from the crown", + "tail: long, grayish-black with a slight taper", + "throat: white, slightly elongated feathers" + ], + "masked trogon": [ + "back: vibrant green upperparts", + "beak: short, black, and slightly curved", + "belly: bright red (male) or yellow (female", + "breast: separated from the belly by a white band (male) or grayish-brown (female", + "crown: glossy green, with a smooth transition into the forehead", + "forehead: bright emerald green, fading into the crown", + "eyes: dark brown, surrounded by a vivid yellow eyering", + "legs: thin and strong, light orange or pink", + "wings: medium-sized and green, with black and white bars on the primary feathers", + "nape: green, seamlessly connecting with the back", + "tail: long and iridescent green, with black and white tips", + "throat: black (male) or grayish-brown (female" + ], + "masked water tyrant": [ + "back: light greyish feathers", + "beak: short and pointed, black", + "belly: white with some grey", + "breast: white blending with grey", + "crown: slightly puffy, black", + "forehead: black mask-like marking", + "eyes: small, black, and sharp", + "legs: long, thin, and black", + "wings: greyish-white with black edges", + "nape: light grey feathers", + "tail: short and narrow, grey with black markings", + "throat: white extending to belly" + ], + "masked woodswallow": [ + "back: sleek bluish-gray feathers", + "beak: short, curved, black", + "belly: soft white plumage", + "breast: white, blending into gray", + "crown: bluish-gray with black mask", + "forehead: black mask extending tightly above eyes", + "eyes: bright, small, black pupils", + "legs: short, dark gray, thin", + "wings: bluish-gray, elongated, pointed tips", + "nape: bluish-gray, smoothly rounded", + "tail: long, black, white tips, slightly forked", + "throat: white, separating mask and breast" + ], + "masked yellowthroat": [ + "back: olive-green with subtle black streaks", + "beak: slender and dark", + "belly: pale whitish-yellow", + "breast: vibrant yellow with a hint of olive-green", + "crown: bright yellow with black mask border", + "forehead: part of the black mask between eyes", + "eyes: small, dark, and alert", + "legs: thin and light brown", + "wings: olive-green with black wing-bars", + "nape: olive-green fading to bright yellow", + "tail: relatively short, with olive-green and black feathers", + "throat: bright yellow, part of the breast coloration" + ], + "matinan flycatcher": [ + "back: olive-green with a slight sheen", + "beak: short, black and hooked", + "belly: whitish-gray with subtle streaks", + "breast: pale yellow to grayish-white", + "crown: vibrant blue with a black stripe", + "forehead: bright blue with black border", + "eyes: dark brown surrounded by a thin white ring", + "legs: dark gray and slender", + "wings: olive-brown with black streaks", + "nape: blue with black markings", + "tail: olive-brown with a subtle blue tint", + "throat: light gray with darker gray streaks" + ], + "mato grosso antbird": [ + "back: dark brown feathers covering the upper body", + "beak: small and pointy, black in color", + "belly: pale brown with fine black streaks", + "breast: light brown with dark streaks, blending into the belly", + "crown: dark brown feathers, with a black cap in some species", + "forehead: slightly lighter brown than the crown, merging into the face", + "eyes: dark black, medium-sized, surrounded by white feathers", + "legs: long and slender, pale grey with sharp claws for perching", + "wings: dark brown, medium-length, and rounded", + "nape: dark brown feathers transitioning from the crown to the back", + "tail: long and straight, dark brown with pale tips", + "throat: light brown, sometimes with a hint of reddish hue" + ], + "matsudaira storm petrel": [ + "back: dark, blue-grey feathers", + "beak: sharp, black, and thin", + "belly: white patch with black streaks", + "breast: grayish-black and white mixed feathers", + "crown: dark, blue-grey with white streaks", + "forehead: blackish-grey with a white dividing line", + "eyes: black with white eye-ring", + "legs: bluish-grayish, webbed feet", + "wings: dark, elongated with white bar", + "nape: blue-grey with white streaking", + "tail: white-tipped, dark forked feathers", + "throat: white feathers meeting on the breast" + ], + "maui alauahio": [ + "back: olive green with subtle streaks", + "beak: straight, slightly curved, and pointed", + "belly: yellowish-white with some streaking", + "breast: pale yellow with fine streaks", + "crown: olive green with slight streaking", + "forehead: yellowish-green fading to olive", + "eyes: small, round, and black", + "legs: thin and grayish-blue", + "wings: olive green with white bars", + "nape: olive green with light streaks", + "tail: olive green with white tips", + "throat: yellowish-white with fine streaks" + ], + "maui parrotbill": [ + "back: olive-green feathers", + "beak: strong, hooked upper mandible", + "belly: yellowish-white undertones", + "breast: golden-yellow plumage", + "crown: olive-green feathers with lighter streaks", + "forehead: bright yellow feathers", + "eyes: dark beady eyes with white eye rings", + "legs: pale grey and slender", + "wings: olive-green with lighter feather edges", + "nape: olive-green with faint streaks", + "tail: short and olive-green", + "throat: bright yellow feathers" + ], + "mauritius bulbul": [ + "back: grayish-brown hue with light feather streaks", + "beak: short, slender and curved", + "belly: pale white with a tinge of yellow", + "breast: off-white in color with subtle gray patches", + "crown: blackish with slightly raised feathers", + "forehead: blackish in color", + "eyes: dark and round with a white eye-ring", + "legs: long, thin and grayish-brown", + "wings: grayish-brown with a white-tipped primary feather", + "nape: grayish hue with feather streaks", + "tail: long, layered feathers with a white-tipped outer edge", + "throat: pale white-colored with a hint of yellow" + ], + "mauritius cuckooshrike": [ + "back: slate gray and smooth", + "beak: short, curved, black", + "belly: light gray and slightly fluffy", + "breast: pale gray with subtle streaks", + "crown: dark gray with slight crest", + "forehead: smooth, slate gray", + "eyes: small, dark, and piercing", + "legs: long, slender, gray", + "wings: slate gray with white markings", + "nape: smooth, dark gray", + "tail: long, black with white outer feathers", + "throat: pale gray with streaks" + ], + "mauritius fody": [ + "back: olive-green feathers", + "beak: hooked, grayish-black tip", + "belly: light gray to white", + "breast: bright red on males, pale gray on females", + "crown: bright red on males, olive-green on females", + "forehead: bright red on males, olive-green on females", + "eyes: black with white eye-ring", + "legs: slender, black", + "wings: olive-green with black tips", + "nape: olive-green feathers on males, pale gray on females", + "tail: long, black with olive-green edges", + "throat: bright red on males, pale gray on females" + ], + "mauritius gray white eye": [ + "back: grayish-brown feathers with subtle white streaks", + "beak: short and black, slightly decurved", + "belly: pale gray with white under-tail coverts", + "breast: soft gray feathers transitioning to pale gray", + "crown: darker gray with slight feather crest", + "forehead: lighter gray blending into crown", + "eyes: prominent white eye-ring around dark eyes", + "legs: slender and dark gray with sharp claws", + "wings: grayish-brown feathers with faint white edging", + "nape: gray feathers continuing from crown and back", + "tail: short and rounded, grayish-brown with white tips", + "throat: pale gray, lighter than breast" + ], + "mauritius kestrel": [ + "back: rusty brown feathers with black streaks", + "beak: sharp, hooked, black beak", + "belly: pale cream with brown spots", + "breast: light orange-brown with dark streaks", + "crown: dark brown with small, black markings", + "forehead: light brown with dark streaks", + "eyes: large, dark brown with yellow-orange eye ring", + "legs: long, slender, yellow-orange legs with powerful talons", + "wings: brown with black barring, pointed shape", + "nape: rusty brown with small, black streaks", + "tail: brown, barred with black bands, rounded shape", + "throat: white with brown speckles" + ], + "mauritius white eye": [ + "back: olive-green feathers covering upper body", + "beak: slender, curved, black beak", + "belly: pale greyish-white underside", + "breast: light grey feathers tapering to white", + "crown: olive-green feathers on top of the head", + "forehead: white markings above the eyes", + "eyes: distinctive white eye-ring surrounding the eye", + "legs: slim grey legs with black claws", + "wings: olive-green feathers with lighter highlights", + "nape: olive-green feathers on the back of the neck", + "tail: short, slightly forked olive-green tail", + "throat: white feathers extending from beak to breast" + ], + "maxwell black weaver": [ + "back: black iridescent feathers", + "beak: short and conical, dark gray", + "belly: deep black feathers", + "breast: black and glossy plumage", + "crown: jet black with a slight sheen", + "forehead: smooth, shiny black feathers", + "eyes: small and dark, surrounded by black feathers", + "legs: slim and dark gray", + "wings: iridescent black, medium-sized", + "nape: black feathers, slightly lighter than the crown", + "tail: elongated, sleek black feathers", + "throat: glistening black plumage" + ], + "mayan antthrush": [ + "back: dark brown plumage with slight rufous tint", + "beak: delicate, slightly curved black bill", + "belly: cinnamon-colored feathering", + "breast: pale rusty orange plumage", + "crown: brownish-grey feathering with little crest", + "forehead: smooth, brownish-grey feathers", + "eyes: large, dark eyes with white eye-ring", + "legs: long, slender pinkish-grey legs", + "wings: dark brownish-grey with fine barring", + "nape: rich rufous coloration with narrow grey lines", + "tail: long, horizontal low profile; brownish-grey with faint bars", + "throat: pale rusty orange with darker streaks" + ], + "mayotte drongo": [ + "back: dark, glossy feathers with a slight bluish sheen", + "beak: sturdy, black, and slightly hooked", + "belly: pale grayish-white with a hint of blue", + "breast: light gray with a bluish tinge", + "crown: slightly raised but smooth, dark feathers", + "forehead: a continuation of the dark crown feathers, blending into the beak", + "eyes: dark and piercing, surrounded by black feathers", + "legs: thin, black, and strong, with sharp claws", + "wings: long and pointed with a reflective, iridescent blue-black color", + "nape: dark, smooth feathers connecting the head and back", + "tail: long and forked, with a distinctive black-and-blue iridescence", + "throat: pale gray, blending into the light breast feathers" + ], + "mayotte scops owl": [ + "back: light brown with dark brown and white markings", + "beak: pale yellowish with a sharp hooked tip", + "belly: yellowish-brown spotted with dark brown", + "breast: buff-colored with dark brown streaks", + "crown: orange-brown with dark brown and white speckles", + "forehead: light orange-brown with fine dark brown markings", + "eyes: large, bright yellow, and forward-facing", + "legs: feathered and light brown, with sharp, black talons", + "wings: light brown with darker brown markings and white spots", + "nape: orange-brown with dark brown and white speckles", + "tail: brown with white and dark brown barring", + "throat: creamy white with dark brown streaks" + ], + "mayotte sunbird": [ + "back: olive-green with a slight sheen", + "beak: slender, long, curved and black", + "belly: grayish-white with yellowish hue", + "breast: vibrant yellow with a hint of orange", + "crown: metallic green, shimmering", + "forehead: glistening green-blue iridescence", + "eyes: small, round, and dark brown", + "legs: thin, black, and delicate", + "wings: olive-green with hints of metallic green", + "nape: smooth metallic green transitioning to olive-green", + "tail: dark and elongated with two central feathers", + "throat: iridescent green-blue, shimmering in sunlight" + ], + "mayotte white eye": [ + "back: olive-green colored feathers", + "beak: short, pointed, and black", + "belly: pale grey with white undertones", + "breast: light greyish-green hue", + "crown: olive-green feathers with a hint of yellow", + "forehead: white stripe separating crown and beak", + "eyes: encircled by a white eye-ring", + "legs: slender yet sturdy, greyish-brown", + "wings: olive green with a faded yellowish tint", + "nape: olive-green feathers fading into grey", + "tail: greenish-grey with slightly forked end", + "throat: faint grey feathers with white undertones" + ], + "mayr swiftlet": [ + "back: sleek, dark-colored feathers", + "beak: small, dark, and pointed", + "belly: grayish-white to pale cream feathers", + "breast: light, grayish-brown feathers", + "crown: dark brown, smooth cap-like feathers", + "forehead: slightly lighter brown, small feathers", + "eyes: tiny, dark, and round", + "legs: dark, short, with tiny claws", + "wings: long, narrow, and dark-feathered", + "nape: pale brown feathers transitioning from the crown", + "tail: short, squared-off, dark-feathered", + "throat: grayish-white, slightly darker than the belly" + ], + "mbulu white eye": [ + "back: olive green feathers", + "beak: short, slightly curved black beak", + "belly: pale yellow underbelly", + "breast: light greenish-yellow chest", + "crown: olive green crest", + "forehead: distinctive white eye-ring", + "eyes: dark round eyes", + "legs: slender gray legs", + "wings: olive green with pale-yellow edges", + "nape: green with a tinge of yellow", + "tail: olive green central feathers, outer ones edged in white", + "throat: greenish-yellow feathers" + ], + "mcconnell flycatcher": [ + "back: olive-green with slight streaks", + "beak: short, strong, and triangular", + "belly: pale yellow with some light streaks", + "breast: creamy-yellow with thin, darker streaks", + "crown: grayish-blue with a darker center stripe", + "forehead: whitish-gray blending into crown", + "eyes: dark brown with a pale eye-ring", + "legs: long, slender, and dark gray", + "wings: dark brownish-gray with bold, white wingbars", + "nape: olive-green with a bluish-gray tint", + "tail: dark gray with outer feathers edged in white", + "throat: pale yellow with faint streaks" + ], + "mcconnell spinetail": [ + "back: olive-brown with subtle streaks", + "beak: short, curved, and black", + "belly: light greyish-white", + "breast: greyish-white with faint barring", + "crown: rufous with a black crest", + "forehead: narrow black band above the beak", + "eyes: dark, round, and small", + "legs: long, slender, and pinkish-grey", + "wings: olive-brown with black barring", + "nape: olive-brown with rufous tinge", + "tail: long, slender, and dark brown with a white tip", + "throat: faintly barred greyish-white" + ], + "mcgregor cuckooshrike": [ + "back: slate gray feathers with a slightly darker shade", + "beak: short and strong, blackish in color", + "belly: pale grayish-white with a clean appearance", + "breast: light gray, blending with the belly", + "crown: dark gray, slightly darker than the back", + "forehead: smooth, dark gray feathers", + "eyes: piercing dark eyes with a light eye-ring", + "legs: long, dark gray, and slender", + "wings: slate gray with a small band of white on the primaries", + "nape: slightly lighter gray than the back and crown, creating a subtle contrast", + "tail: long and narrow, dark gray with white outer edges", + "throat: light gray, transitioning smoothly to the breast" + ], + "meadow bunting": [ + "back: streaked brown and black", + "beak: short, conical, and yellowish", + "belly: white with brown streaks", + "breast: rich chestnut-red with black markings", + "crown: chestnut-red with black edges", + "forehead: reddish-brown with fine black streaks", + "eyes: dark, surrounded by a white eye ring", + "legs: sturdy, pale pinkish-grey", + "wings: dark brown with white and reddish-brown sections", + "nape: reddish-brown with black streaks", + "tail: brown with white outer feathers", + "throat: white with thin black streaks" + ], + "meadow pipit": [ + "back: olive-brown with fine streaks", + "beak: slender, dark brown", + "belly: creamy-white, with subtle streaking", + "breast: buff, streaked with darker brown", + "crown: brownish with a subtle crest", + "forehead: pale buff, unpatterned", + "eyes: dark with white eye-ring", + "legs: long and slender, pale pinkish-brown", + "wings: brown, with white-edged primaries", + "nape: olive-brown, with fine streaking", + "tail: brown, short and slightly forked", + "throat: pale buff, unpatterned" + ], + "mealy parrot": [ + "back: greenish-blue feathers with a mealy texture", + "beak: grey-black, strong and hooked", + "belly: pale green with scattered blue feathers", + "breast: soft green with mealy patterns", + "crown: green-blue, subtly darker than back", + "forehead: green, lighter than crown", + "eyes: small with white eye-ring, dark brown irises", + "legs: grey and sturdy with sharp claws", + "wings: vibrant green-blue with tinges of yellow and red", + "nape: green, slightly paler than back", + "tail: long and tapered, turquoise and dark blue feathers", + "throat: greenish-yellow with mealy, faint speckles" + ], + "mediterranean gull": [ + "back: sleek light gray plumage", + "beak: sturdy red-orange colored", + "belly: pristine white feathers", + "breast: smooth white plumage", + "crown: black feathers with a velvety texture", + "forehead: white with a subtle transition to the black crown", + "eyes: dark with a white eye-ring", + "legs: vibrant red-orange and medium length", + "wings: light gray with white tips and black accents at the tip of primaries", + "nape: seamless transition from black crown to light gray back", + "tail: white with a thin black band at the edge", + "throat: white and flat" + ], + "mediterranean short toed lark": [ + "back: light brown with streaks of white", + "beak: small, cone-shaped and pale brown", + "belly: creamy white fading to pale brown", + "breast: delicately streaked pale brown", + "crown: light brown with faint streaks", + "forehead: pale whitish-yellow with narrow streaks", + "eyes: small, dark with a thin white eyebrow-like stripe", + "legs: long and slender, pale pinkish-brown", + "wings: rounded, brown with a white-edged panel", + "nape: pale brown blending with the crown", + "tail: short, square-shaped with dark brown outer feathers", + "throat: soft white merging into the cream-colored belly" + ], + "medium ground finch": [ + "back: earthy brown feathers", + "beak: short, strong, conical shape", + "belly: light cream or white feathers", + "breast: light cream or white feathers with brown speckles", + "crown: black or dark brown plumage", + "forehead: black or dark brown plumage", + "eyes: small, black, and round", + "legs: short, scaly, with strong claws", + "wings: rounded, brown with black markings", + "nape: brown feathers", + "tail: short, fan-shaped, dark feathers", + "throat: light cream or white feathers with slight brown speckles" + ], + "medium tree finch": [ + "back: olive-brown plumage", + "beak: short, blunt, and black", + "belly: pale, off-white feathers", + "breast: grayish-white with brown streaks", + "crown: brownish-olive plumage", + "forehead: narrow white stripe", + "eyes: dark, beady and alert", + "legs: slender, grayish-black", + "wings: olive-brown with some white bars", + "nape: brownish-olive plumage", + "tail: olive-brown feathers with a tapered shape", + "throat: pale grayish-white with a touch of brown" + ], + "meek lorikeet": [ + "back: vibrant green feathers", + "beak: curved, sharp orange tip", + "belly: soft, pale blue plumage", + "breast: bright blue feathers", + "crown: iridescent purple sheen", + "forehead: rich violet hue", + "eyes: dark, round and curious", + "legs: slim, sturdy, and grey", + "wings: vivid green with a blue edge", + "nape: striking purple-blue gradient", + "tail: long, green, and pointed feathers", + "throat: dazzling yellow, merging into blue" + ], + "meek pygmy parrot": [ + "back: vibrant green feathers", + "beak: small, curved, and grayish", + "belly: pale yellow hue", + "breast: light green plumage", + "crown: bright green with darker shades", + "forehead: subtle green tint", + "eyes: round, black, and alert", + "legs: short grayish-brown with scaled texture", + "wings: compact, green with tinges of blue", + "nape: delicate green gradient", + "tail: short, green with yellow tips", + "throat: soft yellow-green coloration" + ], + "mees nightjar": [ + "back: grayish-brown with subtle streaks", + "beak: short, black, and slightly hooked", + "belly: light grayish-brown with dark streaks", + "breast: pale gray with fine dark streaks", + "crown: grayish-brown with darker streaks", + "forehead: lighter grayish-brown with faint streaks", + "eyes: large, dark, and well-camouflaged", + "legs: short with grayish-brown feathers", + "wings: mottled gray and brown, long and narrow", + "nape: grayish-brown with darker streaks", + "tail: grayish-brown with white outer feathers and dark bands", + "throat: light grayish-brown with fine streaks" + ], + "mekong wagtail": [ + "back: bluish-grey with gentle feather patterns", + "beak: short and slender, blackish-grey", + "belly: white and clean", + "breast: light grey with white undertones", + "crown: dark grey with a subtle crest", + "forehead: dark grey blending into the crown", + "eyes: small, brown with white eyerings", + "legs: orange-yellow, slim, and agile", + "wings: bluish-grey, with white edges and black flight feathers", + "nape: continuous grey from the crown", + "tail: dark grey with white outer feathers, slightly forked", + "throat: light grey, merging with breast" + ], + "melancholy woodpecker": [ + "back: dark and mottled feathers", + "beak: long and sharply pointed", + "belly: pale gray or cream", + "breast: spotted and streaked black-and-white", + "crown: rich red or deep crimson", + "forehead: white with black stripes", + "eyes: dark beady gaze", + "legs: short and strong with sharp claws", + "wings: black and white checkered pattern", + "nape: white, extending from the neck to the crown", + "tail: black, sturdy, woodpecker-like", + "throat: soft white or light gray" + ], + "melanesian flycatcher": [ + "back: dark blue plumage", + "beak: short and sturdy black bill", + "belly: lighter blue feathers", + "breast: vibrant blue plumage", + "crown: deep blue with a hint of iridescence", + "forehead: bright blue with occasional black markings", + "eyes: small and round, dark brown", + "legs: slim black legs with delicate claws", + "wings: long, tapered, vivid blue with black trim", + "nape: dark blue, transitioning from the crown", + "tail: elongated, fan-shaped, blue with black-edged feathers", + "throat: brilliant blue with smooth feathers" + ], + "melanesian kingfisher": [ + "back: bright blue feathers with black markings", + "beak: large, reddish-orange, and robust", + "belly: white and smooth feathers", + "breast: white with bluish tinge", + "crown: bright blue plumage, may extend to forehead", + "forehead: sometimes bright blue as crown, otherwise white", + "eyes: dark with a sharp gaze", + "legs: short and stocky, reddish-orange color", + "wings: vibrant blue with black markings, broad and strong", + "nape: bright blue, occasionally mixed with black markings", + "tail: bluish-black in color, medium length and broad", + "throat: white, meeting the breast feathers" + ], + "melanesian megapode": [ + "back: dark brown feathers", + "beak: short and stout, pale color", + "belly: grayish-brown feathers", + "breast: dark gray plumage", + "crown: blackish-brown feathers", + "forehead: dark brown plumage", + "eyes: small and dark, whitish eye-ring", + "legs: short and stout, pale gray", + "wings: brown, rounded, with white-tipped flight feathers", + "nape: brownish-black feathers", + "tail: dark brown, short and rounded", + "throat: pale grayish-brown feathers" + ], + "meller duck": [ + "back: smooth feathers with iridescent sheen", + "beak: wide, flat and yellowish-orange", + "belly: light grayish-white feathers", + "breast: beige-brown feathers with white speckles", + "crown: dark brown feathers", + "forehead: light brown feathers blending into the crown", + "eyes: small, dark, and beady", + "legs: strong, orange, and webbed", + "wings: brown and beige feathers with iridescent patterns", + "nape: grayish-brown feathers", + "tail: short, brown feathers with white tips", + "throat: white feathers transitioning to beige-brown" + ], + "melodious blackbird": [ + "back: glossy black feathers", + "beak: slightly curved, ebony", + "belly: deep black plumage", + "breast: shiny black feathers", + "crown: sleek, black crest", + "forehead: flat and smooth black", + "eyes: alert, dark orbs", + "legs: long, slender, and black", + "wings: wide-spread, iridescent black", + "nape: gracefully curved, black neckline", + "tail: elongated, fan-shaped black feathers", + "throat: smooth black, melodious singer" + ], + "melodious warbler": [ + "back: olive-brown with subtle streaks", + "beak: slender and pointed, light pinkish-brown", + "belly: light creamy-yellow", + "breast: pale yellowish-cream with faint streaks", + "crown: olive-brown with fine streaks", + "forehead: smooth olive-brown", + "eyes: dark with conspicuous white eye-ring", + "legs: pale pinkish-brown", + "wings: olive-brown with faint wing-bars", + "nape: olive-brown with subtle streaks", + "tail: olive-brown with paler edges", + "throat: pale creamy-yellow" + ], + "menetries warbler": [ + "back: olive-green with subtle dark streaks", + "beak: long, slim, and sharp, grayish-black color", + "belly: pale yellow with faint dark streaks", + "breast: light orange-yellow with some dark markings", + "crown: dark gray with a thin white outline", + "forehead: light gray with a black border", + "eyes: dark brown surrounded by a white ring", + "legs: long and slender, grayish-blue hue", + "wings: olive-brown with white edges and dark streaks", + "nape: light gray with a faint dark outline", + "tail: olive-brown with white edges and dark streaks", + "throat: bright white with a black border" + ], + "mentawai scops owl": [ + "back: rusty-brown with black streaks", + "beak: sharp, hooked, and dark grey", + "belly: creamy-white with brownish-black streaks", + "breast: light brown with dark speckles", + "crown: rusty-brown with black spots", + "forehead: pale grey-brown with black markings", + "eyes: intense yellow with dark outlines", + "legs: feathered with sharp talons", + "wings: dark brown with white and buff spots", + "nape: rusty-brown with black streaks", + "tail: long and brown with horizontal cream-colored bands", + "throat: pale grey-brown with dark streaks" + ], + "meratus blue flycatcher": [ + "back: vibrant blue feathers with contrasting black edges", + "beak: small, black, and sharp for catching insects", + "belly: white to pale blue feather transitions", + "breast: white with light blue tint, offering camouflage", + "crown: bright blue top with slight iridescence", + "forehead: deep blue extends from the beak to the crown", + "eyes: black and beady, surrounded by blue plumage", + "legs: thin and dark, with sharp talons for perching", + "wings: blue feathers with black outline for powerful flight", + "nape: blue feathers that blend into the back's coloration", + "tail: long, blue feathers with sleek black bands for stability", + "throat: white to light blue, allowing for easier adaptation" + ], + "meratus white eye": [ + "back: sleek feathers with greenish tinge", + "beak: small, pointed, blackish-brown", + "belly: light greyish-white plumage", + "breast: pale grey feathers", + "crown: vivid green with slight blue hue", + "forehead: bright lime-green cap", + "eyes: large, white-ringed, dark brown color", + "legs: slender, greyish-brown", + "wings: greenish-blue, slightly pointed tips", + "nape: transition from green-blue crown to lighter back", + "tail: elongated, greenish-blue, slightly forked", + "throat: off-white to pale grey plumage" + ], + "merida flowerpiercer": [ + "back: olive-green with dark streaks", + "beak: short, curved, black with hooked tip", + "belly: yellowish-gray with faint streaks", + "breast: pale gray with faint streaks", + "crown: solid black, sleek in appearance", + "forehead: black extending into a mask around the eyes", + "eyes: dark brown with a thin, white eyering", + "legs: grayish, slender, strong", + "wings: olive-green, with dark primaries", + "nape: yellowish-olive, blending with back", + "tail: olive-green, forked and relatively short", + "throat: white with a black crescent-shaped patch" + ], + "merida starfrontlet": [ + "back: vibrant green feathers", + "beak: long, slender, and black", + "belly: moss green feathers", + "breast: iridescent emerald green", + "crown: radiant violet-blue crest", + "forehead: metallic green plumage", + "eyes: dark and alert", + "legs: thin and black, with powerful feet", + "wings: mixture of green and blue, magnificent in flight", + "nape: shiny bluish-green feathers", + "tail: elongated dark blue feathers", + "throat: shimmering violet-blue color" + ], + "merida sunangel": [ + "back: vibrant green feathers", + "beak: slender, slightly curved black bill", + "belly: pale yellow with light streaks", + "breast: shimmering iridescent orange", + "crown: bright green with a metallic sheen", + "forehead: greenish-yellow feathers", + "eyes: small, round black eyes", + "legs: thin, dark grey", + "wings: long, greenish-blue feathers with black tips", + "nape: metallic green feathers", + "tail: deep blue with white spots and black borders", + "throat: brilliant iridescent flame-colored patch" + ], + "merida tapaculo": [ + "back: dark grey feathers", + "beak: short, stout bill", + "belly: paler grey hue", + "breast: deep grey plumage", + "crown: dark grey, rounded", + "forehead: lighter grey feathers", + "eyes: small, black gaze", + "legs: strong, feathered", + "wings: dark grey, rounded", + "nape: slightly paler grey", + "tail: short, squared-off", + "throat: grey, lightly feathered" + ], + "merida wren": [ + "back: reddish-brown with dark streaks", + "beak: thin, curved, and blackish", + "belly: pale with light brown speckles", + "breast: golden-orange hue, stippled with brown", + "crown: grayish-brown with slight streaks", + "forehead: light gray with fine dark lines", + "eyes: dark brown, encircled by white eye-ring", + "legs: sturdy, brownish-pink", + "wings: warm brown with dark barring", + "nape: grayish-brown with subtle markings", + "tail: long and brown, with distinct barring", + "throat: white with light brown mottling" + ], + "metallic pigeon": [ + "back: shimmering steel feathers", + "beak: sleek, silver tip", + "belly: gleaming aluminum underside", + "breast: radiant metallic chest", + "crown: polished chrome crest", + "forehead: glossy titanium slope", + "eyes: bright, reflective orbs", + "legs: sturdy iron limbs", + "wings: magnificent, metal-plumed span", + "nape: sparkling nickel neck", + "tail: radiant metallic fan", + "throat: lustrous metallic curve" + ], + "metallic starling": [ + "back: iridescent green-blue sheen", + "beak: pointed, silver-black", + "belly: glistening blue-black", + "breast: shimmering steel-blue", + "crown: glossy dark blue", + "forehead: reflective, blue-green sheen", + "eyes: orange-red, piercing", + "legs: slender, dark grey", + "wings: sleek, metallic feathers", + "nape: smooth, glossy blue-black", + "tail: long, shining blue", + "throat: dark, glimmering blue" + ], + "metallic green tanager": [ + "back: vibrant green coloration", + "beak: short and sturdy, black", + "belly: iridescent green hue", + "breast: shimmering green feathers", + "crown: bright metallic green", + "forehead: lustrous green shade", + "eyes: dark and alert", + "legs: black and slender", + "wings: eye-catching green with glint", + "nape: shining green curve", + "tail: elongated, green feathers", + "throat: gleaming green plumage" + ], + "metallic winged sunbird": [ + "back: shimmering green and blue feathers", + "beak: long, slender, and curved for nectar feeding", + "belly: iridescent yellow and green feathers", + "breast: vibrant, metallic green plumage", + "crown: gleaming emerald green with a slight crest", + "forehead: brilliant metallic green feathers", + "eyes: small, dark, and expressive", + "legs: thin, twig-like, with strong feet for perching", + "wings: rounded and metallic with shades of green and blue", + "nape: radiant green feathers transitioning to blue", + "tail: elongated and forked, with iridescent green and blue feathers", + "throat: bright, metallic green and golden-colored feathers" + ], + "meves starling": [ + "back: iridescent blue-green plumage", + "beak: black, sharp, and slender", + "belly: glossy purple-blue hue", + "breast: bright metallic blue-green", + "crown: shimmering blue-green feathers", + "forehead: shining metallic blue", + "eyes: dark brown, almost black", + "legs: dark gray with strong claws", + "wings: deep blue with green sheen, pointed tips", + "nape: radiant blue-green feathers", + "tail: long, dark blue with a slight fork", + "throat: vibrant purple-blue plumage" + ], + "mexican chickadee": [ + "back: grayish-brown feathers", + "beak: short, black, pointed", + "belly: pale gray-white plumage", + "breast: light gray hue", + "crown: black and rounded", + "forehead: black patch", + "eyes: dark, small, encircled by white rings", + "legs: dark gray with strong claws", + "wings: grayish-brown, edged in white", + "nape: black stripe extending from crown", + "tail: long, grayish-brown with white edges", + "throat: white with blackish sides" + ], + "mexican duck": [ + "back: brownish-gray feathers with visible barring", + "beak: dark gray with slightly downward curve", + "belly: lighter grayish-brown coloration", + "breast: pale brown with subtle speckling", + "crown: dark brown feathers fading into gray", + "forehead: lighter brown blending with crown", + "eyes: dark brown with thin white eyering", + "legs: orange-toned webbed feet", + "wings: brownish-gray with blue-green speculum", + "nape: slightly darker brown than crown", + "tail: grayish-brown feathers with black markings", + "throat: pale brown with faint barring" + ], + "mexican hermit": [ + "back: olive-green feathers with lighter streaks", + "beak: long, curved, and slender", + "belly: pale gray with light streaks", + "breast: light gray with fine streaks", + "crown: greenish-brown", + "forehead: grayish-brown with streaks", + "eyes: dark brown with white eye-ring", + "legs: slender, grayish-brown", + "wings: olive-green, long and curved", + "nape: greenish-brown with streaks", + "tail: long, dark brown, and forked", + "throat: light gray with fine streaks" + ], + "mexican parrotlet": [ + "1. back: vibrant green feathers", + "2. beak: small, sharp, and hooked", + "3. belly: light green with a hint of blue", + "4. breast: bright green and smooth feathers", + "5. crown: brilliant green crest", + "6. forehead: yellowish-green feathers", + "7. eyes: dark, round, and expressive", + "8. legs: short and gray with strong toes", + "9. wings: green-blue with darker edges", + "10. nape: vivid green blending into a blue hue", + "11. tail: long and tapered with blue-green feathers", + "12. throat: light green with a touch of yellow" + ], + "mexican sheartail": [ + "back: iridescent green with a bronze tint", + "beak: long, straight, and slender black", + "belly: pale gray with a hint of green", + "breast: grayish-white with green feather edges", + "crown: bright green with a coppery sheen", + "forehead: emerald green, glittery appearance", + "eyes: dark black with grayish-white eye-ring", + "legs: short and sturdy black", + "wings: dark brownish-black with a pointed shape", + "nape: greenish-bronze, transitioning from the crown", + "tail: elongated, dark black with white outer feathers (in males", + "throat: iridescent violet-blue in males, grayish-white in females" + ], + "mexican violetear": [ + "back: iridescent green feathers", + "beak: black, slightly curved", + "belly: pale grayish-green plumage", + "breast: vibrant green plumage", + "crown: shiny green with a violet tint", + "forehead: bright violet-blue marking", + "eyes: dark, round with a white eye-ring", + "legs: short, black with sharp claws", + "wings: iridescent green with a hint of violet", + "nape: brilliant green feathers", + "tail: greenish-blue, slightly forked", + "throat: sparkling violet-blue patch" + ], + "mexican whip poor will": [ + "back: dark brown, mottled", + "beak: thin, black, slightly hooked", + "belly: pale buff, streaked with brown", + "breast: grayish-brown, spotted with white", + "crown: dark brown with buff-colored pattern", + "forehead: light buff, speckled with brown", + "eyes: large, dark, with a white eyering", + "legs: short, feathered, light brown", + "wings: mottled brown, barred with white", + "nape: dark brown with buff-colored markings", + "tail: long, brown, barred with white and buff", + "throat: pale buff, streaked with brown" + ], + "mexican woodnymph": [ + "back: vibrant green plumage", + "beak: long, slender, and slightly curved", + "belly: pale grayish-green feathers", + "breast: bright green with a touch of blue", + "crown: shiny green with a blue tint", + "forehead: iridescent green", + "eyes: small and dark-colored", + "legs: grayish-pink and short", + "wings: bright green on inner feathers, darker green on outer feathers", + "nape: rich iridescent green merging into the crown", + "tail: central feathers green, outer feathers white with green tips", + "throat: brilliant violet-blue sheen" + ], + "meyer friarbird": [ + "back: dark brown with streaks of lighter brown", + "beak: long, curved, and black", + "belly: creamy white with faded brown streaks", + "breast: off-white with thin brown streaks", + "crown: dark brown with slight tuft", + "forehead: dark brown, merging with the crown", + "eyes: small, black, and round, surrounded by a thin white line", + "legs: sturdy, grey-brown, with sharp claws", + "wings: layered brown feathers with hints of white", + "nape: dark brown, blending with the back", + "tail: long, brown feathers with white tips", + "throat: off-white with light brown streaking" + ], + "meyer goshawk": [ + "back: sleek, grayish-brown feathers", + "beak: sharp, hooked, blackish-gray", + "belly: whitish with fine gray barring", + "breast: light gray, sometimes with flecks of white", + "crown: dark gray with a prominent crest", + "forehead: lighter gray than the crown, blending into the eye area", + "eyes: deep red-orange with a piercing gaze", + "legs: yellowish with long, slender talons", + "wings: broad, rounded, gray-brown with dark tips", + "nape: light gray, blending into the back", + "tail: long, gray with dark bands and a white tip", + "throat: whitish, leading to the breast area" + ], + "meyer parrot": [ + "back: vibrant green feathers", + "beak: strong, hooked, and grayish-black", + "belly: pale green with blueish tinge", + "breast: bright green plumage", + "crown: deep green with touches of blue", + "forehead: vivid yellow patches", + "eyes: dark brown, surrounded by white rings", + "legs: sturdy gray with sharp claws", + "wings: green with blue and yellow accents, stunning in flight", + "nape: emerald green, smooth and sleek", + "tail: long and blue-green, showing yellow when fanned", + "throat: light green, merging seamlessly with the breast" + ], + "micronesian imperial pigeon": [ + "back: metallic green sheen", + "beak: short and powerful, blackish color", + "belly: pale gray to white plumage", + "breast: creamy white feathers", + "crown: grayish-white, slightly elongated feathers", + "forehead: smooth white plumage", + "eyes: deep red to orange, encircled by a thin black line", + "legs: red, sturdy with strong claws", + "wings: broad and rounded, metallic green feathers", + "nape: grayish-white, subtly blending with the crown", + "tail: long and white, slight green iridescence", + "throat: white plumage with a soft texture" + ], + "micronesian megapode": [ + "back: dark brown feathers with streaks", + "beak: stout, short, and black", + "belly: grayish-brown plumage", + "breast: muted gray-brown feathers", + "crown: black with dark brown streaks", + "forehead: blackish-brown with faint streaks", + "eyes: small and black, with a white eye-ring", + "legs: strong, yellowish-gray with sharp claws", + "wings: rounded, dark brown with white spots", + "nape: dark brown with lighter streaks", + "tail: medium-length, dark brown with barred pattern", + "throat: grayish-brown feathers with lighter streaks" + ], + "micronesian myzomela": [ + "back: olive-green to dark-brown", + "beak: thin and dark-colored", + "belly: light-grey or off-white", + "breast: crimson red in males, light grey or off-white in females", + "crown: dark-grey or olive-green", + "forehead: reddish-orange in males, dark-grey or olive-green in females", + "eyes: dark with white eye-ring", + "legs: dark-grey to black", + "wings: dark-brown to olive-green", + "nape: olive-green to dark-brown", + "tail: dark-brown to olive-green", + "throat: reddish-orange in males, light grey or off-white in females" + ], + "micronesian starling": [ + "back: shades of iridescent blue-green", + "beak: straight, black, and slightly curved at tip", + "belly: light gray with subtle bluish tinge", + "breast: slightly darker gray than belly", + "crown: iridescent blue-green, similar to back", + "forehead: same iridescent color as crown", + "eyes: dark with white eye-ring", + "legs: strong and black with sharp claws", + "wings: iridescent blue-green with black flight feathers", + "nape: continuation of crown's iridescent color", + "tail: long, iridescent blue-green with black tips", + "throat: lighter gray than breast, bordering on white" + ], + "mid mountain berrypecker": [ + "back: vibrant green plumage", + "beak: short, thin, and curved black beak", + "belly: light pastel green feathers", + "breast: pale green chest plumage", + "crown: bright green, slightly raised feathers", + "forehead: vivid green feathers meeting beak", + "eyes: small, round, dark with white eye-ring", + "legs: slender, greyish-brown legs", + "wings: rich green with black-edged feathers", + "nape: vibrant green connecting crown and back", + "tail: neatly-pointed, green-tipped tail feathers", + "throat: soft green with subtle yellow tinge" + ], + "middendorff grasshopper warbler": [ + "back: brownish-grey striped pattern", + "beak: short, pointed, dark brown", + "belly: pale white with faint streaks", + "breast: creamy-white with grayish-brown streaks", + "crown: rufous-brown with dark central stripe", + "forehead: rufous-brown blending into the crown", + "eyes: small, dark, encircled by pale eyering", + "legs: slender, light-brown", + "wings: brownish-grey with faint barring", + "nape: rufous-brown continuing from crown", + "tail: brownish-grey, slightly rounded", + "throat: pale white with light streaks" + ], + "middle american leaftosser": [ + "back: olive-brown color, elongated feathers", + "beak: short and stout, dark grey", + "belly: pale grey with subtle barring", + "breast: warm buffy brown", + "crown: olive-green, slightly raised", + "forehead: slightly paler than crown, hint of greenish-yellow", + "eyes: large, dark brown with white eyering", + "legs: short, greyish-blue", + "wings: olive-brown with darker primaries", + "nape: olive-green fading to brown", + "tail: long, olive-brown with faint rufous edging", + "throat: pale buffy brown with indistinct streaks" + ], + "middle american screech owl": [ + "back: brown or gray with streaks and speckles", + "beak: hooked and small, yellowish or gray", + "belly: light with brown markings", + "breast: pale gray with dark vertical streaks", + "crown: rounded with uneven light and dark feather patterns", + "forehead: light and streaked with dark brown", + "eyes: large and yellow with thick feathered circles", + "legs: feathered with zygodactyl toes", + "wings: mottled with brown, gray, and white bars", + "nape: speckled with light and dark feathers", + "tail: banded with light and dark stripes", + "throat: light gray with thin, dark streaks" + ], + "middle spotted woodpecker": [ + "back: black and white horizontal stripes", + "beak: short, chisel-like, grayish", + "belly: creamy white with red hues", + "breast: light gray with dark spots", + "crown: black and white spotted, red crest", + "forehead: white with black marks", + "eyes: surrounded by black streaks", + "legs: dark gray, sturdy", + "wings: black, white speckles, patches of brown", + "nape: black with white speckles", + "tail: black, white-tipped feathers", + "throat: white with black markings" + ], + "midget flowerpecker": [ + "back: petite, olive-green feathers", + "beak: short, curved, and black", + "belly: pale yellow with streaks of green", + "breast: yellowish with greenish streaks", + "crown: olive-green with a slight crest", + "forehead: bright green, round shape", + "eyes: small, black, and shiny", + "legs: tiny, dark grey, and slender", + "wings: rounded, with olive-green feathers and prominent white markings", + "nape: greenish-yellow with a small crest", + "tail: short and slightly spatulate, with green feathers", + "throat: bright yellow with green streaks" + ], + "mikado pheasant": [ + "back: vibrant deep blue with green iridescence", + "beak: short, strong, and grayish", + "belly: rich chestnut color with scaled patterns", + "breast: deep purple-blue with green shimmer", + "crown: blue-green iridescent with bushy crest", + "forehead: brilliant red facial wattles", + "eyes: bright, alert, and surrounded by red wattles", + "legs: sturdy, grayish, and feathered", + "wings: bold white and black stripes with blue-green iridescence", + "nape: blue-green sheen with cascading crest feathers", + "tail: long, dark blue with vibrant white stripes and curved feathers", + "throat: chestnut color with delicate scaled patterns" + ], + "milky stork": [ + "back: white plumage with slight gray streaks", + "beak: long, slender, and yellow-tipped", + "belly: mostly white feathers with occasional grayish speckling", + "breast: clean white plumage with a smooth texture", + "crown: flat, wide, with black feathers and a small backward-facing crest", + "forehead: white and smooth, seamlessly blending into the beak", + "eyes: small, round, and dark, surrounded by black feathered patches", + "legs: long, sturdy, and black, ending in webbed feet", + "wings: large, white, and oval-shaped with black primary feathers", + "nape: white with a gradual transition to black crown feathers", + "tail: short, slightly fanned, featuring white feathers with black tips", + "throat: white, unmarked, and smoothly connecting to the breast area" + ], + "millerbird": [ + "back: light brown, streaked with white markings", + "beak: slim, pointed, blackish color", + "belly: pale white with faint brown streaks", + "breast: light brown with white speckles", + "crown: deep brown, contrasts with the forehead", + "forehead: buffy white, sharply demarcated from the crown", + "eyes: small, dark, piercing gaze", + "legs: slender, grayish-brown, well adapted for perching", + "wings: brown with white and black bands, well-suited for short flights", + "nape: light brown, white streaks continuing from the back", + "tail: brown with white outer tips, slightly forked", + "throat: buffy white, blending into the breast area" + ], + "mimic honeyeater": [ + "back: dark gray feathers", + "beak: short, curved, black", + "belly: light gray-white plumage", + "breast: grayish-white feathers", + "crown: black with white streaks", + "forehead: dark gray to black", + "eyes: black, piercing gaze", + "legs: slender, black", + "wings: dark gray feathers, white-tipped", + "nape: gray-black with white streaks", + "tail: long, dark gray, white-tipped", + "throat: light gray-white, black streaks" + ], + "minahasa masked owl": [ + "back: dark brown feathers with lighter spots", + "beak: sharp, hooked, and yellowish-black", + "belly: light brown with vertical dark streaks", + "breast: reddish-brown with dark bars", + "crown: dark brown with contrasting light brown feathers", + "forehead: speckled light brown with dark markings", + "eyes: large, bright, and yellow-orange", + "legs: feathered with light brown and dark barring", + "wings: dark brown with lighter markings and rufous-brown edges", + "nape: dark brown with light-edged feathers", + "tail: reddish-brown with blackish-brown bands", + "throat: light brown with vertical dark streaks" + ], + "minas gerais tyrannulet": [ + "back: olive-green with paler streaks", + "beak: short and black, slightly curved", + "belly: pale yellow with streaks of gray", + "breast: olive-green with speckled gray", + "crown: dull gray with black eyestripe", + "forehead: pale gray with short feathery crest", + "eyes: dark brown surrounded by thin white eye-ring", + "legs: long and slender, light pinkish-brown", + "wings: olive-green with lighter edges on feathers", + "nape: olive-green with faint gray streaks", + "tail: short and square, olive-green with darker edges", + "throat: pale gray, transitioning to yellow on belly" + ], + "mindanao bleeding heart": [ + "back: vibrant green with orange hues", + "beak: short, curved, cream-colored", + "belly: light grey with dark grey streaks", + "breast: rich rusty red with white spots", + "crown: glossy olive-green", + "forehead: same as crown, glossy olive-green", + "eyes: dark brown, round and beady", + "legs: moderately long, pinkish-grey", + "wings: mottled brown and black feathers", + "nape: glossy olive-green with rusty red tones", + "tail: long, dark blue with white bands", + "throat: light grey blending into rusty red breast" + ], + "mindanao blue fantail": [ + "back: vibrant blue feathers with black streaks", + "beak: petite and black, suited for insect-catching", + "belly: light, creamy-white feathers", + "breast: striking blue feathers with a slight sheen", + "crown: bright blue plumage with a notable crest", + "forehead: deep blue with a touch of black creating a brow-like feature", + "eyes: small and dark, surrounded by soft blue feathers", + "legs: slim and dark gray, blending into their natural habitat", + "wings: stunning blue with black streaks, great for quick movements", + "nape: rich blue with subtle black markings", + "tail: elongated and fan-like, featuring bold blue feathers and black bands", + "throat: smooth, light blue that contrasts with the breast and belly" + ], + "mindanao boobook": [ + "back: brown plumage with a streaked pattern", + "beak: sharp, hooked, and dark in color", + "belly: buff-white with dark streaks", + "breast: creamy-white with brown bars", + "crown: dark brown with fine white streaks", + "forehead: light brown with white streaks", + "eyes: large, dark, and forward-facing", + "legs: strong and yellowish-brown", + "wings: brown with white spots and bars", + "nape: brown with white streaks", + "tail: brown with white barring", + "throat: off-white with fine brown streaks" + ], + "mindanao brown dove": [ + "back: earthy brown with subtle dark streaks", + "beak: short and stout, light gray color", + "belly: pale grayish-brown, soft-feathered", + "breast: warm chestnut-brown, smooth texture", + "crown: dark brown with hints of iridescence", + "forehead: slightly lighter brown, small feathers", + "eyes: round, dark, and sharp gaze", + "legs: slender grayish-brown, sturdy", + "wings: mottled brown with darker flight feathers", + "nape: rich brown with fine feathers", + "tail: elongated, dark brown with white tips", + "throat: pale grayish-brown, slightly lighter than belly" + ], + "mindanao hornbill": [ + "back: vibrant green feathers", + "beak: large, curved, yellowish-orange", + "belly: white and cream plumage", + "breast: black and white banding", + "crown: black with subtle green sheen", + "forehead: black feathers with green iridescence", + "eyes: dark, piercing, surrounded by blue skin", + "legs: strong, grayish-blue with sharp claws", + "wings: green and black feathers with white tips", + "nape: black feathers with green sheen", + "tail: elongated, black and white feathers", + "throat: white with black banding" + ], + "mindanao jungle flycatcher": [ + "back: olive-brown feathers", + "beak: short, black, and stout", + "belly: creamy-white plumage", + "breast: rust-colored feathers", + "crown: dark reddish-brown", + "forehead: reddish-brown plumage", + "eyes: dark, piercing gaze", + "legs: long, grayish-blue", + "wings: olive-brown with white markings", + "nape: reddish-brown feathers", + "tail: long, dark brown with white tips", + "throat: creamy-white with rust-colored streaks" + ], + "mindanao lorikeet": [ + "back: vibrant green feathers", + "beak: bright orange, hooked tip", + "belly: light green with yellowish tones", + "breast: brilliant green feathers", + "crown: red with violet-blue streaks", + "forehead: bright red plumage", + "eyes: dark with white eye rings", + "legs: grayish-black and slender", + "wings: green with blue-tipped feathers", + "nape: green with red streaks", + "tail: long, green with blue undertones", + "throat: green with yellowish tinge" + ], + "mindanao plumed warbler": [ + "back: greenish-olive feathers", + "beak: thin, pointed, and curved", + "belly: light-yellow feathers", + "breast: pale-yellow, streaked plumage", + "crown: beige feathers with darker streaks", + "forehead: pale-yellow with brown streaks", + "eyes: dark, round, and alert", + "legs: slender and greyish-blue", + "wings: olive-green with blackish-brown tips", + "nape: greenish-olive with streaks running downward", + "tail: long and olive-brown with white outer edges", + "throat: pale-yellow and unmarked" + ], + "mindanao pygmy babbler": [ + "back: olive-brown coloration", + "beak: short and slender, blackish hue", + "belly: whitish with brown streaks", + "breast: buffy-white with minimal markings", + "crown: ruddy-brown with faint streaks", + "forehead: subtly paler brown", + "eyes: dark and alert, encircled by thin white eyering", + "legs: pinkish-brown, sturdy", + "wings: olive-brown with faint wing bars", + "nape: olive-brown with subtle streaks", + "tail: short and rounded, olive-brown hues", + "throat: white, unmarked" + ], + "mindanao racquet tail": [ + "back: vibrant green feathers", + "beak: strong, short, white beak", + "belly: pale green underbelly", + "breast: yellowish-green breast feathers", + "crown: slight crest of green feathers", + "forehead: green feathers meeting beak smoothly", + "eyes: small black eyes with white eyelids", + "legs: gray, short, strong legs", + "wings: bright green with blue highlights", + "nape: rich green feathers transitioning to blue", + "tail: long tail with unique racquet-shaped end feathers", + "throat: green feathers with slight yellow tint" + ], + "mindanao scops owl": [ + "back: brownish-grey feathers with black streaks", + "beak: short, hooked, and grayish-black", + "belly: mottled brown and buffy white", + "breast: buff to brown feathers with black streaks", + "crown: dark brown with distinct white spots", + "forehead: rufous-brown with white speckles", + "eyes: large, yellow, and forward-facing", + "legs: feathered, grayish-brown with sharp talons", + "wings: mottled brown and gray with black barring", + "nape: brown, streaked with white and black markings", + "tail: long, brown, and barred with white streaks", + "throat: whitish with brown mottling and streaks" + ], + "mindanao white eye": [ + "back: olive-green feathers", + "beak: short, curved black bill", + "belly: pale wheat-yellow plumage", + "breast: creamy white feathers", + "crown: slate-grey coloring", + "forehead: off-white marking", + "eyes: distinctive white eye-rings", + "legs: long, slender grey limbs", + "wings: olive-green with flight feathers", + "nape: grey-feathered neck", + "tail: slightly forked with olive-green feathers", + "throat: white-patched plumage" + ], + "mindoro bleeding heart": [ + "back: deep olive-green feathers", + "beak: short and slightly curved, light grey color", + "belly: vibrant orange to scarlet hue", + "breast: rich crimson blending into white", + "crown: blueish-grey with a hint of green", + "forehead: blueish-grey and greenish feathers", + "eyes: ringed with a subtle purple shade", + "legs: long, strong, and purplish-grey", + "wings: olive-green with hints of blue and maroon", + "nape: blend of greenish and blueish-grey feathers", + "tail: blue-green feathers with lighter tips", + "throat: white with a slight bluish tinge" + ], + "mindoro boobook": [ + "back: olive-brown feathers with white speckles", + "beak: sharp, hooked, and dark gray", + "belly: creamy-white with faint brown barring", + "breast: white with dense brown streaks", + "crown: dark brown with buff streaks", + "forehead: brown with faint white speckles", + "eyes: large, yellow-orange with black pupils", + "legs: strong, feathered, and yellowish-brown", + "wings: brown with white spots and bars", + "nape: dark brown with buff streaks", + "tail: brown with white bars and rounded tips", + "throat: white with thin brown streaks" + ], + "mindoro bulbul": [ + "back: olive-green feathers", + "beak: short, curved, yellowish", + "belly: creamy-white hue", + "breast: grayish-white color", + "crown: dark-crested, blackish", + "forehead: black, leading into crest", + "eyes: small, red-encircled, dark", + "legs: short, grayish-brown", + "wings: broad, olive-green, primary feathers dark-tipped", + "nape: olive-green, black crest", + "tail: slightly curved, dark-tipped", + "throat: light gray, well-defined" + ], + "mindoro hornbill": [ + "back: dark green feathers", + "beak: large, curved, yellow", + "belly: light-colored plumage", + "breast: white to pale gray feathers", + "crown: black crest on head", + "forehead: greenish-black feathers", + "eyes: round, dark in color", + "legs: grayish-black, sturdy", + "wings: broad, dark green with white edging", + "nape: greenish-black feathers", + "tail: long, green with black tips", + "throat: pale gray or white feathers" + ], + "mindoro imperial pigeon": [ + "back: grayish-brown upper feathers", + "beak: short, sturdy, and white-tipped", + "belly: creamy-white underparts", + "breast: pale gray with faint brown streaks", + "crown: slate gray head crest", + "forehead: slightly paler gray", + "eyes: dark brown with a bluish-gray eyering", + "legs: short and reddish in color", + "wings: broad, rounded, and gray-toned", + "nape: slate gray with a brownish wash", + "tail: medium-length, gray with slightly darker tips", + "throat: faintly streaked gray and white" + ], + "mindoro racquet tail": [ + "back: vibrant green coloration", + "beak: small and dark", + "belly: pale greenish-yellow hue", + "breast: soft lime green", + "crown: emerald green tone", + "forehead: bright green shades", + "eyes: black and round", + "legs: short and gray", + "wings: vivid green with some blue tinge", + "nape: shining green with blue highlights", + "tail: elongated shafts ending in racket-like formations", + "throat: light green touch" + ], + "mindoro scops owl": [ + "back: dark brown, finely streaked", + "beak: short, sharply hooked, grayish", + "belly: whitish with brown streaks", + "breast: off-white, streaked with brown", + "crown: dark brown, feathered", + "forehead: light brown, small feathers", + "eyes: large, distinct, bright yellow", + "legs: feathered, light brown", + "wings: broad, barred with brown and white", + "nape: dark brown, light streaks", + "tail: relatively short, rounded, brown, with faint barring", + "throat: whitish, subtle brown streaks" + ], + "minute hermit": [ + "back: olive green, slender body", + "beak: long, thin, curved", + "belly: white and soft", + "breast: white, feathered chest", + "crown: dark green, small head feathers", + "forehead: white markings, sometimes faint", + "eyes: black and beady", + "legs: dainty, grayish-brown", + "wings: greenish-brown with pale spots", + "nape: green, smooth feather coverage", + "tail: white-tipped, narrow feathers", + "throat: white, fluffy plumage" + ], + "miombo barbet": [ + "back: vibrant green feathers", + "beak: sturdy, black curved beak", + "belly: bright yellow plumage", + "breast: deep red-orange and yellow feathers", + "crown: green and red striped pattern", + "forehead: red-orange patch at the base of the beak", + "eyes: small, dark, and alert", + "legs: strong, grayish-brown legs", + "wings: green feathers with white and black streaks", + "nape: green feathers with red markings", + "tail: elongated, green feathers with black tips", + "throat: bright yellow plumage" + ], + "miombo rock thrush": [ + "back: rusty-brown with faint darker streaks", + "beak: slender and black", + "belly: pale gray", + "breast: gray with a blue tinge", + "crown: reddish-brown", + "forehead: reddish-brown", + "eyes: dark brown with white eye-ring", + "legs: long and dark gray", + "wings: brownish-gray with black wing-bars", + "nape: reddish-brown", + "tail: long and dark gray", + "throat: pale gray with faint darker streaks" + ], + "miombo scrub robin": [ + "back: olive-brown with subtle streaks", + "beak: thin, black, sharply pointed", + "belly: creamy-white with blackish-grey spots", + "breast: light, reddish-brown with slight speckles", + "crown: warm brown with faint pattern", + "forehead: rich chestnut-tinged brown", + "eyes: dark, alert, encircled by pale eyering", + "legs: long and thin, light pinkish-brown", + "wings: dark brown with hints of rufous, black spots on feathers", + "nape: uniformly olive-brown, blending with crown", + "tail: long and slightly forked, brown with black bands", + "throat: pale grey-white with some spotting" + ], + "miombo tit": [ + "back: olive-green with subtle streaks", + "beak: short and conical, grayish-black", + "belly: creamy-white with pale gray tinges", + "breast: cream-colored, blending to whitish-gray", + "crown: grayish-black with a faint crest", + "forehead: black, bordered by small white markings", + "eyes: small, dark, bead-like with white eye-ring", + "legs: slender, long, bluish-gray", + "wings: black with white patches near the tips", + "nape: light olive-green with subtle black streaks", + "tail: black with white edges on outer feathers", + "throat: creamy white with pale gray shading" + ], + "miombo wren warbler": [ + "back: olive-brown plumage", + "beak: thin, pointed and black", + "belly: pale cream with brown markings", + "breast: light brown with streaks", + "crown: darker brown with faint streaks", + "forehead: lighter brown, blending into crown", + "eyes: small, dark, and inquisitive", + "legs: slender, grayish-brown", + "wings: olive-brown with faint barring", + "nape: brown with faint streaks, blending into back", + "tail: long, brownish, with thin barring", + "throat: light cream, blending into breast" + ], + "mishana tyrannulet": [ + "back: olive-green with dark streaks", + "beak: small, slender, and black", + "belly: pale yellow with subtle grayish marking", + "breast: pale olive-yellow with faint streaks", + "crown: grayish with prominent black eye-line", + "forehead: grayish, blending with the crown", + "eyes: black with white eyerings", + "legs: long, thin, and black", + "wings: olive-green with two white wing bars", + "nape: grayish, connecting with the crown", + "tail: olive-green, slightly forked", + "throat: pale yellow, unmarked" + ], + "mishmi wren babbler": [ + "back: olive-brown color with faint streaks", + "beak: short, slender, and pointed", + "belly: white with gray and brown undertones", + "breast: white with grayish streaks", + "crown: rusty-brown and slightly streaked", + "forehead: buff with distinct dark markings", + "eyes: small, dark with a prominent white eye-ring", + "legs: light pinkish-gray", + "wings: short, rounded with olive-brown and darker shades", + "nape: olive-brown with faint streaks", + "tail: long, olive-brown with noticeable barring", + "throat: white with buff-colored shading" + ], + "mistle thrush": [ + "back: pale, grayish-brown feathers with subtle striping", + "beak: long, thin, and slightly curved; brownish-black color", + "belly: creamy white with irregular dark spots and lines", + "breast: off-white with distinct dark brown spots", + "crown: light grayish-brown with streaks of darker brown", + "forehead: similar to crown; light grayish-brown with darker streaks", + "eyes: round, black pupil encircled by a thin white ring", + "legs: slender and relatively long; dull pinkish-brown in color", + "wings: light, grayish-brown with dark barring and a white wingbar", + "nape: pale grayish-brown with darker streaks and mottling", + "tail: long and wedge-shaped; feathers have dark brown bars and white tips", + "throat: creamy white with light spotting or streaking of brown" + ], + "mistletoe tyrannulet": [ + "back: olive-green with subtle streaks", + "beak: short and pointed, pale grayish color", + "belly: light, pale yellow hue", + "breast: whitish with soft olive markings", + "crown: olive-green with pale eye-ring", + "forehead: light grayish-green, blending into crown", + "eyes: black with white eye-ring surrounding", + "legs: medium-length, pale gray-blue color", + "wings: olive-green with two white-wing bars", + "nape: matching olive-green blending into the crown", + "tail: long and narrow, olive-green with white outer feathers", + "throat: whitish, contrasting with breast markings" + ], + "mistletoebird": [ + "back: dark blue with a slight shimmer", + "beak: short, curved, and black", + "belly: striking bright red", + "breast: intense red coloration", + "crown: dark, glossy blue", + "forehead: deep blue-black plumage", + "eyes: small, round, and black", + "legs: thin and grey", + "wings: dark, iridescent blue", + "nape: velvety blue-black hue", + "tail: slightly forked, dark blue", + "throat: rich red plumage" + ], + "mitred parakeet": [ + "back: vibrant green feathers", + "beak: strong, curved, bright orange", + "belly: light greenish-yellow hue", + "breast: vivid green feathers", + "crown: deep red and green mix", + "forehead: red-orange patch", + "eyes: dark with white eyering", + "legs: grayish with scaly texture", + "wings: green with bluish tinge", + "nape: green blending into red", + "tail: long, tapering, blue-green", + "throat: green, sometimes with hint of yellow" + ], + "mocking cliff chat": [ + "back: dark ash-gray coat", + "beak: slender, pointed black beak", + "belly: pale off-white underbelly", + "breast: light grayish-white breast", + "crown: blackish-feathered crest", + "forehead: dusky, dark gray feathering", + "eyes: piercing, beady black eyes", + "legs: short, strong black legs", + "wings: dark gray with white wing bars", + "nape: dark gray neck feathers", + "tail: long, black-tipped gray tail", + "throat: light gray throat feathers" + ], + "modest tiger parrot": [ + "back: vibrant green feathers covering the upper body", + "beak: small, sharp, hooked, and light-colored", + "belly: light green with faint yellow tinges", + "breast: bright orange feathers transitioning to yellow", + "crown: emerald green with spots of blue", + "forehead: emerald green feathers meeting the beak", + "eyes: black, bright, and bead-like", + "legs: slim, grey, and scaly with strong talons", + "wings: long, bright green with blue streaks and yellow tips", + "nape: distinct change from green crown to orange neck feathers", + "tail: lengthy, green with yellow-blue edges, fanning outwards", + "throat: soft yellow merging with the breast region" + ], + "moheli brush warbler": [ + "back: olive-green with fine streaks", + "beak: thin, slightly curved, blackish", + "belly: off-white with subtle streaks", + "breast: pale buff color with fine markings", + "crown: olive-brown with faint streaks", + "forehead: pale buff with fine streaks", + "eyes: small, dark-colored with white eyering", + "legs: thin, pale, and delicate", + "wings: olive-brown with faint bars", + "nape: olive-green with light streaks", + "tail: olive-brown and moderately long", + "throat: pale buff with soft streaks" + ], + "moheli bulbul": [ + "back: olive-green with slight shimmer", + "beak: short, cone-shaped, and black", + "belly: creamy-white with subtle streaks", + "breast: pale yellow, blending into belly", + "crown: black with greenish-blue iridescence", + "forehead: small, black feathers meet the beak", + "eyes: dark brown, surrounded by thin white eyering", + "legs: sturdy, dark grey, with sharp claws", + "wings: olive-green with black primary feathers", + "nape: black with slight iridescent sheen", + "tail: long, greenish-black, broad inner feathers", + "throat: bright yellow, contrasting with darker head" + ], + "moheli scops owl": [ + "back: brownish-gray feathers with black streaks", + "beak: short, hooked, and dark gray", + "belly: off-white with fine black barring", + "breast: pale gray with black streaks and spots", + "crown: dark gray with white speckles", + "forehead: lighter gray than the crown, with white speckles", + "eyes: bright yellow-orange with dark eye-ring", + "legs: feathered, yellow, and strong", + "wings: brownish-gray with prominent black barring", + "nape: grayish-brown with white speckles", + "tail: medium length with dark banding", + "throat: off-white with light black barring" + ], + "moheli white eye": [ + "back: vibrant green feathers", + "beak: short, sharp, and black", + "belly: creamy light white", + "breast: white blending with green", + "crown: olive green with a hint of yellow", + "forehead: yellowish-green plumage", + "eyes: striking white eye-ring", + "legs: slim, light grey legs", + "wings: green with darker flight feathers", + "nape: greenish-yellow transitioning to back", + "tail: green feathers with a slight curve", + "throat: soft white feathers" + ], + "moltoni warbler": [ + "back: olive-brown feathers with streaks", + "beak: thin, pointed, and black", + "belly: pale and buff-toned", + "breast: light gray with streaks", + "crown: pale gray with faint streaks", + "forehead: whitish-gray", + "eyes: dark brown with a pale eye-ring", + "legs: long, slender, and pinkish", + "wings: dark brown with two white wing bars", + "nape: gray-toned with streaks", + "tail: brown with distinct white outer edges", + "throat: white and unstreaked" + ], + "moluccan cuckooshrike": [ + "back: olive-brown, slightly darker from the wings", + "beak: stout, black, and slightly hooked", + "belly: pale yellow with faint streaks", + "breast: yellowish-gray with darker streaks", + "crown: olive-brown, matching the back", + "forehead: olive-brown, blending into the crown", + "eyes: dark brown, surrounded by a thin white eye-ring", + "legs: grayish-brown, strong and sturdy", + "wings: olive-brown with a blackish edge", + "nape: olive-brown, connecting the crown and back", + "tail: long, olive-brown with slight black banding", + "throat: pale gray with fine, darker streaks" + ], + "moluccan drongo cuckoo": [ + "back: deep grey feathers with slight metallic sheen", + "beak: black, slightly curved, and sharp", + "belly: creamy white fading to pale grey", + "breast: grey blending to white towards the bottom", + "crown: dark grey with a slight crest", + "forehead: smooth grey feathers transitioning to the crown", + "eyes: striking red with black pupils", + "legs: black and sturdy with sharp claws", + "wings: sleek grey feathers with white edging", + "nape: continuous grey color from the crown to back", + "tail: long, black, and slightly forked", + "throat: pale grey blending into the breast area" + ], + "moluccan dwarf kingfisher": [ + "back: bright reddish-orange feathers", + "beak: sharp, black, and slightly curved", + "belly: pale yellowish-orange plumage", + "breast: vivid orange feathers", + "crown: bright blue and purple feathers", + "forehead: brilliant blue feathers", + "eyes: small, black, and round", + "legs: short and yellowish", + "wings: blue and purple feathers with black tips", + "nape: vibrant blue and purple plumage", + "tail: short, blue, and fan-shaped with black bars", + "throat: pale yellow-orange feathers" + ], + "moluccan flycatcher": [ + "back: rich reddish-brown color; smooth feathers", + "beak: short, sharp, black; hooked at the tip", + "belly: pale whitish hue; soft, delicate feathers", + "breast: rusty orange; fluffy, dense feathers", + "crown: deep red color; crest of sleek feathers", + "forehead: bright white patch; short, blunt feathers", + "eyes: piercing black; surrounded by white markings", + "legs: slender gray-blue; strong, unfeathered", + "wings: reddish-brown; long, slightly pointed; white band", + "nape: dark chestnut; lies between crown and back", + "tail: reddish-brown; long, distinct forked shape", + "throat: creamy white; delicate feathered neck" + ], + "moluccan goshawk": [ + "back: slate gray with thin white bars", + "beak: sharp, black hooked tip", + "belly: light gray with faint white bars", + "breast: pale gray with horizontal white barring", + "crown: dark gray with a slight crest", + "forehead: smooth, light gray", + "eyes: intense yellow with a black pupil", + "legs: long, pale yellow with strong talons", + "wings: broad, dark gray with white bars on the underside", + "nape: slate gray with thin white striping", + "tail: long, dark gray with white bars", + "throat: pale gray with faint white barring" + ], + "moluccan hanging parrot": [ + "back: bright green feathers covering the dorsal area", + "beak: short, curved, grey colored beak", + "belly: light green plumage on the lower abdomen", + "breast: green feathers on the upper chest area", + "crown: orange-red feathers on top of the head", + "forehead: vibrant red feathers extending above the eyes", + "eyes: small, dark, round eyes surrounded by green feathers", + "legs: short, grey legs with gripping claws for perching", + "wings: bright green feathers with hints of red and blue", + "nape: green feathers at the back of the neck", + "tail: short tail with red and blue tipped feathers", + "throat: yellow-green feathers leading down from the beak" + ], + "moluccan king parrot": [ + "back: vibrant green feathers", + "beak: large orange-red curved beak", + "belly: light greenish-blue coloration", + "breast: vivid red plumage", + "crown: red feathers extending to neck", + "forehead: bright red with slight green feathers", + "eyes: dark with white eye-ring", + "legs: gray with strong feet and sharp claws", + "wings: mixture of green, blue, and red feathers", + "nape: red with transition to green along the back", + "tail: long, green with blue feather tips", + "throat: red with green feathers on sides" + ], + "moluccan megapode": [ + "back: brownish-black feathers with a pattern", + "beak: robust, short, and slightly curved", + "belly: pale brown feathers with black barring", + "breast: reddish-brown, fading to lighter shades downwards", + "crown: dark brown feathers blending into the nape", + "forehead: lighter brown feathers transitioning to the crown", + "eyes: dark, small, and slightly recessed", + "legs: long, grey, powerful limbs with strong claws", + "wings: brown with black and white speckles, rounded shape", + "nape: dark brown, continuous with the crown", + "tail: long, wide, fan-shaped with dark brown and white feathers", + "throat: paler than the breast, light brown with black barring" + ], + "moluccan owlet nightjar": [ + "back: reddish-brown with blackish markings", + "beak: short, hooked, blackish-brown", + "belly: buffy with brownish bars", + "breast: pale grayish-brown with blackish streaks", + "crown: mottled brown and buffy", + "forehead: pale grayish-brown with faint streaks", + "eyes: large, dark, framed by white patches", + "legs: feathered, pale grayish-brown", + "wings: reddish-brown with blackish markings and white patches", + "nape: mottled brown and buffy-gray", + "tail: long, brownish with white-tipped feathers", + "throat: pale grayish-brown with indistinct blackish streaks" + ], + "moluccan scops owl": [ + "back: tawny-brown with fine black streaks", + "beak: small, sharp, and grayish-black", + "belly: buff-white with light brown streaks", + "breast: pale, buff-white with darker markings", + "crown: tawny-brown with small black markings", + "forehead: lighter tawny-brown with faint streaks", + "eyes: large, bright yellow, and forward-facing", + "legs: feathered, off-white with black spots", + "wings: mottled brown and buff with faint barring", + "nape: tawny-brown with black streaks and feather tufts", + "tail: brownish-gray with faint barring", + "throat: pale with thin, dark streaks" + ], + "moluccan starling": [ + "back: sleek, light brown feathers", + "beak: strong, dark in color, slightly curved", + "belly: fluffy, light-colored feathers", + "breast: soft, mix of white and light brown feathers", + "crown: smooth feathers, slightly darker shade of brown", + "forehead: light brown, feathers blend with crown", + "eyes: small, black, keen gaze", + "legs: thin, grayish-brown, with scaly texture", + "wings: long and narrow, brownish color with white tips", + "nape: lighter shade of brown, contrasts with back", + "tail: long, slender, dark-tipped brown feathers", + "throat: lighter, off-white feathers, blending into breast" + ], + "moluccan woodcock": [ + "back: reddish-brown feathers with black speckles", + "beak: long, straight, and slender in a grayish-brown color", + "belly: light brown with some dark brown speckles", + "breast: pale reddish-brown with darker speckles", + "crown: reddish-brown with black streaks", + "forehead: light reddish-brown with darker speckles", + "eyes: small and black, surrounded by light brown feathers", + "legs: short and sturdy with shades of pink and gray", + "wings: reddish-brown with black speckles and white tips on some feathers", + "nape: reddish-brown with black streaks", + "tail: short and rounded, reddish-brown with black speckles", + "throat: pale reddish-brown with small darker speckles" + ], + "mombasa woodpecker": [ + "back: striking black and white bars", + "beak: long, chisel-like, and sharp", + "belly: creamy white with black spots", + "breast: white with black streaks", + "crown: vivid red feathers", + "forehead: white plumage with fine black bars", + "eyes: dark and piercing with a white eye-ring", + "legs: sturdy and gray", + "wings: black with white patches and spots", + "nape: barred black and white feathers", + "tail: stiff, black feathers with white bars", + "throat: white feathers with black streaks" + ], + "mongolian accentor": [ + "back: brownish-grey feathers", + "beak: short and dark", + "belly: pale-streaked grayish-brown", + "breast: pale gray with brown streaks", + "crown: rusty-brown with gray streaks", + "forehead: grayish-brown fading to pale", + "eyes: small, round, and dark", + "legs: slender and dark", + "wings: brownish-grey with white streaks", + "nape: grayish-brown transitioning to rusty-brown", + "tail: long and brown with white outer feathers", + "throat: pale gray, unmarked" + ], + "mongolian finch": [ + "back: earthy brown feathers", + "beak: small and conical, pale pink", + "belly: creamy white underbelly", + "breast: light beige feathers", + "crown: distinct brown and white streaks", + "forehead: white feathers with brown streaks", + "eyes: round, dark, and expressive", + "legs: sturdy and pinkish-brown", + "wings: brown with white streaks, tapering tips", + "nape: brown with light streaks", + "tail: dark brown, slightly forked", + "throat: soft white feathers" + ], + "mongolian ground jay": [ + "back: brownish-grey feathers", + "beak: black, strong, and slightly curved", + "belly: white with gray streaks", + "breast: grayish-white feathers", + "crown: pale gray with black streaks", + "forehead: whitish-gray with black streaks", + "eyes: black and round, surrounded by white feathers", + "legs: grayish-brown, sturdy and slender", + "wings: brownish-gray with white tips", + "nape: gray with a black streak", + "tail: long, blue-gray with white tip", + "throat: white and unstreaked" + ], + "mongolian lark": [ + "back: reddish-brown with dark streaks", + "beak: short, stout, and pale yellow", + "belly: white with light streaks", + "breast: buff-colored with dark streaks", + "crown: reddish-brown with faint streaks", + "forehead: pale buff with light streaks", + "eyes: small, round, and dark", + "legs: pinkish-brown and slender", + "wings: reddish-brown with faint markings", + "nape: reddish-brown with subtle streaks", + "tail: long, dark, and slightly forked", + "throat: pale buff with light striations" + ], + "mongolian short toed lark": [ + "back: light brown with dark streaks", + "beak: short and pointed, pale pinkish-brown", + "belly: off-white with faint brown markings", + "breast: pale brownish-grey with darker streaks", + "crown: light brown with dark streaks, slightly raised", + "forehead: pale brownish-grey, smooth", + "eyes: small and round, dark brown", + "legs: slender and pale pinkish-brown", + "wings: light brown with dark streaks, rounded tips", + "nape: light brown with dark streaks, connects to crown", + "tail: short and fan-shaped, brown with white outer feathers", + "throat: pale brownish-grey, unmarked" + ], + "monotonous lark": [ + "back: soft, subtle brown feathers", + "beak: slender, pointed, pale in color", + "belly: light beige with faint streaks", + "breast: buff colored, understated hues", + "crown: subdued brown with fine streaks", + "forehead: pale, blending into crown", + "eyes: small, dark, and alert", + "legs: thin, twig-like, pale brown", + "wings: elongated, brown with hints of white", + "nape: smooth, brown, flowing to back", + "tail: brown, slightly forked with white edges", + "throat: faintly streaked, pale, blending into breast" + ], + "montagu harrier": [ + "back: pale grey with dark streaks", + "beak: sharp, slender, black", + "belly: white with dark streaks", + "breast: white with grey patches", + "crown: pale grey with darker streaks", + "forehead: pale grey, blending into crown", + "eyes: yellow with dark pupil", + "legs: long, slender, yellow", + "wings: long, pointed, pale grey with dark tips", + "nape: pale grey, merging into back", + "tail: grey with black bands and white tip", + "throat: white with light grey streaks" + ], + "montane blue swallow": [ + "back: deep blue upper body with iridescent sheen", + "beak: small, black, and slender for catching insects", + "belly: light blue shading to white near the vent", + "breast: bright blue, gently blends into the belly", + "crown: glossy blue head feathers, slightly darker than the back", + "forehead: similar to the crown with deep blue iridescent feathers", + "eyes: small and dark, surrounded by blue facial plumage", + "legs: short and sturdy, with gray-black scaly texture", + "wings: iridescent deep blue with darker flight feathers", + "nape: deep blue with a metallic sheen, continues from the crown", + "tail: long and slightly forked, vivid blue with contrasting white tips", + "throat: light blue, merging softly into the breast area" + ], + "montane double collared sunbird": [ + "back: vibrant green iridescent feathers", + "beak: slender and elongated curved bill", + "belly: white to pale gray plumage", + "breast: brilliant metallic-blue or purple color", + "crown: glistening green with violet reflection", + "forehead: bright metallic-blue or purple patch", + "eyes: small, dark, and alert", + "legs: blackish, short, and strong", + "wings: dark and rounded, covered in iridescent feathers", + "nape: shining green, continuing from crown", + "tail: elongated central feathers, edged with purple or blue", + "throat: brilliant metallic-blue or purple band across neck" + ], + "montane foliage gleaner": [ + "back: olive-brown feathers blending into the forest", + "beak: short, sturdy, and curved for foraging", + "belly: pale grey for subtle camouflage", + "breast: light brown with streaks for chest support", + "crown: uncrested, covered in russet-colored feathers", + "forehead: smooth, transition from crown to eyes", + "eyes: alert and curious, black beads", + "legs: long, strong, and scaled for gripping branches", + "wings: broad and olive-brown for quick glides", + "nape: rich rufous for attractive plumage", + "tail: slim, olive-brown, ending in rounded, dark tips", + "throat: light grey-brown, complementing the belly" + ], + "montane forest screech owl": [ + "back: camouflaged brown feathers", + "beak: small, sharp, and curved", + "belly: pale with dark markings", + "breast: streaked with brown and white", + "crown: rounded with dark spots", + "forehead: light colored with brown markings", + "eyes: large, dark, and forward-facing", + "legs: short and feathered", + "wings: mottled brown with white spots", + "nape: brown with darker streaks", + "tail: striped with dark bands", + "throat: light with faint brown streaks" + ], + "montane nightjar": [ + "back: light brown with dark streaks", + "beak: short and pointed, grayish-black", + "belly: whitish-gray with brown spots", + "breast: warm brown with black streaks", + "crown: gray-brown with faint streaks", + "forehead: pale gray with brown streaks", + "eyes: large and dark, surrounded by a white ring", + "legs: short and feathered, gray-brown", + "wings: long and pointed, brown with white bars and spots", + "nape: gray-brown with dark streaks", + "tail: finely barred brown and white, with broad white spots", + "throat: white or pale gray with dark brown streaks" + ], + "montane woodcreeper": [ + "back: rich brown with intricate patterns", + "beak: elongated, slightly curved", + "belly: creamy-white with fine streaks", + "breast: chestnut-brown with subtle markings", + "crown: dark brown with lighter streaks", + "forehead: lighter brown with fine lines", + "eyes: dark, round with a white eyering", + "legs: sturdy, pale pinkish-grey", + "wings: brown with bold barring", + "nape: lighter brown with delicate streaks", + "tail: long, stiff, and brownish-black with narrow bands", + "throat: pale off-white with very light streaks" + ], + "monte yellow finch": [ + "back: golden-olive hue", + "beak: short and conical", + "belly: pale yellow shade", + "breast: vibrant yellow plumage", + "crown: orange-yellow streaks", + "forehead: bright yellow feathers", + "eyes: dark and round with a white eye-ring", + "legs: pale pink and slender", + "wings: dark gray with white bars", + "nape: olive-greenish tint", + "tail: black with white patches", + "throat: golden-yellow color" + ], + "monteiro bushshrike": [ + "back: olive-green with slight brownish tinge", + "beak: strong, hooked, blackish-brown", + "belly: white with faint black streaks", + "breast: bold black streaks on white background", + "crown: light gray, slightly raised crest", + "forehead: whitish-gray blending into crown", + "eyes: dark brown with pale eye-ring", + "legs: long, grayish-blue", + "wings: olive-green with black flight feathers and white wing bars", + "nape: light gray, continuation of crown", + "tail: long, olive-green with black outer feathers and white tips", + "throat: white with fine black streaks" + ], + "monteiro hornbill": [ + "back: dark plumage with glossy shades", + "beak: long, curved yellow with black accents", + "belly: white or light gray feathers", + "breast: white or light gray plumage", + "crown: solid black feathers with a slight crest", + "forehead: black with reddish facial skin", + "eyes: dark, surrounded by red orbital skin", + "legs: dark gray to black, scaly", + "wings: long, strong with dark primary feathers", + "nape: black with subtle green iridescence", + "tail: long, dark feathers with white tips", + "throat: red facial skin accented with white or light gray feathers" + ], + "monteiro storm petrel": [ + "back: slate gray with white streaks", + "beak: short, needle-like, black in color", + "belly: white and smooth", + "breast: white with gray edges", + "crown: black to dark gray", + "forehead: dark gray with white streaks", + "eyes: small and black, surrounded by white feathers", + "legs: short and dark, webbed feet", + "wings: long and slender, black with white markings", + "nape: gray with white streaks", + "tail: slightly forked, black feathers", + "throat: white and clean" + ], + "montezuma oropendola": [ + "back: golden-brown to chestnut hue", + "beak: long, pointed, yellow-orange tip", + "belly: bright yellow and rich brown feathers", + "breast: vibrant yellow, contrasts with darker feathers", + "crown: dark brown, smoothly rounded", + "forehead: bare, bright blue, waxy skin patch", + "eyes: dark, small, intent gaze", + "legs: solid, grey-black, strong", + "wings: golden-brown and chestnut with distinctive flight feathers", + "nape: iridescent blue-black and glossy", + "tail: long, pendulous, dark feathers with a hanging curl", + "throat: bright yellow, expansive and vivid" + ], + "montezuma quail": [ + "back: brownish-grey with intricate white markings", + "beak: short, dark, and stout", + "belly: rufous with bold white spots", + "breast: chestnut-colored with broad white bars", + "crown: rufous with black and white speckles", + "forehead: black with a white stripe", + "eyes: dark, small, and alert", + "legs: feathered with long, strong toes", + "wings: rounded, with alternating brown, black, and white bands", + "nape: chestnut with thick white streaks", + "tail: short, with dark brown and white bars", + "throat: white and black, forming a striped pattern" + ], + "montserrat oriole": [ + "back: black feathers with olive tinge", + "beak: slender, curved, black", + "belly: white to yellowish-white", + "breast: white with black side streaks", + "crown: black, slightly crested", + "forehead: black feathers", + "eyes: dark brown, black eye-ring", + "legs: grey, strong", + "wings: black feathers, olive-green secondary feathers", + "nape: black, olive-green tinge", + "tail: long, black, greenish undertail coverts", + "throat: white, black-bordered" + ], + "moorland chat": [ + "back: brownish-black with subtle streaks", + "beak: slender, black, and curved downwards", + "belly: soft light grey or cream tone", + "breast: pale grey-brown with fine streaks", + "crown: dark brown with smooth feathers", + "forehead: slightly lighter brown than crown", + "eyes: dark, round, and expressive surrounded by a white eyering", + "legs: long, strong, and dark grey to black", + "wings: brownish-black with white edges on flight feathers", + "nape: brown to match the crown and back", + "tail: dark brownish-black with white outer feathers", + "throat: light grey, blending with breast color" + ], + "moorland francolin": [ + "back: spotted brown and black pattern", + "beak: short and stout, pale grayish color", + "belly: white with black spotted patterns", + "breast: creamy white with dark horizontal stripes", + "crown: dark brown with faint streaks", + "forehead: reddish-brown, blending with crown", + "eyes: dark brown with white eyelid edges", + "legs: strong and feathered, reddish-brown color", + "wings: brown and black streaks with white spots", + "nape: mottled brown and black, blending with back", + "tail: medium length, brown with black barring and white tips", + "throat: creamy white with dark streaks" + ], + "moreau sunbird": [ + "back: vibrant green iridescent feathers", + "beak: long, slender, curved black bill", + "belly: white to light yellow soft feathers", + "breast: shimmering orange to purple plumage", + "crown: bright glossy-blue feathers", + "forehead: prominent metallic blue shine", + "eyes: small, dark, and alert", + "legs: thin, dark, with sharp claws", + "wings: iridescent blue-green with black edges", + "nape: transitioning green-blue gradient", + "tail: elongated, dark forked central feathers", + "throat: brilliant orange-red with purplish tinge" + ], + "morelet seedeater": [ + "back: olive-green upper body", + "beak: short, conical, pale gray", + "belly: pale yellow underside", + "breast: olive-yellow chest", + "crown: plain olive-green head", + "forehead: unmarked, olive-green", + "eyes: small, dark, with faint pale eyering", + "legs: slender, dull pink", + "wings: olive-green with fine streaks", + "nape: olive-green, no markings", + "tail: short, rounded, olive-green", + "throat: pale yellow, unmarked" + ], + "morepork": [ + "back: dark brown with prominent white spots", + "beak: short, sharp, and hooked", + "belly: pale with dark brown streaks", + "breast: light brown with dark brown markings", + "crown: dark brown with a distinct pattern", + "forehead: slightly lighter brown than the crown", + "eyes: strikingly large, yellow, and glowing", + "legs: feathered, long, and strong", + "wings: broad and rounded with dark brown patterns", + "nape: dark brown with contrasting white spots", + "tail: dark brown with white bands", + "throat: light brown with dark brown streaks" + ], + "morningbird": [ + "back: sleek and smooth feathers", + "beak: sharp, pointy for capturing insects", + "belly: soft, light underside", + "breast: rounded, puffed chest area", + "crown: slight crest on top of head", + "forehead: smooth, usually lighter in color", + "eyes: bright, alert, and intelligent", + "legs: thin, strong, and adapted for perching", + "wings: elongated, swift for rapid flight", + "nape: where neck and head meet, often different coloration", + "tail: long and thin, for steering and balance", + "throat: often features distinguishing markings or colors" + ], + "morotai friarbird": [ + "back: olive-brown with a subtle sheen", + "beak: long and hooked, dark grey color", + "belly: pale grey with soft streaks", + "breast: light grey with a faint olive tint", + "crown: dark grey with a raised crest", + "forehead: slightly paler grey than the crown", + "eyes: dark and round, surrounded by light grey feathers", + "legs: sturdy and relatively long, dark grey color", + "wings: olive-brown with darker tips on the feathers", + "nape: dark grey blending into the back's color", + "tail: long and broad, olive-brown with darker tips", + "throat: pale grey with subtle streaks" + ], + "morrison fulvetta": [ + "back: olive-green feathers", + "beak: short and pointed, dark gray color", + "belly: light grayish-brown underparts", + "breast: pale gray feathers", + "crown: olive-green feathers with faint crest", + "forehead: light gray to white coloring", + "eyes: dark, round, and alert", + "legs: grayish-pink, slender legs", + "wings: olive-green feathers with darker flight feathers", + "nape: olive-green, matches the back", + "tail: long and olive-green, slightly notched", + "throat: pale gray with a hint of yellow" + ], + "moseley rockhopper penguin": [ + "back: sleek, dark-blue feathers", + "beak: strong, slightly curved, orange", + "belly: soft, white feathers", + "breast: plump, white plumage", + "crown: striking, yellow crest", + "forehead: dark blue feathers, meeting crest", + "eyes: round, dark, expressive", + "legs: short, strong, orange", + "wings: elongated flippers, dark-blue", + "nape: dark-blue feathers, continuing from back", + "tail: short, stiff, dark-blue feathers", + "throat: white feathers, blending to breast" + ], + "mosque swallow": [ + "back: sleek, blue-green feathers", + "beak: short, sharp, black", + "belly: creamy-white color", + "breast: light brownish-grey", + "crown: glossy blue-green", + "forehead: smooth, light-colored", + "eyes: small, black, alert", + "legs: thin, black, agile", + "wings: long, pointed, swift", + "nape: shiny, iridescent blue-green", + "tail: forked, elongated, streamer-like", + "throat: creamy-white, unmarked" + ], + "moss backed sparrow": [ + "back: mossy green feathered exterior", + "beak: small, pointed, and brownish", + "belly: cream-colored with faint streaks", + "breast: light beige with spotted patterns", + "crown: greenish-brown fading to grey", + "forehead: smooth grey transition", + "eyes: small, dark, and alert", + "legs: slim and brown, with sharp claws", + "wings: mossy green with streaks of brown", + "nape: greyish-brown with a collar-like appearance", + "tail: long and narrow with green and brown feathers", + "throat: soft beige, curving towards the breast" + ], + "moss backed tanager": [ + "back: vibrant green moss-like feathers", + "beak: short and sharp black cone", + "belly: pale yellow with faint streaks", + "breast: bright yellowish-green plumage", + "crown: deep-green feathers with a slight sheen", + "forehead: forest green fading into the crown", + "eyes: small, round, and dark, surrounded by thin white eyering", + "legs: slender greyish-blue with strong grip", + "wings: iridescent blue-green feathers with black edges", + "nape: intense green fading into the back", + "tail: elongated and forked, shining blue-green", + "throat: bright yellow, contrasting with the green neck" + ], + "mossy nest swiftlet": [ + "back: mossy green feathers", + "beak: small and pointy", + "belly: light cream coloring", + "breast: slightly puffed, off-white", + "crown: forest green with subtle patterns", + "forehead: gradual blend of green and cream", + "eyes: black beady eyes", + "legs: thin and light grey", + "wings: elongated green feathers with sharp edges", + "nape: subtle transition from green to cream", + "tail: short, mossy-tinged fan", + "throat: off-white blending into the belly" + ], + "mottle backed elaenia": [ + "back: mottled olive-brown with light streaks", + "beak: short, thin, and pointed", + "belly: pale yellowish-white", + "breast: light olive-green with subtle mottling", + "crown: olive-brown with faint crest", + "forehead: pale olive-green", + "eyes: dark, round, with white eye-ring", + "legs: slender, greyish-brown", + "wings: olive-green with faint wing-bars", + "nape: mottled olive-brown", + "tail: long, olive-brown with faint tinge", + "throat: pale yellowish-white" + ], + "mottle cheeked tyrannulet": [ + "back: brownish-grey, streaked with black", + "beak: small, slender, dark grey", + "belly: off-white, slightly streaked", + "breast: buff-yellow, faintly streaked", + "crown: olive-grey with small crest", + "forehead: pale grey, minimal markings", + "eyes: medium-sized, dark", + "legs: short, strong, greyish", + "wings: dark, decorated with two whitish wing bars", + "nape: greyish-brown, lightly streaked", + "tail: longish, dark, with off-white outer feathers", + "throat: white, with mottled dark markings" + ], + "mottled berryhunter": [ + "back: olive-green with fine dark streaks", + "beak: sturdy, dark grey curved beak", + "belly: soft white with faint grey barring", + "breast: pale grey with dark grey mottling", + "crown: olive-green, subtly streaked", + "forehead: light grey with olive tinged", + "eyes: dark brown with grey eye-ring", + "legs: long, dark grey legs and feet", + "wings: greenish-grey with faint dark barring", + "nape: olive-green, streaked with fine lines", + "tail: olive-grey, faintly barred and tapered", + "throat: light grey with subtle dark barring" + ], + "mottled flowerpecker": [ + "back: greenish-brown with subtle streaks", + "beak: short, curved, and black", + "belly: pale and slightly speckled", + "breast: slightly darker and more speckled than belly", + "crown: brownish-green with faint streaks", + "forehead: light greenish-brown", + "eyes: small and black, surrounded by a faint eye-ring", + "legs: thin and pale gray", + "wings: greenish-brown with slight barring on flight feathers", + "nape: similar to crown with faint streaks", + "tail: short and squared, with greenish-brown feathers and white tips", + "throat: pale with a hint of speckling" + ], + "mottled honeyeater": [ + "back: patterned gray and brown feathers", + "beak: long, slender, and slightly curved", + "belly: pale cream-colored feathers", + "breast: light brown with a faint pattern", + "crown: dark brown with light streaks", + "forehead: blended mix of brown and gray", + "eyes: sharp and inquisitive", + "legs: strong and thin, pale brown", + "wings: gray-brown with subtle mottled pattern", + "nape: light brown with gray streaks", + "tail: fan-shaped, gray-brown feathers", + "throat: soft cream with light streaks" + ], + "mottled munia": [ + "back: olive-brown with black streaks", + "beak: short, conical, and silver-blue", + "belly: pale, off-white with small brown spots", + "breast: cream-colored with brown speckles", + "crown: dark brown fading to lighter shades", + "forehead: dark brown with a slight curve", + "eyes: small, black, and expressive", + "legs: slender, grayish-pink with scaly texture", + "wings: dark brown with white patches and fine streaks", + "nape: olive-brown with black-tinged feathers", + "tail: short, black with subtle white edges", + "throat: creamy white with light speckling" + ], + "mottled owl": [ + "back: mottled brown and black feathers", + "beak: sharp, grayish-black hooked beak", + "belly: creamy-white with streaks of brown", + "breast: predominantly rusty-brown with white bars", + "crown: dark-streaked and spotted feathers", + "forehead: lighter brown with fine mottling", + "eyes: large, dark brown, and forward-facing", + "legs: feathered, with dark, sharp talons", + "wings: brown with white and black spots, rounded tips", + "nape: mottled brown with hints of white", + "tail: long, brown, banded with lighter streaks", + "throat: white with brown speckles" + ], + "mottled petrel": [ + "back: mottled grey-brown with white markings", + "beak: pointed, dark-grey, and slightly hooked", + "belly: white with scattered dark mottled spots", + "breast: white with grey-brown speckles and streaks", + "crown: dark grey-brown with a white eyestripe", + "forehead: mottled grey-brown with white speckles", + "eyes: black with a prominent white eyering", + "legs: short, dark grey-brown, and feathered", + "wings: long, narrow, and grey-brown with white markings", + "nape: mottled grey-brown with a white collar", + "tail: wedge-shaped, grey-brown with white tips", + "throat: white with light grey-brown mottling" + ], + "mottled piculet": [ + "back: olive-green with fine white speckles", + "beak: straight, slender, and sharp", + "belly: pale yellow with fine brown streaks", + "breast: whitish-yellow with brownish spots", + "crown: olive-brown with lighter streaks", + "forehead: pale olive-yellow with brown flecks", + "eyes: dark and beady, encircled with white rings", + "legs: short and pale gray", + "wings: olive-brown with white streaks and spots", + "nape: olive green with lighter speckling", + "tail: short and olive-brown with white spots", + "throat: soft white with faint gray streaks" + ], + "mottled spinetail": [ + "back: mottled brown and white feathers", + "beak: short, pointed, dark gray", + "belly: light gray with speckled markings", + "breast: pale gray with mottled feathers", + "crown: dark brown with white speckles", + "forehead: light brown with mottled pattern", + "eyes: small, dark, surrounded by white markings", + "legs: short, gray, scaly", + "wings: brown with light mottling and white-tipped feathers", + "nape: brown with white mottled markings", + "tail: long, white-tipped, with mottled brown feathers", + "throat: light gray with faint speckles" + ], + "mottled swift": [ + "back: mottled brown and gray feathers", + "beak: short, sharp, and black", + "belly: light gray with faint spots", + "breast: pale gray with darker speckles", + "crown: dark gray-brown with a mottled pattern", + "forehead: light gray blending into the crown", + "eyes: small and black, surrounded by gray feathers", + "legs: short and thin with black talons", + "wings: long and slender with mottled gray-brown feathers", + "nape: gray feathers, slightly lighter than the crown", + "tail: short, squared-off, and gray-brown with faint barring", + "throat: pale gray, blending into the breast" + ], + "mottled wood owl": [ + "back: brownish-gray feathers with white speckling", + "beak: sharp, black curved hook", + "belly: creamy-white with dark gray spots", + "breast: mottled brown and white feathers", + "crown: grayish-brown with white streaks", + "forehead: speckled white and gray feathers", + "eyes: large, dark brown with orange-tinged rims", + "legs: feathered, strong, and grayish-brown", + "wings: broad, brownish-gray with fine white mottling", + "nape: grayish-brown, speckled with white stripes", + "tail: brown with faint white bands and bars", + "throat: creamy-white with grayish-brown mottling" + ], + "mount kupe bushshrike": [ + "back: vibrant green with black streaks", + "beak: short and hooked, pale gray", + "belly: bright yellow with black streaks", + "breast: striking golden-yellow", + "crown: deep green and slightly raised", + "forehead: green and unmarked", + "eyes: large and black with a white eye-ring", + "legs: strong and gray", + "wings: vivid green with black flight feathers", + "nape: rich green with black markings", + "tail: long and tipped with white", + "throat: bright yellow and unmarked" + ], + "mount victoria babax": [ + "back: olive-brown feathers", + "beak: strong, slightly curved", + "belly: buff-yellow underparts", + "breast: rufous coloration", + "crown: grayish-brown crest", + "forehead: dark brown", + "eyes: black, beady", + "legs: long, dark gray", + "wings: olive-brown, streaked", + "nape: yellowish-brown", + "tail: long, brownish-gray", + "throat: rufous-brown, streaked" + ], + "mountain avocetbill": [ + "back: sleek and brownish-black", + "beak: long, slender, and upturned", + "belly: light gray with faint streaks", + "breast: pale gray and smooth", + "crown: black with gray edges", + "forehead: white with fine black markings", + "eyes: small, dark, and alert", + "legs: long, thin, and light gray", + "wings: black with white patch in the middle", + "nape: gray with slight black streaking", + "tail: black with white outer edges", + "throat: white, leading into the breast area" + ], + "mountain bamboo partridge": [ + "back: olive-brown with black and white feather markings", + "beak: short, stout, and grayish", + "belly: gray with orange-rust streaks and white bars", + "breast: pale gray with black and white feather tips", + "crown: bluish-gray feathers with a rusty nape line", + "forehead: bluish-gray and slightly feathered", + "eyes: dark brown surrounded by white eye-ring", + "legs: feathered, gray in color, with strong toes", + "wings: olive-brown with reddish-brown and white feather patterns", + "nape: rusty color with white streaks and black feather markings", + "tail: short, dark brown with reddish-brown and white bands", + "throat: white with black bordered feathers" + ], + "mountain barbet": [ + "back: vibrant green feathers", + "beak: yellow and stout", + "belly: mixture of green and yellow plumage", + "breast: light green, blending with yellow", + "crown: reddish-orange patch", + "forehead: slightly smaller reddish-orange patch", + "eyes: black with yellow eye-ring", + "legs: blue-gray and strong", + "wings: green with flight feathers tipped in blue", + "nape: green with slight yellow undertones", + "tail: green feathers with blue tips", + "throat: bright yellow to contrast green plumage" + ], + "mountain black eye": [ + "back: dark olive-green feathers", + "beak: short, sharp, and black", + "belly: light grey with black streaks", + "breast: greyish-white feathers", + "crown: glossy black with a hint of purple", + "forehead: shiny black feathers", + "eyes: bright yellow with black ring", + "legs: grey and sturdy, with sharp claws", + "wings: dark olive-green and elongated", + "nape: black transitioning to olive-green", + "tail: long and dark with white fringes", + "throat: greyish-white plumage" + ], + "mountain bulbul": [ + "back: greenish-olive with black streaks", + "beak: short and powerful, blackish-grey", + "belly: whitish-grey with black streaks", + "breast: light grey with darker streaks", + "crown: olive-green with a spiky crest", + "forehead: pale yellowish-green", + "eyes: dark brown surrounded by pale greyish eye-ring", + "legs: strong, greyish with sharp claws", + "wings: olive-green with blackish flight feathers", + "nape: greenish-olive, blending with the crown", + "tail: long and pointed, olive-green with blackish tips", + "throat: whitish-grey with fine black streaks" + ], + "mountain buzzard": [ + "back: brownish-grey plumage with light streaks", + "beak: sharp, hooked, greyish-black", + "belly: white with dark brownish-grey spots", + "breast: cream-colored with dark brownish-grey streaks", + "crown: dark brownish-grey with light streaks", + "forehead: light brownish-grey", + "eyes: dark brown, sharp gaze", + "legs: yellowish, strong, with sharp talons", + "wings: broad, brownish-grey with white underparts", + "nape: brownish-grey with white streaks", + "tail: brownish-grey with dark bands across feathers", + "throat: white with dark spots" + ], + "mountain cacique": [ + "back: shiny black feathers with iridescent green and blue sheen", + "beak: straight, pointed, and black", + "belly: smooth dark feathers with slight green sheen", + "breast: glossy black plumage with hints of iridescence", + "crown: sleek black feathers with metallic sheen", + "forehead: smooth black feathers blending into crown", + "eyes: small, sharp, black eyes with a white ocular ring", + "legs: strong, black legs with well-defined talons", + "wings: long, glossy black with blue and green iridescence", + "nape: smooth and black, connecting crown to back", + "tail: long, jet black feathers with iridescent green highlights", + "throat: black and glossy, leading to breast plumage" + ], + "mountain caracara": [ + "back: dark brown feathers with a slight green sheen", + "beak: black, powerful hooked tip", + "belly: white with brownish-black bands", + "breast: white with brown spots", + "crown: black with a white band at the back", + "forehead: black with a white streak near the eyes", + "eyes: dark brown with yellow eye-ring", + "legs: yellow, strong, and scaled", + "wings: black with white patches and streaks", + "nape: black with a white band at the base of the neck", + "tail: long and black with white barring", + "throat: white with sparse brown spots" + ], + "mountain chiffchaff": [ + "back: olive-green, narrow streaks", + "beak: small, pointed, blackish", + "belly: off-white, slightly streaked", + "breast: pale yellow, indistinct streaks", + "crown: olive-green, smooth", + "forehead: olive-green, narrow streaks", + "eyes: dark, with thin, white eyering", + "legs: pinkish or yellowish, slender", + "wings: olive-green, edged with pale buff, prominent wing bars", + "nape: olive-green, narrow streaks", + "tail: olive-green, edged with pale buff, slightly forked", + "throat: off-white, mottled slightly with olive-green" + ], + "mountain elaenia": [ + "back: olive-green plumage", + "beak: thin and pointed", + "belly: pale yellow hue", + "breast: light olive-green coloring", + "crown: grayish crown with a white central stripe", + "forehead: white eyebrow stripe", + "eyes: dark with a white eye-ring", + "legs: long and slender", + "wings: olive-green with two white wing bars", + "nape: olive-green covering", + "tail: olive-green with white outer feathers", + "throat: pale yellowish-white coloration" + ], + "mountain firetail": [ + "back: reddish-brown with dark streaks", + "beak: short, conical, grayish-blue", + "belly: white with dark spots", + "breast: vibrant scarlet patch", + "crown: black with white streaks", + "forehead: black with white spots", + "eyes: small, dark with white eye-ring", + "legs: slender, grayish-blue", + "wings: dark with pale-edged feathers", + "nape: black with white markings", + "tail: long, dark, white-tipped", + "throat: black with white streaks" + ], + "mountain fulvetta": [ + "back: olive-brown feathers covering the upper body", + "beak: small, sharp, and greyish-blue", + "belly: dull white plumage with pale grey undertones", + "breast: light grey feathers transitioning from the throat", + "crown: dark grey with a subtle crest", + "forehead: slightly lighter grey blending into the crown", + "eyes: small, round, and dark in color", + "legs: slender, featherless, and greyish-blue", + "wings: olive-brown with faint bars in the flight feathers", + "nape: olive-brown, continuing from the back", + "tail: long, olive-brown feathers with a slight notch at the tip", + "throat: pale grey, fading into the breast area" + ], + "mountain grackle": [ + "back: glossy green-black feathers", + "beak: sturdy black, conical shape", + "belly: iridescent purple-black hue", + "breast: deep violet-black plumage", + "crown: glossy black with green sheen", + "forehead: smooth black-green transitioning", + "eyes: dark, piercing gaze", + "legs: strong, black bird legs", + "wings: black feathers with iridescent sheen", + "nape: striking black-green gradient", + "tail: long, forked black feathers", + "throat: dark black-purple hue" + ], + "mountain gray woodpecker": [ + "back: grayish-brown with distinct vertical streaks", + "beak: strong, chisel-like, and dark in color", + "belly: creamy white with brown streaks", + "breast: cream-colored with vertical black lines", + "crown: red with a black border", + "forehead: white and black markings", + "eyes: dark and surrounded by white", + "legs: grayish-blue with strong, sharp claws", + "wings: dark gray with noticeable white spots", + "nape: white with black markings", + "tail: black with white outer tail feathers", + "throat: cream-colored with black streaks" + ], + "mountain hawk eagle": [ + "back: dark brown feathers with white streaks", + "beak: large, dark, and sharply hooked", + "belly: white with variable black streaks", + "breast: white to pale brown, streaked with black", + "crown: dark brown, distinct crest", + "forehead: flattened, pale brown", + "eyes: piercing yellow or yellow-orange", + "legs: yellow, powerful with sharp talons", + "wings: long, broad, and rounded, brown with white patches", + "nape: dark brown with white streaks", + "tail: brown with black barring, white patches near the tips", + "throat: white or pale brown, streaked with black" + ], + "mountain honeyeater": [ + "back: vibrant olive-green hue", + "beak: slender, black, and slightly curved", + "belly: contrasting gray-white color", + "breast: pale white with a hint of yellow", + "crown: olive-green with a grey stripe", + "forehead: rich orange-yellow patch", + "eyes: small, round, and dark", + "legs: thin, strong, and black", + "wings: olive-green with black flight feathers", + "nape: grayish-green base with a distinct yellow stripe", + "tail: long, dark feathers with green edges", + "throat: white with subtle yellow markings" + ], + "mountain illadopsis": [ + "back: brownish-grey feathers", + "beak: short and strong", + "belly: white with brown streaks", + "breast: white with brown streaks", + "crown: dark brown", + "forehead: pale buff", + "eyes: dark with white eyering", + "legs: sturdy and grey", + "wings: dark brown with bold white spots", + "nape: brownish-grey", + "tail: dark brown, slightly pointed", + "throat: white with brown streaks" + ], + "mountain imperial pigeon": [ + "back: dark bluish-grey feathers with streaks of silvery highlights", + "beak: short, stout, and whitish-grey", + "belly: pale bluish-grey with a slight sheen", + "breast: pale mauve-grey with a hint of pink", + "crown: dark bluish-grey feathers, blending to silvery on the forehead", + "forehead: smooth, silvery-grey feathers", + "eyes: dark, rounded eyes with a white eye-ring", + "legs: short, strong, and reddish-orange", + "wings: broad and rounded, with blue-grey plumage", + "nape: dark bluish-grey feathers, blending to a lighter silver-grey", + "tail: relatively long and blue-grey, with darker tips and central feathers", + "throat: pale, pearly-grey with a sheen" + ], + "mountain kingfisher": [ + "back: vibrant blue feathers", + "beak: long, sharp, and black", + "belly: soft white plumage", + "breast: bright orange feathers", + "crown: iridescent blue-green", + "forehead: deep blue with green shimmer", + "eyes: black and piercing", + "legs: short and sturdy, dark gray", + "wings: striking blue with white markings", + "nape: blue-green iridescent plumage", + "tail: long, blue feathers with white tips", + "throat: fiery orange feathers" + ], + "mountain leaf warbler": [ + "back: olive-green with short feathers", + "beak: thin and pointed for insect-catching", + "belly: pale yellow for camouflage", + "breast: light-yellow with faint streaks", + "crown: olive-green and smooth", + "forehead: brighter green for visibility", + "eyes: round and black for clear vision", + "legs: slender and beige for tree-perching", + "wings: greenish-brown with white bars for agile flight", + "nape: olive-green blending with the back", + "tail: greenish-brown with white tips for maneuverability", + "throat: pale yellow for a contrasting pattern" + ], + "mountain mouse warbler": [ + "back: brownish-grey, small feathers", + "beak: thin, sharp, black", + "belly: cream-colored, fluffy", + "breast: light brown, speckled", + "crown: streaked brown, prominent", + "forehead: lighter brown, thin feathers", + "eyes: small, dark, alert", + "legs: slender, greyish-brown", + "wings: brown, barred with white", + "nape: brownish-grey, blending with back", + "tail: long, brown, slightly notched", + "throat: pale grey, slightly lighter than belly" + ], + "mountain owlet nightjar": [ + "back: feathered with mottled brown and gray patterns", + "beak: small, black, hooked tip", + "belly: soft, buff-colored with gray and brown markings", + "breast: pale gray with darker gray streaks and spots", + "crown: blended brown-gray with pale streaks", + "forehead: lighter gray-brown with faint streaks", + "eyes: large, dark, with a wide-open appearance", + "legs: short, feathered to the toes, pale brownish-gray", + "wings: long, rounded with brown and gray patterns", + "nape: dark gray-brown with lighter gray streaks", + "tail: medium length, brown-gray with pale bars and a slightly rounded tip", + "throat: pale gray with faint dark markings" + ], + "mountain parakeet": [ + "back: vivid green and elongated feathers", + "beak: curved, grayish-black", + "belly: pale green with lighter feather tips", + "breast: bright green with a yellowish tinge", + "crown: turquoise blue with slight feather crest", + "forehead: vibrant blue-green", + "eyes: dark with a white eye-ring", + "legs: gray with smooth scales", + "wings: green with light blue tips on flight feathers", + "nape: turquoise transitioning to green", + "tail: long, slender and green with blue tips", + "throat: pale green with blue tint" + ], + "mountain peacock pheasant": [ + "back: vibrant green and blue iridescence", + "beak: short, curved, dark gray", + "belly: metallic green and blue feathers", + "breast: shimmering blue-green plumage", + "crown: spiky dark crest feathers", + "forehead: red facial skin, black feathers", + "eyes: dark brown with red rings", + "legs: strong, gray scaly", + "wings: mottled green, blue, and black feathers with eye detailing", + "nape: metallic blue-green feathers", + "tail: long, barred black and white feathers, curved tips", + "throat: dark black feathers, red bare skin" + ], + "mountain peltops": [ + "back: dark gray with streaks of white", + "beak: short and black", + "belly: soft grayish-white", + "breast: gray with light streaks", + "crown: black with a slight crest", + "forehead: dark gray blending into the black crown", + "eyes: small and black, surrounded by gray feathers", + "legs: slim, black, with sturdy claws", + "wings: long and dark gray, white-tipped feathers", + "nape: dark gray with narrow white streaks", + "tail: black, slightly fan-shaped, with white edges", + "throat: grayish-white, blending into the breast" + ], + "mountain pipit": [ + "back: brownish-grey feathers with streaks", + "beak: thin, pointed, dark brown", + "belly: pale, creamy-white", + "breast: lightly streaked, buff-colored", + "crown: brownish-grey with faint streaks", + "forehead: light grey-brown", + "eyes: small, dark, with a narrow white eyering", + "legs: long, slender, pale brown", + "wings: brownish-grey with lighter edging on feathers", + "nape: light brown with faint streaks", + "tail: medium length, brownish-grey, with white outer feathers", + "throat: pale, creamy-white" + ], + "mountain robin chat": [ + "back: olive-brown plumage", + "beak: strong, slightly curved, black or grey", + "belly: creamy white or orange-feathered", + "breast: prominent orange-red patch", + "crown: brownish-grey or olive-brown feathers", + "forehead: crisp white stripe above the eyes", + "eyes: dark brown or black with white eye-ring", + "legs: sturdy, long, slate grey or black", + "wings: olive-brown feathers with white edging", + "nape: greyish-brown or olive-brown coloring", + "tail: long, graduated, olive-brown and white-tipped", + "throat: pale grey or white feathers" + ], + "mountain sawwing": [ + "back: slate-gray feathers with a slight sheen", + "beak: short and black, adept for catching insects", + "belly: light grey with soft feathers", + "breast: pale grey, blending into the belly", + "crown: darker gray with subtle streaks", + "forehead: lighter gray, blending into the crown", + "eyes: small, black and alert", + "legs: thin and strong with dark grey, clawed feet", + "wings: long and pointed with well-defined feathers, dark grey", + "nape: delicately streaked with darker grey markings", + "tail: narrow and forked, dark grey with white outer feathers", + "throat: pale grey, blending into the breast" + ], + "mountain scops owl": [ + "back: grayish-brown feathers with dark streaks", + "beak: light gray, short, and sharply hooked", + "belly: light gray with dark speckles", + "breast: pale gray with dark markings", + "crown: grayish-brown with dense barring", + "forehead: light gray with lighter mark in the center", + "eyes: large, yellow-orange with black pupils", + "legs: feathered, light gray with dark speckles", + "wings: grayish-brown with white-edged dark bars", + "nape: grayish-brown with subtle barring", + "tail: grayish-brown with darker bars", + "throat: light gray with light dark barring" + ], + "mountain serin": [ + "back: olive-green with faint streaks", + "beak: short, stout, and conical", + "belly: pale yellow with subtle gray markings", + "breast: bright yellow fading to pale yellow", + "crown: yellow-green with a slight crest", + "forehead: bright yellow merging into the crown", + "eyes: small, black, and beady", + "legs: dark gray, strong and slender", + "wings: yellow-green with darker flight feathers", + "nape: olive-green blending into the back", + "tail: dark gray with a forked end", + "throat: vibrant yellow contrasting with the pale breast" + ], + "mountain serpent eagle": [ + "back: brownish-black feathers with lighter streaks", + "beak: strong, hooked, dark grey", + "belly: white with horizontal dark bands", + "breast: white with vertical dark stripes", + "crown: dark brown feathers with slight crest", + "forehead: light brown with streaks of white", + "eyes: piercing yellow with black pupils", + "legs: yellow, thick-scaled, powerful", + "wings: large, expansive, brown with lighter-edged feathers", + "nape: brown with light streaks", + "tail: long, wide, brown with dark bands", + "throat: white with vertical dark striping" + ], + "mountain shrike": [ + "back: dark grey feathers with white markings", + "beak: black, slightly hooked shape", + "belly: white, sometimes with light grey streaks", + "breast: white, with light grey streaks", + "crown: black with a distinctive white patch on the sides", + "forehead: black, fading to grey", + "eyes: dark brown, surrounded by a black mask", + "legs: black, slender and delicate", + "wings: dark grey with white streaks and patches", + "nape: dark grey with faint white streaks", + "tail: dark grey with black tips and white outer feathers", + "throat: white with light grey streaks" + ], + "mountain sunbird": [ + "back: vibrant green with iridescent sheen", + "beak: long, slender, and curved for nectar feeding", + "belly: bright orange or yellow with a metallic sheen", + "breast: shiny metallic green or blue", + "crown: glossy, iridescent emerald or violet", + "forehead: brightly colored, merging with the crown", + "eyes: small, dark, and circular", + "legs: thin, grayish, and suited for perching", + "wings: short, rounded, and greenish-purple", + "nape: smooth, radiant metallic hue", + "tail: elongated, with tapering feathers", + "throat: colorful and glossy, often violet or blue" + ], + "mountain swiftlet": [ + "back: sleek dark-colored feathers", + "beak: short and sharp, black or grey", + "belly: light grey or white plumage", + "breast: soft grey feathers", + "crown: dark, smooth feathered head", + "forehead: small and narrow, dark", + "eyes: round and black, alert gaze", + "legs: short and sturdy, black or grey", + "wings: elongated, pointed, swift in flight", + "nape: dark, smooth feathered neck", + "tail: short and slightly forked, dark", + "throat: greyish-white plumage" + ], + "mountain tailorbird": [ + "back: olive-green with light streaks", + "beak: long, slender, and curved", + "belly: pale, off-white with fine streaks", + "breast: light olive-green with streaks", + "crown: rufous-colored with a bright orange central stripe", + "forehead: light olive-green", + "eyes: small, round, and black", + "legs: pale pinkish-brown with sharp claws", + "wings: short and rounded, olive-green with darker flight feathers", + "nape: rufous-colored, blending into the back", + "tail: long, narrow, and olive-green with white tips", + "throat: white with a fine olive-green streaks" + ], + "mountain thornbill": [ + "back: deep green with delicate streaks", + "beak: long, slender, and curved", + "belly: pale beige with horizontal stripes", + "breast: vibrant yellow-orange with fine lines", + "crown: dark green with subtle white markings", + "forehead: mixture of bright blue and teal", + "eyes: small, black, and piercing gaze", + "legs: sturdy legs with sharp claws", + "wings: layered, deep green feathers with bluish-black tips", + "nape: light green transitioning to deep green", + "tail: elongated with dark blue feathers and green markings", + "throat: pale yellow with thin black lines" + ], + "mountain thrush": [ + "back: olive-brown feathers with a slight sheen", + "beak: straight, slightly curved, dark gray", + "belly: pale white or cream with brownish speckles", + "breast: creamy white with black spots and streaks", + "crown: dark brown with fine white streaks", + "forehead: white with fine brown lines", + "eyes: dark brown surrounded by white eyerings", + "legs: light grayish-brown with thin, sharp claws", + "wings: olive-brown with lighter brown wingbars", + "nape: brownish-gray with distinct white streaks", + "tail: dark brown with white tips and edges", + "throat: crisp white with fine brown streaks" + ], + "mountain trogon": [ + "back: vibrant green feathers", + "beak: short, slightly curved, black color", + "belly: crimson red plumage", + "breast: bold yellow feathers", + "crown: deep green cap-like plumage", + "forehead: bright green with thin white stripe", + "eyes: dark with white eye-ring", + "legs: short and sturdy, gray color", + "wings: green with black and white banding", + "nape: brilliant green down the neck", + "tail: iridescent green with white-tipped feathers", + "throat: golden-yellow with white stripe" + ], + "mountain velvetbreast": [ + "back: vibrant green feathers", + "beak: long, slender, and curved", + "belly: contrasting pale plumage", + "breast: deep emerald green", + "crown: iridescent green covering", + "forehead: brilliant green shine", + "eyes: dark, round, and expressive", + "legs: thin, charcoal-colored", + "wings: green with subtle hints of blue", + "nape: bright green plumage", + "tail: elongated, splayed feathers", + "throat: rich, velvety green" + ], + "mountain wagtail": [ + "back: brownish-grey with subtle streaks", + "beak: thin, straight, black", + "belly: pale yellowish-white", + "breast: off-white with spots and streaks", + "crown: brownish-grey with faint streaks", + "forehead: pale greyish-white", + "eyes: medium-sized, black, expressive", + "legs: long, thin, dark grey", + "wings: brownish-grey with dark feather tips", + "nape: brownish-grey with fine streaks", + "tail: long, dark, with outer tail feathers white-edged", + "throat: white with faint streaking" + ], + "mountain wheatear": [ + "back: pale gray with subtle black markings", + "beak: small, black, slightly curved", + "belly: clean white feathers", + "breast: white plumage with gray patches", + "crown: smooth gray feathers", + "forehead: soft pale gray", + "eyes: round and dark", + "legs: long, thin, black", + "wings: black with bold white pattern", + "nape: light gray with white streaks", + "tail: black feathers with white outer edges", + "throat: white with gray markings" + ], + "mountain wren babbler": [ + "back: olive-brown with subtle streaks", + "beak: short, curved, black", + "belly: off-white with gray-brown streaks", + "breast: pale gray with a few brown streaks", + "crown: olive-brown with slight streaking", + "forehead: slightly paler olive-brown", + "eyes: dark brown, medium-sized with white eye-ring", + "legs: pale pinkish-brown, slender", + "wings: olive-brown with faint barring", + "nape: olive-brown, well-graded with back", + "tail: olive-brown, slightly darker than wings, long and narrow", + "throat: white with gray-brown streaks" + ], + "mountain yellow warbler": [ + "back: olive-green with slightly darker streaks", + "beak: slender, pointed, blackish-brown", + "belly: bright yellow with faint streaks", + "breast: vibrant yellow with thin, dark streaks", + "crown: olive-green, blending with back", + "forehead: bright yellow, merging with crown", + "eyes: black, surrounded by faint yellow eyering", + "legs: pale pinkish-brown, slender", + "wings: olive-green with darker flight feathers and white wingbars", + "nape: olive-green, continuous with back and crown", + "tail: olive-green with slight yellow edges, slightly forked", + "throat: bright yellow, unmarked" + ], + "mourning collared dove": [ + "back: soft, greyish-brown feathers", + "beak: short, black or grey, hooked tip", + "belly: creamy whitish-grey plumage", + "breast: light pinkish-grey feathers", + "crown: bluish-grey smooth feathers", + "forehead: smooth pale grey feathers", + "eyes: striking red or orange with dark pupils", + "legs: short, red-orange with strong claws", + "wings: greyish-brown with black barring", + "nape: dark black half-collar", + "tail: long, tapering grey with white outer tips", + "throat: pale grey, smooth plumage" + ], + "mourning sierra finch": [ + "back: grayish-brown plumage", + "beak: short, conical, and silver-gray", + "belly: pale gray-white underparts", + "breast: subtle pinkish tint", + "crown: grayish-brown feathers", + "forehead: transition from grayish-brown to pale gray", + "eyes: small, dark, surrounded by gray feathers", + "legs: slender, grayish-black limbs", + "wings: grayish-brown with lighter fringes on feathers", + "nape: grayish-brown with distinctive tan edging", + "tail: grayish-brown with slightly forked shape", + "throat: pale gray with a pinkish hue" + ], + "mourning wheatear": [ + "back: dark gray plumage with black and white streaks", + "beak: straight, sharp, black, slightly curved tip", + "belly: light grayish-white underparts", + "breast: pale gray plumage with faint streaks", + "crown: blackish-brown feathers with slight crest", + "forehead: dark gray with a hint of white", + "eyes: small, dark brown, surrounded by white eyering", + "legs: long, slender, black", + "wings: black with white patches, medium-sized", + "nape: dark gray with black and white streaks", + "tail: long, black with white outer feathers", + "throat: pale gray transitioning to white" + ], + "mouse brown sunbird": [ + "back: rich brown feathers", + "beak: long, thin, slightly curved", + "belly: creamy light brown", + "breast: warm, tawny-brown plumage", + "crown: reddish-brown with delicate streaks", + "forehead: golden-tinged light brown", + "eyes: small, beady, black", + "legs: slender, dark gray", + "wings: mottled brown with white accents", + "nape: smooth caramel-brown", + "tail: elongated, fan-shaped, brown with white tips", + "throat: golden/light brown with fine streaks" + ], + "mouse colored antshrike": [ + "back: grayish-brown feathers", + "beak: strong, hooked, black", + "belly: pale gray with lighter underparts", + "breast: grayish-white with brownish tint", + "crown: dark gray with a slight crest", + "forehead: dark gray, smoothly merged with crown", + "eyes: tiny, black, surrounded by white feathers", + "legs: short, sturdy, pale gray", + "wings: blackish-brown with bold white bars", + "nape: grayish-brown, continuous with back", + "tail: long, blackish-brown, with white-tipped feathers", + "throat: light gray, contrasting with breast" + ], + "mouse colored penduline tit": [ + "back: small and rounded, mouse-brown hue", + "beak: short and slightly curved, blackish gray", + "belly: soft and pale buff, lightly streaked", + "breast: light brown with faint streaks", + "crown: mouse-brown with a slight crest", + "forehead: plain, mouse-brown with no markings", + "eyes: black, tiny, and bright", + "legs: slender and delicate, grayish brown", + "wings: brownish with pale buff edges", + "nape: plain, mouse-brown with no markings", + "tail: short and slightly rounded, brown with buff edges", + "throat: pale buff with faint brown streaks" + ], + "mouse colored sunbird": [ + "back: olive-green with iridescent sheen", + "beak: slender, downward-curved, black", + "belly: yellowish-white with gray edges", + "breast: vibrant orange-yellow", + "crown: iridescent blue-green", + "forehead: iridescent blue-green", + "eyes: small and black with white rings", + "legs: short, thin, and gray", + "wings: olive-green with iridescent tips", + "nape: olive-green with iridescent sheen", + "tail: long, olive-green, and forked", + "throat: vibrant orange-yellow" + ], + "mouse colored tapaculo": [ + "back: dark brown with faint streaks", + "beak: slender and black", + "belly: pale gray with fine barring", + "breast: grayish-brown", + "crown: dark gray, lightly streaked", + "forehead: pale grayish-brown", + "eyes: small and dark", + "legs: long and pinkish-yellow", + "wings: short and rounded, brownish-gray", + "nape: grayish-brown with faint streaks", + "tail: short and dark, with pale barring", + "throat: light gray with faint streaks" + ], + "mouse colored thistletail": [ + "back: mottled gray and brown feathers", + "beak: small, sharp, black", + "belly: creamy white underside", + "breast: light gray with faint brown streaks", + "crown: grayish-brown feathers", + "forehead: smooth, gray feathers", + "eyes: small, black, beady", + "legs: slender, dark gray", + "wings: grayish-brown with white edges", + "nape: slightly darker gray feathers", + "tail: long, wispy, thistle-like, grayish-brown", + "throat: pale gray feathers" + ], + "mouse gray flycatcher": [ + "back: sleek gray feathers", + "beak: tiny, sharp, black", + "belly: pale gray, soft", + "breast: light gray, smooth", + "crown: subtle gray, rounded", + "forehead: uniform gray, uncrested", + "eyes: small, black, alert", + "legs: thin, dark gray", + "wings: compact, gray, agile", + "nape: gray, slender-necked", + "tail: fan-shaped, gray, barred", + "throat: pale gray, unblemished" + ], + "moussier redstart": [ + "back: black feathers with white streaks", + "beak: sleek and black, pointed", + "belly: pale grey, nearly white", + "breast: vibrant reddish-orange", + "crown: jet black with a white patch", + "forehead: reddish-orange, striking", + "eyes: black, round, alert", + "legs: slender, greyish-blue", + "wings: black with white patches", + "nape: black with white streaks", + "tail: black, partially tipped with white", + "throat: deep reddish-orange" + ], + "moustached antpitta": [ + "back: dark grey with faint brown streaks", + "beak: slender, curved, black", + "belly: light grey", + "breast: olive-brown with dark streaks", + "crown: dark grey, slightly raised", + "forehead: light grey", + "eyes: black, prominent, with white eye-ring", + "legs: long, pale pinkish-grey", + "wings: short, rounded, olive-brown with black markings", + "nape: grey with slight brown tint", + "tail: short, rounded, olive-brown with black bars", + "throat: white with black moustache-like streaks" + ], + "moustached antwren": [ + "back: olive-brown with black streaks", + "beak: slim, pointed, and black", + "belly: pale yellow with light streaking", + "breast: whitish with black streaking", + "crown: grayish-black with a subtle crest", + "forehead: grayish-white to black, blending into crown", + "eyes: dark brown with pale eyering", + "legs: slim, gray, and strong", + "wings: olive-brown with black barring", + "nape: olive-brown with black streaks", + "tail: long and black with white outer feathers", + "throat: bright white with black moustache-like markings" + ], + "moustached babbler": [ + "back: olive-green with subtle streaks", + "beak: thin, sharp, blackish-grey", + "belly: cream-white with brown streaks", + "breast: creamy beige with mottled brown markings", + "crown: black with rusty-brown streaks", + "forehead: black and white striped", + "eyes: dark brown, surrounded by white eye-ring", + "legs: long, pale grey with strong toes", + "wings: olive-green with faint streaking", + "nape: brownish-olive with streaks", + "tail: long, olive-brown with white tips", + "throat: white with distinct black moustache-like markings" + ], + "moustached barbet": [ + "back: green-feathered with a hint of blue", + "beak: slightly curved, ivory-yellow", + "belly: greenish-yellow plumage", + "breast: red patch on upper breast", + "crown: green and red feathers", + "forehead: short red stripe on green", + "eyes: dark with yellow eye-ring", + "legs: gray, strong and sturdy", + "wings: primarily green with blue edges", + "nape: greenish-yellow with red streaks", + "tail: greenish-blue with black tips", + "throat: light green with dark streaks" + ], + "moustached brushfinch": [ + "back: olive-green with subtle feather patterns", + "beak: relatively long, dark and conical", + "belly: whitish-grey with faint streaks", + "breast: buff-colored with black moustache-like streaks", + "crown: olive-green with bluish highlights", + "forehead: white crescent-shaped patch", + "eyes: small, dark surrounded by white eyering", + "legs: slender, strong, and grayish-pink", + "wings: olive-green with dark feather edges", + "nape: olive-green blending into the back", + "tail: long and square, dark olive-green with white sides", + "throat: white and unmarked" + ], + "moustached flowerpiercer": [ + "back: dark blue or black feathers", + "beak: hooked, black, curved tip", + "belly: light gray feathers", + "breast: pale gray with small feathers", + "crown: bright blue streak", + "forehead: dark blue or black plumage", + "eyes: round, black, surrounded by white ring", + "legs: slender, gray", + "wings: dark blue or black, pointed feathers", + "nape: dark blue or black plumage", + "tail: short, dark blue or black feathers", + "throat: light gray, may fade to white" + ], + "moustached grass warbler": [ + "back: light olive-brown with fine streaks", + "beak: slender and pale with a dark tip", + "belly: creamy-white with light barring", + "breast: buff-colored with dark streaks", + "crown: olive-brown with pale central stripe", + "forehead: light olive with subtle mustache-like markings", + "eyes: dark with pale eyering", + "legs: pinkish-grey with long, strong toes", + "wings: olive-brown with faint barring", + "nape: olive-brown with fine streaks", + "tail: olive-brown with white outer feathers and rounded tips", + "throat: creamy-white and unmarked" + ], + "moustached hawk cuckoo": [ + "back: sleek grayish-brown feathers", + "beak: sharp, slightly curved black beak", + "belly: white with dark vertical streaks", + "breast: off-white with light barring", + "crown: smoky-gray with a fan-shaped crest", + "forehead: sleek gray with a slight bushy mustache", + "eyes: round, dark, and piercing, surrounded by white markings", + "legs: long, slender pale gray legs", + "wings: broad dark gray with white barring", + "nape: smooth grayish-brown feathers", + "tail: long, gray with white tipped feathers and black subterminal bands", + "throat: off-white with light streaks" + ], + "moustached laughingthrush": [ + "back: olive-brown feathers covering the dorsal side", + "beak: short and stout, blackish in color", + "belly: light greyish-white with faint barring", + "breast: dark grey, blending into the belly", + "crown: bright chestnut-colored atop the head", + "forehead: same chestnut-hue as the crown, continuing down to eye level", + "eyes: dark, bead-like eyes surrounded by white streaks", + "legs: sturdy legs with dull pinkish-gray hues", + "wings: olive-brown with hints of chestnut, showing coverts and greater secondary coverts", + "nape: transition between chestnut crown and olive-brown back", + "tail: long and olive-brown, similar in color to the wings and back", + "throat: greyish-white with distinct black moustache-like whiskers extending from the beak" + ], + "moustached puffbird": [ + "back: olive-brown feathers with faint streaks", + "beak: short, stout, and blackish", + "belly: creamy-white with dark bars", + "breast: whitish with black stripes", + "crown: grayish-brown with a striped pattern", + "forehead: whitish with a black border", + "eyes: dark brown surrounded by white eye rings", + "legs: strong, grayish with sharp claws", + "wings: olive-brown with black and white markings", + "nape: grayish-brown with a black malar stripe", + "tail: broad, dark brown with white tips", + "throat: white with a black moustache stripe" + ], + "moustached tinkerbird": [ + "back: olive-green with slight golden sheen", + "beak: robust and black, slightly curved", + "belly: dull yellow with black and white spots and streaks", + "breast: golden-yellow with black streaks", + "crown: bright yellow with black central stripe", + "forehead: yellow with black feathers forming 'moustache", + "eyes: dark with pale yellow eye-ring", + "legs: grayish-brown, sturdy and strong", + "wings: olive-green with golden-yellow highlights", + "nape: olive-green with a golden sheen", + "tail: olive-green with pale yellow tips", + "throat: golden-yellow with fine black streaks" + ], + "moustached treeswift": [ + "back: sleek, streamlined feathers", + "beak: long, slender, slightly curved", + "belly: light cream-colored plumage", + "breast: creamy white with a slight blush-pink hue", + "crown: gray-blue plumage with a thin white stripe", + "forehead: smooth gray-blue feathers", + "eyes: large, round, black eyes with white rings", + "legs: short, strong, feathered legs", + "wings: long, elongated, sharply pointed tips", + "nape: gray-blue feathers with a hint of white", + "tail: long, slender, forked with gray-blue and black feathers", + "throat: white plumage with a black moustache-like stripe" + ], + "moustached turca": [ + "back: olive-brown with streaks", + "beak: strong, slightly curved, dark-colored", + "belly: white with dark streaks", + "breast: grayish-brown with noticeable streaks", + "crown: gray-brown with a black stripe", + "forehead: gray-brown with a white stripe above the eyes", + "eyes: black with white eye-ring", + "legs: sturdy and light brown", + "wings: olive-brown with black flight feathers", + "nape: gray-brown with a black and white stripe pattern", + "tail: long, dark brown with white tips", + "throat: white with black moustache-like markings" + ], + "moustached warbler": [ + "back: olive green with greyish hue", + "beak: slender, pointed, pale pinkish-grey", + "belly: off-white with pale grey streaks", + "breast: light greyish-buff with streaks", + "crown: warm brown with black streaks", + "forehead: pale grey, blending into crown", + "eyes: dark brown with pale eyering", + "legs: long, pale pinkish-grey", + "wings: brownish-grey with faint bars and buff-edged feathers", + "nape: warm brown, blending into crown", + "tail: brownish-grey with white outer edges", + "throat: off-white, bordering the breast and moustache strip" + ], + "moustached woodcreeper": [ + "back: olive-brown feathers with ochre streaks", + "beak: long, slightly curved, and black", + "belly: pale buff-colored with faint streaks", + "breast: buff-colored with dark brown streaks", + "crown: olive-brown with a faint streak", + "forehead: buffy-white stripe above the beak", + "eyes: dark, small, and beady", + "legs: strong, gray-brown with sharp claws", + "wings: olive-brown with rufous bars", + "nape: buff-tinged olive-brown", + "tail: long, rigid, olive-brown with rufous bars", + "throat: buff with dark, brown streaks" + ], + "moustached wren": [ + "back: brownish-grey feathers with faint streaks", + "beak: thin, curved, dark grey", + "belly: white with brownish-grey streaks", + "breast: white and streaked with brownish-grey", + "crown: dark brown with a slight crest", + "forehead: dark brown with faint streaks", + "eyes: black, alert, with white eyering", + "legs: thin, strong, greyish brown", + "wings: brownish-grey with faint streaks and dark tips", + "nape: dark brown with a hint of grey", + "tail: long, dark brown with some light bands", + "throat: white with brownish-grey spots" + ], + "mrs. gould sunbird": [ + "back: vibrant blue-green feathers", + "beak: long, slender, downward-curved", + "belly: bright yellow with iridescent sheen", + "breast: rich, metallic purple-blue", + "crown: brilliant blue-green with shimmering highlights", + "forehead: vivid red-orange tuft", + "eyes: small, dark, and inquisitive", + "legs: thin, grayish, with sharp claws", + "wings: iridescent blue-green, elongated", + "nape: radiant blue-green shimmer", + "tail: long, colorful, with iridescent blue feathers", + "throat: shining purple-blue with metallic luster" + ], + "mrs. moreau warbler": [ + "back: vibrant yellow with fine black streaks", + "beak: slender, sharp, and predominantly black", + "belly: soft, pale yellow with slight streaking", + "breast: bright yellow with black streaks on sides", + "crown: bold black patch on top of head", + "forehead: brilliant yellow blending into black crown", + "eyes: beady and black with faint white eye-ring", + "legs: thin and grayish-black, with sharp talons", + "wings: mix of black and yellow feathers with white wing bars", + "nape: yellowish-green fading into black crown", + "tail: black with white outer tail feathers", + "throat: bright yellow leading to the breast" + ], + "mugimaki flycatcher": [ + "back: olive-green feathers", + "beak: short, sharp, and black", + "belly: off-white with black streaks", + "breast: bright orange-red patch", + "crown: dark gray-blue", + "forehead: white stripe above eyes", + "eyes: small, dark, round", + "legs: thin, dark gray", + "wings: black with white bars", + "nape: olive-green, matching back", + "tail: black with white outer feathers", + "throat: off-white with black streaks" + ], + "muisca antpitta": [ + "back: olive-brown feathers", + "beak: short and sharp, yellow-blackish", + "belly: yellowish with brown streaks", + "breast: warm brown with fine streaks", + "crown: reddish-brown with lighter streaks", + "forehead: light brown with fine streaks", + "eyes: small and dark, surrounded by pale eye-ring", + "legs: pinkish-brown, long and slender", + "wings: olive-brown, rounded, and notched", + "nape: reddish-brown with pale streaks", + "tail: short, olive-brown, and rounded", + "throat: pale yellow with fine streaks" + ], + "mulga parrot": [ + "back: vibrant green feathers", + "beak: short, sharp, and grey", + "belly: yellowish-green with rich blue patches", + "breast: light green blending to yellow", + "crown: emerald green with a blue hue", + "forehead: bright green with hints of blue", + "eyes: dark with a subtle white ring", + "legs: grey and sturdy, with zygodactyl toes", + "wings: greenish-blue with black edges", + "nape: green with a blue undertone", + "tail: long and colorful, with blue and green feathers", + "throat: greenish-yellow with blue streaks" + ], + "multicolored tanager": [ + "back: vibrant shades of blue and green", + "beak: small and sharp, dark color", + "belly: bright yellow with hints of orange", + "breast: rich orange, merging into the yellow belly", + "crown: iridescent turquoise and purple", + "forehead: emerald and sapphire hues", + "eyes: bold black with white eye-ring", + "legs: slender, black colored", + "wings: mix of blue, green, and black feathers", + "nape: dazzling royal blue", + "tail: long and black with blue and green highlights", + "throat: shimmering green, leading to the orange breast" + ], + "munchique wood wren": [ + "back: olive-brown feathers", + "beak: slender and slightly curved", + "belly: whitish-grey with small dark spots", + "breast: greyish-white with sparse brown streaking", + "crown: dark brown with pale streaks", + "forehead: faded brownish-grey", + "eyes: medium-sized and black", + "legs: sturdy, pale pinkish", + "wings: brownish-olive with faint white bands", + "nape: brown muted stripes", + "tail: long and olive-brown with white tips", + "throat: white with subtle dark spots" + ], + "murphy petrel": [ + "back: gray-blue upper body", + "beak: small and narrow black beak", + "belly: white underside", + "breast: white chest area", + "crown: gray-blue top of head", + "forehead: whitish-grey front of head", + "eyes: black eyes with gray rings", + "legs: pale-colored legs", + "wings: long, slim gray-blue wings", + "nape: gray-blue back of neck", + "tail: short, wedge-shaped gray-blue tail", + "throat: white front of neck" + ], + "musician wren": [ + "back: brownish feathers with darker streaks", + "beak: slim, slightly curved, blackish", + "belly: pale greyish-white with subtle markings", + "breast: rich rufous color with darker spots", + "crown: brown with blackish streaks", + "forehead: brownish with a reddish tinge", + "eyes: large, black, surrounded by white eyering", + "legs: slender and greyish", + "wings: brownish with darker patterned feathers", + "nape: brown with darker streaks", + "tail: brownish with dark bands", + "throat: pale greyish-white with some spots" + ], + "musk duck": [ + "back: sleek, dark plumage", + "beak: broad, flattened bill", + "belly: white and fluffy feathers", + "breast: robust, grayish-brown coloring", + "crown: high, raised feathers on head", + "forehead: prominent, dark feathered region", + "eyes: dark, sharply focused gaze", + "legs: strong, webbed feet", + "wings: relatively short, dark, sturdy flaps", + "nape: thick, white-striped feathers at the back of the neck", + "tail: elongated, black plumage", + "throat: notable, inflatable lobe or sac (particularly for males" + ], + "musk lorikeet": [ + "back: vibrant green feathers", + "beak: short, orange-red and curved", + "belly: pale yellow with green streaks", + "breast: bright green and soft", + "crown: vivid green with blue highlights", + "forehead: striking red in color", + "eyes: dark, alert and expressive", + "legs: short and gray, strong for perching", + "wings: green with yellow and blue patterns, built for agile flight", + "nape: greenish-blue and iridescent", + "tail: slender, greenish-yellow with blue tips", + "throat: bright green feathers, transitions into yellow belly" + ], + "nacunda nighthawk": [ + "back: pale gray with mottled black and brown patterns", + "beak: short and wide, dark grayish-brown", + "belly: pale grayish-white with faint markings", + "breast: gray with white and black speckles", + "crown: gray-brown with black streaks", + "forehead: pale grayish-white, lightly flecked with black", + "eyes: large and dark, adapted for night vision", + "legs: short and stout, pale grayish-white", + "wings: long and pointed, barred pattern with gray, white, and black", + "nape: gray-brown with black streaks", + "tail: gray with distinct black and white bands", + "throat: white with faint gray mottling" + ], + "naga wren babbler": [ + "back: olive-brown coloration", + "beak: short and slightly curved", + "belly: light grayish-white hue", + "breast: grayish-white with brownish streaks", + "crown: dark brown with a slight crest", + "forehead: olive-brown fading to gray", + "eyes: small and black, surrounded by gray feathers", + "legs: slender and pinkish-brown", + "wings: olive-brown with faint bars and rounded shape", + "nape: olive-brown with slight streaking", + "tail: short and rounded, olive-brown with faint bars", + "throat: light grayish-white with minimal streaking" + ], + "nahan partridge": [ + "back: brownish-gray with dark barring", + "beak: strong, short, and slightly hooked", + "belly: buff-colored with black-and-white markings", + "breast: reddish-brown with black spotting", + "crown: chestnut with a grayish nape stripe", + "forehead: chestnut with white streaks", + "eyes: small, dark, and expressive", + "legs: feathered, sturdy, and grayish-blue", + "wings: brownish, rounded, and barred with white", + "nape: gray with a chestnut stripe", + "tail: long, barred with chestnut and brown", + "throat: whitish with dark streaks" + ], + "naked faced barbet": [ + "back: olive-green feathers", + "beak: stout and hooked, grayish-blue", + "belly: bright yellow plumage", + "breast: vibrant yellow feathers", + "crown: black with some white stripes", + "forehead: white feathers above eyes", + "eyes: tiny and black, encircled by white skin", + "legs: sturdy, grayish-blue", + "wings: olive-green with blue-tipped feathers", + "nape: olive-green feathers meeting black crown", + "tail: short and olive-green with blue tips", + "throat: bright yellow with white patch" + ], + "naked faced spiderhunter": [ + "back: olive-brown plumage", + "beak: long, curved, and black", + "belly: pale yellow with thin brown streaks", + "breast: yellowish with some brown streaks", + "crown: dull olive-brown", + "forehead: olive-brown with minimal feathering", + "eyes: small, dark, surrounded by naked skin", + "legs: grayish-brown with strong, thin claws", + "wings: olive-brown with prominent yellow edges", + "nape: olive-brown with some yellow under-feathering", + "tail: long, brownish, with yellow tips", + "throat: pale yellow with subtle brown streaks" + ], + "namaqua dove": [ + "back: slate gray plumage", + "beak: black upper, yellow lower", + "belly: pale gray, slight sheen", + "breast: rose-pink tinted feathers", + "crown: black and glossy", + "forehead: petite, pale gray", + "eyes: black, encircled by thin white eye-ring", + "legs: reddish-purple, slender", + "wings: long, pointed, dark primary feathers", + "nape: gray bordered by black", + "tail: elongated, white-tipped feathers", + "throat: light gray, blending into breast color" + ], + "namaqua sandgrouse": [ + "back: earthy brown with black markings", + "beak: short and stout, light greyish-brown", + "belly: sandy-buff color with dark spotted patterns", + "breast: light beige with delicate dark speckles", + "crown: orange-brown hue with a black stripe", + "forehead: pale yellowish-buff tone", + "eyes: small, dark, and well-camouflaged", + "legs: slender, featherless, and greyish-brown", + "wings: rounded, brown with dark markings and white border", + "nape: orange-brown tone with a black stripe", + "tail: barred black and sandy-buff feathers with white tips", + "throat: white, sharply contrasting with surrounding hues" + ], + "namaqua warbler": [ + "back: olive-brown with faint streaks", + "beak: slender, slightly curved, grayish-black", + "belly: whitish with pale buff wash", + "breast: pale buff to beige with light streaks", + "crown: olive-brown with a hint of gray", + "forehead: subtle olive-gray with a buffy tinge", + "eyes: dark with pale eyering", + "legs: short, grayish-brown", + "wings: short, brown to olive with distinct roundish tail feathers", + "nape: olive-brown with a light grayish wash", + "tail: medium length, rounded, olive-brown with whitish tips", + "throat: pale beige with light streaks" + ], + "namuli apalis": [ + "back: olive-green upperparts", + "beak: thin, pointed, and black", + "belly: pale greyish-white underparts", + "breast: faint yellow wash", + "crown: greyish-olive with white eye-ring", + "forehead: greenish-olive, continuing towards the crown", + "eyes: black with distinct white eye-ring", + "legs: long, thin, and dark grey", + "wings: olive-green with pale buff wing-bars", + "nape: greenish-olive, blending with the crown", + "tail: olive-green, and slightly forked", + "throat: pale greyish-white, transitioning to the breast" + ], + "nanday parakeet": [ + "back: vibrant green feathers", + "beak: black, hooked, strong", + "belly: soft greenish-yellow plumage", + "breast: bluish-green feathers", + "crown: black, sleek plumage", + "forehead: black with a hint of blue", + "eyes: dark, large, with white eye-ring", + "legs: grayish-brown, scaled", + "wings: green with bluish flight feathers", + "nape: green with blackish edges", + "tail: long, green with blue tips", + "throat: black, feathers mixed with green" + ], + "nankeen kestrel": [ + "back: rusty-brown with dark streaks", + "beak: grayish-black, short and hooked", + "belly: creamy-white with fine dark streaks", + "breast: pale buff with dark vertical streaks", + "crown: rusty-brown, streaked with darker brown", + "forehead: creamy-white with fine streaks", + "eyes: black, piercing, surrounded by an off-white ring", + "legs: yellowish, strong, feathered tarsi", + "wings: rusty-brown upperparts with dark bars, pale buff underwing coverts", + "nape: rusty-brown with dark streaks", + "tail: long, with black and white banding and a white tip", + "throat: creamy-white, unmarked" + ], + "nankeen night heron": [ + "back: brownish-grey feathers with subtle streaks", + "beak: thick, black, and powerful for catching prey", + "belly: creamy-white with sparse brown spots", + "breast: rosy-buff color with spotted pattern", + "crown: black with striking white plumes", + "forehead: narrow white line stretching to the eyes", + "eyes: piercing red orbs with dark pupils", + "legs: long, yellow-green, and sturdy for wading", + "wings: brownish-grey with distinct white tips", + "nape: black, extending to the back and blending with body color", + "tail: short, brownish-grey with faint barring", + "throat: white, contrasting with darker head and breast" + ], + "napo sabrewing": [ + "back: vibrant green feathers", + "beak: long, thin, and curved", + "belly: iridescent olive-green", + "breast: shiny green plumage", + "crown: striking metallic green", + "forehead: smooth, iridescent green", + "eyes: round and dark", + "legs: short and grayish", + "wings: broad and curved, with green and blue tinges", + "nape: bright green, continuous with the crown", + "tail: long and forked, with a dark blue band", + "throat: brilliant green with a lighter border" + ], + "narcissus flycatcher": [ + "back: olive-brown with dark streaks", + "beak: short, sharp, and black", + "belly: bright lemon-yellow", + "breast: vibrant orange-yellow", + "crown: black with white edges", + "forehead: bold black stripe", + "eyes: black and beady, with white eye-ring", + "legs: grayish-blue slender legs", + "wings: dark brown with white highlights", + "nape: olive-brown with faint streaks", + "tail: short, dark brown with white edges", + "throat: rich orange-yellow" + ], + "narcondam hornbill": [ + "back: dark green-blue iridescent plumage", + "beak: large, curved, bright yellow with black tip and casque", + "belly: white to pale yellow feathers", + "breast: white to pale yellow plumage", + "crown: greenish-black with a slight curl at the tip", + "forehead: greenish-black feathers extending onto the bill's casque", + "eyes: bright red-orange with dark eyelashes", + "legs: short, pale gray, powerful", + "wings: broad, dark green-blue with brown-tipped flight feathers", + "nape: greenish-black, slightly elongated feathers", + "tail: long, dark green-blue with broad white tips", + "throat: white to pale yellow with some fine black streaks" + ], + "naretha bluebonnet": [ + "back: grayish-blue feathers", + "beak: short and sturdy, gray with black tip", + "belly: creamy-white color, slightly mottled", + "breast: grayish-blue with white scaling", + "crown: grayish-blue with slight crest", + "forehead: lighter grayish-blue", + "eyes: dark brown with thin grayish-blue eye-ring", + "legs: gray with strong, sharp claws", + "wings: grayish-blue, long and pointed", + "nape: grayish-blue feathers, slightly darker than crown", + "tail: grayish-blue, medium length and square-tipped", + "throat: white with grayish-blue scaling" + ], + "narina trogon": [ + "back: vibrant green feathers", + "beak: short and strong, yellow-orange", + "belly: rich red in color", + "breast: red plumage blending into green", + "crown: iridescent green feathers", + "forehead: brilliant green with a slight sheen", + "eyes: dark and round, surrounded by black markings", + "legs: short and stout, gray in color", + "wings: mix of green and red feathers, mottled pattern", + "nape: continuous green plumage from the crown", + "tail: long and square, with blue and black barring", + "throat: white, contrasting against the colorful body" + ], + "nari\u00f1o tapaculo": [ + "back: dark gray with subtle streaks", + "beak: short and stout, black", + "belly: smoky gray with minimal markings", + "breast: grayish-black with a few white spots", + "crown: blackish-gray with a slight crest", + "forehead: same as crown, blackish-gray", + "eyes: small and black, partially covered by feathers", + "legs: robust and dark gray", + "wings: rounded and dark gray, short flight feathers", + "nape: blackish-gray, blending seamlessly with back and crown", + "tail: short and rounded, dark gray with minimal markings", + "throat: slightly lighter gray, fewer markings than breast" + ], + "narrow billed antwren": [ + "back: olive-brown feathers", + "beak: slim, pointy and black", + "belly: pale yellowish-white", + "breast: grayish-brown with streaks", + "crown: dark grayish-brown", + "forehead: slightly paler gray-brown", + "eyes: small, round with a black pupil", + "legs: thin, dark gray", + "wings: olive-brown with black bars", + "nape: grayish-brown", + "tail: long, thin with dark gray and white feathers", + "throat: pale grayish-white" + ], + "narrow billed tody": [ + "back: vibrant green hue", + "beak: elongated, thin, and sharp", + "belly: pale grayish-white", + "breast: light reddish-pink", + "crown: bright emerald green", + "forehead: brilliant green", + "eyes: black with thin gray eye-ring", + "legs: slim and grayish-brown", + "wings: green with hints of blue", + "nape: vivid green shading", + "tail: short and squared, mix of green and blue", + "throat: pale yellowish-white" + ], + "narrow billed woodcreeper": [ + "back: streaked olive-brown feathers", + "beak: long, slender, and slightly decurved", + "belly: pale and lightly streaked", + "breast: beige with brownish streaks", + "crown: plain dark olive-brown", + "forehead: slightly paler olive-brown", + "eyes: dark and beady", + "legs: sturdy and grayish", + "wings: olive-brown with faint barring", + "nape: olive-brown with lighter streaks", + "tail: long, dark brown, and stiff", + "throat: creamy beige with subtle streaks" + ], + "narrow tailed emerald": [ + "back: vibrant emerald green feathers", + "beak: slim, slightly curved black bill", + "belly: pale green to white underparts", + "breast: iridescent emerald green plumage", + "crown: shimmering green head feathers", + "forehead: bright green, smoothly sloping", + "eyes: dark, small, and alert", + "legs: thin black legs with small feet", + "wings: rounded, emerald green with black tips", + "nape: brilliant green, connecting crown to back", + "tail: long, narrow, and deeply forked", + "throat: gleaming greenish-white feathers" + ], + "narrow tailed starling": [ + "back: sleek, dark-shaded feathers", + "beak: thin, pointed, and black", + "belly: pale grey with faint streaks", + "breast: light grey, spotted markings", + "crown: glossy black with a metallic sheen", + "forehead: smoothly sloping, black hue", + "eyes: small, dark, and alert", + "legs: long, slender, blackish-grey", + "wings: long, pointed, and dark-feathered", + "nape: shining black, contrast to breast", + "tail: noticeably narrow, black with slight fork", + "throat: greyish-white, blending into breast" + ], + "natal spurfowl": [ + "back: light brown with small white spots", + "beak: short and sharp, yellow-gray color", + "belly: creamy white with dark brown stripes", + "breast: reddish-brown with white speckles", + "crown: light grayish-brown with a neat crest", + "forehead: smooth, light grayish-brown", + "eyes: dark brown with a thin white eye-ring", + "legs: sturdy and light brown with sharp spurs", + "wings: rounded, brown with light white speckles", + "nape: light brown with subtle white spots", + "tail: short and fan-shaped, brown with white spots", + "throat: white with dark brown stripes" + ], + "natewa silktail": [ + "back: deep blue feathered dorsum", + "beak: short and slightly curved black bill", + "belly: pale blue-grey underparts", + "breast: deep blue vibrant plumage", + "crown: rich blue crest", + "forehead: smooth blue gradient to crown", + "eyes: small, black outlined with blue feathers", + "legs: slender, black limbs", + "wings: deep blue covert feathers with darker flight feathers", + "nape: radiant blue transition into back", + "tail: long and silky, deep blue tail feathers", + "throat: light blue-grey with subtle contrast to breast" + ], + "natterer slaty antshrike": [ + "back: dark slate-grey plumage", + "beak: stout, hooked black bill", + "belly: slightly paler grey", + "breast: smoky grey feathers", + "crown: blackish-grey; slight crest on both sexes", + "forehead: narrow zone of pale grey", + "eyes: dark brown", + "legs: long, greyish-black", + "wings: dark grey with lighter fringes on feathers", + "nape: blackish-grey; white interspersed in females", + "tail: long, graduated dark grey feathers", + "throat: lighter grey, contrasting with breast" + ], + "naumann thrush": [ + "back: rusty-brown with narrow dark streaks", + "beak: short, black and slightly curved", + "belly: pale brown with faint dark spots", + "breast: warm buff with thick blackish-brown spots", + "crown: rusty-brown with dark streaks", + "forehead: slightly paler brown than the crown", + "eyes: dark brown surrounded by thin, pale eye-ring", + "legs: stout and pinkish-brown", + "wings: dark brown with two distinctive white wing bars", + "nape: rusty-brown with narrow dark streaks", + "tail: dark brown with paler outer edges", + "throat: buff-colored with faint dark markings" + ], + "nava wren": [ + "back: reddish-brown with dark markings", + "beak: slender, slightly curved and dark", + "belly: pale buff-white with light markings", + "breast: grayish-brown with faint streaks", + "crown: dark reddish-brown with fine white streaks", + "forehead: white eyebrow stripe, blending into facial mask", + "eyes: dark brown with white eyering, set in black mask", + "legs: slender, long, and pale pinkish-gray", + "wings: long, narrow, and dark-reddish with pale wing bars", + "nape: reddish-brown with light streaks", + "tail: long, barred, and sharply graduated in length", + "throat: grayish-white with faint streaks" + ], + "nazca booby": [ + "back: smooth, gray-blue feathers", + "beak: long, sharp, and hooked", + "belly: white feathers, slightly rounded", + "breast: white, puffed-out feathers", + "crown: gray-blue feathers leading to the nape", + "forehead: blue-grey coloring, flat slope", + "eyes: dark, rounded with a yellow eye-ring", + "legs: strong, dark, and webbed feet", + "wings: long, pointed, gray-blue with white underparts", + "nape: blue-grey feathers connecting to the crown and back", + "tail: medium length, gray-blue with a white base", + "throat: white feathers leading to the breast" + ], + "neblina metaltail": [ + "back: iridescent green with a metallic sheen", + "beak: black, thin, and pointed", + "belly: white with green iridescent speckles", + "breast: bright white with a touch of green", + "crown: vibrant shining green", + "forehead: metallic green with a blue hue", + "eyes: dark brown, nearly black", + "legs: sleek black with small pointy claws", + "wings: glossy green with bluish tinge", + "nape: green transitioning to iridescent blue", + "tail: long and forked, shimmering green-blue", + "throat: dazzling green with shining blue speckles" + ], + "neblina tapaculo": [ + "back: charcoal gray feathers", + "beak: short, stout, black", + "belly: pale gray plumage", + "breast: light gray feathers", + "crown: dark gray with slight crest", + "forehead: slightly paler gray", + "eyes: black and beady", + "legs: sturdy, grayish-black", + "wings: rounded, charcoal gray", + "nape: dark gray, blending with crown", + "tail: short, rounded, gray", + "throat: pale gray plumage" + ], + "necklaced barbet": [ + "back: vibrant green feathers", + "beak: thick, black, and sharply hooked", + "belly: golden-yellow with turquoise-blue streaks", + "breast: brilliant red patch", + "crown: bluish-green with a yellow forehead", + "forehead: yellow fading to bluish-green", + "eyes: prominent, surrounded by blue rings", + "legs: sturdy, gray and scaly", + "wings: green with blue and red accents", + "nape: green interspersed with thin yellow lines", + "tail: green with yellow and blue markings", + "throat: aqua-blue with necklace-like black streaks" + ], + "necklaced spinetail": [ + "back: olive-brown with streaks", + "beak: short and straight", + "belly: pale buff with faint streaks", + "breast: light brown with streaky pattern", + "crown: rufous with thin black lines", + "forehead: rufous with fine streaks", + "eyes: dark brown with pale eyering", + "legs: short and slender", + "wings: olive-brown with rufous edging", + "nape: olive-brown with narrow streaks", + "tail: long and graduated with rufous edges", + "throat: creamy-white with necklace-like streaks" + ], + "needle billed hermit": [ + "back: olive-green feathers", + "beak: long, slender, curved", + "belly: lighter greenish-grey", + "breast: greenish-grey plumage", + "crown: dark green head feathers", + "forehead: slightly paler green hue", + "eyes: small, black, beady", + "legs: short, slender, grey", + "wings: elongated, olive-green feathers", + "nape: rich green coloration", + "tail: long, tapered, white-tipped", + "throat: pale grayish-white" + ], + "neergaard sunbird": [ + "back: olive-green, shimmering plumage", + "beak: long, slender, curved black beak", + "belly: bright, iridescent yellow-orange", + "breast: vibrant metallic-green feathers", + "crown: shining green and blue-colored head", + "forehead: lustrous metallic blue", + "eyes: small, round, black eyes", + "legs: black, slim, delicate feet", + "wings: dark greenish-blue with iridescent sheen", + "nape: glossy, olive green blending with the crown", + "tail: elongated, dark blue-green tail feathers", + "throat: radiant metallic turquoise-blue" + ], + "negros bleeding heart": [ + "back: dark bluish-grey feathers", + "beak: short, black, curved", + "belly: deep red \"blood-like\" spot", + "breast: whitish-grey plumage", + "crown: glossy dark blue sheen", + "forehead: blue-black feathers", + "eyes: dark, round, and attentive", + "legs: grayish-black with strong claws", + "wings: blue-grey with white wing bars", + "nape: shiny blue-black feathers", + "tail: long, dark, and slightly rounded", + "throat: white feathers fading to grey" + ], + "negros jungle flycatcher": [ + "back: dark brown feathers", + "beak: short, stout, and black", + "belly: pale white with a hint of buff", + "breast: off-white with brown streaks", + "crown: rufous-brown with a slight crest", + "forehead: dark brown, like the back", + "eyes: round, black, and prominent", + "legs: long, slender, and dark brown", + "wings: dark brown with feathery edges", + "nape: rufous-brown, merging with the crown", + "tail: dark brown, fan-shaped", + "throat: off-white with faint brown streaks" + ], + "negros leaf warbler": [ + "back: olive-green feathers", + "beak: slender and pointed", + "belly: pale yellow hue", + "breast: light yellowish-green", + "crown: greenish-yellow", + "forehead: bright yellow stripe", + "eyes: dark with white eye-ring", + "legs: pale pinkish-brown", + "wings: olive-green with faint wingbars", + "nape: yellowish-olive", + "tail: olive-green, with yellow outer feathers", + "throat: light yellow" + ], + "negros scops owl": [ + "back: tawny brown with faint black streaks", + "beak: short, hooked, and grayish-black", + "belly: pale white with dark streaks and spots", + "breast: tawny with black streaks", + "crown: tawny brown with darker streaks", + "forehead: pale grayish-white with thin black streaks", + "eyes: large, orange-yellow, and piercing", + "legs: feathered and light brown with sharp talons", + "wings: tawny brown with dark barring", + "nape: tawny brown with faint black streaks", + "tail: tawny brown with dark barring", + "throat: pale white with fine dark streaks" + ], + "negros striped babbler": [ + "back: olive-brown with streaks", + "beak: short and sharp", + "belly: yellowish white", + "breast: white with black streaks", + "crown: olive-brown", + "forehead: pale gray", + "eyes: round, dark, and bright", + "legs: sturdy and gray", + "wings: olive-brown with white-tipped feathers", + "nape: olive-brown with streaks", + "tail: long, olive-brown with white tips", + "throat: white with black streaks" + ], + "nelicourvi weaver": [ + "back: olive-green feathers with a slight gloss", + "beak: black, thick, and conical-shaped", + "belly: bright yellow feathers with black streaks", + "breast: vibrant yellow plumage with black stripes", + "crown: olive-green and glossy in appearance", + "forehead: olive-green and smoothly blends with the crown", + "eyes: small, dark, and circular, surrounded by a narrow yellow eye-ring", + "legs: dark grey and strong for perching", + "wings: olive-green feathers with black streaks, yellow edges", + "nape: glossy olive-green, black streaks, and continuous with the back", + "tail: olive-green feathers with dark central pair and yellow side feathers", + "throat: bright yellow plumage, blending with the breast" + ], + "nepal fulvetta": [ + "back: olive-brown feathers", + "beak: short, strong, conical shape", + "belly: pale buff underparts", + "breast: lightly streaked with brownish-gray", + "crown: grayish head with a black stripe", + "forehead: slightly paler gray than the crown", + "eyes: dark with pale eye-ring", + "legs: strong, grayish legs", + "wings: olive-brown with slight streaks", + "nape: continuous gray from crown", + "tail: long, olive-brown feathers", + "throat: white with grayish tinge" + ], + "nepal house martin": [ + "back: dark grey feathers with a slight sheen", + "beak: small, black and pointed", + "belly: pale grey with a clean, sleek appearance", + "breast: white and fluffy", + "crown: glossy blue-black cap", + "forehead: dark grey merging with the crown", + "eyes: small, round and black", + "legs: short and black with strong claws", + "wings: dark grey with white patches, streamlined for swift flight", + "nape: dark grey blending with the back", + "tail: forked and black, with white outer feathers for contrast", + "throat: white, complementing the breast area" + ], + "neumann starling": [ + "back: vibrant turquoise feathers", + "beak: slender and sharp, black tip", + "belly: soft, iridescent green", + "breast: deep blue with subtle streaks", + "crown: bright orange crest, pointed", + "forehead: metallic purple plumage", + "eyes: large, black with white ring", + "legs: thin and strong, subtle yellow", + "wings: long and elegant, multicolored", + "nape: curved, smooth transition to wings", + "tail: fan-like, vivid, contrasting colors", + "throat: radiant gold, shimmering" + ], + "neumann warbler": [ + "back: olive-green and slightly streaked", + "beak: thin, pointed, and black", + "belly: pale yellow with light streaks", + "breast: yellowish-green with darker streaks", + "crown: gray with a black stripe", + "forehead: pale gray with fine streaks", + "eyes: dark brown with a faint white eye-ring", + "legs: sturdy, pinkish-brown", + "wings: olive-green with black stripes and white spots", + "nape: greenish-gray, slightly streaked", + "tail: olive-green with a black, white-edged tip", + "throat: bright yellow and unmarked" + ], + "new britain boobook": [ + "back: dark brown with fine white spots", + "beak: black, sturdy and curved for hunting", + "belly: golden-brown, lightly streaked with white", + "breast: buff colored with dark brown markings", + "crown: dark brown, with small white spots", + "forehead: mottled brown and white", + "eyes: large, bright yellow with black pupils", + "legs: strong, feathered, with sharp talons", + "wings: dark brown, patterned with white bars", + "nape: brown with white spots and streaks", + "tail: dark brown, white-barred feathers", + "throat: light buff, streaked with small brown markings" + ], + "new britain dwarf kingfisher": [ + "back: vibrant blue feathers", + "beak: small, orange, sharp", + "belly: bright blue feathers fading to lighter blue", + "breast: rich blue and white plumage", + "crown: striking blue and purple hues", + "forehead: vivid blue coloring", + "eyes: small, round, black", + "legs: short and orange", + "wings: bright blue, medium-sized", + "nape: deep blue coloration", + "tail: short, blue, slightly forked", + "throat: white and blue feathers" + ], + "new britain friarbird": [ + "back: olive-brown feathers with a slight sheen", + "beak: long, curved, and black with a hooked upper mandible", + "belly: pale greyish-white with light streaks", + "breast: light gray with thin, darker streaks", + "crown: dark, dull blue-grey with a shaggy crest", + "forehead: bluish-grey, merging into the crown", + "eyes: dark brown, encircled by a patch of bare, bluish skin", + "legs: strong, black, and scaly", + "wings: olive-brown with paler-edged feathers", + "nape: bluish-grey blending into the back", + "tail: long, olive-brown with darker banding and a broad, pale tip", + "throat: whitish-grey with a patch of bare, bluish skin" + ], + "new britain kingfisher": [ + "back: striking golden-yellow feathers", + "beak: long, black, stout, and pointed", + "belly: bright blue-colored with a white vent", + "breast: vibrant blue hue with a brownish tint", + "crown: bright blue with a golden-yellow sheen", + "forehead: deep blue with a golden shimmer", + "eyes: bold black with a white eye-ring", + "legs: short, black, and strong", + "wings: iridescent blue with hints of green", + "nape: gleaming golden-yellow feathers", + "tail: elongated blue feathers with a greenish tint", + "throat: intense blue with some golden reflections" + ], + "new britain rail": [ + "back: brownish-green feathers", + "beak: short and curved, dark colored", + "belly: pale gray with white undertones", + "breast: grayish-white speckled with dark spots", + "crown: slightly raised, dark brown", + "forehead: smooth, light brown to gray", + "eyes: small, black, round", + "legs: long and slender with slightly webbed feet", + "wings: brownish-green with yellow highlights", + "nape: dark brown, smooth feathers", + "tail: long, brownish, and slightly forked", + "throat: pale gray with thin dark stripes" + ], + "new caledonia goshawk": [ + "back: slate-grey feathers", + "beak: strong, black hook-shaped", + "belly: light greyish-white feathers", + "breast: pale grey with fine dark streaks", + "crown: dark grey plumage", + "forehead: slightly lighter grey feathers", + "eyes: intense yellow-orange gaze", + "legs: long, yellow-orange with sharp talons", + "wings: broad and rounded, grey with white markings", + "nape: dark grey feathers", + "tail: dark grey with distinct white bands", + "throat: light grey feathered plumage" + ], + "new caledonian crow": [ + "back: sleek black feathers", + "beak: long, straight, and pointed", + "belly: medium-sized, black plumage", + "breast: black, well-rounded", + "crown: black, slightly raised feathers", + "forehead: smooth, black feathers", + "eyes: dark, intelligent gaze", + "legs: strong, black legs with sharp claws", + "wings: large black wings for agile flight", + "nape: smooth black feathers connecting to crown", + "tail: long, black feathers with a slight curve", + "throat: black, slim with a seamless transition to breast" + ], + "new caledonian cuckooshrike": [ + "back: greenish-gray plumage", + "beak: short, straight, hook-tipped", + "belly: pale gray-white", + "breast: light gray with slight streaks", + "crown: slate gray with lighter streaks", + "forehead: slightly darker gray", + "eyes: dark brown with pale eyering", + "legs: long and slender, gray-blue", + "wings: dark gray with light white edging", + "nape: light gray with darker streaks", + "tail: long, dark gray with white-tipped feathers", + "throat: pale gray with faint streaking" + ], + "new caledonian friarbird": [ + "back: dark olive-brown plumage", + "beak: long, decurved, and hooked at the tip", + "belly: pale off-white and streaked", + "breast: light brown with darker streaks", + "crown: dark brown with a slight crest", + "forehead: lighter olive-brown, transitioning to the crown", + "eyes: small and black, surrounded by a narrow ring of bare skin", + "legs: short and strong, light gray to black", + "wings: olive-brown with darker primary feathers and light edges", + "nape: dark brown, blending into the back and crown", + "tail: long, olive-brown with a slight curve and light tips", + "throat: pale off-white, streaked with darker gray-brown markings" + ], + "new caledonian grassbird": [ + "back: earthy brown color with faint streaks", + "beak: slender, black, and slightly curved", + "belly: light beige with soft streaks", + "breast: warm beige with pale brown streaks", + "crown: brownish with a faint crest", + "forehead: lighter brown, blending into the crown", + "eyes: small, black, surrounded by light feathers", + "legs: sturdy greyish-brown, well-adapted for ground foraging", + "wings: mottled brown with black flight feathers", + "nape: earthy brown, continues from the crown", + "tail: brown with faint bars and slightly rounded", + "throat: pale beige, blending into the breast" + ], + "new caledonian imperial pigeon": [ + "back: vibrant white feathers", + "beak: short and sturdy, grayish-black color", + "belly: white feathers with a subtle gray undertone", + "breast: bright white plumage", + "crown: sleek white head feathers", + "forehead: smooth white feathers", + "eyes: dark, small, and expressive", + "legs: strong and dark-colored, with scaly texture", + "wings: broad and white, with a slight gray-blue tint", + "nape: sleek white neck feathers extend downward", + "tail: long, white feathers with a slight gray-blue shade", + "throat: white plumage, seamlessly blending with the breast" + ], + "new caledonian myzomela": [ + "back: olive-green colored feathers", + "beak: black, slender and curved", + "belly: pale yellow and grayish-white", + "breast: bright red or orange-red plumage", + "crown: solid black or dark brown", + "forehead: bright red or orange-red patch", + "eyes: round, dark-brown, and expressive", + "legs: relatively short and black", + "wings: olive-green with dark primary feathers", + "nape: olive-green feathers transitioning from the crown", + "tail: olive-green, medium length, slightly notched", + "throat: bright red or orange-red plumage" + ], + "new caledonian parakeet": [ + "back: vibrant green feathers", + "beak: strong, curved, and dark gray", + "belly: pale yellowish-green hue", + "breast: bright green plumage", + "crown: deep green with blue undertones", + "forehead: striking azure blue feathers", + "eyes: dark black, piercing gaze", + "legs: slender, grayish-brown", + "wings: brilliant emerald green", + "nape: rich green merging with crown", + "tail: lengthy, emerald green feathers", + "throat: soft lime green color" + ], + "new caledonian whistler": [ + "back: olive-green hue", + "beak: short, sharp, black", + "belly: light creamy yellow", + "breast: pale yellow with grayish tinge", + "crown: olive-brown, slightly rounded", + "forehead: olive-brown, blends with crown", + "eyes: rounded, dark brown, prominent", + "legs: sturdy, grayish-brown", + "wings: olive-green with black streaks", + "nape: olive-green, continuous with back", + "tail: olive-green, relatively long, feathers with black edges", + "throat: light creamy yellow, matches belly" + ], + "new georgia dwarf kingfisher": [ + "back: vibrant blue feathers with a slight greenish tint", + "beak: short, black, and pointed for catching prey", + "belly: creamy white feathers with subtle orange streaks", + "breast: bright orange plumage transitioning to white belly", + "crown: striking blue feathers with hints of green on the head", + "forehead: vivid blue-green feathers above the eyes and beak", + "eyes: dark beady eyes with a piercing gaze for spotting prey", + "legs: short and sturdy, with black scaly skin and sharp claws", + "wings: iridescent blue-green feathers for agile and swift flight", + "nape: blue and green feathers continuing from the crown to the back", + "tail: bright blue feathers with green edges and a squared-off shape", + "throat: soft white feathers transitioning into the orange breast" + ], + "new guinea bronzewing": [ + "back: turquoise iridescent feathers", + "beak: short, stout, and cream-colored", + "belly: pale gray with delicate brown spotting", + "breast: chestnut brown with a metallic sheen", + "crown: dark gray with a bluish-purple iridescence", + "forehead: white stripe that extends above the eye", + "eyes: dark brown with a thin white eye-ring", + "legs: short and pinkish-gray", + "wings: dark brown with a bronze-green sheen and white spots", + "nape: purple-blue iridescent plumage", + "tail: long and dark with a broad white band", + "throat: creamy white with faint brown speckles" + ], + "new guinea eagle": [ + "back: dark brown feathers with lighter edges", + "beak: black, sharp hook for tearing prey", + "belly: creamy white with light brown streaks", + "breast: predominantly white with brown speckles", + "crown: dark brown with golden crest feathers", + "forehead: golden-brown feathers above eyes", + "eyes: dark, piercing gaze with yellow ring", + "legs: strong, yellow, scaled legs for grip", + "wings: large, brown with white streaks for agile flight", + "nape: brown feathers transitioning to golden crest", + "tail: long, dark brown feathers with white bands", + "throat: white and fluffy extending to breast area" + ], + "new guinea flightless rail": [ + "back: brown and black streaked feathers", + "beak: short and stout, light-colored", + "belly: pale with dark brown markings", + "breast: buff with black bars", + "crown: rufous-brown, faintly streaked", + "forehead: pale buff, blending into crown", + "eyes: dark and small, surrounded by light feathers", + "legs: strong and yellowish, adapted for running", + "wings: short and rounded, patterned brown", + "nape: rufous-brown, similar to the crown", + "tail: short and stubby, brown and black feathers", + "throat: pale buff, unmarked" + ], + "new guinea megapode": [ + "back: dark gray feathers", + "beak: short, sturdy, slightly curved", + "belly: grayish-brown feathering", + "breast: slate gray plumage", + "crown: black feathers forming slight crest", + "forehead: blackish-gray plumage", + "eyes: dark, mid-sized, concentrated gaze", + "legs: robust, partially feathered, strong claws", + "wings: broad, short, rounded edges", + "nape: grayish-black neck feathers", + "tail: short, fan-shaped, dark feathers", + "throat: slightly paler gray feathering" + ], + "new guinea white eye": [ + "back: olive-green feathers covering the upper body", + "beak: short, conical, and pale gray", + "belly: pale yellowish underbody", + "breast: white center with yellowish sides", + "crown: olive-green feathers on the top of the head", + "forehead: slightly paler green than the crown", + "eyes: large, round, and dark with white eyering", + "legs: slim and light gray", + "wings: olive-green with slightly darker feathers", + "nape: olive-green continuing from the crown", + "tail: greenish, short, and slightly forked", + "throat: white with a yellowish tinge" + ], + "new guinea woodcock": [ + "back: rich reddish-brown with dark barring", + "beak: elongated and straight, dark brown", + "belly: whitish with dark brown barring", + "breast: warm chestnut color with dark barring", + "crown: rufous-brown with dark central stripe", + "forehead: tawny buff with fine brown streaks", + "eyes: dark brown with pale buff eyering", + "legs: sturdy pinkish-gray", + "wings: dark with rufous-brown edges and mottled pattern", + "nape: reddish-brown with bold black streaks", + "tail: dark brown with buff bars and white tip", + "throat: pale buff with fine brown streaks" + ], + "new holland honeyeater": [ + "back: olive-grey with yellow streaks", + "beak: long, slender, and curved", + "belly: white with fine dark streaks", + "breast: golden-yellow with black streaks", + "crown: black with thin white streaks", + "forehead: black with a white band", + "eyes: dark and lively with yellow eye-ring", + "legs: slender and dark grey", + "wings: grey-black with olive-yellow edges", + "nape: olive-grey with white streaks", + "tail: long and slightly forked with olive-grey feathers", + "throat: white with fine dark streaks" + ], + "new ireland munia": [ + "back: dark brown with fine white markings", + "beak: stubby, silvery-blue", + "belly: creamy-white with faint brown barring", + "breast: light grayish-brown with faint spotting", + "crown: dark brown with fine white streaks", + "forehead: slightly paler brown than the crown", + "eyes: jet black with white eye-ring", + "legs: pinkish-gray, slender", + "wings: brown with white fringed feathers", + "nape: dark brown with fine white streaks", + "tail: long and dark brown with white edges", + "throat: creamy-white, blending into breast area" + ], + "new ireland myzomela": [ + "back: olive-green with a slight sheen", + "beak: thin, black, and slightly curved", + "belly: yellowish-orange fading to lighter undersides", + "breast: vibrant orange-red", + "crown: olive-green with a slight sheen", + "forehead: striking red patch", + "eyes: small, black, and alert", + "legs: slim and dark gray", + "wings: olive-green with black edges", + "nape: olive-green, blending with the crown", + "tail: short, olive-green with black tips", + "throat: bright red contrasting with the breast" + ], + "new zealand bellbird": [ + "back: olive-green coloration", + "beak: sturdy, curved shape", + "belly: pale yellow hue", + "breast: light greenish-yellow tint", + "crown: greenish-yellow and sleek", + "forehead: prominent greenish-yellow", + "eyes: small, dark, and inquisitive", + "legs: slim, grayish, and sturdy", + "wings: olive-green with a blue sheen", + "nape: vibrant, yellow-green blend", + "tail: long and splayed feathers", + "throat: yellowish hue and delicate" + ], + "new zealand falcon": [ + "back: light brown with dark barring", + "beak: curved, sharp and dark grey", + "belly: light cream with brown streaks", + "breast: creamy white with brown speckles", + "crown: dark brown with faint lighter streaks", + "forehead: light brown with darker streaks", + "eyes: dark and piercing with yellow eyering", + "legs: strong, yellow with sharp talons", + "wings: brown with black tips, long and pointed", + "nape: light brown with darker streaks", + "tail: long, brown with dark banding", + "throat: creamy white with light brown streaks" + ], + "new zealand fantail": [ + "back: olive-green feathered", + "beak: small and pointed", + "belly: pale yellow, subtly patterned", + "breast: light orange-to-yellow gradient", + "crown: gray-brown head feathers", + "forehead: white stripe framing eyes", + "eyes: expressive black beads", + "legs: thin, charcoal-gray", + "wings: olive-brown, rounded tips", + "nape: gray-brown, slight curve", + "tail: broad, fan-shaped, bold black band", + "throat: light, cream-colored" + ], + "new zealand fernbird": [ + "back: olive-brown with streaks", + "beak: long and slender, slightly curved", + "belly: white with brown markings", + "breast: pale brown with faint streaks", + "crown: dark brown with reddish streaks", + "forehead: beige with fine brown streaks", + "eyes: small, black, encircled by faint pale ring", + "legs: long and slender, earthy brown", + "wings: olive-brown with faint streaks", + "nape: olive-brown with reddish streaks", + "tail: long, narrow, dark brown with pale tips", + "throat: beige with faint brown streaks" + ], + "new zealand grebe": [ + "back: dark greyish-brown with a sleek appearance", + "beak: short, pointed, and black in color", + "belly: white to light grey, fluffy and soft-looking feathers", + "breast: dark reddish-brown, merging with the belly color", + "crown: blackish-brown, smoothly rounded atop the head", + "forehead: same blackish-brown tone as crown, blending seamlessly", + "eyes: bright red, piercing and striking in appearance", + "legs: strong and slender, webbed feet, dark in color", + "wings: dark greyish-brown, short and rounded, designed for diving", + "nape: blackish-brown, smooth transition from crown", + "tail: short, dark greyish-brown, and often held slightly upward", + "throat: white to light grey, gradually fading into the breast color" + ], + "new zealand kaka": [ + "back: olive-brown feathers with a hint of orange", + "beak: strong, curved, charcoal-grey", + "belly: orange-yellow plumage, dense texture", + "breast: golden-brown and orange feathers", + "crown: mottled reddish-brown, plumage blends with forehead", + "forehead: reddish-brown with a hint of orange", + "eyes: encircled with yellow-orange patches", + "legs: short, dark-grey, powerful", + "wings: olive green and orange with blue-tipped primaries", + "nape: orange-brown, blended with crown", + "tail: long, shades of olive green and orange", + "throat: yellow-orange, slightly brighter than breast" + ], + "new zealand king shag": [ + "back: dark blue-black plumage", + "beak: long and hooked, grayish-yellow", + "belly: white with slight shine", + "breast: white and slightly puffed", + "crown: dark blue-black with a slight crest", + "forehead: smooth blue-black feathers", + "eyes: dark with thin white eye-ring", + "legs: short and pinkish-gray", + "wings: blue-black with white flight feathers", + "nape: dark blue-black with slight collar", + "tail: wide and blue-black with white edges", + "throat: white with subtle feathering" + ], + "new zealand pigeon": [ + "back: greenish-bronze plumage", + "beak: short and stout, deep red", + "belly: white with blueish-purple feathers", + "breast: vibrant iridescent purple-blue", + "crown: dark greyish-purple", + "forehead: greyish-white fading to purple", + "eyes: red with dark surrounding feathers", + "legs: deep red, strong and sturdy", + "wings: greenish-bronze with curved edges", + "nape: greyish-purple feathers", + "tail: long and tapered, greenish-bronze", + "throat: iridescent green feathers" + ], + "new zealand pipit": [ + "back: light brown with streaks", + "beak: slender and pointed", + "belly: creamy white", + "breast: buff with brown markings", + "crown: brown with streaks", + "forehead: light brown with streaks", + "eyes: dark with pale eyering", + "legs: pinkish-brown", + "wings: brown with white markings", + "nape: light brown with streaks", + "tail: dark brown with white edges", + "throat: pale with brown streaks" + ], + "new zealand scaup": [ + "back: dark brownish-black feathers", + "beak: short, grayish-blue with a black tip", + "belly: dull grayish-white feathers", + "breast: dark brown with a slight purple sheen", + "crown: blackish-brown feathers", + "forehead: smooth, blackish-brown feathers", + "eyes: distinct yellow iris", + "legs: grayish-blue with webbed feet", + "wings: dark brown with white patches", + "nape: blackish-brown feathers", + "tail: short, dark brownish-black feathers", + "throat: dark brownish-black feathers" + ], + "new zealand storm petrel": [ + "back: dark greyish-brown with black streaks", + "beak: slender, small black bill", + "belly: white with dark grey side markings", + "breast: white with smoky-grey band", + "crown: dark greyish-black with white speckles", + "forehead: smoky-grey with white speckles", + "eyes: small, dark beady eyes", + "legs: long, slender red-brown legs", + "wings: dark greyish-brown with white markings", + "nape: dark greyish-black with white speckles", + "tail: black with white bands at tip", + "throat: white with smoky-grey markings" + ], + "newell shearwater": [ + "back: dark grey-brown upper feathers", + "beak: slightly hooked, blackish tip", + "belly: white lower body", + "breast: white upper chest", + "crown: dark grey-brown head feathers", + "forehead: white with grey-brown tinge", + "eyes: black with fine white eyering", + "legs: pinkish-grey, webbed feet", + "wings: long, slender, dark grey-brown", + "nape: dark grey-brown hindneck", + "tail: short, dark grey-brown feathers", + "throat: white with grey-brown streaks" + ], + "newton fiscal": [ + "back: sleek feathers forming gentle curve", + "beak: sharp, pointed tip for precision pecking", + "belly: soft, light under-feathers for warmth", + "breast: smooth and patterned, eye-catching design", + "crown: vibrant crest, highlights head", + "forehead: gracefully transitioning to beak", + "eyes: piercing and alert, keen observer", + "legs: strong and sturdy, adept percher", + "wings: wide and powerful, optimal flight", + "nape: sinuous lines, smooth neck design", + "tail: long, elegant feathers for balance", + "throat: intricate markings, vocal prowess" + ], + "newton sunbird": [ + "back: vibrant greenish-blue with iridescent sheen", + "beak: slender, curved, and black", + "belly: yellowish-green with light streaks", + "breast: bright yellow-orange with colorful spots", + "crown: iridescent purplish-blue with a spiky crest", + "forehead: gleaming greenish-blue with a hint of purple", + "eyes: small, round, and dark", + "legs: thin and black with sharp claws", + "wings: vivid blue with green highlights and elongated feathers", + "nape: iridescent blue-green transitioning into the back", + "tail: long, v-shaped, and vibrant blue with elongated central feathers", + "throat: bright yellow-orange with a slight iridescence" + ], + "nicaraguan grackle": [ + "back: dark iridescent feathers", + "beak: long and sharp", + "belly: black or dark brown feathers", + "breast: glossy black plumage", + "crown: dark iridescent head feathers", + "forehead: smooth, black or dark brown", + "eyes: piercing, yellow or pale", + "legs: strong, black or dark gray", + "wings: broad and dark, with iridescent sheen", + "nape: back of neck with dark iridescent feathers", + "tail: long and tapered, black or dark brown", + "throat: black or dark brown feathers, smoother texture" + ], + "nicaraguan seed finch": [ + "back: olive-green with streaks", + "beak: thick, pointed, silver-gray", + "belly: whitish with light streaks", + "breast: pale buff with faint streaks", + "crown: black and red, with red extending behind eyes", + "forehead: black, merging into red crown", + "eyes: black with white eye-ring", + "legs: light pinkish-gray", + "wings: olive-brown with two white wingbars", + "nape: olive-green, blending into back", + "tail: olive-brown with white tips", + "throat: white, bordered by black malar stripe" + ], + "niceforo wren": [ + "back: light brown with black streaks", + "beak: slender and slightly curved", + "belly: soft white with light brown streaks", + "breast: white with brownish-grey markings", + "crown: dark brown with black streaks", + "forehead: light brown merging into the crown", + "eyes: dark, round and expressive", + "legs: slender and reddish-brown", + "wings: light brown with black stripes", + "nape: light brown with black streaks", + "tail: long and thin, light brown with black stripes", + "throat: white with greyish-brown markings" + ], + "nicholson pipit": [ + "back: light brown with pale streaks", + "beak: thin, pointed, dark gray", + "belly: whitish with brown speckles", + "breast: dull buff with fine streaks", + "crown: brown with pale central stripe", + "forehead: light brown, blending with crown", + "eyes: dark brown, surrounded by faint eye-ring", + "legs: pale pinkish-gray, slender", + "wings: brown with white-edged feathers, distinct wing bars", + "nape: light brown, streaked", + "tail: dark brown, outer feathers white-edged", + "throat: whitish with faint streaks" + ], + "nicobar bulbul": [ + "back: olive-green with a slight sheen", + "beak: short, slightly curved, black", + "belly: pale, creamy-white with light streaks", + "breast: light gray with subtle black markings", + "crown: deep blue-violet with a slight crest", + "forehead: deep blue-violet, blending with the crown", + "eyes: dark brown with a thin white eye-ring", + "legs: pale pinkish-brown, sturdy", + "wings: olive-green with yellowish edges and blue-violet flight feathers", + "nape: blue-violet, blending with the crown and back", + "tail: long, olive-green with blue-violet tips, slightly forked", + "throat: light gray, continuing down to the breast" + ], + "nicobar imperial pigeon": [ + "back: sleek, pale gray feathers", + "beak: short, hooked, deep bluish-gray", + "belly: slight gradient to soft gray", + "breast: creamy white, fluffy appearance", + "crown: grayish-white and slightly raised", + "forehead: smooth white feathers", + "eyes: dark, beady, black iris", + "legs: bluish-gray, sturdy with sharp claws", + "wings: broad and rounded, pale gray", + "nape: white feathers blending to gray", + "tail: long, graceful, white-tipped, gray feathers", + "throat: smooth, white feathers" + ], + "nicobar jungle flycatcher": [ + "back: olive-brown feathers", + "beak: short, black, hook-like", + "belly: whitish-cream underside", + "breast: pale rufous color", + "crown: grayish-blue plumage", + "forehead: blending of gray-blue and olive-brown", + "eyes: large, dark, with white eye-ring", + "legs: greyish-black, strong", + "wings: olive-brown with slight blue tinge", + "nape: grayish-blue with olive-brown blend", + "tail: long, rounded, olive-brown feathers", + "throat: pale rufous, matching breast color" + ], + "nicobar megapode": [ + "back: dark brown with dense rufous feathers", + "beak: short, curved, and stout", + "belly: blackish-brown with rufous markings", + "breast: rufous-brown with black bars", + "crown: dark brown with a slight crest", + "forehead: pale brown with distinct feather pattern", + "eyes: alert and surrounded by bare skin", + "legs: sturdy and feathered with strong claws", + "wings: dark brown with rounded edges", + "nape: dark brown transitioning to rufous", + "tail: long, broad, and dark brown", + "throat: pale brown with scattered dark feathers" + ], + "nicobar parakeet": [ + "back: vibrant green feathers", + "beak: strong, hooked, orange-red", + "belly: light green with pale blue streaks", + "breast: bright green with yellowish tints", + "crown: striking blue plumage", + "forehead: deep blue with greenish tinge", + "eyes: dark, surrounded by bare, white eyering", + "legs: sturdy, grayish-brown", + "wings: long, green with blue flight feathers", + "nape: greenish-blue with yellow edges", + "tail: long and slender, green with blue and yellow tips", + "throat: emerald green merging into the breast area" + ], + "nicobar scops owl": [ + "back: mottled brown and white feathers", + "beak: short, hooked, and light grey", + "belly: pale buff with brown streaks", + "breast: light brown with dark markings", + "crown: rusty brown with faint spots", + "forehead: white sprinkled with brown", + "eyes: large, dark brown with pale eyebrows", + "legs: feathered and light brown", + "wings: dark brown with light barring", + "nape: rusty brown with white streaks", + "tail: dark brown with faint bars", + "throat: whitish with brown streaks" + ], + "nicobar serpent eagle": [ + "back: dark brown plumage with lighter streaks", + "beak: sharp, hooked, yellow-black gradient", + "belly: light gray feathers with dark barring", + "breast: light gray plumage with dark brown streaks", + "crown: dark brown with a lighter gray discoloring", + "forehead: pale gray with faint darker streaks", + "eyes: piercing yellow with black pupils", + "legs: yellow, sturdy, scaly, with powerful talons", + "wings: large, dark brown with gray edges and lighter barring", + "nape: grayish-brown feathers with some streaks", + "tail: long, dark brown feathers with light barring and gray tips", + "throat: pale gray with fine dark streaks" + ], + "nicobar sparrowhawk": [ + "back: dark brown with faint barring", + "beak: sharp and hooked, blackish-gray", + "belly: creamy-white with reddish-brown bars", + "breast: white with reddish-brown streaks", + "crown: smooth, dark brown", + "forehead: slightly lighter brown than crown", + "eyes: piercing yellow or orange", + "legs: strong and yellow", + "wings: broad and rounded, dark brown with white barring", + "nape: dark brown with a hint of red", + "tail: long, squared-off, dark brown with distinct white barring", + "throat: white, merging with breast streaks" + ], + "night parrot": [ + "back: greenish-yellow speckled feathers", + "beak: short, hooked, and beige", + "belly: pale green with black markings", + "breast: greenish-yellow with heavier markings", + "crown: vibrant green with black spots", + "forehead: green-speckled with a clear line", + "eyes: cryptic, dark brown ringed with green", + "legs: short, grayish-brown with scaled feet", + "wings: mottled green, black, and yellow", + "nape: greenish-yellow with fine black streaks", + "tail: long, rounded, green and black barred", + "throat: pale, yellowish-green with light markings" + ], + "nightingale island finch": [ + "back: olive-brown feathers with a slight sheen", + "beak: short, stout, and pointed, dark in color", + "belly: pale yellow with subtle streaks", + "breast: rosy-pink, fading to paler yellow on belly", + "crown: dark gray with a slight crest", + "forehead: grayish-brown, transitioning into crown", + "eyes: small and black, surrounded by a thin white eyering", + "legs: slender and gray, with scaled feet and sharp claws", + "wings: olive-brown with lighter streaks and short, rounded tips", + "nape: grayish-brown, connecting to the crown and back", + "tail: long and pointed, with dark-brown and olive feathers", + "throat: white, bordered by a thin band of darker feathers" + ], + "nightingale wren": [ + "back: olive-brown plumage", + "beak: thin, pointed, blackish-brown", + "belly: pale grayish-white", + "breast: light rusty brown", + "crown: brown with faint streaks", + "forehead: light gray-brown", + "eyes: dark, beady, surrounded by faint eye-ring", + "legs: slender, dark brown", + "wings: olive-brown with darker bars", + "nape: brownish with faint streaks", + "tail: short, brown with faint bars", + "throat: light grayish-white" + ], + "nihoa finch": [ + "back: light brown with faint streaks", + "beak: short and conical", + "belly: pale white to cream", + "breast: white with brown streaks", + "crown: dark gray-brown", + "forehead: dark olive-gray", + "eyes: small, black, and round", + "legs: short and yellow", + "wings: short and rounded; brown with white spots", + "nape: dark gray-brown", + "tail: short and rounded, brown with white-tipped feathers", + "throat: white with light brown streaks" + ], + "nile valley sunbird": [ + "back: vibrant green feathers with a metallic sheen", + "beak: long, thin and slightly curved for probing flowers", + "belly: bright yellow with hints of green", + "breast: striking red with grading to orange", + "crown: iridescent blue-green with a slight crest", + "forehead: shimmering metallic green", + "eyes: small, round and dark", + "legs: slender, greyish-black with sharp claws", + "wings: glossy blue-green with a violet sheen", + "nape: gleaming green transitioning to blue", + "tail: elongated, dark blue with red outer tail feathers", + "throat: iridescent purple-blue, contrasting with breast color" + ], + "nilgiri flowerpecker": [ + "back: olive-green hue and smooth feathers", + "beak: short, conical, and curved", + "belly: pale yellow with a streak of orange", + "breast: vibrant orange-yellow with small streaks", + "crown: dark blueish-black with a slight sheen", + "forehead: bright blueish-black, blending into the crown", + "eyes: small, round, and black, surrounded by white eye-ring", + "legs: short and gray, with sharp claws for perching", + "wings: olive-green with darker edges, ideal for swift flight", + "nape: rich olive-colored, connecting to the back and crown", + "tail: short and square, a mix of green and black feathers", + "throat: bright orange-yellow, extending down to the breast" + ], + "nilgiri flycatcher": [ + "back: dark blue feathers", + "beak: small, sharp black beak", + "belly: light blue with streaks of white", + "breast: bright blue plumage", + "crown: dark blue feathers with a contrasting white patch", + "forehead: vivid deep blue feathers", + "eyes: small black eyes", + "legs: slender black legs", + "wings: dark blue with white bars", + "nape: deep blue plumage", + "tail: long, dark blue feathers", + "throat: intensely blue feathers" + ], + "nilgiri laughingthrush": [ + "back: olive-brown color with darker feathers", + "beak: short, strong, and slightly curved", + "belly: off-white with grayish-brown streaks", + "breast: grayish-white, sometimes with mottled spots", + "crown: dark brown or blackish, forming a distinctive cap", + "forehead: covered with the same dark cap as the crown", + "eyes: dark color, typically black or deep brown", + "legs: sturdy and medium-length, with grayish-brown coloring", + "wings: olive-brown with varying shades of darker brown", + "nape: olive-brown color, transitioning to the darker cap on the crown", + "tail: long, with olive-brown shading gradually to dark brown at the tips", + "throat: off-white or pale gray, sometimes with darker streaks" + ], + "nilgiri pipit": [ + "back: brownish-yellow streaked with dark brown", + "beak: short, slender, pale brownish-gray", + "belly: cream-white with brown streaks", + "breast: pale buff with brown streaks", + "crown: rufous-brown with streaks", + "forehead: buff with dark streaks", + "eyes: dark brown, medium size", + "legs: pale pinkish-gray, two toes forward, one backward", + "wings: brownish-yellow with dark brown bars", + "nape: rufous-brown with dark streaks", + "tail: dark brown with lighter brown edges", + "throat: cream-white with faint streaks" + ], + "nilgiri sholakili": [ + "back: greenish-blue plumage with slight gloss", + "beak: short, dark, and slender", + "belly: pale grey with subtle blue tinge", + "breast: bluish-grey feathers", + "crown: dark blue, seamlessly blending with forehead", + "forehead: deep blue with slight violet hue", + "eyes: dark, round, and well-defined", + "legs: pale pinkish-grey, well-adapted for perching", + "wings: dark blue with blackish flight feathers", + "nape: bluish-grey, connecting crown to back smoothly", + "tail: long, dark blue feathers with a slightly fan-like structure", + "throat: soft, bluish-grey transitioning to the breast" + ], + "nilgiri thrush": [ + "back: bluish-grey with dark spots", + "beak: short, stout, and blackish", + "belly: white with blackish brown spots", + "breast: white with prominent black streaks", + "crown: bluish-grey with dark spots", + "forehead: bluish-grey spotting", + "eyes: large, dark with white eye-ring", + "legs: strong and pinkish-brown", + "wings: bluish-grey with dark bars", + "nape: bluish-grey with dark spots", + "tail: dark grey with white tips", + "throat: white with black streaks" + ], + "nilgiri wood pigeon": [ + "back: dark grey-blue plumage", + "beak: short, curved, pale yellow", + "belly: whitish-grey feathers", + "breast: dark grey-blue with purplish sheen", + "crown: blackish-grey with slight crest", + "forehead: pale grey-white feathers", + "eyes: reddish-brown with bare yellow skin patch", + "legs: yellowish-orange with strong claws", + "wings: dark grey-blue with white patches", + "nape: pale grayish-white stripe", + "tail: long, dark grey-blue with white tip", + "throat: greyish-white feathers" + ], + "nimba flycatcher": [ + "back: olive-green back feathers", + "beak: small, sharp black bill", + "belly: pale whitish-grey underside", + "breast: light greyish-white chest feathers", + "crown: dark grayish-brown head crest", + "forehead: slightly lighter gray-brown", + "eyes: round black eyes with white eye-ring", + "legs: slim black legs and sharp talons", + "wings: olive-green with faint dark wingbars", + "nape: grayish-brown neck feathers", + "tail: long, dark brown tail feathers with white tips", + "throat: lighter grey plumage" + ], + "nkulengu rail": [ + "back: brownish-grey with dark streaks", + "beak: long, curved, reddish-orange", + "belly: white with dark speckles", + "breast: dark grey-brown with lighter markings", + "crown: dark brown fading to grey", + "forehead: pale brown with darker streaks", + "eyes: small, black, surrounded by light grey", + "legs: long, slender, and reddish-brown", + "wings: broad, brownish-grey with black and white accents", + "nape: greyish-brown with darker streaks", + "tail: long, dark brown with thin white bands", + "throat: pale grey with faint streaks" + ], + "noble snipe": [ + "back: dark brown with reddish-brown stripes", + "beak: long, straight, and brownish-orange", + "belly: white with fine black barring", + "breast: cinnamon color with dark spots", + "crown: dark brown with a reddish-brown central stripe", + "forehead: reddish-brown with fine black lines", + "eyes: dark and beady, surrounded by pale feathers", + "legs: long, greenish-yellow with dark barring on the thighs", + "wings: brown with white tips and dark primaries", + "nape: reddish-brown with fine black streaks", + "tail: black with dark brown bars and white edges", + "throat: white with faint black barring" + ], + "nocturnal curassow": [ + "back: dark greenish-brown plumage", + "beak: large, hooked, beige-colored", + "belly: dark brownish-black feathers", + "breast: ginger-tinted chest plumage", + "crown: dense, crest-like crown, with dark and white-tipped feathers", + "forehead: blackforehead feathers with a contrasting white band", + "eyes: round, wide, dark eyes for night vision", + "legs: long, sturdy, grayish-blue legs", + "wings: wide, rounded, dark greenish-brown feathers with lighter flecks", + "nape: dark blackish-green feathers, tapering onto the neck", + "tail: long, broad, iridescent green with white-tipped feathers", + "throat: dark greenish-brown feathers with faint horizontal barring" + ], + "noisy miner": [ + "back: light grey feathers", + "beak: long, pointed, dark-grey", + "belly: pale grey with some white areas", + "breast: light grey feathers", + "crown: dark grey top with lighter grey sides", + "forehead: dark grey strip above the beak", + "eyes: small, black, with a white-eye patch", + "legs: greyish-brown", + "wings: light grey with darker grey flight feathers", + "nape: lighter grey behind the crown", + "tail: long grey tapering feathers", + "throat: pale grey, bordered by a white patch" + ], + "noisy pitta": [ + "back: vibrant green with blue shades", + "beak: sturdy, dark-colored, and slightly curved", + "belly: pale cream or off-white", + "breast: yellow to orange, sometimes with greenish tinge", + "crown: black with a dark blue stripe", + "forehead: bright blue with black borders", + "eyes: striking white rings around dark pupils", + "legs: strong and pinkish-brown", + "wings: blue-green with striking black and white patterns", + "nape: blue with a black border", + "tail: short and blue-green with black tips", + "throat: pale yellow or cream" + ], + "noisy scrub bird": [ + "back: olive-brown color with fine streaks", + "beak: short, sharp, and black", + "belly: creamy-white with thin dark bars", + "breast: buff color with dark markings", + "crown: chestnut-brown with pale streaks", + "forehead: pale buff color", + "eyes: dark brown with pale eye ring", + "legs: strong and dull pink", + "wings: short, rounded and olive-brown with fine streaks", + "nape: chestnut-brown with pale streaks", + "tail: short, square, and olive-brown with fine bars", + "throat: buff color with black streaks" + ], + "nonggang babbler": [ + "back: rusty brown with subtle streaks", + "beak: short and stout, blackish", + "belly: white with pale brown hatching", + "breast: grey-brown with distinct hatching", + "crown: grey-brown with fine streaks", + "forehead: rufous patch above the beak", + "eyes: round and black, surrounded by pale orbital ring", + "legs: long and strong, greyish-blue", + "wings: rusty brown, short and rounded", + "nape: grey-brown, slightly paler than the back", + "tail: long and broad, rusty brown", + "throat: white with pale grey streaks" + ], + "nordmann greenshank": [ + "back: olive green with white speckles", + "beak: long, slightly upcurved, and pale gray", + "belly: white with grayish streaks", + "breast: white with light gray markings", + "crown: dark gray streaked with white", + "forehead: white with thin gray streaks", + "eyes: dark brown with thin white eye-ring", + "legs: long, pale grayish-green", + "wings: olive green with blackish-brown flight feathers", + "nape: gray with white streaks", + "tail: white with blackish-brown bars and central feathers", + "throat: white with delicate gray markings" + ], + "norfolk island gerygone": [ + "back: olive-green with faint streaks", + "beak: slender, slightly curved, black", + "belly: off-white with yellowish hue", + "breast: pale yellow with greyish streaks", + "crown: brownish-grey with faint streaks", + "forehead: light greyish-brown", + "eyes: dark, with conspicuous white eye-ring", + "legs: long, slender, and pale grey", + "wings: olive-brown with thin white wing-bars", + "nape: greyish-brown with faint streaking", + "tail: long, dark olive-brown, white-tipped feathers", + "throat: pale, blending into yellow breast" + ], + "norfolk island parakeet": [ + "back: vibrant green with bluish tinge", + "beak: strong, coral-red hooked beak", + "belly: pale turquoise-green color", + "breast: bright grass-green with a faint blue tint", + "crown: rich, deep blue-violet hue", + "forehead: bright blue-green plumage", + "eyes: dark brown with a white eye ring", + "legs: grayish pink with strong feet and claws", + "wings: greenish-blue with a hint of yellow on the underside", + "nape: deep blue coloring down the back of the neck", + "tail: long, green-blue with red patch on the underside", + "throat: lime green feathers with a lighter shade" + ], + "norfolk robin": [ + "back: sleek and light grey", + "beak: thin, pointed, and yellow", + "belly: light grey fading to white", + "breast: vibrant red-orange plumage", + "crown: slate blue-grey", + "forehead: smooth grey", + "eyes: round, large, and dark", + "legs: slender, brown, and clawed", + "wings: soft grey with distinct light markings", + "nape: smooth blue-grey transition from crown", + "tail: fan-shaped, grey with hints of white", + "throat: white with a touch of orange-red" + ], + "noronha elaenia": [ + "back: olive-green feathers", + "beak: black, straight, and pointed", + "belly: light yellowish-white", + "breast: pale olive-yellow", + "crown: grayish-brown with slight crest", + "forehead: grayish-white", + "eyes: dark brown with pale eyering", + "legs: grayish-brown", + "wings: olive-green with feathered edges", + "nape: grayish-brown", + "tail: olive-green with black tips", + "throat: pale yellowish-white" + ], + "noronha vireo": [ + "back: olive-green to grayish-brown", + "beak: small, slightly curved, pale and dark gray", + "belly: pale yellowish-white", + "breast: light grayish-green to yellowish-white", + "crown: olive-brown headcap", + "forehead: light olive-brown", + "eyes: small, dark, encircled with white eyering", + "legs: slender and grayish", + "wings: olive-brown with white-edged feathers", + "nape: olive-green to grayish-brown", + "tail: olive-brown, relatively short", + "throat: pale grayish-white" + ], + "north island brown kiwi": [ + "back: dark reddish-brown, bristly feathers", + "beak: long, slightly curved, and slender", + "belly: lighter reddish-brown, soft feathers", + "breast: dark reddish-brown, dense feathers", + "crown: flat with bristly dark reddish-brown feathers", + "forehead: dark reddish-brown and slightly furry", + "eyes: small, black, and hidden among feathers", + "legs: thick, short, and strong with scaly skin", + "wings: very small, nearly invisible, and non-functional", + "nape: dark reddish-brown, bristly feathers", + "tail: short, dark reddish-brown feathers", + "throat: lighter reddish-brown, soft feathers" + ], + "north island kokako": [ + "back: slate-grey feathered body", + "beak: short, hooked, dark grey", + "belly: soft grey plumage", + "breast: lighter grey feathers", + "crown: blue-grey with slight crest", + "forehead: smooth grey feathers", + "eyes: dark, expressive, surrounded by blue-grey plumage", + "legs: sturdy, long, grey-blue", + "wings: rounded, slate-grey feathers with white tips", + "nape: sleek grey-blue feathers", + "tail: long, rectangular, grey-blue with white tips", + "throat: pale grey, smooth feathers" + ], + "north island robin": [ + "back: brownish-grey feathers", + "beak: small and pointy", + "belly: pale grey-white", + "breast: light grey plumage", + "crown: dark grey feathers", + "forehead: charcoal-grey shade", + "eyes: big and round with a white eye-ring", + "legs: strong and slender", + "wings: short and rounded, brownish-grey", + "nape: dark grey, connecting crown to back", + "tail: short, fan-shaped with grey feathers", + "throat: pale grey-white, matching the belly" + ], + "north island saddleback": [ + "back: dark brown with slight green sheen", + "beak: stout, pale grayish, slightly hooked", + "belly: dark chocolate-brown", + "breast: rusty reddish-brown", + "crown: glossy black with blue highlights", + "forehead: black and shiny", + "eyes: dark brown with pale gray eye-ring", + "legs: pinkish gray, strong and sturdy", + "wings: dark brownish-black with traces of green", + "nape: deep chestnut brown", + "tail: long, black, and slightly curved", + "throat: rich chestnut brown" + ], + "north melanesian cuckooshrike": [ + "back: black and white streaked", + "beak: strong, hooked, grayish-black", + "belly: white with black streaks", + "breast: white with black streaks", + "crown: black with slender white streaks", + "forehead: black with white streaks", + "eyes: dark, brown-black with a white partial eye-ring", + "legs: sturdy, dark gray", + "wings: black with white bars and spots", + "nape: black with slender white streaks", + "tail: black with white outer feathers and bars", + "throat: white with fine black streaks" + ], + "north moluccan pitta": [ + "back: vibrant blue with black stripes", + "beak: short and stout, black in color", + "belly: bright red with light feather patterns", + "breast: deep red merging into the belly", + "crown: greenish-blue with distinct black markings", + "forehead: rich blue with a soft transition to the crown", + "eyes: round, with a white eye-ring and black pupils", + "legs: strong and pale pinkish-brown", + "wings: blue and black with intricate feather patterns", + "nape: bright blue with green tinges and thin black stripes", + "tail: short, blue and black with contrasting white spots", + "throat: vivid red with light, feathery patterns" + ], + "north solomons dwarf kingfisher": [ + "back: vibrant blue and orange feathers", + "beak: small, sharp, black", + "belly: white with thin orange stripes", + "breast: bright orange", + "crown: deep blue with white spots", + "forehead: vivid blue with white streaks", + "eyes: large, dark, alert", + "legs: short, sturdy, coral-red", + "wings: shimmering blue with white and orange accents", + "nape: rich blue with white patches", + "tail: elongated, blue and orange, fan-like", + "throat: pale white with subtle orange markings" + ], + "northern anteater chat": [ + "back: olive-brown with subtle streaks", + "beak: short, hooked, black", + "belly: pale cream to white", + "breast: light creamy-brown", + "crown: olive-brown with subtle streaks", + "forehead: olive-brown with subtle streaks", + "eyes: small, dark, surrounded by white eyering", + "legs: long, slim, grey", + "wings: olive-brown with faint white wingbar", + "nape: olive-brown with subtle streaks", + "tail: long, forked, olive-brown", + "throat: pale cream to white" + ], + "northern bald ibis": [ + "back: dark glossy feathers", + "beak: long, curved, red-orange", + "belly: blackish plumage", + "breast: iridescent dark feathers", + "crown: bare, red, wrinkled skin", + "forehead: bordered by a tuft of black feathers", + "eyes: bright yellow with black pupil", + "legs: medium length, greyish", + "wings: long, curved, glossy black", + "nape: elongated feathers creating a ruff", + "tail: slim feathers, medium length", + "throat: dark, feathers blend with breast" + ], + "northern barred woodcreeper": [ + "back: olive-brown with darker bars", + "beak: long, slightly curved, and pale", + "belly: white with brown streaks", + "breast: white with brownish bars", + "crown: dark brown with lighter streaks", + "forehead: slightly rufous-brown with fine streaks", + "eyes: dark with pale eyering", + "legs: strong, grayish", + "wings: brown with faint barring", + "nape: brown with lighter streaks", + "tail: long, barred brown and buff", + "throat: whitish with brown streaks" + ], + "northern bentbill": [ + "back: olive-green feathers", + "beak: small, hooked, black bill", + "belly: pale yellowish-white", + "breast: olive-green transitioning to yellowish-white", + "crown: olive-green with lighter streaks", + "forehead: olive-green with darker edges", + "eyes: black, surrounded by white eye-ring", + "legs: short, grayish-black", + "wings: rounded, olive-green with darker secondaries", + "nape: olive-green with lighter streaks", + "tail: short, fan-shaped with greenish-black feathers", + "throat: pale yellowish-white" + ], + "northern black flycatcher": [ + "back: sleek black feathers", + "beak: thin and pointy", + "belly: dark grayish-black", + "breast: smooth black plumage", + "crown: glossy black head", + "forehead: dark and prominent", + "eyes: round and small, black", + "legs: long, skinny, and black", + "wings: black with slight sheen", + "nape: smooth with black feathers", + "tail: long and black, fan-shaped", + "throat: dark with slight gray undertones" + ], + "northern boobook": [ + "back: olive-brown with fine white spots", + "beak: grayish-black, hooked tip", + "belly: creamy-white with brown bars", + "breast: pale brown with white streaks", + "crown: dark brown with white speckles", + "forehead: dark brown, sloping", + "eyes: large, yellow with dark pupils", + "legs: yellowish, feathered", + "wings: brown with white spots and bars", + "nape: brown with white speckles", + "tail: dark brown with white bars", + "throat: creamy-white with subtle brown streaks" + ], + "northern brown throated weaver": [ + "back: olive-green with dark streaks", + "beak: sturdy, conical, and black", + "belly: pale yellowish-buff", + "breast: brown with faint streaks", + "crown: dark, reddish-brown", + "forehead: reddish-brown hue", + "eyes: small, dark, and expressive", + "legs: long, slender, dark gray", + "wings: greenish-brown and streaked", + "nape: reddish-brown with dark streaks", + "tail: long, brown, and slightly forked", + "throat: brownish-yellow with faint streaks" + ], + "northern brownbul": [ + "back: brownish olive-green", + "beak: dark and slightly curved", + "belly: pale white with faint brown streaks", + "breast: light brown with darker streaks", + "crown: dull brown with slightly darker streaks", + "forehead: brown with a slight crest", + "eyes: dark with a faint whitish eye-ring", + "legs: strong and greyish-brown", + "wings: brownish-green with darker flight feathers", + "nape: brown with a hint of olive-green", + "tail: long and brown with a darker central tertial", + "throat: white with fine brown streaks" + ], + "northern carmine bee eater": [ + "back: vibrant carmine-red feathers", + "beak: elongated, black, and slightly curved", + "belly: light red with hints of blue", + "breast: bright red transitioning to blueish-green", + "crown: bright red feathers, slightly elongated", + "forehead: deep carmine-red", + "eyes: dark with a thin white eye-ring", + "legs: short, black, and sturdy", + "wings: mixture of red, green, and blue feathers", + "nape: red feathers merging with blueish-green", + "tail: elongated, blue-green feathers with darker tips", + "throat: iridescent blueish-green" + ], + "northern cassowary": [ + "back: dark, dense plumage", + "beak: large, powerful, slightly curved", + "belly: thick, black feathers", + "breast: substantial, rounded, dark feathers", + "crown: tough, helmet-like casque", + "forehead: covered by casque", + "eyes: striking, reddish-brown", + "legs: sturdy, featherless, grey-blue", + "wings: small, vestigial, with prominent quills", + "nape: long, bristling black feathers", + "tail: short, nearly hidden by plumage", + "throat: dark blue, wrinkled wattles" + ], + "northern crombec": [ + "back: olive-brown with subtle streaks", + "beak: thin and slightly curved", + "belly: pale, cream-colored", + "breast: light buff or pinkish-brown", + "crown: greyish-brown with buff edges", + "forehead: buff to reddish-brown", + "eyes: dark with white eye-rings", + "legs: pale pinkish-grey", + "wings: brown with buff-tinted feather edges", + "nape: greyish-brown with pale edges", + "tail: short and stubby, brownish-black", + "throat: cream-colored with light streaks" + ], + "northern double collared sunbird": [ + "back: vibrant green iridescent feathers", + "beak: long, slender, and curved for nectar feeding", + "belly: pale yellowish-white under feathers", + "breast: bright red-orange throat band", + "crown: shining metallic green cap", + "forehead: deep green to black gradient", + "eyes: small, black, and alert", + "legs: short, grey, and sturdy", + "wings: colorful green-blue feathers with white patches", + "nape: brilliant green feathers transitioning into the back", + "tail: elongated central feathers with greenish-blue sheen", + "throat: bright blue iridescent upper throat band" + ], + "northern emerald toucanet": [ + "back: vibrant green feathers", + "beak: large, brightly colored, and serrated", + "belly: whitish with soft yellow tint", + "breast: light blue-green with black streaks", + "crown: glossy green-black plumage", + "forehead: dusky greenish-blue feathers", + "eyes: large with yellow eye-ring", + "legs: short and strong, gray-blue in color", + "wings: green-blue with hints of red and yellow", + "nape: lustrous green with bronze highlights", + "tail: long, edged with red and yellow feathers", + "throat: pale bluish-white with dark specks" + ], + "northern fantail": [ + "back: olive-brown color with slight streaks", + "beak: small and slightly curved, dark brown", + "belly: pale yellowish-white with grayish flanks", + "breast: light gray with some brownish marks", + "crown: grayish-brown, flat appearance", + "forehead: light gray blending into crown", + "eyes: large and dark with thin white eyering", + "legs: slender, medium-length, and grayish", + "wings: brown with slight pattern, can be fanned out", + "nape: light gray with faint streaks", + "tail: long, dark brown with white tips, fans out prominently", + "throat: pale grayish-white, seamless transition to breast" + ], + "northern fiscal": [ + "back: dark grey feathers", + "beak: sharp, pointed, black", + "belly: off-white coloration", + "breast: light grey plumage", + "crown: black top feathers", + "forehead: black feathered area", + "eyes: small, dark, and round", + "legs: thin, black with sharp talons", + "wings: black with slight markings", + "nape: black and grey feathered", + "tail: long, black, and forked", + "throat: off-white feathers" + ], + "northern giant petrel": [ + "back: greyish-brown feathers", + "beak: large, hooked, pale yellowish", + "belly: whitish-grey feathers", + "breast: thick, dense plumage, greyish-white", + "crown: dark grey with a slight brown tint", + "forehead: greyish-white, smooth feathers", + "eyes: small, dark, and sharp", + "legs: strong, pale pinkish, webbed feet", + "wings: broad, long, grey-brown feathers", + "nape: greyish-brown, thick plumage", + "tail: short, square, dark grey feathers", + "throat: lighter grey, smooth feathers" + ], + "northern gray headed sparrow": [ + "back: grayish-brown plumage", + "beak: short, sturdy, and dark gray", + "belly: pale gray-white feathers", + "breast: off-white to light gray coloring", + "crown: bold gray head cap", + "forehead: pale gray with slight streaks", + "eyes: dark, round, surrounded by faint markings", + "legs: long and slender, deep pink", + "wings: brownish-gray with traces of white bars", + "nape: pale gray coloration", + "tail: medium-length, brownish-gray with a slight fork", + "throat: white to off-white plumage" + ], + "northern grosbeak canary": [ + "back: olive-green with streaks", + "beak: stout and conical", + "belly: pale yellowish-white", + "breast: golden-yellow with dark streaks", + "crown: bright yellow with black stripes", + "forehead: radiant yellow", + "eyes: dark with white eyering", + "legs: sturdy and pinkish-brown", + "wings: black with white and yellow markings", + "nape: yellow-green with black streaks", + "tail: black with white outer feathers", + "throat: vibrant yellow" + ], + "northern hawk cuckoo": [ + "back: grayish-brown with streak pattern", + "beak: long, slightly curved, dark grey", + "belly: off-white with black streaks", + "breast: pale grey with black markings", + "crown: brownish-grey with faint streaks", + "forehead: light greyish-brown", + "eyes: dark brown, surrounded by light grey feathers", + "legs: long, thin, greyish-blue", + "wings: brownish-grey with black bars and white spots", + "nape: light greyish-brown with faint streaks", + "tail: long, dark grey with white tips and black bars", + "throat: pale grey with thin black streaks" + ], + "northern lapwing": [ + "back: greenish-black with a metallic sheen", + "beak: short and black", + "belly: white with black markings", + "breast: white and black, with a black chest band", + "crown: black and crest-like", + "forehead: white stripe above the eye", + "eyes: small and dark", + "legs: long and pinkish-grey", + "wings: rounded, greenish-black with a white trailing edge", + "nape: black with a crest", + "tail: short, black and white with a long central projection", + "throat: white with a black border" + ], + "northern marquesan reed warbler": [ + "back: olive-brown with slight streaks", + "beak: slender, pointed, dark gray", + "belly: pale yellowish-brown", + "breast: yellowish-buff with brown streaks", + "crown: olive-gray with thin, dark streaks", + "forehead: pale olive-gray", + "eyes: dark with white eye-ring", + "legs: long, slender, pale gray", + "wings: olive-brown, slightly rounded", + "nape: olive-gray with faint dark streaks", + "tail: olive-brown, medium length, slightly forked", + "throat: pale yellow with brown streaks" + ], + "northern masked weaver": [ + "back: vibrant yellow feathers", + "beak: curved, black and pointy", + "belly: bright yellow plumage", + "breast: yellow chest feathers", + "crown: black mask-like patch", + "forehead: black feathers blending into mask", + "eyes: small, deep-set, dark-colored", + "legs: slender, dark gray", + "wings: yellow with dark, textured edges", + "nape: yellow, connecting crown and back", + "tail: yellow with dark tip, fan-shaped", + "throat: black mask extending downwards" + ], + "northern mouse colored tyrannulet": [ + "back: olive-brown with subtle streaks", + "beak: small, thin, and pointed", + "belly: pale buff-yellow", + "breast: soft grayish-white", + "crown: light gray with faint streaks", + "forehead: smooth grayish-white", + "eyes: dark brown with grayish-white eye-ring", + "legs: slender and dark gray", + "wings: olive-brown with faint pale wing bars", + "nape: olive-brown with subtle streaks", + "tail: slightly forked, olive-brown with buff edges", + "throat: pale grayish-white" + ], + "northern pied babbler": [ + "back: grayish-brown upper feathers", + "beak: strong, black, slightly curved", + "belly: creamy white underside", + "breast: pale gray with white blends", + "crown: grayish-brown top feathers", + "forehead: pale gray-white front head", + "eyes: dark, round, surrounded by white eye-ring", + "legs: stout, black, well-proportioned legs", + "wings: grayish-brown with slight white edges", + "nape: light grayish-brown", + "tail: long, dark gray with white outer feathers", + "throat: pale gray-white, well-defined" + ], + "northern potoo": [ + "back: brown and mottled with black streaks", + "beak: short, hooked, and grayish-black", + "belly: pale grayish-white with dark streaks", + "breast: grayish-brown with dark streaks", + "crown: dark brown with black spots", + "forehead: grayish-brown with dark streaks", + "eyes: large and yellow with black pupils", + "legs: short and grayish-brown", + "wings: brown with bold black markings", + "nape: dark brown with black spots", + "tail: long and brown with black bands", + "throat: pale grayish-white with dark streaks" + ], + "northern puffback": [ + "back: olive-green feathers with white streaks", + "beak: short, grayish-black, and hooked", + "belly: white, soft, and fluffy", + "breast: white and slightly puffed out", + "crown: rounded, pale gray with white streaks", + "forehead: pale gray with white streaks", + "eyes: dark brown, surrounded by white patches", + "legs: gray and slender with sharp claws", + "wings: olive-green with white streaks", + "nape: pale gray with white streaks", + "tail: short, white-tipped, with olive-green feathers", + "throat: white and fluffy" + ], + "northern pygmy owl": [ + "back: brown plumage with white speckles", + "beak: sharp, black, hooked", + "belly: white with brown markings", + "breast: white with brown bars", + "crown: brown with white spots", + "forehead: brown with white spots", + "eyes: large, yellow, forward-facing", + "legs: feathered, powerful", + "wings: brown with white bars", + "nape: brown with white speckles", + "tail: long, brown with white bars", + "throat: white with brown markings" + ], + "northern red billed hornbill": [ + "back: slate grey feathers", + "beak: long, red curved bill", + "belly: light cream-colored plumage", + "breast: slightly darker cream with spotted patterns", + "crown: black crest with white tips", + "forehead: black feathered, blending into red bill", + "eyes: dark, round eyes with yellow eye-ring", + "legs: short, grey with scaly texture", + "wings: slate grey with white-tipped secondary feathers", + "nape: black and white striped plumage", + "tail: long, white-tipped grey feathers", + "throat: white, blending into light cream-colored breast" + ], + "northern rosella": [ + "back: vibrant yellow and black pattern, with splotches and stripes", + "beak: light grey-blue curved beak for cracking seeds", + "belly: deep blue feathers with fine details", + "breast: pale blue transitioning into white", + "crown: vivid blue helmet-like structure on the top of the head", + "forehead: red-orange stripe above the beak", + "eyes: dark with contrasting white outline", + "legs: grey-blue legs with strong grip", + "wings: wide, black with bold yellow streaks", + "nape: mixture of black and yellow, forming intricate patterns", + "tail: long, narrow feathers, primarily black with slight yellow marking", + "throat: iridescent blue with subtle white details" + ], + "northern schiffornis": [ + "back: olive-green coloring", + "beak: hooked, dark gray", + "belly: pale, yellowish-olive", + "breast: lighter olive-green", + "crown: olive-green, blending with back", + "forehead: slight yellowish tinge", + "eyes: dark brown, slightly concealed", + "legs: dark gray, strong build", + "wings: olive-green, broad and rounded", + "nape: uniform olive-green", + "tail: medium-length, olive-green, square-shaped", + "throat: pale olive-yellowish hue" + ], + "northern screamer": [ + "back: dark grey with dense feathering", + "beak: short, hooked, and cream-colored", + "belly: pale grey with soft, downy feathers", + "breast: bluish-grey with smooth feathering", + "crown: black with a crest of elongated feathers", + "forehead: smooth and dark grey", + "eyes: small with a white iris and black pupil", + "legs: long, sturdy, and greyish-blue", + "wings: large and rounded, with dark grey flight feathers", + "nape: dark grey with a slight crest", + "tail: short and fan-shaped with dark grey feathers", + "throat: pale grey with fine feathering" + ], + "northern scrub flycatcher": [ + "back: olive green with streaks", + "beak: short, narrow, black", + "belly: pale yellowish-white", + "breast: light olive-green", + "crown: dark olive-gray with a hidden yellow patch", + "forehead: narrow pale eyebrows", + "eyes: dark with white eyering", + "legs: long, thin, grayish-yellow", + "wings: olive-green with rufous patches, primary feathers dark with pale edges", + "nape: olive-green, slightly paler than the crown", + "tail: long, dark, forked with rufous edges on outer feathers", + "throat: pale yellowish-white" + ], + "northern scrub robin": [ + "back: olive-brown with subtle streaks", + "beak: slender and curved, dark grey", + "belly: creamy white with light brown speckles", + "breast: pale brown with faint streaks", + "crown: rufous-brown with a slight crest", + "forehead: lighter rufous-brown, blending into the crown", + "eyes: dark brown with a thin, white eye-ring", + "legs: long and pale pinkish-grey", + "wings: olive-brown with faint buff wingbars", + "nape: rufous-brown, continuous with the crown", + "tail: long and rufous-brown, with white outer feather tips", + "throat: white with some light brown streaks" + ], + "northern shrike tit": [ + "back: light grey with slight streaks", + "beak: black, hooked, and robust", + "belly: soft white or light grey", + "breast: light grey or white, slightly streaked", + "crown: black, well-defined", + "forehead: black with a white stripe above the eyes", + "eyes: dark, round, alert", + "legs: slender, black with strong claws", + "wings: grey or dark brown with white markings", + "nape: light grey, sometimes streaked", + "tail: long, black with white outer feathers", + "throat: soft white with minimal streaks" + ], + "northern silvery kingfisher": [ + "back: vibrant blue feathers with silvery sheen", + "beak: long, black, and pointy", + "belly: white to light grayish-blue", + "breast: white, sometimes with bluish tinge", + "crown: deep blue with silvery highlights", + "forehead: bold blue merging into the crown", + "eyes: dark brown, surrounded by blue feathers", + "legs: short, bluish-gray with sharp claws", + "wings: iridescent blue with black flight feathers", + "nape: bright blue, connecting crown and back", + "tail: long, blue feathers with black tips", + "throat: white, contrasting with blue head" + ], + "northern slaty antshrike": [ + "back: slate-grey with fine black markings", + "beak: short, strong, and slightly hooked", + "belly: slate-grey with lighter undertones", + "breast: slate-grey blending into belly color", + "crown: black with faint grey lines", + "forehead: black, gradually blending into crown color", + "eyes: small and dark with surrounding pale eye-rings", + "legs: long and slender, pale grey-brown", + "wings: slate-grey with slightly darker flight feathers", + "nape: slate-grey, transitioning from crown color", + "tail: slate-grey with broad, blackish terminal band", + "throat: pale grey with darker grey collar separating it from the breast" + ], + "northern sooty woodpecker": [ + "back: dark black feathers with a slight sheen", + "beak: strong, straight, and chisel-shaped", + "belly: pale grayish-white with occasional faint barring", + "breast: blackish-gray with a slight gloss", + "crown: black with a red patch on males", + "forehead: black feathers blending into the crown", + "eyes: black with a white, crescent-shaped eyering", + "legs: dark gray, short, and strong", + "wings: black with white spots on primaries and secondaries", + "nape: solid black, connecting to the back", + "tail: black with white barring on outer feathers", + "throat: blackish-brown blending into the breast" + ], + "northern tropical pewee": [ + "back: olive-green to grayish-brown", + "beak: straight, dark-colored, and pointed", + "belly: light yellowish", + "breast: pale grayish-white", + "crown: dark gray", + "forehead: gray to olive-brown", + "eyes: black with thin white eye-ring", + "legs: dark gray or black", + "wings: brownish-black with faint wing bars", + "nape: gray to olive-brown", + "tail: dark with slightly forked shape", + "throat: pale grayish-white" + ], + "northern variable pitohui": [ + "back: rusty orange feathers", + "beak: short and black", + "belly: golden-yellow plumage", + "breast: yellow-orange plumage", + "crown: reddish-brown feathers", + "forehead: rusty brown coloring", + "eyes: dark brown with black pupils", + "legs: grayish-black with scaly texture", + "wings: mottled black and orange feathers", + "nape: reddish-brown feathered", + "tail: vivid orange and black feathers", + "throat: bright yellow-orange plumage" + ], + "northern wattled honeyeater": [ + "back: olive-green with streaks", + "beak: long, slender, and black", + "belly: pale yellow with faint streaks", + "breast: bright yellow and streaked", + "crown: black with yellow streaks", + "forehead: black with small wattles", + "eyes: dark brown with slight white ring", + "legs: blackish-grey and slender", + "wings: olive-green with black feathers", + "nape: olive-green with yellow streaks", + "tail: long and olive-green with black tips", + "throat: bright yellow and streaked" + ], + "northern wheatear": [ + "back: grayish-brown with subtle mottling", + "beak: thin, pointed, dark gray", + "belly: pale whitish with some buff tones", + "breast: buffy-orange fading to white", + "crown: gray-brown with lighter edges", + "forehead: white with faint brown streaks", + "eyes: dark brown with white eyering", + "legs: dark, slender, sturdy", + "wings: gray-brown with white flashes", + "nape: gray-brown with faint streaks", + "tail: black with prominent white outer feathers", + "throat: white with gray-brown streaks on sides" + ], + "northern white faced owl": [ + "back: white with dark speckles", + "beak: short and hooked, light grey", + "belly: white and feathery", + "breast: white with dark grey streaks", + "crown: white with dark streaks", + "forehead: white and feathery, blending into crown", + "eyes: large and orange-yellow, encircled by dark feathery facial disks", + "legs: feathered and white", + "wings: long with white and dark mottled patterns", + "nape: white with dark speckles, like the back", + "tail: white with dark barred pattern", + "throat: white and smooth" + ], + "northern yellow white eye": [ + "back: vibrant yellow-green plumage", + "beak: short, pointed, black", + "belly: bright yellow feathers", + "breast: vibrant yellow plumage", + "crown: greenish-yellow feathers", + "forehead: greenish-yellow hue", + "eyes: large, black, white-eye ring", + "legs: slender, grayish-blue", + "wings: yellowish-green, black primary feathers", + "nape: greenish-yellow hue", + "tail: black feathers, yellow edges", + "throat: bright yellow feathers" + ], + "nubian bustard": [ + "back: brown and white patterned feathers", + "beak: short, thick, and pale-colored", + "belly: white with fine black bars", + "breast: buff-colored with black specks", + "crown: black and white striped pattern", + "forehead: black stripe extending above eyes", + "eyes: small and dark, surrounded by pale skin", + "legs: long and grayish-yellow", + "wings: brown and white, with ornate pattern", + "nape: black and white striped feathers", + "tail: long, brown with white bars and black tip", + "throat: white with black speckles" + ], + "nubian nightjar": [ + "back: dark grey-brown plumage with streaked pattern", + "beak: short, black, wide gaping mouth", + "belly: buff-brown with blackish spots and bars", + "breast: greyish-brown with black streaks and spots", + "crown: dark brown with buff speckling and streaks", + "forehead: dark brown with fine buff markings", + "eyes: large, reflective, set close to forehead", + "legs: short, greyish, semi-feathered", + "wings: long, pointed, dark brown with buff markings", + "nape: brownish-grey with buff and black bars", + "tail: dark brown with buff and black barring, white outer feathers", + "throat: greyish-buff with black and brown streaks" + ], + "nubian woodpecker": [ + "back: dark black feathers with white speckles", + "beak: long, sharp, and chisel-like", + "belly: creamy white with black bars", + "breast: white with black spots", + "crown: red cap on the head", + "forehead: black forehead with white speckles", + "eyes: small, round, and dark", + "legs: grayish with strong, sharp claws", + "wings: black with white bars and spots", + "nape: black with white streaks", + "tail: black with white bands, stiff, and long", + "throat: white with black spots" + ], + "nullarbor quail thrush": [ + "back: brownish-grey with dark streaks", + "beak: short, curved, and black", + "belly: white with brownish-grey flanks", + "breast: white with dark speckles", + "crown: brownish-grey with a darker stripe", + "forehead: brownish-grey", + "eyes: dark brown with white eye-ring", + "legs: long and pale pinkish-grey", + "wings: brownish-grey with dark markings", + "nape: brownish-grey with a dark stripe", + "tail: long and brownish-grey with dark banding", + "throat: white with faint speckles" + ], + "numfor leaf warbler": [ + "back: olive-green upper body", + "beak: thin, pointed, blackish", + "belly: whitish-yellow underside", + "breast: pale yellow chest", + "crown: pale yellow head with green tint", + "forehead: slightly brighter yellow", + "eyes: dark with thin white eyering", + "legs: pale pinkish-brown", + "wings: olive-green with faint white wingbars", + "nape: greenish-yellow transition from crown", + "tail: olive-green, slightly forked", + "throat: bright yellow, unmarked" + ], + "numfor paradise kingfisher": [ + "back: vibrant blue feathers with black patterns", + "beak: long, slim, and pointed, orange in color", + "belly: bright white feathers with a slight blue shimmer", + "breast: rich white feathers blending into the blue belly", + "crown: brilliant turquoise-blue with black spots", + "forehead: striking blue feathers with a subtle turquoise sheen", + "eyes: round, dark, and alert, framed by black markings", + "legs: short and sturdy, deep red in color", + "wings: expansive, bright blue with intricate black patterns", + "nape: adorned with bold turquoise feathers and black spots", + "tail: lengthy, red shafts with blue and black feather tips", + "throat: pristine white feathers that complement the breast" + ], + "nuthatch vanga": [ + "back: blue-gray upperparts", + "beak: short, stout, and slightly curved", + "belly: white with pale gray wash", + "breast: white, blending into gray sides", + "crown: dark slate-gray, well-defined", + "forehead: smooth slate-gray transition from crown", + "eyes: dark, medium-sized, surrounded by gray-white eyering", + "legs: sturdy, pale pinkish-gray", + "wings: blue-gray with white-edged flight feathers", + "nape: slate-gray, blending into blue-gray back", + "tail: blue-gray with white outer feathers and slight fork", + "throat: white, unmarked" + ], + "nutting flycatcher": [ + "back: olive-green with streaks of grey", + "beak: straight, thin, and dark", + "belly: yellowish-white", + "breast: pale yellow with grey streaks", + "crown: grayish-olive with rufous patch", + "forehead: pale grey with faint markings", + "eyes: black with white eye-ring", + "legs: long, dark, and slender", + "wings: dark with two white wing bars", + "nape: greyish-olive, blending with crown", + "tail: dark, long, with white outer feathers", + "throat: buffy-white with grey streaks" + ], + "nyanza swift": [ + "back: sleek dark feathers", + "beak: small and sharp", + "belly: lighter gray coloring", + "breast: compact gray plumage", + "crown: dark feathered crest", + "forehead: smooth dark feathers", + "eyes: round and shiny black", + "legs: thin and agile", + "wings: long and narrow, built for speed", + "nape: smooth transition from crown", + "tail: short and lightly forked", + "throat: gray plumage blending into breast" + ], + "oahu amakihi": [ + "back: olive-green feathers covering the upper body", + "beak: black, slightly curved, and slender", + "belly: yellowish-green, fading to paler yellow", + "breast: yellowish-green, blending with the belly", + "crown: olive-green feathers on top of the head", + "forehead: olive-green feathers above the eyes", + "eyes: small and black, surrounded by an olive-green area", + "legs: grayish-black, with sharp claws for perching", + "wings: olive-green with black flight feathers", + "nape: olive-green feathers at the base of the skull", + "tail: olive-green and black feathers, relatively short", + "throat: vibrant yellow, contrasting with the olive-green upper body" + ], + "oahu elepaio": [ + "back: light brown with white streaks", + "beak: small, slender, and black", + "belly: off-white with light brown speckles", + "breast: pale brownish-gray with white streaks", + "crown: warm brown with noticeable white stripe", + "forehead: light brown with faint white markings", + "eyes: dark with a white eye-ring", + "legs: thin and black", + "wings: brown with white streaks and black barring", + "nape: light brown with white streaks", + "tail: brown with black bars and white edging", + "throat: off-white with light brown speckles" + ], + "oasis hummingbird": [ + "back: iridescent green feathers", + "beak: long, slender, and black", + "belly: white, fluffy, and compact", + "breast: vibrant purple-blue plumage", + "crown: iridescent green with a streamlined shape", + "forehead: bright, metallic green feathers", + "eyes: small, round, black, and alert", + "legs: thin, gray, and short", + "wings: long, slender, and rapid in motion", + "nape: shining green, curved down to neckline", + "tail: short, forked, and dark in color", + "throat: brilliant magenta hue, shimmering in light" + ], + "oaxaca sparrow": [ + "back: brownish-gray with dark streaks", + "beak: short, conical, and grayish-black", + "belly: whitish-gray with faint streaks", + "breast: light gray with darker streaks", + "crown: dark gray with subtle stripes", + "forehead: pale gray leading to dark crown", + "eyes: black with thin white eye-ring", + "legs: pale pinkish-gray", + "wings: dark brown with buff wingbars", + "nape: grayish-brown with some streaking", + "tail: dark brown with white outer feathers", + "throat: whitish-gray, unmarked" + ], + "obi golden bulbul": [ + "back: vibrant yellow feathers", + "beak: short, sharp and pointed", + "belly: golden-yellow plumage", + "breast: bright golden-yellow feathers", + "crown: sleek, yellow-golden head feathers", + "forehead: radiant yellow plumage", + "eyes: small, dark beady orbs", + "legs: thin, sturdy gray limbs", + "wings: yellow, streaked with brown shades", + "nape: golden-yellow feathers outlining the neck", + "tail: elongated yellow feathers with dark tips", + "throat: radiant golden-yellow feathers" + ], + "obscure berrypecker": [ + "back: vibrant green feathers", + "beak: small and pointed, perfect for berry-picking", + "belly: lighter greenish-yellow hues", + "breast: mix of green and yellow feathers", + "crown: striking ultramarine crest", + "forehead: hint of blue coloring", + "eyes: deep black, surrounded by green and blue feathers", + "legs: slender and gray, built for tree perching", + "wings: mix of iridescent green and blue feathers", + "nape: deep green feathers transitioning to blue", + "tail: long, blue-green feathers with yellow tips", + "throat: patch of vibrant yellow plumage" + ], + "obscure honeyeater": [ + "back: subtle greenish-brown feathered", + "beak: long, slender curved bill", + "belly: light cream-white feathers", + "breast: pale grey plumage", + "crown: olive-brown with slight crest", + "forehead: faded olive-yellow tinge", + "eyes: small, dark and piercing", + "legs: thin, greyish-blue", + "wings: greenish-brown with faint streaks", + "nape: olive-brown transitioning to grey", + "tail: long, slightly forked, dark brown", + "throat: off-white with grey streaks" + ], + "oceanic flycatcher": [ + "back: slate-gray feathers", + "beak: short and black", + "belly: pale grayish-white", + "breast: light gray with slight olive tint", + "crown: dark gray or blackish", + "forehead: dark gray blending to lighter shades", + "eyes: round with black pupil, white eye-ring", + "legs: slender and black", + "wings: blackish-gray, slightly rounded", + "nape: grayish-olive", + "tail: relatively long, blackish with whitish tips", + "throat: pale gray, sometimes with faint streaking" + ], + "ocellated antbird": [ + "back: dark gray with ocellated feather pattern", + "beak: short, curved, and black", + "belly: pale gray with faint barring", + "breast: light gray with black ocellated spots", + "crown: rufous or red-brown with black ocellations", + "forehead: red-brown, faded to lighter rufous", + "eyes: dark, beady, with grayish eye-ring", + "legs: thin, pale pink or grayish", + "wings: grayish with black ocellated pattern and rufous edges", + "nape: dark gray with light ocellated markings", + "tail: long, grayish, with black barring and white tips", + "throat: whitish or light gray with faint gray markings" + ], + "ocellated crake": [ + "back: distinct dark-brown feather pattern", + "beak: short, sharp, and pale-hued", + "belly: light cream-colored feathers", + "breast: beige, lightly striped feathers", + "crown: brownish with a subtle crest", + "forehead: paler shade of brown, smooth appearance", + "eyes: small, dark, and beady", + "legs: long, thin, and yellowish-green", + "wings: pale brownish-grey, modestly sized", + "nape: brown darker than the crown", + "tail: short, black, and white barred pattern", + "throat: pale beige with a smooth texture" + ], + "ocellated piculet": [ + "back: greenish-yellow with black barring", + "beak: short, pointed, and black", + "belly: yellow with black markings", + "breast: white with black spots", + "crown: black with white markings, may have a reddish patch", + "forehead: black and white striped", + "eyes: small, round with black pupils and a white ring", + "legs: short, gray with sharp claws", + "wings: greenish-yellow with black barring and white spots", + "nape: black with white spotting, or possibly reddish in males", + "tail: short, black with white tips and bars", + "throat: white with a hint of yellow" + ], + "ocellated poorwill": [ + "back: patterned with gray and brown feathers", + "beak: small, triangular and dark-colored", + "belly: light gray with faint barring", + "breast: pale gray with faint brown patches", + "crown: mottled gray and brown", + "forehead: grayish-brown with speckled markings", + "eyes: dark and round, with prominent white eyering", + "legs: slender, pale gray with dark barring", + "wings: long and pointed, with gray and brown barring", + "nape: grayish-brown with mottled markings", + "tail: long, with dark gray and brown bands", + "throat: pale gray with faint brown stippling" + ], + "ocellated quail": [ + "back: bronze-green feathers with black and olive speckles", + "beak: short, strong, grayish curved beak", + "belly: grayish-brown with brown markings", + "breast: pale gray with black and white speckles", + "crown: reddish-brown with black and white streaks", + "forehead: black and white bands extending to dark eyes", + "eyes: dark brown with narrow white eye-ring", + "legs: brownish-gray, strong and scaled", + "wings: rounded with grayish-brown, greenish-bronze and black spots", + "nape: reddish-brown with black and white stripes", + "tail: grayish-brown with white and black transverse bars", + "throat: white with fine black speckles" + ], + "ocellated tapaculo": [ + "back: olive-green with black streaks", + "beak: short, curved, and black", + "belly: pale yellow with gray specks", + "breast: grayish-white with faint spots", + "crown: dark blue with iridescent green spots", + "forehead: olive-green", + "eyes: black and round", + "legs: sturdy and gray", + "wings: olive-green with black streaks and blue spots", + "nape: olive-green with black streaks", + "tail: short and olive-green with black streaks", + "throat: light gray with slight spotted pattern" + ], + "ocellated thrasher": [ + "back: olive-brown with subtle black streaks", + "beak: long and slightly curved, grayish-yellow", + "belly: whitish with dark streaks and spots", + "breast: grayish-yellow, streaked with black", + "crown: brownish-gray with dark streaks", + "forehead: pale gray, slightly streaked", + "eyes: dark brown, circled by a faint eyering", + "legs: long and strong, grayish-yellow", + "wings: brownish-gray with darker flight feathers", + "nape: brownish-gray with darker streaks", + "tail: long and brownish-gray, with dark barring", + "throat: whitish, streaked with dark gray" + ], + "ocellated woodcreeper": [ + "back: streaked brown feathers", + "beak: long and slightly curved", + "belly: cream-colored with light brown spots", + "breast: dark brown with lighter streaks", + "crown: dark brown with light streaks", + "forehead: similar to crown with light streaks", + "eyes: dark color surrounded by light feathers", + "legs: strong and grey", + "wings: dark brown with lighter feather tips", + "nape: dark brown with light streaks", + "tail: long and ladder-patterned", + "throat: cream-colored with brown spotting" + ], + "ochraceous attila": [ + "back: olive-green coloration", + "beak: sharp and stout, blackish-grey", + "belly: pale yellowish-ochre", + "breast: ochre-yellow with olive-green tinges", + "crown: smooth, olive-brown", + "forehead: subtle greenish-yellow", + "eyes: dark brown with pale eye-ring", + "legs: sturdy, pale grey or pinkish-grey", + "wings: olive-brown, slightly pointed", + "nape: olive-green transitioning to crown", + "tail: long, olive-brown with slight yellowish edges", + "throat: bright ochre-yellow" + ], + "ochraceous bulbul": [ + "back: olive-yellow feathers", + "beak: short, slender, and curved", + "belly: pale yellow", + "breast: pale yellowish-orange", + "crown: olive-yellow with a flattened crest", + "forehead: olive-yellow feathers", + "eyes: dark brown with white eyerings", + "legs: long, grayish-brown", + "wings: olive-green with yellow edges", + "nape: olive-yellow feathers", + "tail: long, greenish-yellow with white tips", + "throat: pale yellow" + ], + "ochraceous pewee": [ + "back: olive-brown with subtle streaks", + "beak: short, pointy, and dark", + "belly: pale cream with faint streaks", + "breast: light ochre-brown with darker streaks", + "crown: smooth olive-brown", + "forehead: slightly paler olive-brown", + "eyes: dark with white eye-ring", + "legs: pale grayish-brown", + "wings: olive-brown with prominent wing bars", + "nape: matching olive-brown with the crown", + "tail: long, dark, and slightly forked", + "throat: pale cream, contrasted with breast" + ], + "ochraceous piculet": [ + "back: olive-green with fine barring", + "beak: short, pointed, and black", + "belly: creamy white with faint black streaks", + "breast: pale ochraceous with black streaks", + "crown: grey with black spots", + "forehead: pale ochraceous with black speckles", + "eyes: dark with a white eye-ring", + "legs: slender and grayish-brown", + "wings: olive-green with white spots on primary feathers", + "nape: greyish with fine black spots", + "tail: blackish with white bars and a narrow white tip", + "throat: creamy white with black speckles" + ], + "ochraceous wren": [ + "back: brownish-orange plumage", + "beak: short and pointed", + "belly: white with buff streaks", + "breast: light brown with white speckles", + "crown: orange-brown with white streaks", + "forehead: white with brown streaks", + "eyes: dark brown with a thin white eye ring", + "legs: pinkish-gray", + "wings: brownish-orange with light fringes", + "nape: orange-brown with white streaks", + "tail: brown with white barring", + "throat: light brown with white speckles" + ], + "ochraceous breasted flycatcher": [ + "back: olive-brown feathers", + "beak: short and pointy", + "belly: pale ochraceous-yellow", + "breast: light ochraceous-orange", + "crown: grayish-brown", + "forehead: slightly lighter gray-brown", + "eyes: small and dark", + "legs: thin and dark gray", + "wings: olive-brown with lighter edges", + "nape: grayish-brown feathers", + "tail: olive-brown, moderately forked", + "throat: pale ochraceous-yellow" + ], + "ochre backed woodpecker": [ + "back: dark brown with ochre streaks", + "beak: strong, sharp, and black", + "belly: light cream with dark brown bars", + "breast: pale ochre with brown speckles", + "crown: dark brown with ochre patches", + "forehead: pale cream with brown spots", + "eyes: small and black, surrounded by pale ring", + "legs: grayish-brown, sturdy", + "wings: dark brown with ochre rectangular markings and white bars", + "nape: ochre with dark brown spots", + "tail: dark brown with white-tipped, sturdy feathers", + "throat: cream with bold, dark brown streaks" + ], + "ochre bellied boobook": [ + "back: rich brown with dense white speckles", + "beak: dark grey and curved", + "belly: light ochre color with white streaks", + "breast: warm brown with white streaks", + "crown: dark brown with white speckles", + "forehead: light brown with white speckles", + "eyes: piercing yellow with dark pupils", + "legs: light grey with sharp talons", + "wings: brown with white bars and spots", + "nape: reddish brown with white speckles", + "tail: brown with white barring and curved shape", + "throat: light ochre with white streaks" + ], + "ochre bellied dove": [ + "back: olive-brown with subtle color variations", + "beak: short and stout, greyish-black", + "belly: warm ochre hue, speckled", + "breast: pale grey with a pinkish tinge", + "crown: blue-grey with a slight sheen", + "forehead: blue-grey, merging with the crown", + "eyes: dark brown with a thin grey eye-ring", + "legs: short and sturdy, pinkish-grey", + "wings: olive-brown with black wingtips, discreet white spots", + "nape: blue-grey, transitioning from the crown", + "tail: olive-brown with black band near the tip", + "throat: muted white with a tinge of ochre" + ], + "ochre bellied flycatcher": [ + "back: olive-green with subtle streaks", + "beak: small, pointed, dark grey", + "belly: bright ochre-yellow", + "breast: dull olive-green", + "crown: same as back, olive-green", + "forehead: slightly lighter olive-green", + "eyes: black with white eyering", + "legs: dark grey, slender", + "wings: olive-green with dark flight feathers", + "nape: similar to back, olive-green", + "tail: long, olive-green with darker central feathers", + "throat: yellowish-olive, fading into belly color" + ], + "ochre breasted antpitta": [ + "back: olive-brown feathers", + "beak: short, thin, and pointed", + "belly: pale ochre-yellow", + "breast: rich ochre-orange", + "crown: dark olive-brown", + "forehead: olive-brown", + "eyes: dark, rounded, surrounded by a light ochre ring", + "legs: long, thin, and pinkish-gray", + "wings: short, olive-brown with narrow white bars", + "nape: olive-brown", + "tail: short, dark olive-brown with white tips", + "throat: creamy white, partially concealed by ochre breast" + ], + "ochre breasted brushfinch": [ + "back: olive-green feathers covering the upper body", + "beak: short, conical-shaped, and dark-colored", + "belly: pale yellow, fading to white", + "breast: yellowish-orange, with a streaked pattern", + "crown: olive-green, with dark streaks", + "forehead: olive-fronted, with dark streaks", + "eyes: dark, beady, surrounded by light eye-ring", + "legs: grayish, with sharp claws", + "wings: olive-green, with darker flight feathers", + "nape: olive-green, blending with the back and crown", + "tail: short, dark, and square-shaped", + "throat: white or pale yellow, with some faint streaking" + ], + "ochre breasted catbird": [ + "back: olive-green feathers", + "beak: short, black, and pointed", + "belly: pale ochre-yellow coloration", + "breast: ochre-yellow with some streaking", + "crown: olive-green with a slightly raised crest", + "forehead: olive-green feathers transitioning to yellowish-brown near the eyes", + "eyes: dark brown with a white eye-ring", + "legs: strong grayish-black legs and feet", + "wings: olive-green with darker flight feathers", + "nape: olive-green feathers with a smooth transition to the back", + "tail: long, olive-green with darker central feathers", + "throat: light ochre-yellow with subtle streaks" + ], + "ochre breasted foliage gleaner": [ + "back: olive-brown feathers", + "beak: short, slightly curved", + "belly: creamy ochre hue", + "breast: rich ochre coloring", + "crown: olive-brown with lighter streaks", + "forehead: slightly paler brown", + "eyes: round, black, small", + "legs: long, slender, pale brown", + "wings: olive-brown with faint barring", + "nape: olive-brown with faint streaks", + "tail: rufous-brown with slight notch", + "throat: off-white with ochre tinge" + ], + "ochre breasted pipit": [ + "back: light brown with streaks", + "beak: slender and dark", + "belly: pale ochre-yellow", + "breast: pale ochre with dark streaks", + "crown: brown with pale streaks", + "forehead: light brown", + "eyes: dark with pale eyering", + "legs: long and slender, pale brown", + "wings: brown with pale markings", + "nape: light brown with streaks", + "tail: brown with white outer feathers", + "throat: pale ochre-yellow" + ], + "ochre breasted tanager": [ + "back: vibrant green feathers", + "beak: short, pointy, and black", + "belly: golden ochre hue", + "breast: rich ochre-orange color", + "crown: grassy green feathers", + "forehead: light green to yellow gradient", + "eyes: small, round, and black", + "legs: slender and grayish-brown", + "wings: lively green with black fringes", + "nape: green transitioning to ochre", + "tail: elongated, green with darker tips", + "throat: bright ochre-yellow accent" + ], + "ochre browed thistletail": [ + "back: brownish hue with streaks", + "beak: short, curved, and pointy", + "belly: cream-colored with soft feathers", + "breast: pale brown with lighter streaks", + "crown: goldish-orange with a prominent ridge", + "forehead: light brown fading to a light gold", + "eyes: dark, attentive, and encircled by a pale eye-ring", + "legs: slender, long, and pale gray", + "wings: rufous-brown with strong bar patterns", + "nape: light brown fading to ochre-brown", + "tail: long, needle-like, with rust-brown feathers", + "throat: pale buff with fine streaks" + ], + "ochre cheeked spinetail": [ + "back: olive-brown with streaks", + "beak: short, sharp, pale-colored", + "belly: buffy-cream with dark streaks", + "breast: grayish-brown, streaked", + "crown: rufous-brown, slightly raised", + "forehead: pale ochre-yellow", + "eyes: dark with pale eye-ring", + "legs: pinkish-gray, slender", + "wings: brownish, barred with rufous", + "nape: rufous-brown, streaked", + "tail: long, brownish with rufous edges", + "throat: pale gray, slightly streaked" + ], + "ochre collared monarch": [ + "back: golden-olive feathers", + "beak: slim, black, and pointed", + "belly: pale yellow hue", + "breast: orange-yellow plumage", + "crown: black feathers with a bright blue sheen", + "forehead: black and glossy blue", + "eyes: dark with a white eye-ring", + "legs: grayish-blue and slender", + "wings: dark blue-black with golden-olive edging", + "nape: bright ochre-toned collar", + "tail: long and black with blue sheen", + "throat: vivid orange-yellow" + ], + "ochre collared piculet": [ + "back: greenish-olive feathers", + "beak: short and pointed", + "belly: pale yellowish-white", + "breast: yellowish-white with light streaks", + "crown: red in males, black in females", + "forehead: red in males, black in females", + "eyes: dark with white eye-ring", + "legs: short and grayish-blue", + "wings: greenish-olive with white spots", + "nape: yellow ochre collar", + "tail: short and black with white tips", + "throat: yellowish-white" + ], + "ochre faced tody flycatcher": [ + "back: olive-green upperparts", + "beak: short, black, and pointed", + "belly: off-white and faintly streaked", + "breast: pale yellowish", + "crown: ochre-colored with a concealed crest", + "forehead: ochre-orange with faint eyebrows", + "eyes: dark brown and beady", + "legs: thin, grayish-blue", + "wings: olive-green with dark feather edges", + "nape: greenish-olive with ochre collar", + "tail: dark greenish-brown with white tips", + "throat: pale yellow, unmarked" + ], + "ochre flanked tapaculo": [ + "back: olive-brown with faint streaks", + "beak: short and stout, blackish color", + "belly: pale, ochre-tinted hue", + "breast: light gray with subtle barring", + "crown: dark brown with a hint of gray", + "forehead: slightly paler brown than crown", + "eyes: medium-sized, dark color", + "legs: sturdy and reddish-brown", + "wings: rounded and olive-brown with buff feather edges", + "nape: brownish-gray with faint streaks", + "tail: short and rounded, dark brown with buffy tips", + "throat: pale gray with fine barring" + ], + "ochre fronted antpitta": [ + "back: olive-brown feathers", + "beak: short, curved, and black", + "belly: dull yellowish-orange", + "breast: ochre-orange with faint streaks", + "crown: olive-brown with a slight crest", + "forehead: bright ochre-orange", + "eyes: small, round, and black", + "legs: long, slender, and pinkish-gray", + "wings: olive-brown with faint bars", + "nape: olive-brown", + "tail: short and olive-brown", + "throat: yellowish-white with dark streaks" + ], + "ochre headed flycatcher": [ + "back: olive-brown feathers", + "beak: short and black", + "belly: pale yellow", + "breast: light ochre-yellow", + "crown: orange-brown plume", + "forehead: vibrant ochre-yellow", + "eyes: small, black, attentive", + "legs: grayish, slender legs", + "wings: olive-brown, medium-sized", + "nape: orange-brown hue", + "tail: dark brown, medium-length feathers", + "throat: pale yellow" + ], + "ochre lored flycatcher": [ + "back: olive-brown color with a hint of green", + "beak: short, stout, and black", + "belly: yellowish-white with subtle streaks", + "breast: light yellow with faint streaks", + "crown: olive-brown with a slight crest", + "forehead: ochre-yellow, standing out from the rest", + "eyes: dark and beady, black ringed with a white outline", + "legs: slender and gray", + "wings: olive-brown, with two light wing bars", + "nape: olive-brown, blending with the back", + "tail: olive-brown, medium length, and slightly forked", + "throat: pale yellow, meeting the breast seamlessly" + ], + "ochre marked parakeet": [ + "back: vibrant green feathers", + "beak: strong, curved orange", + "belly: yellowish-green feathers", + "breast: bright yellow plumage", + "crown: deep blue feathered crest", + "forehead: ochre-orange markings", + "eyes: dark, round with white eye-ring", + "legs: grayish, strong limbs", + "wings: green with blue-tipped feathers", + "nape: green with slight blue tint", + "tail: long, blue and green feathers", + "throat: bright yellow plumage" + ], + "ochre naped ground tyrant": [ + "back: olive-gray with a slight brown tint", + "beak: short, stout, and black", + "belly: light yellowish-brown", + "breast: pale gray with beige streaks", + "crown: slate gray with an ochre patch", + "forehead: slate gray and subtly pale", + "eyes: beady and black with white eye-ring", + "legs: long, slender, and dark gray", + "wings: olive-brown with bold white wing-bars", + "nape: ochre-yellow patch on the back of the head", + "tail: moderate length, olive-brown with white outer feathers", + "throat: light gray with faint streaks" + ], + "ochre rumped antbird": [ + "back: olive-brown plumage", + "beak: thin, pointed black beak", + "belly: ochre-yellow feathers", + "breast: creamy-buff shading", + "crown: dark brown with rufous hues", + "forehead: slightly paler brown", + "eyes: large, dark with white eye-ring", + "legs: bluish-grey", + "wings: olive-brown with two white wing bars", + "nape: dark brown transitioning to ochre rump", + "tail: longish, ochre-edged feathers", + "throat: light grey with faint streaking" + ], + "ochre rumped bunting": [ + "back: olive-green feathers with a slight sheen", + "beak: strong, conical-shaped, dark upper, and paler lower portion", + "belly: pale yellow with some streaking", + "breast: vibrant yellow with dark streaks", + "crown: warm chestnut-brown with a subtle crest", + "forehead: bright yellow, merging with the crown", + "eyes: dark and alert, surrounded by yellow feathers", + "legs: strong, grayish-blue legs designed for perching", + "wings: dark brown with buff-colored wing bars", + "nape: olive-green feathers transitioning from the crown", + "tail: long, dark brown with white outer tail feathers", + "throat: bright yellow, continuing down to the breast" + ], + "ochre striped antpitta": [ + "back: rusty-brown with darker streaks", + "beak: short and stout, black in color", + "belly: ochre with faint horizontal stripes", + "breast: warm ochre with black stripes", + "crown: brown with prominent eye-ring", + "forehead: smooth, light brown", + "eyes: dark, medium-sized, encircled with white", + "legs: stout, long, and pinkish-gray", + "wings: brown with faint black streaks", + "nape: brown with black stripes", + "tail: short and brown, with black bars", + "throat: pale with streaks of ochre and black" + ], + "odedi": [ + "back: vibrant green feathers", + "beak: sharp, yellowish-orange curve", + "belly: soft, light gray plumage", + "breast: royal blue feathers with white streaks", + "crown: brilliant red crest", + "forehead: small tuft of white feathers", + "eyes: bright, piercing black", + "legs: spindly, light brown appendages", + "wings: multi-colored feathers with a wingspan of varied hues", + "nape: iridescent purple feathers", + "tail: long, yellow-tipped feathers with a fan-like display", + "throat: delicate, pale pink plumage" + ], + "ogea monarch": [ + "back: olive-green feathers with a slight sheen", + "beak: relatively short, sharp, black", + "belly: vibrant yellow hue with a touch of orange", + "breast: bright yellow with sporadic orange streaks", + "crown: olive-green feathers with black streaks", + "forehead: attractive olive-green feathers", + "eyes: dark, medium-sized, and round", + "legs: thin, grayish-black with prominent claws", + "wings: blue-black with white and yellow patterning, slightly elongated", + "nape: olive-green feathers with black striping", + "tail: white-tipped blue-black feathers with yellow patches, slightly forked", + "throat: yellow feathers with occasional orange streaks" + ], + "okarito brown kiwi": [ + "back: dark greyish-brown with streaks of lighter shades", + "beak: elongated, slightly curved, pale-colored", + "belly: soft, light greyish-brown with dense feathers", + "breast: rounded, lighter-toned compared to the back", + "crown: covered with dark, dense, bristle-like feathers", + "forehead: subtly protruding forward with small dark feathers", + "eyes: small, dark, and hidden within feathered face", + "legs: thick, strong, and greyish-brown", + "wings: short, hardly visible, with vestigial remnants", + "nape: finely feathered, blending with dark hues of the back", + "tail: inconspicuous, hidden beneath body feathers", + "throat: lighter in color, gradually merging with the breast feathers" + ], + "okinawa robin": [ + "back: dark gray-blue feathers", + "beak: short, slender black beak", + "belly: light gray plumage", + "breast: light gray with faint blue sheen", + "crown: deep blue-gray head feathers", + "forehead: dark blue-gray plumage", + "eyes: small, black, alert eyes", + "legs: slim, strong, gray-black legs", + "wings: dark gray-blue with white wing-bar", + "nape: blue-gray feathering", + "tail: long, dark gray-blue feathers", + "throat: pale gray with light blue sheen" + ], + "okinawa woodpecker": [ + "back: black plumage with green sheen", + "beak: sturdy, chisel-like, and black", + "belly: dark grayish-blue feathers", + "breast: grayish-blue with white streaks", + "crown: reddish-brown crest", + "forehead: reddish-brown feathers", + "eyes: dark brown with white eye-ring", + "legs: dark gray, strong, and agile", + "wings: black with green sheen and white markings", + "nape: reddish-brown plumage", + "tail: black with green sheen and white spots", + "throat: grayish-blue with white streaks" + ], + "oleaginous hemispingus": [ + "back: vibrant olive-green feathers", + "beak: dark, slender, and slightly curved", + "belly: pale yellow and streak-free", + "breast: bright and yellowish-orange", + "crown: eye-catching deep blue", + "forehead: small patches of gleaming blue", + "eyes: round, dark, and expressive", + "legs: strong and perching, with dark claws", + "wings: olive-green with darker flight feathers", + "nape: iridescent blue transitioning into green", + "tail: long, contrasting with dark outer feathers and lighter inner feathers", + "throat: bright orange with blue accents" + ], + "olivaceous elaenia": [ + "back: olive-green feathers", + "beak: slim and slightly hooked", + "belly: pale yellowish hue", + "breast: light olive-brown", + "crown: prominent crest with white center", + "forehead: olive-brown color", + "eyes: dark with pale eye-ring", + "legs: slender pale gray color", + "wings: olive-brown with two distinct wing bars", + "nape: olive-green shade", + "tail: moderate length, olive-brown with pale tips", + "throat: off-white, blending into breast color" + ], + "olivaceous flatbill": [ + "back: olive-green covering the upper body", + "beak: short, wide, and slightly hooked", + "belly: pale yellow, unmarked underside", + "breast: light olive hue, blending with the belly", + "crown: olive-green plumage atop the head", + "forehead: smooth, blending with crown and face", + "eyes: dark with a white eyering, set on a flat face", + "legs: grayish-blue, strong and slender", + "wings: olive-green with a slight brownish tinge, elliptical shape", + "nape: olive-green, connecting the crown to the back", + "tail: long and broad, olive-green with faint brown markings", + "throat: pale yellow, transitioning to the breast and belly" + ], + "olivaceous flycatcher": [ + "back: olive-green upper body", + "beak: sharp, pointed black", + "belly: pale yellowish-white", + "breast: light olive-yellow", + "crown: muted olive-green", + "forehead: slightly paler green", + "eyes: small, dark with white eyering", + "legs: thin, grayish-brown", + "wings: olive-green with faint wing bars", + "nape: olive-green, blending with crown", + "tail: long, olive-green with subtle black banding", + "throat: muted yellow-green" + ], + "olivaceous greenlet": [ + "back: olive-green feathers", + "beak: short, pointed, and stout", + "belly: creamy yellow plumage", + "breast: light olive-green shading", + "crown: vibrant olive-green color", + "forehead: smooth, greenish-yellow feathers", + "eyes: small, round, and dark-colored", + "legs: slender and grayish-brown", + "wings: olive-green with pale yellow edging", + "nape: subtly contrasting green hue", + "tail: long, olive-green, and slightly forked", + "throat: pale yellowish-green plumage" + ], + "olivaceous piculet": [ + "back: olive-green feathers", + "beak: elongated, slender, and sharp", + "belly: pale yellowish hue", + "breast: light olive-green chest", + "crown: streaked brown and cream", + "forehead: dull olive-brown", + "eyes: beady and black", + "legs: thin, grayish-blue", + "wings: olive-green with pale bars", + "nape: olive-green coloration", + "tail: short, woodpecker-like", + "throat: buff-white shade" + ], + "olivaceous piha": [ + "back: olive green feathers", + "beak: short and stout, blackish", + "belly: light greyish-green", + "breast: pale olive-green", + "crown: olive-green plumage", + "forehead: slightly paler green", + "eyes: dark and round, surrounded by black feathers", + "legs: slender and greyish-brown", + "wings: olive-green with darker flight feathers", + "nape: olive-green plumage, seamless transition from crown", + "tail: medium length, olive-green with subtle yellowish tips", + "throat: pale greyish-green" + ], + "olivaceous schiffornis": [ + "back: olive-brown upper feathers", + "beak: short, wide, and slightly curved", + "belly: pale olive-yellow underparts", + "breast: lighter olive-brown feathers", + "crown: slightly darker olive-brown", + "forehead: smooth olive-brown plumage", + "eyes: dark and small, encircled by cream-colored eye-ring", + "legs: thin, grayish-blue", + "wings: olive-brown with faint yellowish edging", + "nape: olive-brown feathers blending with crown", + "tail: long, olive-brown with faint yellowish edging", + "throat: lighter olive-yellow plumage" + ], + "olivaceous siskin": [ + "back: olive-green feathers covering the dorsal area", + "beak: short, pointed, and dark gray structure", + "belly: pale yellowish-green plumage on the lower abdomen", + "breast: yellow feathers with slight green tinge on chest", + "crown: olive-green feathers covering the top of the head", + "forehead: same color as crown, a slight yellowish tinge", + "eyes: black, beady, and encircled by thin white eye-ring", + "legs: thin, dark gray, tree-perching limbs", + "wings: olive-green and black feathers with yellow edging", + "nape: olive-green feathers at the back of the neck", + "tail: olive-green and black feathers with yellow edging, forked shape", + "throat: pale yellowish-green feathers, transitioning to breast coloration" + ], + "olivaceous thornbill": [ + "back: olive-green feathers, slight feather texture", + "beak: long, slender, curved, black", + "belly: pale greyish-white, with hints of green", + "breast: olive-green with white streaks", + "crown: olive-green with dark streaks", + "forehead: bright olive-green, small size", + "eyes: small, dark, surrounded by thin white eye-ring", + "legs: slender, greyish-brown", + "wings: olive-green with white streaks, medium length", + "nape: olive-green, smooth feathers", + "tail: olive-green, forked, long", + "throat: pale grey with green tints" + ], + "olivaceous woodcreeper": [ + "back: olive-brown color with streaks", + "beak: long, slender, and slightly curved", + "belly: pale yellowish-brown with faint streaks", + "breast: buff-colored with faint brown spotting", + "crown: olive-brown with slight streaks", + "forehead: slightly paler brown than crown", + "eyes: dark brown with pale eye-ring", + "legs: strong and grayish-blue", + "wings: olive-brown with pale-edged feathers", + "nape: olive-brown with streaks", + "tail: long and olive-brown with darker bands", + "throat: light buff with faint streaking" + ], + "olive bulbul": [ + "back: olive-green feathers", + "beak: short, dark-colored, slightly curved", + "belly: light yellowish-green plumage", + "breast: pale, yellow-green feathers", + "crown: dark, olive-green crest", + "forehead: lighter green feathers", + "eyes: small, black, round eyes", + "legs: thin, greyish-blue legs", + "wings: olive-green with darker flight feathers", + "nape: olive-green with a thin, darker stripe", + "tail: long, dark, olive-green feathers", + "throat: pale, greenish-yellow feathers" + ], + "olive bushshrike": [ + "back: olive-green hue with slight sheen", + "beak: short, strong, and hooked", + "belly: pale yellowish-olive shade", + "breast: yellowish-olive green", + "crown: olive-green fading to grayish-brown", + "forehead: dark greenish-gray", + "eyes: large and dark brown, surrounded with white eyering", + "legs: slaty-grey, robust with sharp claws", + "wings: vibrant olive with dark flight feathers", + "nape: olive-green transitioning into grayish-brown", + "tail: long and rounded, olive-green with blackish-brown tips", + "throat: lighter olive-green transitioning to a yellowish hue" + ], + "olive finch": [ + "back: greenish-olive feathered", + "beak: sharp, pointed, dark-colored", + "belly: yellowish-green underside", + "breast: pale yellow, sometimes with faint streaks", + "crown: olive-green with slightly darker shade", + "forehead: pale greenish-yellow", + "eyes: small, black, with a faint white eye-ring", + "legs: slender, grayish-brown", + "wings: olive-green with darker flight feathers", + "nape: greenish-olive, blending with the crown", + "tail: olive-green with darker, forked feathers", + "throat: pale yellow, connecting to the breast" + ], + "olive flyrobin": [ + "back: olive-green feathers", + "beak: small, pointed, dark gray", + "belly: pale yellow with subtle brown streaks", + "breast: faded orangish-yellow plumage", + "crown: olive-green dome-shaped head", + "forehead: smooth, slight gradient of olive tones", + "eyes: dark, beady, surrounded by pale feather rings", + "legs: slender, brownish-gray, unfeathered", + "wings: olive-green with darker-gray flight feathers", + "nape: transition between olive crown and pale-yellow throat", + "tail: long, tapered, olive and gray hues", + "throat: soft, pale-yellow, unblemished" + ], + "olive honeyeater": [ + "back: olive-green feathered back", + "beak: slender, curved, dark grey beak", + "belly: light olive-grey underside", + "breast: pale olive-yellow chest feathers", + "crown: greyish olive-green head cap", + "forehead: light grey front of the head", + "eyes: small, dark, and round with white eye-ring", + "legs: greyish-brown and sturdy", + "wings: olive-brown with yellowish feather edges", + "nape: slightly darker olive-green neck", + "tail: long and slender with olive-brown feathers", + "throat: pale grey with thin streaks" + ], + "olive ibis": [ + "back: greenish-brown feathers", + "beak: long, curved, olive-green", + "belly: pale olive-green feathers", + "breast: dark olive-brown plumage", + "crown: glossy olive-brown", + "forehead: slightly paler olive-green", + "eyes: small, pale with dark pupils", + "legs: long, slender, olive-green", + "wings: greenish-brown with iridescent sheen", + "nape: darker olive-green feathers", + "tail: short, stiff feathers, olive-brown", + "throat: pale olive-green, slightly lighter than belly" + ], + "olive long tailed cuckoo": [ + "back: olive-green feathers", + "beak: sleek, sharp edges", + "belly: pale white with fine rusty-brown streaks", + "breast: off-white with faded brown markings", + "crown: greyish-olive with slightly raised feathers", + "forehead: smooth, greenish-grey blend", + "eyes: piercing black with white eye-ring", + "legs: slender, pale gray", + "wings: elongated, olive-brown with white spots", + "nape: olive hues fading into grey tones", + "tail: long and narrow, dark olive with white tips", + "throat: creamy-white with faint brown speckles" + ], + "olive manakin": [ + "back: moss green feathers", + "beak: small black cone-shaped", + "belly: yellowish-green plumage", + "breast: bright yellow feathers", + "crown: olive-green crest", + "forehead: smooth greenish-yellow", + "eyes: small beady black", + "legs: gray slender legs", + "wings: greenish-yellow with black edges", + "nape: olive-toned feathers", + "tail: tapered black tail feathers", + "throat: vibrant yellow plumage" + ], + "olive oropendola": [ + "back: vibrant olive-green feathers", + "beak: long, curved, yellowish-orange", + "belly: light yellow, fluffy feathers", + "breast: bright yellow plumage", + "crown: deep blue-black feathers", + "forehead: black and glossy", + "eyes: bright brown surrounded by grayish-blue skin", + "legs: sturdy, gray, and scaled", + "wings: olive-green with blackish tips", + "nape: lush green and glossy", + "tail: elongated, yellow-tipped, black feathers", + "throat: golden yellow feathers" + ], + "olive spinetail": [ + "back: olive green with brownish hues", + "beak: short, pointed, and dark", + "belly: creamy white with olive-brown bands", + "breast: pale olive with brownish tinges", + "crown: dark olive green and slightly raised", + "forehead: olive-brown, blending into the crown", + "eyes: dark, with faint pale eyering", + "legs: slender, grayish-pink", + "wings: olive-brown with faint barring", + "nape: olive green, blending into the back", + "tail: medium length, rufous-brown with thin bands", + "throat: lighter olive, fading to creamy white" + ], + "olive straightbill": [ + "back: greenish-olive feathers", + "beak: short, straight, and dark", + "belly: pale yellow with faint streaks", + "breast: light olive-yellow", + "crown: slightly darker olive-green", + "forehead: pale olive-yellow", + "eyes: small, dark, and round", + "legs: slender with grey-brown color", + "wings: greenish-olive with faint barring", + "nape: greenish-olive, blending with the crown", + "tail: short and square-edged, greenish-olive", + "throat: pale olive-yellow, sometimes with faint streaks" + ], + "olive sunbird": [ + "back: olive-green feathers with a slim body", + "beak: slender, curved, and black", + "belly: pale olive-yellow with smooth transitions", + "breast: vibrant yellow with silky plumage", + "crown: iridescent blue-violet with a metallic sheen", + "forehead: fine black streaks on a yellow base", + "eyes: small, dark, and rounded with a keen gaze", + "legs: thin, black, and agile for gripping branches", + "wings: elongated, olive-colored with darker flight feathers", + "nape: rich olive-green, merging into the back feathers", + "tail: long, dark, and forked with white outer tips", + "throat: brilliant metallic violet-blue in males, duller in females" + ], + "olive thrush": [ + "back: olive-brown feathers covering upper body", + "beak: straight, dark, medium-length", + "belly: dull white with faint brown speckles", + "breast: warm orange with dark spots", + "crown: olive-brown, rounded top of head", + "forehead: brownish, blends into crown", + "eyes: dark, encircled by pale eye-ring", + "legs: long, dull pinkish-gray", + "wings: olive-brown with lighter edges", + "nape: olive-brown, connects crown to back", + "tail: long, rufous-brown feathers", + "throat: cream-colored with dark speckles" + ], + "olive warbler": [ + "back: olive-green upperparts", + "beak: slender, sharp, grayish-black", + "belly: pale yellow underparts", + "breast: pale yellow with olive tones", + "crown: orange-reddish cap", + "forehead: orange-reddish merging into cap", + "eyes: black with thin white eyering", + "legs: pale, grayish-brown", + "wings: olive-green with two white wing bars", + "nape: olive-green transitioning from crown", + "tail: olive-green with thin white tips", + "throat: pale yellow, blending with breast" + ], + "olive whistler": [ + "back: olive-brown feathers", + "beak: short and stout", + "belly: creamy-white with black streaks", + "breast: pale olive with dark spots", + "crown: dark olive-green", + "forehead: paler olive-green", + "eyes: large and dark", + "legs: sturdy and dark gray", + "wings: olive-brown with distinctive white spots", + "nape: olive-green", + "tail: long and brownish-gray with white tips", + "throat: cream-colored with streaks" + ], + "olive backed euphonia": [ + "back: greenish-olive plumage", + "beak: short and conical", + "belly: bright yellow underside", + "breast: vibrant yellow feathers", + "crown: distinctive blue-black patch", + "forehead: blue-black coloring", + "eyes: small with dark iris", + "legs: short and grayish", + "wings: olive-green with black edges", + "nape: greenish-olive hue", + "tail: short and olive-green", + "throat: bright yellow feathers" + ], + "olive backed flowerpecker": [ + "back: olive-green with a slight sheen", + "beak: short, curved, black", + "belly: pale, yellowish hue", + "breast: whitish with olive wash", + "crown: olive-green with a brownish tinge", + "forehead: bright yellow patch", + "eyes: dark, beady, surrounded by black", + "legs: thin, grayish-blue", + "wings: olive-green with white edges on feathers", + "nape: smooth olive-green", + "tail: short, olive-green with white tips", + "throat: whitish-yellow with olive tinge" + ], + "olive backed foliage gleaner": [ + "back: olive-green with subtle streaks", + "beak: long and slightly curved", + "belly: pale and buff-colored", + "breast: light brown with faint streaks", + "crown: olive-green with streaks", + "forehead: greenish-yellow with streaks", + "eyes: small and brown", + "legs: sturdy and brown", + "wings: olive-green with buff wing bars", + "nape: olive-green with light streaking", + "tail: long and olive-green", + "throat: pale and streaked" + ], + "olive backed oriole": [ + "back: olive-green upper plumage", + "beak: strong, straight, and pointed", + "belly: creamy-yellow underside", + "breast: yellowish-orange hue", + "crown: olive-green with a slight crest", + "forehead: pale olive-green", + "eyes: dark brown with a narrow eye-ring", + "legs: gray and slender", + "wings: olive-green with black tips", + "nape: olive-green feathers", + "tail: olive-green with black and white markings", + "throat: yellowish hue with slight streaking" + ], + "olive backed pipit": [ + "back: olive-green with streaks", + "beak: thin and pointed", + "belly: pale and streaked", + "breast: whitish with dark streaks", + "crown: olive-brown with faint streaks", + "forehead: plain olive-green", + "eyes: dark and well-defined", + "legs: long and slender", + "wings: olive-brown with dark flight feathers", + "nape: olive-green with faint streaks", + "tail: long and dark, with white outer edges", + "throat: pale with thin streaks" + ], + "olive backed quail dove": [ + "back: olive-brown feathers with subtle pattern", + "beak: short, stout, slightly curved upper mandible", + "belly: pale gray with occasional darker markings", + "breast: delicate pinkish-brown hue, fading to gray", + "crown: softly textured olive-brown plumage", + "forehead: pale olive-gray coloration", + "eyes: round and dark, framed by pale gray feathering", + "legs: slender and grayish-pink, with scaled texture", + "wings: muted olive-brown, with lighter streaks and spots", + "nape: smooth olive-brown feathers", + "tail: moderately long, graduated, with dark brown and white tips", + "throat: pale gray, leading into the breast area" + ], + "olive backed sunbird": [ + "back: olive-green feathers covering the upper body", + "beak: long, slender, and curved downward", + "belly: pale yellow with a hint of olive", + "breast: bright yellow with an orange patch", + "crown: metallic blue, iridescent in sunlight", + "forehead: continuation of the metallic blue crown", + "eyes: small, black, and bead-like", + "legs: thin, grayish-brown with sharp claws", + "wings: olive-green with black edges and white markings", + "nape: olive-green transitioning from the crown", + "tail: long, dark, and tapering with white outer feathers", + "throat: metallic blue, matching the crown and forehead" + ], + "olive backed tailorbird": [ + "back: olive-green upperparts", + "beak: slender, slightly curved bill", + "belly: creamy-white underparts", + "breast: pale, olive-yellow tinge", + "crown: dull green with faint streaks", + "forehead: pale olive-green", + "eyes: dark, round with narrow white eye-ring", + "legs: pale pinkish-grey", + "wings: olive-green feathers with rufous fringes", + "nape: greenish with subtle streaks", + "tail: long, graduated with rufous edges", + "throat: white with olive-yellow borders" + ], + "olive backed tanager": [ + "back: olive-green feathers covering the dorsal area", + "beak: short, pointed, and light-colored", + "belly: pale yellowish underparts", + "breast: yellow-toned feathers near the upper body", + "crown: olive-green feathers on top of the head", + "forehead: lighter shade of olive-green near the beak", + "eyes: small, dark, and round, surrounded by olive-green feathers", + "legs: thin, grayish-brown with small, clawed feet", + "wings: olive-green with primary and secondary feathers for flight", + "nape: olive-green feathers at the back of the neck", + "tail: long, olive-green feathers that taper at the tip", + "throat: pale, yellow-toned feathers near the beak" + ], + "olive backed woodcreeper": [ + "back: olive-green feathers with subtle streaks", + "beak: long, slightly curved, and pale brown", + "belly: creamy-white with light olive streaks", + "breast: pale buff with olive-brown streaking", + "crown: plain olive-green", + "forehead: olive-green, blending with the crown", + "eyes: dark with thin pale eyering", + "legs: strong, grayish-blue", + "wings: olive-brown with lighter edges on feathers", + "nape: olive-green, continuous with back coloration", + "tail: long, straight, olive-brown with pale tips", + "throat: creamy-white with faint olive-brown markings" + ], + "olive backed woodpecker": [ + "back: greenish-olive hue with woodpecker pattern", + "beak: strong, chisel-like, and black", + "belly: light cream with brown spots", + "breast: warm beige with brown speckles", + "crown: deep red plumage, male-specific", + "forehead: tan colored with slight speckling", + "eyes: dark, with thin white eye-ring", + "legs: sturdy, grayish-black with sharp claws", + "wings: olive-toned with white and black bars", + "nape: greenish-olive, connecting to crown", + "tail: barred black and white, stiff and strong", + "throat: pale cream with slight spotting" + ], + "olive bellied sunbird": [ + "back: greenish-bronze upper plumage", + "beak: slender, curved beak for nectar feeding", + "belly: pale olive underparts", + "breast: iridescent blue-violet chest patch", + "crown: metallic green head cap", + "forehead: vibrant blue stripe above the eyes", + "eyes: small, dark, alert eyes", + "legs: slim, grey-brown, adapted for gripping branches", + "wings: dark-edged greenish-bronze feathers", + "nape: greenish-bronze with metallic shine", + "tail: long, narrow, dark-edged tail feathers", + "throat: iridescent green-blue plumage" + ], + "olive capped flowerpecker": [ + "back: olive-green feathers covering the dorsal area", + "beak: short, sharp, and slightly curved for nectar feeding", + "belly: light grayish-white lower abdomen", + "breast: grayish-white to pale olive, merging with belly coloration", + "crown: olive-green covering the top of head", + "forehead: bright olive cap extending up to eye level", + "eyes: small, dark, and circular with a white eye-ring", + "legs: short, slender, and gray with sharp, zygodactyl claws", + "wings: olive-green with strong flight feathers", + "nape: olive-green feathers connecting crown to back", + "tail: short and forked, with olive-green upper feathers and grayish-white underside", + "throat: grayish-white to pale olive, contrasting with the vibrant cap" + ], + "olive capped warbler": [ + "back: olive-green with faint streaks", + "beak: slim, sharp, and black", + "belly: pale yellow with light streaks", + "breast: yellowish-green with dark streaks", + "crown: bright olive-green", + "forehead: olive-green, similar to the crown", + "eyes: black with faint white eye-ring", + "legs: pale, slender with dark claws", + "wings: olive-green with two white wing-bars", + "nape: olive-green, blending with the crown and back", + "tail: slightly forked, olive-green with white outer tail feathers", + "throat: bright yellow with faint streaks" + ], + "olive chested flycatcher": [ + "back: olive-green upper back and wings", + "beak: short and dark, somewhat pointed", + "belly: pale whitish-yellow underside", + "breast: olive-green mixed with yellow", + "crown: olive-green top of the head", + "forehead: slightly paler olive-green", + "eyes: small and dark, surrounded by pale eye-ring", + "legs: slender and grayish-brown", + "wings: olive-green with faint wing bars", + "nape: olive-green connecting to the crown", + "tail: long and olive-green with slight fork shape", + "throat: bright yellow with an olive tinge" + ], + "olive crowned crescentchest": [ + "back: olive-green feathers", + "beak: short and slender", + "belly: pale yellow with faint streaks", + "breast: light warm-brown with crescent-shaped markings", + "crown: olive-green with subtle streaks", + "forehead: smooth and rounded", + "eyes: dark, small, and alert", + "legs: thin and delicate", + "wings: olive-green and rounded", + "nape: olive-green with faint streaks", + "tail: long, brown feathers with white tips", + "throat: pale yellow with crescent-shaped markings" + ], + "olive crowned flowerpecker": [ + "back: olive-green, slightly glossy feathers", + "beak: short, curved, blackish", + "belly: pale yellow with slight greenish tinge", + "breast: olive-green blending to pale yellow", + "crown: olive-green, distinct from forehead", + "forehead: lighter olive-green, contrasting with crown", + "eyes: dark, rounded, with thin white eye-ring", + "legs: grayish-black, slender, fairly short", + "wings: olive-green, broad, rounded tips", + "nape: olive-green, smooth transition from crown", + "tail: olive-green, short, with rounded feathers", + "throat: pale yellow, fading to belly color" + ], + "olive crowned yellowthroat": [ + "back: olive-green with small streaks", + "beak: short, pointed, dark grey", + "belly: pale yellow with grayish flanks", + "breast: bright yellow merging into the belly", + "crown: bright olive-green with a distinct pattern", + "forehead: yellow with olive-green accents", + "eyes: round, black, surrounded by white eyering", + "legs: slender, pale grey, and long-toed", + "wings: olive-green with dark grey flight feathers", + "nape: olive-green blending into the back", + "tail: dark grey with olive-green edges", + "throat: bright yellow, distinct from the breast" + ], + "olive faced flycatcher": [ + "back: olive-green with faint streaks", + "beak: short and pointed, black or dark gray", + "belly: off-white with very light olive tint", + "breast: pale yellow-olive with darker streaks", + "crown: olive-green, slightly darker than back", + "forehead: light olive-green, almost blending with crown", + "eyes: dark with prominent white eye-ring", + "legs: long and slender, dull gray or black", + "wings: olive-green with darker flight feathers", + "nape: olive-green, seamlessly blending with the crown", + "tail: long and dark, with olive-green edges", + "throat: pale yellow, contrasting with the breast" + ], + "olive flanked robin chat": [ + "back: olive-brown feathers", + "beak: black slender beak", + "belly: creamy white underparts", + "breast: bright orange-red breast", + "crown: olive-green head", + "forehead: black streaks on white", + "eyes: dark brown with white eyering", + "legs: greyish-blue legs", + "wings: olive-green with black and white edges", + "nape: olive-brown with black streaks", + "tail: long, olive-brown with white tips", + "throat: white with black streaks" + ], + "olive gray saltator": [ + "back: olive-green feathers", + "beak: medium-sized, black and conical", + "belly: grayish-white coloration", + "breast: pale grey plumage", + "crown: dark gray feather crest", + "forehead: lighter gray shading", + "eyes: round, black, and shiny", + "legs: strong, grey-blue hue", + "wings: olive-green with darker flight feathers", + "nape: smooth gray transition from crown", + "tail: dark, sleek, and long feathers", + "throat: whitish-grey with faint streaking" + ], + "olive green camaroptera": [ + "back: vibrant olive-green feathers", + "beak: short, sharp, and dark-colored", + "belly: light under-feathers with faint streaks", + "breast: pale olive-green with subtle dark streaks", + "crown: bright olive hue and slightly raised", + "forehead: smooth transition from crown to beak", + "eyes: dark, petite, surrounded by faint eye-ring", + "legs: slender, dark, and well-adapted for perching", + "wings: olive-green with darker flight feathers", + "nape: continuation of bright olive-green feathers", + "tail: slightly darker olive with straight-cut edges", + "throat: paler hue blending into breast area" + ], + "olive green tanager": [ + "back: vibrant olive green feathers", + "beak: small, pointed, and silver-gray", + "belly: light olive green with yellow undertones", + "breast: bright olive green feathers, blending into the belly", + "crown: rich olive green, smooth plumage", + "forehead: slightly paler olive green feathers", + "eyes: dark brown with a faint white eye-ring", + "legs: slender and grayish-blue", + "wings: olive green with darker flight feathers", + "nape: continuation of the olive green crown, seamlessly blending", + "tail: long, olive green with dark feather tips", + "throat: slightly paler olive green, transitioning into the breast feathers" + ], + "olive green tyrannulet": [ + "back: olive green with subtle streaks", + "beak: short, thin, and pointed", + "belly: pale yellowish-green", + "breast: light olive green", + "crown: olive green with faint streaks", + "forehead: smooth, slightly paler green", + "eyes: dark, piercing with faint white eye-ring", + "legs: slender, grayish-brown", + "wings: olive green with distinct barring", + "nape: uniform olive green", + "tail: long, broad, and green with faint bars", + "throat: pale yellowish-green" + ], + "olive headed lorikeet": [ + "back: vibrant green plumage covering the upper body", + "beak: small, curved, orange-red beak", + "belly: light green with a slight yellowish tinge", + "breast: bright green feathers merging into the belly", + "crown: deep olive-green covering the top of the head", + "forehead: continuation of the olive-green crown, slightly lighter in shade", + "eyes: round, dark, expressive eyes surrounded by pale-green feathered eyering", + "legs: short, light-gray legs with four sharp, clawed toes on each foot", + "wings: bright green primary feathers with blue-tipped secondary feathers", + "nape: vibrant green feathers connecting the crown to the back", + "tail: medium-length, green feathers with blue tips and yellow underside", + "throat: slightly paler green feathers transitioning to the breast area" + ], + "olive headed weaver": [ + "back: olive-green plumage", + "beak: short, strong, and conical", + "belly: pale yellow with streaks", + "breast: yellowish-orange with fine streaks", + "crown: deep olive-green covering head", + "forehead: olive-green feathers", + "eyes: dark, beady with thin white ring", + "legs: sturdy, light gray", + "wings: olive-green with dark coverts", + "nape: olive-green feathers with lighter streaks", + "tail: square-ended, olive-brown with dark bands", + "throat: creamy-yellow with fine streaks" + ], + "olive naped weaver": [ + "back: olive-green feathers covering the upper body", + "beak: strong, pointed black beak for weaving nests", + "belly: pale beige or cream underbelly feathers", + "breast: yellowish-orange feathers on the chest area", + "crown: olive-green crest on top of the head", + "forehead: smooth, greenish-yellow feathers above the eyes", + "eyes: small, dark, circular eyes with a black iris", + "legs: long, slender, grayish legs with sharp claws for perching", + "wings: olive-green feathers with darker flight feathers", + "nape: greenish-yellow feathers on the back of the neck", + "tail: long, black, pointed tail feathers for balance and flight", + "throat: pale yellow feathers leading from beak to chest" + ], + "olive rumped serin": [ + "back: olive-green with light streaks", + "beak: short, conical, and pale", + "belly: soft yellow-white", + "breast: golden-yellow with slight streaking", + "crown: olive-green with lighter edges", + "forehead: unmarked olive-green", + "eyes: dark with pale eye-ring", + "legs: pale pinkish-brown", + "wings: olive-brown with yellowish edges", + "nape: olive-green with light streaks", + "tail: brown with olive-yellow edges", + "throat: bright yellow" + ], + "olive shouldered parrot": [ + "back: vibrant green feathers", + "beak: strong, sharp, beige-colored", + "belly: olive-yellow plumage", + "breast: vivid, yellow-orange feathers", + "crown: bright green with slight blue tinge", + "forehead: bluish-green feathers", + "eyes: round, black, and alert", + "legs: sturdy, scaly, greyish-brown", + "wings: green with striking blue on the edges", + "nape: blue-green feather transition", + "tail: long, green with yellowish tips", + "throat: yellow-orange feather patch" + ], + "olive spotted hummingbird": [ + "back: green-bronze iridescent feathers", + "beak: long, thin, curved black bill", + "belly: light cream with faint olive spots", + "breast: creamy-white with olive-green spots", + "crown: glistening green-bronze cap", + "forehead: shimmering olive-green plumage", + "eyes: small, dark, round and alert", + "legs: short and slender with tiny feet", + "wings: iridescent green-bronze, rapid movement", + "nape: subtle gradation of green-bronze hues", + "tail: forked with green-bronze and white banding", + "throat: luminous white or pale cream" + ], + "olive streaked flycatcher": [ + "back: olive-green with faint streaks", + "beak: thin and pointed black", + "belly: pale grayish-white", + "breast: off-white with light streaks", + "crown: dark olive-green", + "forehead: slightly lighter olive-green", + "eyes: black with white eye-ring", + "legs: pale pinkish-gray", + "wings: olive-green with white fringes on flight feathers", + "nape: olive-brown with faint streaks", + "tail: dark olive-green with pale fringes", + "throat: off-white and unmarked" + ], + "olive striped flycatcher": [ + "back: olive-green with dark streaks", + "beak: thin, pointed, and black", + "belly: yellowish-white with faint streaks", + "breast: pale-gray with faint streaks", + "crown: grayish-olive with fine dark stripes", + "forehead: yellowish-white with minimal streaking", + "eyes: dark with prominent white eye-ring", + "legs: black and slender", + "wings: grayish-olive with two white wing bars", + "nape: olive-green with dark streaks", + "tail: grayish-olive with white edges on outer feathers", + "throat: pale gray with faint olive streaks" + ], + "olive throated parakeet": [ + "back: green and smooth feathers", + "beak: strong, curved, and sharp", + "belly: pale green feathers", + "breast: vibrant green plumage", + "crown: dark green cap", + "forehead: bright green feathers", + "eyes: dark, round, and expressive", + "legs: gray, scaly, and strong", + "wings: multicolored feathers with blue-tipped primaries", + "nape: deep green with a hint of olive", + "tail: long and tapered with green and blue feathers", + "throat: light green and smooth feathers" + ], + "olive tree warbler": [ + "back: light olive-green color with brownish streaks", + "beak: slim, pointed, and grayish", + "belly: pale yellowish-white", + "breast: light olive-yellow with faint streaks", + "crown: pale gray with slight greenish hue", + "forehead: pale gray with a touch of olive", + "eyes: small, dark, and bordered with pale eye-ring", + "legs: long, slender, and grayish", + "wings: olive-brown with gray and white edges", + "nape: light grayish-olive", + "tail: long and olive-brown with white outer feathers", + "throat: pale yellowish-white" + ], + "olive winged bulbul": [ + "back: olive-green with slight brown shade", + "beak: short, straight, and dark", + "belly: pale, creamy-white", + "breast: yellowish-green tint", + "crown: dark olive-green merging with the nape", + "forehead: bright olive-green", + "eyes: dark brown with a white ring", + "legs: slender, brownish-grey", + "wings: olive-green with darker flight feathers", + "nape: slightly darker olive-green than the crown", + "tail: dark olive-green with lighter tips", + "throat: pale white, blending into breast" + ], + "olive yellow robin": [ + "back: olive-green feathers smoothly transitioning into the tail", + "beak: small, thin, and sharp with a grayish-black hue", + "belly: golden-yellow feathers with a vibrant and warm tone", + "breast: bright and bold yellow feathers, lightly streaked with olive-green tints", + "crown: olive-green head with a slight touch of yellow", + "forehead: olive-yellow with a greenish tint", + "eyes: dark, round, and beady with a thin white eyering", + "legs: grayish-brown, slender, and flexible", + "wings: olive-green feathers with faint lighter edges", + "nape: junction of the olive-green crown and back feathers", + "tail: olive-green with a moderately long, slightly forked form", + "throat: bold yellow merging seamlessly with the breast feathers" + ], + "olrog cinclodes": [ + "back: brownish-gray feathers with streaks", + "beak: long and slightly curved", + "belly: lighter gray with black markings", + "breast: pale gray with dark streaks", + "crown: brownish-gray with faint streaks", + "forehead: smooth gray-brown", + "eyes: dark with a pale eye-ring", + "legs: sturdy and dark", + "wings: brownish-gray with faint barring", + "nape: gray-brown with streaks", + "tail: dark and moderately long", + "throat: pale gray with faint streaks" + ], + "olrog gull": [ + "back: pale gray with white speckles", + "beak: sharp, slightly curved, black tip", + "belly: white with gray streaks", + "breast: white with gentle gray blending", + "crown: smooth, light gray", + "forehead: narrow, white line above eyes", + "eyes: dark, round, expressive", + "legs: sturdy, pale pink", + "wings: broad, pale gray with white tips", + "nape: light gray with white edges", + "tail: white with black band near the edge", + "throat: clean, white plumage" + ], + "omani owl": [ + "back: earthy brown with white speckles", + "beak: sharp, black hook-shaped", + "belly: light beige with brown streaks", + "breast: white with dark brown spots", + "crown: mottled brown and white", + "forehead: light brown with white markings", + "eyes: large, dark, and soulful", + "legs: feathered with sharp talons", + "wings: brown with white and beige patterns", + "nape: soft beige with dark brown speckles", + "tail: long, dark brown with beige bands", + "throat: lighter, tawny brown" + ], + "omao": [ + "back: greenish-brown plumage", + "beak: straight, blackish bill", + "belly: light grey feathers", + "breast: greyish-brown hue", + "crown: olive dark green", + "forehead: rounded, olive grey", + "eyes: dark, beady eyes", + "legs: sturdy, greyish-pink", + "wings: greenish-brown, medium length", + "nape: olive-colored feathers", + "tail: long, greenish-brown feathers", + "throat: pale whitish-grey" + ], + "one colored becard": [ + "back: deep emerald green", + "beak: sharp, black curve", + "belly: soft beige feathers", + "breast: vibrant sunny yellow", + "crown: rich, royal blue", + "forehead: white with a hint of gray", + "eyes: piercing, dark brown", + "legs: sturdy, bark-brown branches", + "wings: gradient of green and blue hues", + "nape: eye-catching azure", + "tail: tangerine with black accents", + "throat: pale, calming lavender" + ], + "opal crowned manakin": [ + "back: vibrant green feathers", + "beak: short and black", + "belly: soft, yellowish-green plumage", + "breast: bright green and slightly glossy", + "crown: stunning opal-colored crest", + "forehead: iridescent blue-green with opal hue", + "eyes: dark and round, surrounded by black", + "legs: slender and grayish-black", + "wings: green with small, rounded feathers", + "nape: green, blending with back feathers", + "tail: elongated, green feathers with black shafts", + "throat: greenish-yellow, complementing belly colors" + ], + "opal crowned tanager": [ + "back: vibrant green iridescent feathers", + "beak: small, black, and pointed", + "belly: shimmering sky blue hue", + "breast: deep opalescent turquoise feathers", + "crown: bright opal-colored crest", + "forehead: gleaming white plumage", + "eyes: round, clear, and black", + "legs: slender with dark-grey scales", + "wings: iridescent green with hints of blue", + "nape: gradient from white to green-blue", + "tail: elongated and blue-green iridescent feathers", + "throat: vivid white feathers transitioning to blue" + ], + "opal rumped tanager": [ + "back: vibrant green feathers", + "beak: small, sharp, black", + "belly: soft, pale yellow", + "breast: bright yellow with hints of green", + "crown: opalescent blue-green", + "forehead: shimmering turquoise", + "eyes: dark, round, piercing", + "legs: slim, black, strong", + "wings: green-blue, iridescent, sleek", + "nape: radiant opal hue", + "tail: elongated, green-blue feathers", + "throat: brilliant yellow, smooth" + ], + "opalton grasswren": [ + "back: earthy brown with light streaks", + "beak: short and sharp, grayish-brown", + "belly: pale white with brown speckles", + "breast: light brown with dark streaks", + "crown: rich brown with black markings", + "forehead: light brown fading into the crown", + "eyes: small and dark, surrounded by pale feathers", + "legs: long and slender, grayish-blue", + "wings: earthy brown with darker markings", + "nape: light brown blending into the back", + "tail: long and brown with white tips", + "throat: pale white with delicate brown speckles" + ], + "orange bullfinch": [ + "back: vibrant orange feathers covering the upper body", + "beak: short, stout, and cone-shaped in a dark shade", + "belly: soft and pale orange or white feathers", + "breast: rich orange plumage, giving it a bold appearance", + "crown: bright orange feathers adorning the top of the head", + "forehead: intense orange shade, flowing smoothly into the crown", + "eyes: small, black, and alert, surrounded by a hint of white", + "legs: slender and dark, with strong feet for perching", + "wings: orange feathers with black and white markings, allowing for agile flight", + "nape: the back of the neck complemented by warm orange feathers", + "tail: long and slightly forked with a black and white pattern", + "throat: a lighter shade of orange feathers, contrasting with the brighter breast" + ], + "orange chat": [ + "back: vibrant orange plumage", + "beak: small, sharp, black", + "belly: deep orange feathers", + "breast: bright orange chest", + "crown: slightly raised orange feathers", + "forehead: smooth orange curve", + "eyes: dark, round, alert", + "legs: thin, grayish-brown, agile", + "wings: orange with black flight feathers", + "nape: orange neck feathers", + "tail: elongated, black-tipped feathers", + "throat: brilliant orange with fine feathers" + ], + "orange dove": [ + "back: vibrant orange feathers", + "beak: short, curved, pale color", + "belly: soft orange plumage", + "breast: bright, rich orange feathers", + "crown: orange feathers with a slight iridescence", + "forehead: smooth orange feathers", + "eyes: dark, round, and alert", + "legs: short, pale, and strong", + "wings: elegant, orange-hued feathers with dark accents", + "nape: slightly darker orange feathers", + "tail: long, tapered tail feathers in varying shades of orange", + "throat: brilliant orange plumage" + ], + "orange ground thrush": [ + "back: orange-brown feathers", + "beak: short and curved, black color", + "belly: cream with brown spots", + "breast: pale orange with dark spots", + "crown: rich orange-brown", + "forehead: slightly paler orange-brown", + "eyes: round and black, surrounded by light feathers", + "legs: long and greyish-brown", + "wings: orange-brown with faint streaks", + "nape: vibrant orange-brown feathers", + "tail: long, orange-brown with dark bands", + "throat: creamy-white with brown spotting" + ], + "orange minivet": [ + "back: vibrant orange and black plumage", + "beak: short, slender, and black", + "belly: bright orange hue", + "breast: vivid orange plumage", + "crown: black with orange streaks", + "forehead: black with a hint of orange", + "eyes: small, dark, and alert", + "legs: slim, black, and strong", + "wings: striking black and orange pattern", + "nape: orange and black gradient", + "tail: long and black with orange edges", + "throat: brilliant orange feathers" + ], + "orange oriole": [ + "back: bright orange feathers with contrasting black", + "beak: long, slender, curved black beak", + "belly: orangish-yellow hue speckled with black spots", + "breast: vibrant orange plumage", + "crown: golden-yellow feathers with surrounding black stripes", + "forehead: bright yellow fading into orange", + "eyes: small, black, and alert", + "legs: slim, black with strong grip", + "wings: burnt orange and black feathers with white bars", + "nape: golden-yellow edged in a thin black stripe", + "tail: black feathers with bold white patches", + "throat: striking orange with a black delineation" + ], + "orange river francolin": [ + "back: brown and black plumage with white streaks", + "beak: short, sturdy, and pale-orange", + "belly: light brown with small black markings", + "breast: rusty-red with black bars", + "crown: dark brown with white spots", + "forehead: reddish-brown fading to white", + "eyes: dark brown, surrounded by pale skin", + "legs: strong, orange-brown with three toes", + "wings: short, rounded, with brown and black feathers, white markings", + "nape: dark brown with white streaks", + "tail: long, pointed, brown and black feathers with white tips", + "throat: whitish, extending to the breast" + ], + "orange river white eye": [ + "back: olive-green feathers", + "beak: short, curved, black beak", + "belly: vibrant yellow feathers", + "breast: bright yellow plumage", + "crown: orange streaked head", + "forehead: yellow-orange hues", + "eyes: crisp white rings around dark eyes", + "legs: slender gray legs", + "wings: green-tinted edges with black tips", + "nape: orange-tinged aura", + "tail: dark brown feathers with rounded edges", + "throat: vivid yellow, blending with breast" + ], + "orange weaver": [ + "back: vibrant orange feathers", + "beak: strong, slightly curved, black", + "belly: orange-yellow plumage", + "breast: striking orange feathers", + "crown: bright orange plumage", + "forehead: fiery orange feathers", + "eyes: small, round, black", + "legs: slender, dark, and strong", + "wings: orange and black feathers", + "nape: orange feathers, blending to black", + "tail: long, black, streamer-like", + "throat: bright orange with noticeable black markings" + ], + "orange backed troupial": [ + "back: vibrant orange plumage", + "beak: long, sharp, black", + "belly: bold orange-yellow color", + "breast: bright orange, fading to yellow", + "crown: deep black with a smooth texture", + "forehead: striking black color", + "eyes: round, alert, black with white ring", + "legs: sturdy, dark grey with sharp claws", + "wings: black with orange and white highlights", + "nape: black, contrasting the orange back", + "tail: long, black with orange tips", + "throat: marked yellow, connects to breast" + ], + "orange backed woodpecker": [ + "back: bright orange feathers", + "beak: sturdy, elongated, and sharp", + "belly: soft white and orange feathers", + "breast: white feathers with black streaks", + "crown: reddish-orange crest", + "forehead: reddish-orange feathers", + "eyes: small, dark, and alert", + "legs: strong, grayish-brown", + "wings: black and white striped pattern", + "nape: orange feathers transitioning to red", + "tail: stiff, black feathers with white tips", + "throat: white feathers with black streaks" + ], + "orange banded flycatcher": [ + "back: smooth, pale brown feathers", + "beak: sharp, short, orange and black", + "belly: white with light orange flanks", + "breast: clean white with faint orange band", + "crown: streaked gray-brown head", + "forehead: lightly mottled gray-brown", + "eyes: beady, black with thin white circle", + "legs: sturdy, brown-orange with sharp claws", + "wings: pale brown with darker markings", + "nape: gray-brown with slight streaks", + "tail: elongated, brown with subtle banding", + "throat: vibrant white with a hint of orange" + ], + "orange banded thrush": [ + "back: olive-brown feathers", + "beak: short and straight, black", + "belly: lighter orange hues", + "breast: bright orange bands", + "crown: olive-brown with a faint orange stripe", + "forehead: olive-brown, blending with the crown", + "eyes: round with black pupil, white eye-ring", + "legs: slender, greyish-brown", + "wings: olive-brown with lighter wing bars", + "nape: olive-brown, continuous with the back", + "tail: long and dark, with subtle orange markings", + "throat: vivid orange, contrasting with breast" + ], + "orange bellied antwren": [ + "back: vibrant olive-green with brownish tint", + "beak: short, straight, black, pointed", + "belly: bright orange-yellow with slight feather markings", + "breast: vivid orange hue, transitions from belly", + "crown: dark grayish-brown with subtle feather patterns", + "forehead: smooth grayish-brown, seamless merging with crown", + "eyes: small, shiny, dark, centered in white feathered rings", + "legs: slender, gray, with sharp claws", + "wings: long and narrow, olive-green mixed with brown feathering", + "nape: grayish-brown with slight feather fringes", + "tail: elongated, olive-green, with dark-tipped feathers", + "throat: pale orange, lightly feathered, gradually blends with breast" + ], + "orange bellied euphonia": [ + "back: vibrant blue feathers", + "beak: small, dark gray point", + "belly: brilliant orange hue", + "breast: vivid orange undercoat", + "crown: deep blue coloration", + "forehead: bright blue plumage", + "eyes: beady, dark orbs", + "legs: slender, dark gray limbs", + "wings: shimmering blue feathers", + "nape: midnight blue patch", + "tail: sleek, tapered blue plumes", + "throat: radiant orange feathers" + ], + "orange bellied flowerpecker": [ + "back: vibrant green feathers", + "beak: short and sharp", + "belly: striking orange hue", + "breast: deep orange coloration", + "crown: bright green plumage", + "forehead: radiant green feathers", + "eyes: small and dark", + "legs: slender black limbs", + "wings: vivid green wingtips", + "nape: brilliant green feathers", + "tail: short and green", + "throat: intense orange shade" + ], + "orange bellied fruit dove": [ + "back: vibrant green feathers", + "beak: small, slightly curved, light-colored", + "belly: striking orange hue", + "breast: bright orange mixed with yellow", + "crown: light green, smooth feathers", + "forehead: gradient of yellow to green", + "eyes: dark, round, and alert", + "legs: short and sturdy, pale gray", + "wings: mix of green and blue feathers", + "nape: subtle light green, connects to the back", + "tail: elongated, green and blue feathers", + "throat: transition from orange to green" + ], + "orange bellied leafbird": [ + "back: vibrant green feathers", + "beak: sharp, slender, and black", + "belly: bright orange-yellow hue", + "breast: brilliant orange-yellow plumage", + "crown: vivid green with slight bluish tint", + "forehead: bright green-blue feathers", + "eyes: small, black, and round", + "legs: thin, gray, and sturdy", + "wings: iridescent green with blue tips", + "nape: rich green-blue feathers", + "tail: elongated, green, with black central feathers", + "throat: brilliant orange-yellow patch" + ], + "orange bellied manakin": [ + "back: vibrant green feathers", + "beak: short and sharp black beak", + "belly: bright orange hue", + "breast: radiant orange feathers", + "crown: glossy green plumage", + "forehead: brilliant green forehead", + "eyes: small, round, and dark", + "legs: slender and grayish brown", + "wings: iridescent green with black tips", + "nape: green feathers blending into orange", + "tail: black, fan-shaped, and edged with green", + "throat: vivid orange plumage" + ], + "orange bellied parrot": [ + "back: vibrant green feathers", + "beak: short, curved, silver-gray", + "belly: bright orange patch", + "breast: yellow-green plumage", + "crown: green with blue tint", + "forehead: greenish-yellow feathers", + "eyes: small, dark, and round", + "legs: grayish-blue and slender", + "wings: green with blue edges", + "nape: slightly darker green", + "tail: long, blue-green feathers", + "throat: yellow-green with slight blue hue" + ], + "orange billed babbler": [ + "back: olive-brown feathers", + "beak: bright orange, slightly curved", + "belly: off-white and lightly streaked", + "breast: pale buff with brownish tinge", + "crown: olive-brown with faint streaks", + "forehead: similar to the crown, olive-brown", + "eyes: dark and round, white eye-ring", + "legs: orange, slender, and strong", + "wings: olive-brown with slight fading", + "nape: olive-brown, blending with other head feathers", + "tail: fairly long, olive-brown, and slightly forked", + "throat: pale buff, subtly contrasting with breast" + ], + "orange billed lorikeet": [ + "back: vibrant green feathers", + "beak: vivid orange curved beak", + "belly: light greenish-yellow plumage", + "breast: bright green and yellow feathers", + "crown: green feathers with blue hues", + "forehead: green with an orange tint", + "eyes: dark, expressive with white feathered rings", + "legs: small greyish scaly legs", + "wings: green feathers with blue and yellow accents", + "nape: green and blue tufted feathers", + "tail: long green feathers ending in yellow tips", + "throat: green feathers transitioning to yellow on the chest" + ], + "orange billed nightingale thrush": [ + "back: olive-brown feathers", + "beak: bright orange, slim", + "belly: white with pale gray sides", + "breast: white with large black dots", + "crown: olive-brown, rounded", + "forehead: olive-brown with slight white highlights", + "eyes: black with white eye-ring", + "legs: orange, slender", + "wings: olive-brown with blackish edges", + "nape: olive-brown with faint gray streaks", + "tail: olive-brown, short and square", + "throat: white with black dots" + ], + "orange billed sparrow": [ + "back: olive-brown feathers with streaks", + "beak: vibrant orange, cone-shaped", + "belly: light grey or white", + "breast: greyish-brown with darker streaks", + "crown: rusty-brown streaks on top of the head", + "forehead: light grey or white", + "eyes: small, black, and alert", + "legs: slender orange-brown", + "wings: olive-brown with white wing bars", + "nape: brownish-grey with streaks", + "tail: medium-length, dark brown with white edges", + "throat: light grey or white with slight markings" + ], + "orange breasted bunting": [ + "back: vibrant blue plumage", + "beak: short, cone-shaped, light gray", + "belly: light orange feathers", + "breast: bright orange plumage", + "crown: deep blue head feathers", + "forehead: striking blue plume", + "eyes: small, dark, with blue surrounding", + "legs: slim, gray", + "wings: blue with black and white markings", + "nape: rich blue feathers", + "tail: blue with black stripes", + "throat: bright orange feathers" + ], + "orange breasted falcon": [ + "back: sleek, dark gray feathers", + "beak: sharp, black, hooked", + "belly: light grey with thin streaks", + "breast: vibrant orange feathers", + "crown: dark gray, slightly raised", + "forehead: smooth, dark grey", + "eyes: large, dark, piercing gaze", + "legs: strong, yellow, ending in sharp talons", + "wings: long, pointed, dark grey with lighter edges", + "nape: dark grey, transitioning to orange", + "tail: straight, dark grey with noticeable banding", + "throat: rich orange, blending into breast" + ], + "orange breasted fig parrot": [ + "back: vibrant green feathers", + "beak: short, curved, and black", + "belly: yellowish-green tint", + "breast: bright orange plumage", + "crown: deep green with a blue-purple sheen", + "forehead: blue-green feathers", + "eyes: dark, round, and expressive", + "legs: slightly feathered, gray", + "wings: multicolored with green, blue, and yellow feathers", + "nape: bluish-green hue", + "tail: short, square-shaped, and blue-green", + "throat: dusky green feathers" + ], + "orange breasted forest robin": [ + "back: vibrant orange feathers with subtle brown accents", + "beak: short, sharp, black beak", + "belly: off-white feathers with faint streaks of orange", + "breast: striking orange plumage with a slight gradient", + "crown: subtle reddish-brown feathers", + "forehead: smooth, dull orange feathers", + "eyes: small, round, dark eyes with keen gaze", + "legs: slender, gray legs with claws for perching", + "wings: warm brown feathers with hints of orange at the edges", + "nape: soft, reddish-brown feathers blending into the back", + "tail: long, brown feathers with orange highlights near the base", + "throat: delicate, off-white feathers transitioning into the breast" + ], + "orange breasted fruiteater": [ + "back: vibrant green feathers", + "beak: strong, hooked, black", + "belly: orange-yellow plumage", + "breast: bright orange feathers", + "crown: green feathered crest", + "forehead: green plumage blending into the crown", + "eyes: dark, round, and alert", + "legs: black and sturdy", + "wings: green feathers with black flight feathers", + "nape: green feathers tapering to the back", + "tail: long, green with black tips", + "throat: green merging into the orange breast" + ], + "orange breasted green pigeon": [ + "back: vibrant green feathers", + "beak: short, curved, pale yellow", + "belly: bright orange hue", + "breast: rich orange plumage", + "crown: green crown, slightly darker than back", + "forehead: lighter green feathers", + "eyes: round, dark brown, small", + "legs: short, grayish-blue", + "wings: iridescent green feathers with black tips", + "nape: green, same shade as crown", + "tail: long, green feathers with black tips", + "throat: soft orange, lighter than breast" + ], + "orange breasted laughingthrush": [ + "back: vibrant orange with black markings", + "beak: short, slightly curved black beak", + "belly: rich orange with distinctive black markings", + "breast: warm orange hue with black stripes", + "crown: brilliant orange with a black crest", + "forehead: dark black region meeting the orange crown", + "eyes: black with a white eye-ring", + "legs: strong, grayish-brown color", + "wings: dark black and orange mix with hints of white", + "nape: orange with fine black markings", + "tail: long, black with orange accents and white trim", + "throat: striking orange with prominent black stripes" + ], + "orange breasted myzomela": [ + "back: vibrant orange hue", + "beak: small and thin", + "belly: rich orange plumage", + "breast: bright orange feathers", + "crown: dark-colored head", + "forehead: contrasting black area", + "eyes: small and beady", + "legs: slender and delicate", + "wings: dark-tipped flight feathers", + "nape: black neck region", + "tail: short, dark, and sharp-edged", + "throat: bright orange coloring" + ], + "orange breasted sunbird": [ + "back: vibrant green feathers with a hint of blue", + "beak: slim and slightly curved; black", + "belly: light orange blending into yellow", + "breast: brilliant orange with a metallic sheen", + "crown: iridescent green-blue", + "forehead: shimmering emerald green", + "eyes: small and beady; black", + "legs: thin and delicate; black", + "wings: mix of bright green and blue feathers", + "nape: glossy green-blue feathers", + "tail: elongated central feathers with green-blue and orange tips", + "throat: shiny metallic green transitioning into orange" + ], + "orange breasted thornbird": [ + "back: brownish-gray with subtle markings", + "beak: long, slender, and black", + "belly: light orange feathering", + "breast: bright orange plumage", + "crown: streaked brown and white", + "forehead: white markings with a brown tint", + "eyes: small and dark, with a thin white ring around", + "legs: thin and gray, with sharp clawed feet", + "wings: brown and elongated, with white-bordered feathers", + "nape: brownish-gray, transitioning into the orange breast color", + "tail: thin and long, with black-tipped brown feathers", + "throat: paler orange, with light streaks of brown" + ], + "orange browed hemispingus": [ + "back: olive-green feathers", + "beak: slim, pointed, black", + "belly: pale yellow shading", + "breast: yellow-orange plumage", + "crown: black-streaked olive", + "forehead: bright orange stripe", + "eyes: dark with white eyering", + "legs: slender, grayish", + "wings: olive, black, and white-edged feathers", + "nape: olive-green with black streaks", + "tail: dark with olive edges", + "throat: white, accented by black stripes" + ], + "orange cheeked honeyeater": [ + "back: olive-green feathers, slightly iridescent", + "beak: long, black, and slender", + "belly: light gray, with white streaks", + "breast: pale gray, streaked with white", + "crown: black, with hints of blue", + "forehead: vibrant orange-yellow patch", + "eyes: small, dark, and round", + "legs: dark gray, thin and wiry", + "wings: olive-green, medium length", + "nape: blue-black feathers, blending into the back", + "tail: grayish-black, fan-shaped", + "throat: unmarked white feathers" + ], + "orange cheeked parrot": [ + "back: vibrant green feathers", + "beak: strong, curved, beige-colored", + "belly: orange-yellow hue", + "breast: bright green with blue tinge", + "crown: dark green plumage", + "forehead: iridescent blue feathers", + "eyes: black with white eye-ring", + "legs: gray with clawed feet", + "wings: green with cobalt blue edges", + "nape: rich emerald green tones", + "tail: green with red and blue accents", + "throat: orange cheek patches" + ], + "orange cheeked waxbill": [ + "back: tender grey feathers", + "beak: sharp conical silver beak", + "belly: golden tan fluffiness", + "breast: soft orangish-brown hue", + "crown: pale grey cap-like shape", + "forehead: light charcoal fusion", + "eyes: alert tiny black beads", + "legs: delicate long pinkish-grey", + "wings: elegant silver-grey flight covers", + "nape: faded grey curve", + "tail: slick narrow charcoal feathers", + "throat: bluish-grey smoothness" + ], + "orange chinned parakeet": [ + "back: vibrant green feathers covering upper body", + "beak: strong, curved, orange-colored upper mandible", + "belly: light green feathers with hints of yellow", + "breast: bright green plumage, fading to yellowish-green", + "crown: vivid green feathers on top of the head", + "forehead: yellowish-green feathers that merge into green", + "eyes: dark, round, encircled with white eye-ring", + "legs: short, gray legs with zygodactyl feet", + "wings: dominant green coloration with blue flight feathers", + "nape: green feathers transitioning from crown to back", + "tail: long, green feathers with blue tinges on outer feathers", + "throat: distinctive orange chin patch, bordered by yellowish-green" + ], + "orange collared manakin": [ + "back: vibrant moss-green", + "beak: small, black, and pointed", + "belly: light yellow with subtle orange hue", + "breast: bright orange patch like a collar", + "crown: deep green with a slight sheen", + "forehead: vivid emerald-green", + "eyes: dark, small, beady with a gentle gaze", + "legs: slim, grayish-blue, unfeathered", + "wings: iridescent green with a rounded edge", + "nape: rich olive-green transitioning from crown", + "tail: short, slightly fan-shaped, greenish-black", + "throat: pale yellow, blending into the belly" + ], + "orange crested flycatcher": [ + "back: olive-green with light streaks", + "beak: sharp, slender, and black", + "belly: pale yellowish-white", + "breast: faintly streaked, light yellow", + "crown: bright orange crest", + "forehead: smooth, slightly paler orange", + "eyes: small, dark, and focused", + "legs: thin, dark gray with sharp claws", + "wings: olive-green with prominent white bars", + "nape: pale grayish-green", + "tail: long, dark, with white edges", + "throat: white, blending with yellow breast" + ], + "orange crowned euphonia": [ + "back: vibrant blue or green feathers", + "beak: short, stout and conical", + "belly: lemon-yellow or orange-toned", + "breast: bright yellow or orange hue", + "crown: brilliant orange-colored", + "forehead: bluish or greenish feathers", + "eyes: small, dark and round", + "legs: slender, dark gray or black", + "wings: iridescent blue or green", + "nape: blue or green feathers", + "tail: short and rounded, blue or green feathers", + "throat: striking yellow or orange color" + ], + "orange crowned fairywren": [ + "back: vibrant blue feathers", + "beak: small, black, and slender", + "belly: pale grey-white plumage", + "breast: bright orange crown patch", + "crown: vivid blue with hints of orange", + "forehead: striking blue plumage", + "eyes: black, beady, expressive", + "legs: thin, long, dark grey", + "wings: short and rounded, blue with a white patch", + "nape: blend of soft blue and grey feathers", + "tail: long, fan-shaped, and blue", + "throat: light grey-white feathering" + ], + "orange crowned manakin": [ + "back: vibrant green feathers", + "beak: small, sharp, black", + "belly: lighter green hue", + "breast: bright orange patch", + "crown: brilliant orange display", + "forehead: vivid green feathers", + "eyes: dark, round, and alert", + "legs: slender and gray", + "wings: iridescent green flight feathers", + "nape: smooth green transition", + "tail: short, fan-shaped, green feathers", + "throat: subtle green feathering" + ], + "orange crowned oriole": [ + "back: vibrant yellow-orange feathers", + "beak: thin and pointed, blackish-grey", + "belly: light yellow with subtle undertones", + "breast: bright yellow-orange feathers", + "crown: brilliant orange-yellow hue", + "forehead: yellow with a tinge of orange", + "eyes: small and dark, surrounded by yellow feathers", + "legs: slender, grey-black color", + "wings: blackish with orange-yellow feather markings", + "nape: yellowish feathered area", + "tail: blackish-grey with yellow-orange feather tips", + "throat: soft yellow-orange feathers" + ], + "orange eared tanager": [ + "back: vibrant green feathers", + "beak: slim, black, and pointed", + "belly: bright yellow with hints of green", + "breast: stunning orange and yellow blend", + "crown: deep green with slight iridescence", + "forehead: greenish with a touch of orange", + "eyes: dark, round, with thin white eye-ring", + "legs: slender, black with grey claws", + "wings: green with touches of blue and black", + "nape: iridescent green transitioning to yellow", + "tail: long, green, with black tips", + "throat: fiery orange gradually fading to yellow" + ], + "orange eyed flycatcher": [ + "back: olive-green feathers", + "beak: thin, pointy, black", + "belly: pale cream-white", + "breast: light yellow", + "crown: olive-green with faint black stripe", + "forehead: olive-green feathers", + "eyes: bright orange", + "legs: dark gray", + "wings: olive-green with dark brown markings", + "nape: olive-green feathers", + "tail: dark brown with light edging", + "throat: light yellow" + ], + "orange eyed thornbird": [ + "back: light brown with streaks of grey", + "beak: long, thin, and black", + "belly: pale grey with dark feather edges", + "breast: light greyish-brown", + "crown: brownish-grey with texture", + "forehead: slightly darker grey than crown", + "eyes: vivid orange with sharp gaze", + "legs: greyish-brown with strong feet", + "wings: mottled grey, light brown, and white", + "nape: silvery grey with hint of brown", + "tail: long, narrow, grey with dark bands", + "throat: pale grey with fine markings" + ], + "orange footed megapode": [ + "back: brownish black feathers", + "beak: short, stout, and grayish", + "belly: dense, dark plumage", + "breast: dark brown with a slight gloss", + "crown: blackish feathers, slightly raised", + "forehead: feathered black with weak crest", + "eyes: dark brown with pale yellow orbital ring", + "legs: striking orange-yellow feet and scaled black legs", + "wings: dark, rounded with strong flight feathers", + "nape: black-feathered, blending into back plumage", + "tail: elongated, dark brown feathers with a glossy sheen", + "throat: black feathers, bordered by brown plumage" + ], + "orange fronted barbet": [ + "back: green feathers with slight yellow tinge", + "beak: sharp, black, and slightly curved", + "belly: vibrant yellow plumage", + "breast: bright red and yellow patchwork", + "crown: blue and green mixed feathers", + "forehead: striking orange feathers", + "eyes: round, dark, and slightly large", + "legs: sturdy grey with strong talons", + "wings: green feathers with yellow and blue details", + "nape: blue and green feathers, connecting crown and back", + "tail: short with green and blue feathers", + "throat: yellow plumage blending into the breast area" + ], + "orange fronted fruit dove": [ + "back: vibrant green feathers", + "beak: short, curved, pale-yellow", + "belly: orange-yellow feathers", + "breast: gradient of yellow to green feathers", + "crown: green head feathers", + "forehead: brilliant orange feathers", + "eyes: dark, round with white eye-ring", + "legs: short, grey with strong toes", + "wings: green with hints of yellow feathers", + "nape: green feathers transitioning to orange", + "tail: green feathers with yellow tips", + "throat: soft orange-yellow feathers" + ], + "orange fronted parakeet": [ + "back: vibrant green feathered back", + "beak: short, curved, pale orange beak", + "belly: lighter green feathered belly", + "breast: greenish-yellow feathered breast", + "crown: bright green feathered crown", + "forehead: striking orange feathered forehead", + "eyes: dark, round eyes with white eye-ring", + "legs: short, gray legs with zygodactyl toes", + "wings: green feathered wings with blue-tipped flight feathers", + "nape: bright green feathered nape", + "tail: long, tapered green tail feathers with blue tips", + "throat: greenish-yellow feathered throat" + ], + "orange fronted plushcrown": [ + "back: vibrant emerald green feathers", + "beak: small, sharp, and black", + "belly: soft white with a hint of yellow", + "breast: bright orange-yellow plumage", + "crown: lush orange plush-like feathers", + "forehead: deep orange continuous with the crown", + "eyes: beady and black, surrounded by green feathering", + "legs: thin, grayish, and nimble", + "wings: layered green feathers with a touch of blue iridescence", + "nape: blending from orange to green, connecting crown and back", + "tail: long, green feathers with blue accents", + "throat: faintly yellow-tinged white feathers" + ], + "orange fronted yellow finch": [ + "back: vibrant green hue with subtle black markings", + "beak: sharp and pointed, pale orange color", + "belly: bright yellow gradient, fading towards the back", + "breast: rich golden-yellow with slight green tinges", + "crown: orange-tinted front, blending into yellow-green", + "forehead: distinct orange patch with fine feather detail", + "eyes: small, round, and dark with black pupils", + "legs: slender and grey, equipped with strong claws", + "wings: green and black feather pattern, extended for flight", + "nape: gradual transition from crown to upper back", + "tail: notched feathers with alternating green and black bands", + "throat: vibrant yellow, complementing the breast" + ], + "orange headed tanager": [ + "back: vibrant green feathers", + "beak: sharp, black, and pointed", + "belly: bright yellow-orange hue", + "breast: striking orange with soft gradient", + "crown: rich orange, prominent on the head", + "forehead: bold orange coloring, eye-catching", + "eyes: small, dark, and alert", + "legs: slender and black, built for perching", + "wings: green with tinges of blue and yellow", + "nape: orange and green, where colors blend", + "tail: long, green feathers with yellow edges", + "throat: deep orange, continuation of breast" + ], + "orange headed thrush": [ + "back: earthy brown with a muted pattern", + "beak: straight and sharp, blackish-brown", + "belly: creamy white with speckles", + "breast: striking orange hue, fading into the belly", + "crown: gentle orange, blending with the forehead", + "forehead: slightly paler orange than the crown", + "eyes: dark, surrounded by a faint orange ring", + "legs: slender and gray, with sharp claws", + "wings: brown with black and white feather patterns", + "nape: blend of orange and brown, connecting the crown to the back", + "tail: sleek brown with darker feather tips", + "throat: bright orange, fading into the breast area" + ], + "orange necked partridge": [ + "back: light brown and black patterned feathers", + "beak: short, curved, grayish-black", + "belly: scaled buff and black feathers", + "breast: orange-brown, mottled with black spots", + "crown: dark gray with brownish border", + "forehead: pale gray with orange tinge", + "eyes: small, round, dark brown", + "legs: stout, reddish-orange with strong claws", + "wings: short, rounded, with black and brown bars", + "nape: orange-brown with dark stripes", + "tail: dark brown, long and slightly pointed", + "throat: pale gray, bordered by an orange-brown necklace" + ], + "orange spotted bulbul": [ + "back: brownish-green with faint orange streaks", + "beak: short, slightly curved, greyish-blue", + "belly: pale cream with small orange spots", + "breast: creamy white with bright orange spots", + "crown: brownish-green with slight crest", + "forehead: olive-green gradually fading to white near eyes", + "eyes: round, small, black with white surrounding", + "legs: strong and slim, light grey", + "wings: brownish-green with faint orange patches and white tips", + "nape: light olive-green with white streaks", + "tail: long, brownish-green with white edges and orange spots", + "throat: pure white with no spots" + ], + "orange throated longclaw": [ + "back: goldish-brown with faint black streaks", + "beak: sharp, black, and pointed", + "belly: bright orange-yellow", + "breast: vivid orange throat patch", + "crown: golden-brown with black stripe", + "forehead: golden-brown", + "eyes: dark with a pale eyering", + "legs: long, thin, and dark gray", + "wings: brown with black streaks or spots", + "nape: golden-brown with black stripe", + "tail: brown with white outer feathers", + "throat: vibrant orange patch" + ], + "orange throated sunangel": [ + "back: vibrant emerald green feathers", + "beak: long, slender, and black", + "belly: pale grayish-white plumage", + "breast: brilliant orange throat patch", + "crown: iridescent green cap", + "forehead: shining green feathers", + "eyes: small, round, and black", + "legs: thin, dark grey limbs", + "wings: delicate, shimmering green plumes", + "nape: rich green feathers connecting crown to back", + "tail: short, rounded, and green", + "throat: eye-catching bright orange throat patch" + ], + "orange throated tanager": [ + "back: vibrant yellow-green feathers", + "beak: sharp, pointed, black", + "belly: bright orange-yellow hue", + "breast: vivid orange-yellow plumage", + "crown: yellow-green feathers with a slight crest", + "forehead: striking yellow-green color", + "eyes: small, round, black with a white eye-ring", + "legs: thin and gray, with sharp talons", + "wings: yellow-green with black spots and flight feathers", + "nape: yellow-green surrounding the base of the neck", + "tail: long, black, and slightly forked feathers", + "throat: intense orange hue, setting it apart from the rest of the body" + ], + "orange tufted spiderhunter": [ + "back: vibrant green and elongated", + "beak: long, curved, and slender", + "belly: pale yellow-orange", + "breast: bright orange-yellow", + "crown: green with slight blue tinge", + "forehead: green blending into crown", + "eyes: small and dark", + "legs: slim and grayish", + "wings: green with blue and black patterns", + "nape: bluish-green and smooth", + "tail: long, narrow, and green", + "throat: orange-yellow with tufted feathers" + ], + "orange tufted sunbird": [ + "back: vibrant green and blue plumage", + "beak: slender, curved downward, black", + "belly: bright orange feathers", + "breast: dazzling orange plumage", + "crown: iridescent blue-green plumes", + "forehead: orange tuft with golden highlights", + "eyes: small, black, and lively", + "legs: thin, black, and delicate", + "wings: green-blue with hints of orange", + "nape: green-blue sheen with a hint of gold", + "tail: long, narrow, and green-blue with orange streaks", + "throat: vibrant orange with golden shimmer" + ], + "orange winged parrot": [ + "back: vibrant green feathers providing smooth coverage", + "beak: strong, curved, grayish-black beak for gripping food", + "belly: light greenish-yellow feathers with a soft texture", + "breast: bright orange feathers transitioning from green tones", + "crown: green feathered crest with a slight curve towards the back", + "forehead: brilliant green feathers blending with the crown", + "eyes: dark, beady eyes encircled by a thin, white eye-ring", + "legs: sturdy gray legs with zygodactyl toes for gripping branches", + "wings: iridescent blue and orange streaks amidst green feathers", + "nape: green feathers merging from the crown to the back", + "tail: long, green and blue flight feathers with a squared-off end", + "throat: yellow-green feathers transitioning to the orange breast" + ], + "orange winged pytilia": [ + "back: vibrant green feathers", + "beak: short and sharp, grayish-blue color", + "belly: orange and white feathered", + "breast: bright orange with white patches", + "crown: olive-green with yellowish highlights", + "forehead: olive-green merging with the crown", + "eyes: small and black, surrounded by green feathers", + "legs: slender and grayish-blue", + "wings: orange wing bar with green base", + "nape: olive-green feathers", + "tail: long and green with orange edges", + "throat: white area with faint orange hue" + ], + "orangequit": [ + "back: vibrant green feathered", + "beak: short, sturdy, black", + "belly: olive-yellow hue", + "breast: golden orange plumage", + "crown: dark greenish-black", + "forehead: striking orange blaze", + "eyes: small, black, alert", + "legs: delicate grey", + "wings: greenish-black with white accents", + "nape: brilliant green", + "tail: green and black feathers", + "throat: bold orange-yellow" + ], + "oriental cuckoo": [ + "back: sleek, grayish-brown feathers", + "beak: slim, slightly curved, dark-colored", + "belly: off-white with subtle dark barring", + "breast: pale gray with indistinct markings", + "crown: dark gray, smooth feathers", + "forehead: grayish-brown transitioning to crown", + "eyes: round, dark, with thin eye-ring", + "legs: long, slim, dark gray", + "wings: elongated, grayish-brown with faint barring", + "nape: grayish-brown, merging with back and crown", + "tail: long, dark gray with subtle barring, slightly graduated", + "throat: pale buff, unmarked" + ], + "oriental darter": [ + "back: elongated, dark brown feathers", + "beak: long, sharp, yellowish hooked tip", + "belly: light brown with streaks of white", + "breast: whitish with brown speckles", + "crown: dark brown with slight crest", + "forehead: dark brown feathers blending into the beak", + "eyes: bright, piercing yellow", + "legs: short, webbed with greenish-gray", + "wings: dark brown, long and slender with white streaks", + "nape: dark brown, slightly lighter than the back", + "tail: long, dark brown feathers with a forked shape", + "throat: white feathers with brown streaks" + ], + "oriental greenfinch": [ + "back: vibrant green feathers", + "beak: short, robust, and pale pinkish-grey", + "belly: bright yellow plumage", + "breast: yellow-green feathers", + "crown: dark green with a slightly rounded shape", + "forehead: greenish-yellow feathers", + "eyes: black and bead-like, surrounded by thin bright yellow eye-ring", + "legs: sturdy and pale pinkish-grey", + "wings: dark green with yellow linings", + "nape: green feathers with yellow tinge", + "tail: forked with dark green feathers", + "throat: bright yellow patch" + ], + "oriental hobby": [ + "back: dark slate-grey feathers", + "beak: sharp, curved hook, black", + "belly: light grey, streaked with white", + "breast: rusty-red, lightly streaked", + "crown: slate-grey, well-defined", + "forehead: dark grey fading into white", + "eyes: large, bright yellow, piercing gaze", + "legs: yellow-orange, strong, sharp talons", + "wings: long, slender, dark grey, with white bands", + "nape: grey with faint red-brown tinges", + "tail: dark grey, prominently barred with white edges", + "throat: white, sharply distinct from breast color" + ], + "oriental honey buzzard": [ + "back: dark brown plumage with lighter edges", + "beak: short, hooked, and yellowish-grey", + "belly: creamy white with brown horizontal stripe pattern", + "breast: beige with dark brown streaks", + "crown: dark brown with a slightly paler forehead", + "forehead: lighter brown with a hint of a crest", + "eyes: yellow-orange with a black, striking stare", + "legs: yellowish-grey with strong talons", + "wings: broad, long, and brown with contrasting white bands", + "nape: light brown blending into the dark brown of the back", + "tail: long, dark brown with narrow white bands", + "throat: white or pale beige with some darker streaking" + ], + "oriental magpie robin": [ + "back: dark and streaked feathers", + "beak: sharp, straight, and black", + "belly: white to greyish-white", + "breast: white, blending with belly", + "crown: bold black stripe", + "forehead: black with distinct white stripe", + "eyes: dark, alert, and expressive", + "legs: slender, greyish-black", + "wings: black with white patches", + "nape: black with a small white stripe", + "tail: long, black, and white-edged", + "throat: white with a black band" + ], + "oriental pied hornbill": [ + "back: black feathers with a slight sheen", + "beak: large, yellow and black casqued", + "belly: white and fluffy", + "breast: white with occasional black streaks", + "crown: covered in black feathers", + "forehead: adorned with black plumage", + "eyes: dark and encircled with a pale blue ring", + "legs: sturdy, dark gray", + "wings: broad and patterned with black and white feathers", + "nape: black feathers meeting the white of the belly", + "tail: long and black, extending past the body", + "throat: white feathers transitioning into black plumage" + ], + "oriental plover": [ + "back: light brown with subtle streaks", + "beak: short, straight, black", + "belly: white, unmarked", + "breast: buff colored, smooth", + "crown: brownish-gray, lined pattern", + "forehead: white, prominent", + "eyes: black, round", + "legs: long, dark gray", + "wings: light brown, white-tipped", + "nape: browny-gray, subtle streaks", + "tail: pale brown, narrow bars", + "throat: white, chin unmarked" + ], + "oriental pratincole": [ + "back: light sandy brown with smooth feathering", + "beak: short and pointed, blackish in color", + "belly: creamy white, blending into the breast", + "breast: warm reddish-brown with a buffy tinge", + "crown: dark brown with a slight crest", + "forehead: pale with a contrasting darker border", + "eyes: dark and round, surrounded by white eyering", + "legs: long and slender, pale yellowish-green", + "wings: pointed, sandy brown with dark tips and edges", + "nape: warm brown, similar in color to crown", + "tail: elongated and forked, with dark brown feathers and white outer tail feathers", + "throat: white with a black crescent-shaped marking" + ], + "oriental reed warbler": [ + "back: light brown with subtle dark streaks", + "beak: long and slender, slightly curved downward", + "belly: whitish or pale buff color", + "breast: pale brownish with thin dark streaks", + "crown: warm brown with faded streaks", + "forehead: light brown blending into the crown", + "eyes: small and dark, surrounded by a faint white eye-ring", + "legs: pale pinkish or flesh-colored, long and slender", + "wings: brownish with faint darker bars", + "nape: light brown, blending with the crown and back", + "tail: brownish, long and graduated with pale outer edges", + "throat: pale buff or whitish, blending into the breast" + ], + "oriental scops owl": [ + "back: dark brownish-grey with white spots", + "beak: sharp, blackish-brown, and curved", + "belly: pale buffy-white with dark brown bars", + "breast: light brown with dark brown streaks", + "crown: dark brown with prominent white spots", + "forehead: brownish-grey with fine white streaks", + "eyes: large, bright yellow", + "legs: feathered and brownish-grey", + "wings: long, broad, dark brown with white spots", + "nape: dark brown with white markings", + "tail: dark brown barred with thin white bands", + "throat: pale buff with brown streaks" + ], + "oriental skylark": [ + "back: light brown with black streaks", + "beak: slender and straight, pale color", + "belly: creamy white with brown speckles", + "breast: warm buff with dark streaks", + "crown: light brown with fine black streaks", + "forehead: light brown, blending into crown", + "eyes: small and dark, surrounded by white eye-ring", + "legs: pale pinkish-brown, long and slender", + "wings: brown with black markings, slightly pointed", + "nape: light brown, similar to crown", + "tail: brown with white outer feathers, slightly forked", + "throat: pale buff, unmarked" + ], + "oriental stork": [ + "back: black and white plumage, covering from neck to tail", + "beak: long, sharp, pointed, and slightly curved", + "belly: white feathers, located beneath the breast", + "breast: white plumage, extending from throat to stomach area", + "crown: black feathers atop the head", + "forehead: white feathers between eyes and beak", + "eyes: small, dark, and expressive", + "legs: long, thin, and reddish in color", + "wings: large, primarily white with black tips", + "nape: black feathers, connecting the head to the back", + "tail: elongated white feathers with black accents", + "throat: white plumage, seamlessly connected to breast area" + ], + "oriental turtle dove": [ + "back: grayish-brown feathered", + "beak: short, black, and pointed", + "belly: light gray with a white undertone", + "breast: pale gray with a slight pink hue", + "crown: grayish-brown with a black mark", + "forehead: light gray, blending with the crown", + "eyes: dark brown, with thin black eye-ring", + "legs: short, pinkish-red with dark claws", + "wings: multicolored feathers gray, brown, black", + "nape: dark gray with brownish tinge", + "tail: long, black with white edges", + "throat: whitish-gray, well defined" + ], + "oriente warbler": [ + "back: olive-green upper body", + "beak: thin, pointed bill", + "belly: pale yellow underside", + "breast: light yellowish-green", + "crown: orange-brown cap", + "forehead: stripe of vibrant yellow", + "eyes: dark beady with white eye-ring", + "legs: pale pinkish-grey", + "wings: olive with feathered tips", + "nape: subtle yellow-green", + "tail: elongated, sleek feathers", + "throat: off-white plumage" + ], + "orinocan saltator": [ + "back: olive-green feathers with black streaks", + "beak: strong, conical, dark gray", + "belly: yellowish-cream with black streaks", + "breast: grayish-olive with black streaks", + "crown: black with blue iridescence", + "forehead: black with a slight blue sheen", + "eyes: dark brown with a white eye-ring", + "legs: sturdy, grayish-brown", + "wings: olive-green with faint black markings", + "nape: olive-green with black streaks", + "tail: olive-green, long, and slightly forked", + "throat: white with black streaks" + ], + "orinoco goose": [ + "back: brownish-grey feathers with white streaks", + "beak: strong, hooked, black with a hint of orange", + "belly: white, fluffy feathers", + "breast: dark chestnut color with black markings", + "crown: brownish-grey feathers with white streaks", + "forehead: same as the crown, brownish-grey with white streaks", + "eyes: brownish-orange with a black pupil", + "legs: strong, orange with black, webbed feet", + "wings: dark chestnut and white with black markings; white wing bars", + "nape: brownish-grey feathers with white streaks", + "tail: dark chestnut color with black stripes", + "throat: white, fluffy feathers" + ], + "orinoco piculet": [ + "back: olive-green with fine black streaks", + "beak: slender, gently curved, and black", + "belly: whitish hue with a subtle buff tone", + "breast: pale gray with some white streaks", + "crown: blackish with small white spots", + "forehead: black with tiny white speckles", + "eyes: dark brown encircled by white eyering", + "legs: short, grayish-brown with sturdy toes", + "wings: olive-green with blackish feather edging", + "nape: black with small white dots", + "tail: short, sharply pointed blackish feathers", + "throat: white with fine black and gray streaking" + ], + "orinoco softtail": [ + "back: brownish-gray with subtle patterning", + "beak: thin, sharp, and slightly curved", + "belly: pale white with light brown streaks", + "breast: creamy white intersected with brown streaks", + "crown: round-headed with uniform brownish-gray feathers", + "forehead: smooth and flat, similar in color to the crown", + "eyes: dark, small and positioned midway up the side of the head", + "legs: slender and medium-length with pale brown coloration", + "wings: brownish-gray with white feather edging, moderately sized", + "nape: continuation of crown pattern, with brownish-gray feathers", + "tail: long and slightly rounded with brownish-gray feathers", + "throat: white with light streaks of brown, gradually transitioning to the breast" + ], + "oriole blackbird": [ + "back: vibrant golden-orange to yellow and black plumage", + "beak: sharp, straight, silvery-blue or black", + "belly: predominantly golden-yellow or orange", + "breast: bright golden-yellow or orange with black markings", + "crown: black or bluish-black feathers", + "forehead: black, sometimes with blue or yellow tinges", + "eyes: small, dark, and inconspicuous", + "legs: thin, black, with strong feet and claws", + "wings: black, sometimes with white or yellow wingbars", + "nape: black or yellow, depending on the species", + "tail: long, black, with straight or slightly forked shape", + "throat: golden-yellow or orange with black-bordered feathers" + ], + "oriole cuckooshrike": [ + "back: vibrant bluish-gray plumage", + "beak: sleek, black, and slightly hooked", + "belly: white with faint grayish streaks", + "breast: pale gray with subtle stripes", + "crown: blue-gray with a stunning crest", + "forehead: bright bluish-gray feathers", + "eyes: piercing, dark, with a white eye-ring", + "legs: sturdy and black, with sharp talons", + "wings: broad, blue-gray with black and white markings", + "nape: smooth, blue-gray transition to the crown", + "tail: elongated blue-gray feathers with black tips", + "throat: pale gray, merging into the breast area" + ], + "oriole finch": [ + "back: vibrant yellow-orange feathers", + "beak: thin, sharp, and curved", + "belly: light yellow with streaks", + "breast: bright yellow or orange hue", + "crown: black or dark blue coloring", + "forehead: deep black stripe", + "eyes: small, round, with a black pupil", + "legs: thin and gray", + "wings: contrasting black or blue with intricate patterns", + "nape: yellow-orange or black, depending on the sub-species", + "tail: long, black or blue feathers with white edges", + "throat: vivid yellow or orange with black markings" + ], + "oriole warbler": [ + "back: bright green feathers", + "beak: slim, curved, and pointed", + "belly: pale yellow or white", + "breast: yellowish-green plumage", + "crown: green with slightly darker streaks", + "forehead: bright yellow-green", + "eyes: small, dark, and alert", + "legs: slender, grayish-blue", + "wings: vibrant green with blackish flight feathers", + "nape: light green transitioning to darker hues", + "tail: green on top, greyish-blue underneath, with white tips", + "throat: pale yellow or white with faint markings" + ], + "oriole whistler": [ + "back: vibrant golden-yellow feathers", + "beak: thin, pointed, and slightly curved", + "belly: soft white or pale yellow feathers", + "breast: bright orange-yellow plumage", + "crown: rich golden-yellow feathers with a hint of orange", + "forehead: prominent golden-yellow coloration", + "eyes: striking dark and rounded with a white eye-ring", + "legs: strong dark-gray to black, slightly feathered", + "wings: black with white or yellow bars and patches", + "nape: golden-yellow shade fading into the rest of the body", + "tail: straight, black, and white-tipped with a fan-like appearance", + "throat: vivid orange-yellow hue contrasted with the white of the belly" + ], + "ornate flycatcher": [ + "back: olive-green feathers with darker streaks", + "beak: short, black, and hooked", + "belly: pale yellowish-white plumage", + "breast: orange-yellow feathers with streaks", + "crown: black-and-white striped pattern", + "forehead: bright orange-yellow tuft", + "eyes: dark, round, with white eyering", + "legs: strong and grayish", + "wings: olive-green with black and white bars", + "nape: olive-green with black streaks", + "tail: long and mostly black, with white outer feathers", + "throat: white with black streaks" + ], + "ornate fruit dove": [ + "back: vibrant green feathers with yellow highlights", + "beak: short, hooked, and yellowish-orange", + "belly: pale yellow with green tones", + "breast: pinkish-red coloration", + "crown: bright emerald green", + "forehead: vivid orange hue", + "eyes: black with white rings around", + "legs: short, sturdy with pinkish-grey color", + "wings: green with yellow accents and blue tips", + "nape: bright emerald green with white streaks", + "tail: elongated, green with yellow bands and blue tips", + "throat: radiant yellowish-green" + ], + "ornate lorikeet": [ + "back: vibrant green with a hint of blue", + "beak: curved and orange-red", + "belly: bright yellow with a slight green tint", + "breast: rich golden-yellow", + "crown: emerald green with blue highlights", + "forehead: iridescent lime green", + "eyes: dark brown with white eye rings", + "legs: gray and slender", + "wings: green-blue with red and yellow markings", + "nape: deep green with a bluish sheen", + "tail: elongated, green with yellow and red tips", + "throat: luminous green-yellow" + ], + "ornate melidectes": [ + "back: golden-brown feathers", + "beak: long, curved, black", + "belly: pale-brownish hue", + "breast: dark-brown feathers with hints of yellow", + "crown: golden-yellow feathers", + "forehead: bright yellow plumes", + "eyes: striking, black orbs", + "legs: strong, slate gray", + "wings: golden-brown, tipped in black", + "nape: golden-yellow plumage", + "tail: long, black, slightly forked", + "throat: yellow, fading to pale-brown" + ], + "ornate pitta": [ + "back: bold, greenish-blue feathers", + "beak: short, strong, and curved", + "belly: vibrant yellow plumage with black markings", + "breast: rich yellow with intricate black patterns", + "crown: bright blue with a defined black eyestripe", + "forehead: striking blue-green feathers", + "eyes: dark, round, and surrounded by black eyestripe", + "legs: long, pinkish-gray with strong feet for perching", + "wings: multicolored with blue, green, and yellow feathers", + "nape: vivid green blending into the blue crown", + "tail: mixture of blue and green feathers with black bars", + "throat: deep yellow with fine black pattern" + ], + "ornate stipplethroat": [ + "back: intricately patterned with dark streaks", + "beak: long and slender with a prominent hook", + "belly: cream-colored with delicate speckles", + "breast: vibrant orange hue with black markings", + "crown: adorned with blue and green iridescence", + "forehead: smooth feathers in a deep red shade", + "eyes: bright, piercing gaze surrounded by yellow rings", + "legs: robust and sturdy with curved talons", + "wings: luminescent and elaborate, banded with multiple colors", + "nape: subtly striped, transitioning to a vivid plumage", + "tail: elongated and majestic, ending in a stunning fan", + "throat: adorned with striking black and white stipples" + ], + "ornate tinamou": [ + "back: richly patterned brown and black feathers", + "beak: slender, curved, yellowish", + "belly: lightly speckled cream and brown", + "breast: mottled brown and cream feathers", + "crown: dark brown with a grayish tinge", + "forehead: smooth, grayish-brown", + "eyes: small, black, beady", + "legs: sturdy, grayish-blue", + "wings: brown and black barred feathers", + "nape: patterned brown with a slight crest", + "tail: short, brown and black barred", + "throat: pale cream with light speckles" + ], + "ortolan bunting": [ + "back: olive-brown with dark streaks", + "beak: short, conical, and yellowish", + "belly: pale greyish-yellow", + "breast: subtle yellow blush", + "crown: distinct brown with pale edges", + "forehead: yellowish-brown", + "eyes: dark, small, with pale eyering", + "legs: pale pinkish-brown", + "wings: brown with white and buff wingbars", + "nape: olive-brown with dark streaks", + "tail: brown with white outer feathers", + "throat: pale, buff-yellow" + ], + "oustalet sunbird": [ + "back: vibrant green feathered covering", + "beak: long, slender, and curved for sipping nectar", + "belly: soft, white-gray underbelly plumage", + "breast: shimmering blue-green feathers", + "crown: iridescent green-blue head crest", + "forehead: gleaming blue-green plumage", + "eyes: small, round, and black", + "legs: thin, brown, and scaly with sharp claws", + "wings: bright green with hints of blue and yellow", + "nape: brilliant green and blue coloration", + "tail: elongated, green-blue feathers", + "throat: rich golden-yellow patch" + ], + "oustalet tyrannulet": [ + "back: olive-green feathers covering upper body", + "beak: small, thin, and pointy for insect catching", + "belly: creamy-white underbody with subtle streaks", + "breast: pale yellowish-white with faint olive wash", + "crown: grayish-olive with streaked pattern", + "forehead: slightly paler grayish-olive than crown", + "eyes: dark with thin white eye-ring", + "legs: slender and blackish-gray", + "wings: olive-green with white wing-bars", + "nape: grayish-olive, transition between crown and back", + "tail: olive-green with white-tipped outer feathers", + "throat: cream-colored with thin streaks" + ], + "outcrop sabrewing": [ + "back: iridescent green with subtle bronze sheen", + "beak: long, slender, and slightly curved", + "belly: pale grayish-white with faint green tint", + "breast: vibrant green, slightly darker than the back", + "crown: shimmering violet-blue with green highlights", + "forehead: vibrant violet-blue, matching the crown", + "eyes: dark, circular with a narrow white eyering", + "legs: short, sturdy, grayish-brown", + "wings: large and rounded with iridescent green feathers", + "nape: brilliant green, slightly darker than the crown", + "tail: long, forked, and iridescent green with white tips", + "throat: luminous violet-blue, extending to the sides of the neck" + ], + "ouvea parakeet": [ + "back: vibrant green feathers", + "beak: strong, hooked, and grayish-blue", + "belly: lighter green feathers", + "breast: bright green plumage", + "crown: green with a hint of blue", + "forehead: bluish-green feathers", + "eyes: dark with white eyerings", + "legs: gray and sturdy", + "wings: green with blue edges", + "nape: green with a bluish tint", + "tail: long and green with blue tips", + "throat: greenish-blue feathers" + ], + "ovambo sparrowhawk": [ + "back: slender brown feathers with faint white edges", + "beak: sharp, hooked black beak", + "belly: white feathers with dark brown streaks", + "breast: white with brown horizontal streaks across the chest", + "crown: dark brown feathers", + "forehead: pale grayish-brown feathers", + "eyes: deep yellow with a black iris", + "legs: long, yellow-orange legs with powerful talons", + "wings: brown feathers with white barring, rounded when folded", + "nape: grayish-brown feathers with a hint of white", + "tail: long, brown feathers with a broad white band near the tip", + "throat: pale white feathers with thin brown streaks" + ], + "owston tit": [ + "back: olive-green feathers with white streaks", + "beak: short, sharp, and black", + "belly: pale gray with yellow undertones", + "breast: white with light olive-green streaks", + "crown: olive-green with white streaks", + "forehead: light olive-green with white streaks", + "eyes: small and round with black pupils", + "legs: strong, gray, with sharp claws", + "wings: olive-green with white-edged feathers", + "nape: olive-green fading into white streaks", + "tail: long and slender with olive-green and black feathers", + "throat: white with olive-green streaks" + ], + "oxapampa antpitta": [ + "back: olive-brown coloration with fine streaks", + "beak: short and strong with a slight curve", + "belly: yellowish hue with some brown marks", + "breast: buff color with contrasting streaks", + "crown: rufous brown with light streaks", + "forehead: brownish with subtle markings", + "eyes: small size, encircled by light eyering", + "legs: strong and long, greyish in tone", + "wings: olive-brown with faint feather markings", + "nape: brownish with thin streaks", + "tail: short and square-cut, olive-brown tone", + "throat: pale yellow with some brownish streaks" + ], + "pacific antwren": [ + "back: olive-green with black stripes", + "beak: short, thin, and curved", + "belly: white and fluffy", + "breast: white with black barring", + "crown: black with greenish tinge", + "forehead: black with greenish sheen", + "eyes: black, bead-like", + "legs: thin, grayish blue", + "wings: dark green with black and white wingbars", + "nape: olive-green with black stripes", + "tail: long and black with white tips", + "throat: white with black streaks" + ], + "pacific baza": [ + "back: brownish-grey with subtle barring", + "beak: hooked shape, blackish-grey", + "belly: white with dark-grey speckles", + "breast: pale grey with fine dark barring", + "crown: brownish-grey with a slight crest", + "forehead: whitish with brown streaks", + "eyes: large, yellow-orange with a distinct dark stripe", + "legs: yellow-grey with sharp talons", + "wings: long, barred with alternating shades of grey", + "nape: brownish-grey with subtle barring", + "tail: dark-grey with white bands", + "throat: pale grey with faint streaks" + ], + "pacific black duck": [ + "back: olive-brown feathers with subtle dark barring", + "beak: dark greyish-blue with a black tip", + "belly: light buff or cream-colored feathers", + "breast: mottled brown and white feathers", + "crown: dark brown feathers", + "forehead: lighter brown feathers", + "eyes: dark, beady eyes with a white eye-ring", + "legs: yellow-orange webbed feet", + "wings: brown feathers with a distinctive iridescent green speculum", + "nape: brown feathers with a narrow light stripe or collar", + "tail: dark brown feathers with white outer edges", + "throat: lighter brown or buff-colored feathers" + ], + "pacific elaenia": [ + "back: olive-brown with indistinct streaks", + "beak: thin, pointed, and dark-colored", + "belly: pale yellowish-white", + "breast: light olive-gray with some streaks", + "crown: dark gray with a slight crest", + "forehead: slightly paler gray", + "eyes: dark brown with thin white eye-ring", + "legs: slender, dark gray", + "wings: olive-brown with two pale wing bars", + "nape: grayish-brown", + "tail: dark olive-brown with faint pale edges", + "throat: pale grayish-yellow" + ], + "pacific emerald dove": [ + "back: iridescent green feathers", + "beak: short, curved, and dark gray", + "belly: pale gray with a hint of green sheen", + "breast: vibrant emerald green", + "crown: glossy emerald green", + "forehead: slightly brighter green than the crown", + "eyes: dark brown or black with a pale blue eye-ring", + "legs: slim, red to purple, with dark gray toes", + "wings: shimmering green with dark gray edges", + "nape: iridescent green merging with the crown", + "tail: slender, elongated, dark gray with green sheen", + "throat: paler gray transitioning to the emerald breast" + ], + "pacific flatbill": [ + "back: olive-brown with faint streaks", + "beak: short, flat, and wide with a hooked tip", + "belly: white or pale yellow", + "breast: washed with pale olive or yellow", + "crown: olive-green with lighter edges", + "forehead: faint eyebrow line and pale olive color", + "eyes: black with thin white eye-ring", + "legs: slender, gray or black", + "wings: olive-brown with faint pale yellow wingbars", + "nape: olive-green with slightly darker streaks", + "tail: medium length, olive-brown with white tips", + "throat: white or pale yellow with faint streaks" + ], + "pacific gull": [ + "back: silver-grey feathers with white edges", + "beak: strong, yellow with a red tip", + "belly: soft white plumage", + "breast: white with smooth feathers", + "crown: silver-grey with sleek feathering", + "forehead: white and smoothly curved", + "eyes: dark brown, sharp and alert", + "legs: thick, yellow-orange, webbed", + "wings: long, silver-grey with black-tipped primaries", + "nape: silver-grey feathering", + "tail: white feathers with a black band", + "throat: smooth white feathers" + ], + "pacific heron": [ + "back: sleek, grayish-blue feathers", + "beak: long, sharp, yellow pointed beak", + "belly: white, soft, feathery underbelly", + "breast: white, rounded chest with smooth feathers", + "crown: black or dark gray feathered cap on the head", + "forehead: white plumage above the eyes", + "eyes: small, piercing yellow eyes", + "legs: long, slender, yellow or orange legs", + "wings: large, grayish-blue, outstretched wingspan", + "nape: distinctive black or dark gray stripe down the back of neck", + "tail: short, fan-like tail with grayish-blue feathers", + "throat: white, feathery neck extending to breast" + ], + "pacific imperial pigeon": [ + "back: light grey feathers with gentle curve", + "beak: short, slightly hooked, pale blue-grey", + "belly: soft and white, slight puffs", + "breast: white feathers with full coverage", + "crown: rounded greyish-white top", + "forehead: smooth greyish-white transition to crown", + "eyes: dark, round with pale eye-ring", + "legs: short, strong, pinkish-grey", + "wings: wide, grey, powerful for swift flight", + "nape: white feathers meeting the grey crown", + "tail: broad, white, with visible dark central shafts", + "throat: white and smooth plumage" + ], + "pacific kingfisher": [ + "back: vibrant blue-green feathers", + "beak: long, sharp, and black", + "belly: pale, creamy white", + "breast: white with turquoise hints", + "crown: bright turquoise-blue", + "forehead: intense blue-green", + "eyes: dark, surrounded by white feathers", + "legs: slim and black", + "wings: striking blue-green with black bars", + "nape: vivid blue with green hues", + "tail: long and blue-green with black bars", + "throat: clean white feathers" + ], + "pacific koel": [ + "back: dark brownish-black feathers", + "beak: long, slightly curved, pale grayish-yellow", + "belly: white with dark brown streaks", + "breast: white feathers with brown streaks", + "crown: brownish-black feathers", + "forehead: dark brown feathers", + "eyes: dark, round with a light yellow eye-ring", + "legs: pale grayish-yellow, strong", + "wings: long, dark brown with lighter brown edges", + "nape: brownish-black feathers", + "tail: long, dark brown with a white-tipped fan shape", + "throat: white feathers with a slight brownish hint" + ], + "pacific parakeet": [ + "back: bright green feathers", + "beak: orange, hooked shape", + "belly: pale green plumage", + "breast: vibrant green feathers", + "crown: emerald green with a slight blue tint", + "forehead: lime green feathers", + "eyes: dark, round with white rings", + "legs: grayish-blue, scaly", + "wings: rich green with turquoise and ultramarine feathers in flight feathers", + "nape: intense green with a slight yellowish tint", + "tail: long, tapering green feathers with deep blue tips", + "throat: light green plumage" + ], + "pacific parrotlet": [ + "back: vibrant shades of green", + "beak: short, stout, grayish-white", + "belly: pale yellowish-green", + "breast: soft green plumage", + "crown: bright green feathers", + "forehead: emerald green patch", + "eyes: black with white eye ring", + "legs: grayish-brown, slender", + "wings: green with shades of blue", + "nape: blend of green and golden feathers", + "tail: bright blue with greenish undertones", + "throat: delicate lime-green hue" + ], + "pacific reef heron": [ + "back: sleek, bluish-gray feathers", + "beak: long, dark, and pointed", + "belly: pale grey or white plumage", + "breast: light-grey feathers", + "crown: bluish-gray head feathers", + "forehead: smooth, bluish-gray feathers", + "eyes: bright yellow with black pupils", + "legs: long, yellow and black", + "wings: broad, bluish-gray feathers with a white or light-grey underside", + "nape: grey feathers connecting the head and back", + "tail: short, light-grey, and fan-shaped", + "throat: pale grey or white feathers" + ], + "pacific robin": [ + "back: olive-brown with faint streaks", + "beak: slender and black", + "belly: whitish-gray with light streaks", + "breast: vibrant orange-red", + "crown: dark brown fading to black", + "forehead: slightly lighter brown", + "eyes: beady and black", + "legs: long and thin, dark gray", + "wings: olive-brown with black edges", + "nape: dark brown with faint streaks", + "tail: olive-brown, short and slightly forked", + "throat: pale grayish-white" + ], + "pacific screech owl": [ + "back: mottled gray and brown feathers", + "beak: short and sharp, light yellow", + "belly: creamy white with brown streaks", + "breast: light gray with brown barring", + "crown: grayish-brown with pale streaks", + "forehead: light gray with thin dark streaks", + "eyes: large, round, and yellow", + "legs: feathered and grayish-brown, taloned feet", + "wings: gray-brown with dark barring", + "nape: streaked gray with brown spots", + "tail: short and square, gray-brown with dark bands", + "throat: whitish with fine brown streaks" + ], + "pacific swallow": [ + "back: sleek blue-black feathers", + "beak: short and black", + "belly: white underside", + "breast: white with slight greyish tint", + "crown: blue-black with glossy sheen", + "forehead: dark blue-black coloration", + "eyes: small and dark", + "legs: short and dark", + "wings: pointed blue-black feathers with white accents", + "nape: blue-black with glossy sheen", + "tail: moderately forked with white edges", + "throat: white with light grey tint" + ], + "pacific swift": [ + "back: dark glossy blue-black", + "beak: sharp, slender, and black", + "belly: soft white underparts", + "breast: faint bluish tinge", + "crown: uniform blue-black", + "forehead: sleek, black feathers", + "eyes: small and dark", + "legs: small, feathered, black", + "wings: long, pointed, with a dark blue-black shade", + "nape: dark blue-black feathers smoothly transitioning to the back", + "tail: narrow, spiky, and dark blue-black", + "throat: pale throat with slight white tinge" + ], + "pacific tuftedcheek": [ + "back: olive-brown with a slight greenish tint", + "beak: short and black, slightly curved", + "belly: pale yellow with light streaks", + "breast: yellowish in color, a bit brighter than the belly", + "crown: greyish brown with a tuft of feathers", + "forehead: slightly lighter greyish brown than the crown", + "eyes: small and black, surrounded by pale eye rings", + "legs: thin and greyish olive green", + "wings: olive-brown with faint darker bars", + "nape: greyish-brown, fades into the back color", + "tail: olive-brown with a slight greenish tint, similar to the back", + "throat: pale yellow with subtle streaks" + ], + "paddyfield pipit": [ + "back: light brown with dark streaks", + "beak: slender and pointed", + "belly: creamy-white with streaks", + "breast: buff-colored with dark streaks", + "crown: light brown with darker streaks", + "forehead: pale with slight streaks", + "eyes: small and dark brown", + "legs: long and pinkish-brown", + "wings: brownish with white markings", + "nape: light brown with dark streaks", + "tail: long with white outer feathers", + "throat: white and unstreaked" + ], + "paddyfield warbler": [ + "back: light brown with streaks", + "beak: slender and pointed", + "belly: pale cream with light streaks", + "breast: buff-colored with darker streaks", + "crown: brown with a dark stripe", + "forehead: pale with a faint stripe", + "eyes: dark, with pale eye-ring", + "legs: long and pale pink", + "wings: rounded, brown with pale edges", + "nape: light brown with faint streaks", + "tail: fan-shaped, brown with contrasting tips", + "throat: pale with light streaks" + ], + "paint billed crake": [ + "back: dark brown with fine white streaks", + "beak: short and stout, pale greenish-yellow", + "belly: grayish-white with black barring", + "breast: pale gray with black barring", + "crown: dark brown with fine white streaks", + "forehead: pale gray blending into crown", + "eyes: dark, small and round", + "legs: greenish-yellow with long, thin toes", + "wings: brown with faint white streaks", + "nape: dark brown with fine white streaks", + "tail: short and dark brown", + "throat: pale gray with black barring" + ], + "painted bush quail": [ + "back: earthy brown with dark feather streaks", + "beak: short, strong, light-colored", + "belly: pale chestnut with faint black markings", + "breast: rich chestnut with white spots and black bars", + "crown: reddish-brown with dark central stripe", + "forehead: white, speckled with black", + "eyes: bright and bead-like, surrounded by white rings", + "legs: sturdy, greyish-blue with well-defined toes", + "wings: brown, mottled with pale and dark markings", + "nape: reddish-brown with dark feather streaks", + "tail: brownish-black with white-tipped outer feathers", + "throat: white, bordered with black and chestnut patches" + ], + "painted buttonquail": [ + "back: earthy brown coloring with subtle black markings", + "beak: short, slightly curved, and grayish-white", + "belly: sandy-brown with fine black spots", + "breast: light brownish-gray with fine black specks", + "crown: rich chestnut hue with a scaled pattern", + "forehead: off-white, extending into a dark stripe above the eye", + "eyes: small, black, and bright within a white circular ring", + "legs: slim, featherless, and gray-blue in color", + "wings: barred pattern of pale and dark browns, fairly short", + "nape: fine chestnut color with a scaly appearance", + "tail: short and squared, with various shades of brown bars", + "throat: creamy-white, leading into the breast area" + ], + "painted firetail": [ + "back: bright olive-green with fine dark spots", + "beak: short and conical, blackish-grey", + "belly: white with thin black stripes", + "breast: white with bold black spots", + "crown: vibrant red with fine dark spots", + "forehead: vivid red with slight dark speckles", + "eyes: large and dark, encircled by red eyering", + "legs: dark brown, slender with strong claws", + "wings: olive-green with darker flight feathers", + "nape: greenish-brown with fine dark spots", + "tail: long, brownish-black with white tips", + "throat: white with fine black streaks" + ], + "painted francolin": [ + "back: brownish-gray with intricate black patterns", + "beak: strong, short, and blackish", + "belly: whitish with small black spots", + "breast: russet-colored with a black and white scalloped pattern", + "crown: dark brown with a narrow white stripe above the eyes", + "forehead: buff-colored with fine black speckles", + "eyes: dark brown with a faint eye ring", + "legs: sturdy and reddish-brown", + "wings: brownish-gray with reddish-brown and black barring", + "nape: dark brown with a faint white stripe down the center", + "tail: long and brownish with black bars and a white tip", + "throat: whitish with fine black speckles" + ], + "painted honeyeater": [ + "back: olive-green with faint streaks", + "beak: long, curved, black", + "belly: creamy-white with slight yellow tint", + "breast: white with black spotting", + "crown: black with a yellow stripe", + "forehead: black, smoothly transitioning to crown", + "eyes: dark, surrounded by a thin white eye-ring", + "legs: grey, slender", + "wings: olive-green, edged with yellow", + "nape: black, connects crown and back", + "tail: olive-green with yellow edges, slightly forked", + "throat: white, separates black forehead from breast" + ], + "painted manakin": [ + "back: greenish upper body", + "beak: short, black, hooked tip", + "belly: pale yellow", + "breast: bright red-orange", + "crown: deep green, rounded head", + "forehead: vibrant green with a slight crest", + "eyes: black and beady, encircled by green feathers", + "legs: grayish, slender, with strong feet for perching", + "wings: short, rounded, green with slight hints of orange", + "nape: green feathers transitioning to red-orange on breast", + "tail: square-shaped, green with slight orange tint on edges", + "throat: pale yellow, bordered by red-orange on the breast" + ], + "painted parakeet": [ + "back: vibrant green feathers", + "beak: short, curved, orange-red", + "belly: pale yellow plumage", + "breast: bright turquoise-blue feathers", + "crown: deep blue, feathers sweeping back", + "forehead: brilliant yellow and red markings", + "eyes: black with thin white outline", + "legs: slim, gray with scaly texture", + "wings: multicolored feathers, dominant green and blue", + "nape: rich purplish-blue hue", + "tail: long, tapering, green and blue feathers", + "throat: striking red and orange patches" + ], + "painted quail thrush": [ + "back: olive-brown with black streaks", + "beak: short, curved and black", + "belly: creamy-white with dark spots", + "breast: grey with black speckles", + "crown: dark brown with grey streaks", + "forehead: lighter brown with faint streaks", + "eyes: small, black and round", + "legs: slender and greyish-pink", + "wings: slate-grey with white spots", + "nape: brown fading into grey", + "tail: long, black with white outer feathers", + "throat: pale grey with black streaks" + ], + "painted sandgrouse": [ + "back: sandy brown with subtle dark markings", + "beak: short and stout, grayish-black", + "belly: pale buff with light horizontal striping", + "breast: rust-colored with bold black bars", + "crown: sandy brown with dark central stripe", + "forehead: pale buff forehead with prominent dark eye stripe", + "eyes: dark brown with white crescent-shaped markings below", + "legs: sturdy, grayish feathered legs with three toes", + "wings: long, pointed with intricate dark patterning on coverts", + "nape: sandy brown blending into rust breast coloration", + "tail: brown with black bars and white outer feathers", + "throat: pale buff with fine black striping" + ], + "painted spurfowl": [ + "back: earthy brown with black and white speckles", + "beak: short, stout, and pale-colored", + "belly: white with black streaks and dots", + "breast: white, barred with black and chestnut bands", + "crown: dark blue-grey with a spiky crest", + "forehead: deep red facial skin patch", + "eyes: small, dark, and well-spaced", + "legs: strong, grey, with sharp spurs", + "wings: brown with white and chestnut markings", + "nape: blue-grey, blending with the crown", + "tail: long, with chestnut and black barred feathers", + "throat: white with chestnut-bordered black striping" + ], + "painted stork": [ + "back: white feathers with a slight gray tint", + "beak: long, pointed, orange-yellow with black tip", + "belly: white feathers with occasional black streaks", + "breast: elegant white plumes draping downward", + "crown: black head with smooth feathers", + "forehead: black feathers transitioning to white near beak", + "eyes: dark brown, set in black feathers", + "legs: long, pinkish-red, slender, and stilt-like", + "wings: broad, white with bold black streaks near tips", + "nape: white feathers transitioning to black on back of head", + "tail: short, white feathers with black edges", + "throat: smooth white feathers meeting at the chest" + ], + "painted tiger parrot": [ + "back: vibrant green with darker patterns", + "beak: powerful, hooked orange", + "belly: yellowish-green with black stripes", + "breast: mix of yellow and green with prominent black streaks", + "crown: striking red with green edges", + "forehead: bold red, blending into green", + "eyes: dark, expressive with white eye-ring", + "legs: sturdy, grayish-blue", + "wings: green feathers with black bars and blue tips", + "nape: bright green transitioning to yellow", + "tail: long and tapered, green with black bars and blue tips", + "throat: bright yellow with black streaks" + ], + "painted tody flycatcher": [ + "back: vibrant green with subtle stripes", + "beak: short, black, and pointed", + "belly: bright yellow and slightly fluffy", + "breast: yellow and orange, fading into belly", + "crown: bright green with blue streaks", + "forehead: vivid blue with a green touch", + "eyes: large, round, and black", + "legs: grey and slender with sharp claws", + "wings: green, blue, and yellow feathers", + "nape: green-blue, blending into the back", + "tail: long, slender, and colorful feathers", + "throat: light yellow with a hint of green" + ], + "palani laughingthrush": [ + "back: olive-brown with subtle streaks", + "beak: black, short, and sturdy", + "belly: whitish-buff with dark streaks", + "breast: dark grey with faint spots", + "crown: warm chestnut-brown", + "forehead: continuation of crown color", + "eyes: dark brown with white eyering", + "legs: long, strong, pinkish-gray", + "wings: olive-brown with rufous edges", + "nape: chestnut-brown blending in with the crown", + "tail: long, broad, olive-brown", + "throat: whitish-buff with streaks" + ], + "palau bush warbler": [ + "back: olive-brown and slender", + "beak: thin, pointed, and dark", + "belly: pale white-yellow", + "breast: yellowish-white", + "crown: olive-brown with indistinct markings", + "forehead: light olive-brown", + "eyes: small, dark-brown, and well-defined", + "legs: thin, long, and pale-toned", + "wings: olive-brown with slightly darker flight feathers", + "nape: olive-brown and slightly streaked", + "tail: short, olive-brown, and slightly rounded", + "throat: light-yellow and unmarked" + ], + "palau fantail": [ + "back: olive-brown with slight sheen", + "beak: short, slightly hooked, blackish", + "belly: pale underparts with grayish-white hue", + "breast: light gray with fine streaks", + "crown: grayish-brown with paler edges", + "forehead: grayish-brown, blending into crown", + "eyes: dark with thin white eyering", + "legs: long, slender, dark gray", + "wings: dark brown with pale fringes on the edges", + "nape: grayish-brown, similar to crown", + "tail: long, fanned, dark brown with pale edges", + "throat: light grayish-white with fine streaks" + ], + "palau flycatcher": [ + "back: olive-brown feathers with slight variation", + "beak: short, black, and slightly hooked", + "belly: creamy white with a hint of yellow", + "breast: off-white with some olive-brown markings", + "crown: rusty-orange feathers extending to the nape", + "forehead: contrasting orange-rust color", + "eyes: black with a thin white eye-ring", + "legs: slender, grayish-brown", + "wings: olive-brown with white fringes on feathers", + "nape: continuation of rusty-orange crown", + "tail: long, olive-brown feathers with prominent white tips", + "throat: white with faint brown streaks" + ], + "palau fruit dove": [ + "back: vibrant green feathers", + "beak: short, curved, yellowish-green", + "belly: pale yellow with light green shades", + "breast: orange-red with green borders", + "crown: bright green with a slight sheen", + "forehead: rich green merging into crown", + "eyes: dark, round eyes with faint white outlining", + "legs: short, grayish-blue with strong feet", + "wings: green with dark blue tinges, broad and rounded", + "nape: brilliant green continuing from crown", + "tail: mixture of green and blue feathers, fan-shaped", + "throat: light green, often appearing white from a distance" + ], + "palau ground dove": [ + "back: olive-brown with subtle purple gloss", + "beak: short and slightly curved, pale blue-grey", + "belly: delicate pastel pink", + "breast: reddish-pink fading to white", + "crown: greyish-blue head feathers", + "forehead: lighter greyish-blue with subtle white markings", + "eyes: dark, surrounded by thin, white eyering", + "legs: strong and greyish-blue", + "wings: olive-brown with purple sheen and black bars", + "nape: greyish-blue with light iridescence", + "tail: long, dark central feathers with white outer feathers and black bands", + "throat: white, contrasting with reddish-pink breast" + ], + "palau kingfisher": [ + "back: vibrant green feathers with blue tinges", + "beak: long, sharp, and black", + "belly: creamy white plumage", + "breast: rich chestnut coloring", + "crown: deep azure-blue with green tones", + "forehead: bright blue-green hues", + "eyes: round, black, and alert", + "legs: short and sturdy, dark gray", + "wings: iridescent blue-green with black streaks", + "nape: brilliant green-blue transitioning from the crown", + "tail: elongated and vibrant blue-green", + "throat: white with slight chestnut fringe" + ], + "palau nightjar": [ + "back: rusty-brown plumage with dark streaks", + "beak: short, hooked, blackish-brown", + "belly: pale brown with dark brown bars", + "breast: warm brown with dusky streaks", + "crown: blackish-brown with buff speckles", + "forehead: rusty-brown with dark feather tips", + "eyes: large, dark, and encircled by a white ring", + "legs: long, slender, greyish-brown", + "wings: mottled brown and black with white spots on the tips", + "nape: rusty-brown with dark streaks", + "tail: long and rounded, dark brown with buff bands", + "throat: pale brown with fine dark streaks" + ], + "palau scops owl": [ + "back: mottled brown and white feathers", + "beak: short, curved, sharp, and dark", + "belly: light beige with brown streaks", + "breast: pale brown with white streaks", + "crown: rounded with brown and beige markings", + "forehead: buff-colored with brown speckles", + "eyes: large, round and bright yellow", + "legs: pale covered in buff and brown feathers with sharp talons", + "wings: dark brown marked with light buff and gray accents", + "nape: beige with darker brown streaks", + "tail: mottled brown with white spotting", + "throat: whitish with fine brown streaks" + ], + "palau swiftlet": [ + "back: sleek bluish-black plumage", + "beak: small, slightly curved, and dark in color", + "belly: light gray underparts", + "breast: pale grayish-white feathers", + "crown: iridescent blue-black with a metallic sheen", + "forehead: smooth, dark feathers", + "eyes: small and bead-like, black in color", + "legs: short with dark, delicate feet", + "wings: long, slender, with dark feathers for agile flight", + "nape: bluish-black with a glossy tinge", + "tail: short and squared off, black in color", + "throat: pale grayish-white, transitioning into the breast area" + ], + "palawan babbler": [ + "back: olive-brown feathers", + "beak: short, slightly curved, brownish", + "belly: creamy-white with delicate brown streaks", + "breast: light brownish-grey, streaked feathers", + "crown: darker brown with greyish streaks", + "forehead: lighter brown with fine streaks", + "eyes: dark brown with defined white rings", + "legs: pale pinkish-grey, long and slim", + "wings: olive-brown with faint wingbars", + "nape: greyish-brown blending into crown", + "tail: medium length, olive-brown with subtle barring", + "throat: off-white, slightly streaked with light brown" + ], + "palawan blue flycatcher": [ + "back: vibrant blue", + "beak: small, black", + "belly: pale blue", + "breast: light blue", + "crown: rich blue", + "forehead: bright blue", + "eyes: black, beady", + "legs: slender, gray", + "wings: blue with black edges", + "nape: blue-striped pattern", + "tail: long, blue with black tips", + "throat: light blue" + ], + "palawan flowerpecker": [ + "back: dark olive green feathers", + "beak: short, curved, black", + "belly: whitish-gray with faint streaks", + "breast: vibrant orange-red patch", + "crown: black, glossy", + "forehead: bright blue marking", + "eyes: small, black, round", + "legs: slender, grayish-blue", + "wings: dark olive green with black flight feathers", + "nape: black with bluish sheen", + "tail: short, dark olive green with black tips", + "throat: predominantly black" + ], + "palawan flycatcher": [ + "back: olive-brown feathers", + "beak: small and black", + "belly: light yellowish-white", + "breast: orangey-brown", + "crown: gray-blue streaks", + "forehead: light grayish-blue", + "eyes: round and black, white eye-ring", + "legs: thin and black", + "wings: dark brown with slight rufous tinge", + "nape: gray-blue streaks", + "tail: dark brown, slightly forked", + "throat: white with a touch of orange at the center" + ], + "palawan frogmouth": [ + "back: dark brown with subtle patterns", + "beak: short and hooked", + "belly: light beige with darker markings", + "breast: beige with brown streaks", + "crown: dark brown with fine patterns", + "forehead: slightly lighter brown with speckles", + "eyes: large, yellowish, and prominent", + "legs: short and feathered", + "wings: brown with faint patterns, rounded edge", + "nape: dark brown transitioning to lighter shade", + "tail: long, with brown and beige bars", + "throat: beige with subtle brown stripes" + ], + "palawan hornbill": [ + "back: dark green iridescent feathers", + "beak: large, curved yellow-orange bill with a unique casque", + "belly: white to grayish-white feathers", + "breast: dark green shimmering feathers", + "crown: black feathers with distinct head crest", + "forehead: black feathers with a hint of green iridescence", + "eyes: reddish-brown with a blue periophthalmic ring", + "legs: strong, grayish-black with zygodactyl toes", + "wings: black and green iridescent flight feathers", + "nape: black feathers blending with the crest", + "tail: long, black and green iridescent feathers with white tips", + "throat: whitish-gray feathers, connecting to the belly and breast" + ], + "palawan peacock pheasant": [ + "back: iridescent blue-green plumage", + "beak: short, grayish-white", + "belly: dark grayish-blue feathers", + "breast: glossy blue-green feathers", + "crown: metallic blue-green crest", + "forehead: blue-green feathers with a white stripe", + "eyes: dark brown, black ring marking", + "legs: sturdy, dark grey", + "wings: iridescent blue-green, ornamental tail feathers", + "nape: white feathers with black spots", + "tail: fan-like, eye-shaped metallic feathers", + "throat: dark gray-blue feathers" + ], + "palawan scops owl": [ + "back: brown, mottled feathers", + "beak: short, hooked, light grey", + "belly: light brown, streaked plumage", + "breast: paler brown, striped pattern", + "crown: dark brown, spotted markings", + "forehead: lighter brown, distinct spots", + "eyes: large, yellow, piercing gaze", + "legs: strong, feathered, brown", + "wings: broad, barred, brown and white", + "nape: brown, speckled with white", + "tail: long, narrow, brown with white bars", + "throat: light brown, lined markings" + ], + "palawan striped babbler": [ + "back: olive-brown feathers", + "beak: slim, curved, and sharp", + "belly: off-white with light, thin streaks", + "breast: pale, with well-defined brownish-gray stripes", + "crown: brownish-gray with subtle streaks", + "forehead: smoother grayish-brown hue", + "eyes: dark, beady with faint eye-ring", + "legs: sturdy, grayish-brown", + "wings: olive-brown with faint striping", + "nape: brownish-gray with streaks", + "tail: long, olive-brown with thin horizontal bands", + "throat: off-white with delicate gray streaks" + ], + "palawan tit": [ + "back: dark olive-green feathers", + "beak: small, pointed, and black", + "belly: pale yellow with dark barring patterns", + "breast: yellow-green with dark edging", + "crown: blue-grey with black streaks", + "forehead: blue-grey with distinctive black eye line", + "eyes: dark beady eyes with black edge", + "legs: slender, grey, and nimble", + "wings: dark brown with pale fringes and edgings", + "nape: blue-grey with black streaks", + "tail: long, dark brown with white tips", + "throat: pale yellow with dark speckles" + ], + "pale batis": [ + "back: blue-grey upper feathers", + "beak: short, strong, and black", + "belly: light greyish-white", + "breast: pale grey", + "crown: dark grey feathers", + "forehead: lighter grey streak", + "eyes: dark, round, and alert", + "legs: thin and black", + "wings: blue-grey with subtle white edges", + "nape: grey-blue feathers", + "tail: blue-grey feathering with white tips", + "throat: pale grey-white plumage" + ], + "pale baywing": [ + "back: gray-brown with faint patterns", + "beak: thick, medium-length in black", + "belly: pale cream color", + "breast: grayish brown with lighter streaks", + "crown: grayish-brown with a hint of rufous", + "forehead: slightly paler gray-brown", + "eyes: black surrounded by a thin white ring", + "legs: black, strong and slender", + "wings: gray-brown, slightly pointed with thin white edges", + "nape: gray-brown with faint streaks", + "tail: rufous-brown, medium length and square-ended", + "throat: pale cream color with lighter streaks" + ], + "pale blue flycatcher": [ + "back: light blue feathers covering the upper body", + "beak: thin, slightly curved black beak", + "belly: white and light blue feathers on the underside", + "breast: pale blue chest feathers", + "crown: slightly raised, light blue feathers on top of the head", + "forehead: smooth, pale blue area above the beak and eyes", + "eyes: small, dark, and circular with white eye-ring", + "legs: thin, dark gray legs with sharp claws", + "wings: light blue feathers with darker blue edges and white bars", + "nape: light blue region on the back of the bird's neck", + "tail: long, slender, light blue feathers with dark tips", + "throat: white and pale blue feathers at the base of the beak" + ], + "pale chanting goshawk": [ + "back: pale gray with dark gray barring", + "beak: sharp, hooked, and black", + "belly: white with fine gray barring", + "breast: light gray with thin dark stripes", + "crown: smooth gray feathers", + "forehead: pale gray transitioning into crown", + "eyes: large, dark brown, with yellow eye-ring", + "legs: long, yellow, and powerful", + "wings: pale gray with dark gray barring and white tips", + "nape: gray feathers transitioning into the back", + "tail: long, barred gray and white with a broad black band near the tip", + "throat: white with a gray stripe below the beak" + ], + "pale cicadabird": [ + "back: dark blue-grey feathers", + "beak: short, black, pointed", + "belly: pale grayish underparts", + "breast: light gray, sometimes pale-blue feathers", + "crown: deep blue-grey plumage", + "forehead: smooth blue-grey feathers", + "eyes: round, black, with white eye-ring", + "legs: thin, black, with strong claws", + "wings: dark blue-grey, long, with white wingbars", + "nape: blue-grey feathers meeting the crown", + "tail: long, dark blue-grey, with white edges", + "throat: pale gray, sometimes with blue tinge" + ], + "pale flycatcher": [ + "back: light brown feathers with subtle streaking", + "beak: thin, dark grey, and slightly hooked", + "belly: pale buff to white with minimal markings", + "breast: soft beige with delicate streaks", + "crown: smooth light brown feathers", + "forehead: unmarked beige feathers", + "eyes: small, dark, and alert", + "legs: thin, dark grey, and agile", + "wings: light brown with faint wing bars", + "nape: gentle transition from crown to back", + "tail: brown with white edges on outer feathers", + "throat: pale beige and unblemished" + ], + "pale mountain pigeon": [ + "back: soft gray feathers", + "beak: short, stout, pale pink", + "belly: light gray with pale under-feathers", + "breast: smooth, pale plumage", + "crown: light gray and rounded", + "forehead: narrow, pale gray feathers", + "eyes: deep black with white eye-ring", + "legs: sturdy, pinkish-gray", + "wings: broad, with light gray and white patterns", + "nape: smooth, pale gray transition to back", + "tail: medium length, gray and white bands", + "throat: pale gray, slightly puffed feathers" + ], + "pale prinia": [ + "back: light brown with faint streaks", + "beak: thin, slightly curved, blackish", + "belly: off-white and vented", + "breast: pale buff with faint streaks", + "crown: grayish-brown", + "forehead: pale buff with whitish edges", + "eyes: dark, small, centered on head", + "legs: long and thin, pale pinkish", + "wings: light brown, edged with buff", + "nape: grayish-brown with faint streaks", + "tail: long and narrow, light brown", + "throat: pale buff, unmarked" + ], + "pale rockfinch": [ + "back: light gray with slight streaks", + "beak: small, black, and cone-shaped", + "belly: white with light gray streaks", + "breast: pale gray with subtle streaks", + "crown: light gray and smooth", + "forehead: pale gray and slightly streaked", + "eyes: small, round, and black", + "legs: slender with dark gray or black coloring", + "wings: pale gray with darker tips and edges", + "nape: light gray and smooth", + "tail: gray with darker feathers at the tips", + "throat: white with a hint of pale gray streaks" + ], + "pale rosefinch": [ + "back: light pinkish-brown feathers", + "beak: short, strong, conical, silver-gray", + "belly: pale pinkish-brown hue", + "breast: soft blush pink feathers", + "crown: faint pinkish-brown color", + "forehead: pinkish hue transitioning to brown towards the crown", + "eyes: small, round, shiny black", + "legs: thin, grayish-blue, spindly", + "wings: light pinkish-brown with darker flight feathers", + "nape: subtle blending of pink and brown shades", + "tail: long, pinkish-brown with darker streaks", + "throat: light pink, blending with breast color" + ], + "pale sand martin": [ + "back: light brown, softly feathered", + "beak: small, slender, black", + "belly: pale, off-white", + "breast: light beige, minimal markings", + "crown: light brown, smooth feathers", + "forehead: pale brown, short feathers", + "eyes: small, dark, and round", + "legs: thin, brown, and delicate", + "wings: long, pointed, brown with white edges", + "nape: light brown, subtle orange tinge", + "tail: short, forked, brown", + "throat: pale beige, smooth feathers" + ], + "pale spiderhunter": [ + "back: olive-brown feathers covering the upper body", + "beak: long, slender, and curved for nectar feeding", + "belly: pale yellow underside with light streaks", + "breast: yellowish with faint brownish marks", + "crown: olive-green feathers on top of the head", + "forehead: subtle yellow tint blending into the crown", + "eyes: small, black, with a thin white eye-ring", + "legs: lightweight, grayish-brown for perching", + "wings: olive-brown with faint yellow edges", + "nape: olive-green feathers at the back of the neck", + "tail: long and graduated with olive-brown feathers", + "throat: pale yellow with light streaks" + ], + "pale thrush": [ + "back: olive-brown with subtle patterns", + "beak: straight, thin, and yellowish", + "belly: white with dark speckles", + "breast: buff-orange with light streaks", + "crown: rounded, olive-brown", + "forehead: pale with slight streaks", + "eyes: dark, round, with white eye-ring", + "legs: pinkish or yellowish-brown", + "wings: olive-brown with faint bars", + "nape: olive-brown with slight streaking", + "tail: long, olive-brown with white tips", + "throat: lightly speckled, buff color" + ], + "pale white eye": [ + "back: smooth, pale feathers", + "beak: slim, white, sharp-edged", + "belly: soft, white, rounded", + "breast: plump, pale feathered", + "crown: white, regal crest", + "forehead: sleek, snowy plumage", + "eyes: striking, ice-like gaze", + "legs: slender, pale, strong", + "wings: wide, white-tipped feathers", + "nape: elegant, white curve", + "tail: long, wispy, white feathers", + "throat: delicate, clear-toned white" + ], + "pale bellied hermit": [ + "back: green-bronze feathers with iridescent sheen", + "beak: long, slender, and curved", + "belly: pale grayish-white plumage", + "breast: light gray feathers with minimal markings", + "crown: bronze-green plumage with shiny appearance", + "forehead: bright green feathers with a metallic sheen", + "eyes: small, dark, and round", + "legs: sturdy grayish-brown", + "wings: long, broad, with metallic green upperparts and grayish-white underparts", + "nape: iridescent green-bronze feathers", + "tail: elongated, dark brown with white tips", + "throat: light gray with faint darker markings" + ], + "pale bellied mourner": [ + "back: soft grayish-brown feathers", + "beak: short, black and slightly hooked", + "belly: pale whitish-gray coloration", + "breast: soft grayish-brown plumage", + "crown: smooth grayish-brown feathers", + "forehead: light grayish-brown shade", + "eyes: small dark orbs with pale eye-ring", + "legs: slender and black", + "wings: grayish-brown with subtle barring", + "nape: slightly paler grayish-brown feathers", + "tail: long and dark with faint bars", + "throat: white to pale gray feathers" + ], + "pale bellied myna": [ + "back: dark iridescent feathers", + "beak: small, pointed, black", + "belly: pale white-gray shading", + "breast: deep grayish-black tint", + "crown: glossy black plumage", + "forehead: smooth black feathers", + "eyes: beady, dark brown, alert", + "legs: thin, black, strong", + "wings: black with bold white patches", + "nape: darker gray feather transition", + "tail: long, broad, black and white", + "throat: pale grayish-white shading" + ], + "pale bellied tapaculo": [ + "back: shades of brown with subtle striping", + "beak: short and conical, dark in color", + "belly: pale white to light beige", + "breast: light gray to beige, blending with belly", + "crown: medium brown with lighter streaks", + "forehead: light grayish-brown, fading into crown", + "eyes: small, black, surrounded by light gray feathers", + "legs: short and sturdy, with dark grayish-brown color", + "wings: brown with faint markings, rounded shape", + "nape: light brown, blending into back and crown", + "tail: short and rounded, dark brown with lighter tips", + "throat: light grayish-white, blending into breast" + ], + "pale bellied tyrant manakin": [ + "back: soft, light gray feathers", + "beak: small, sharp, black", + "belly: pale yellow, delicate plumage", + "breast: smooth, yellowish-white feathers", + "crown: distinguished, dark gray cap", + "forehead: light gray, blending with crown", + "eyes: small, round, black", + "legs: slender, black, with curved claws", + "wings: light gray, elongated, with white tips", + "nape: graceful, light gray sweep", + "tail: narrow, long, gray feathers", + "throat: smooth, white transition to breast" + ], + "pale billed antpitta": [ + "back: dark gray-brown feathers", + "beak: pale, slightly hooked bill", + "belly: dull yellowish-white", + "breast: grayish-white with fine dusky streaks", + "crown: dark gray with slight crest", + "forehead: smooth grayish-brown", + "eyes: dark, small, almond-shaped", + "legs: long, slender, orange-yellow", + "wings: dark gray with fine white streaks", + "nape: gray-brown, smooth feathering", + "tail: short, dark gray with white tips", + "throat: white with dark gray streaks" + ], + "pale billed flowerpecker": [ + "back: subtle olive-green hue", + "beak: short, sharp, and pale", + "belly: soft off-white shade", + "breast: light and rosy-tinted", + "crown: subtly green-tinted gray", + "forehead: slightly paler green-gray", + "eyes: small and watchful, with black pupil", + "legs: delicate, pale gray limbs", + "wings: greenish-gray feathers with a sleek finish", + "nape: subdued green blending into crown", + "tail: short, fan-like with green-gray coloring", + "throat: soft whitish hue with a rosy tint" + ], + "pale billed hornbill": [ + "back: light-grey with white spots", + "beak: long, curved, pale-yellow", + "belly: white, lightly-speckled", + "breast: pale grey, striped pattern", + "crown: black with elongated feathers", + "forehead: black, white stripe at base of beak", + "eyes: dark, bright-yellow ring around iris", + "legs: black, sturdy", + "wings: black, grey, white under-feathers", + "nape: black, feathered neck collar", + "tail: black, white band across tips", + "throat: white, lightly-speckled" + ], + "pale billed hornero": [ + "back: brownish streaked feathers", + "beak: pale, slightly curved", + "belly: creamy white and smooth", + "breast: faintly spotted with brown", + "crown: rufous brown with distinct patterning", + "forehead: tan with fine streaks", + "eyes: medium size, black", + "legs: light pinkish-grey, slender", + "wings: medium length, streaked brown", + "nape: brown with faint patterning", + "tail: brown, short fan-shaped", + "throat: pale white, unmarked" + ], + "pale billed parrotbill": [ + "back: vibrant rusty-brown plumage", + "beak: pale ivory with a distinct curved shape", + "belly: creamy white with soft streaks", + "breast: warm buff-toned feathers", + "crown: deep chestnut crest atop the head", + "forehead: red-brown coloration blending into the crown", + "eyes: small, dark with a subtle white eye-ring", + "legs: sturdy and grayish-pink", + "wings: rich brown with slight white markings", + "nape: cinnamon-brown feathers", + "tail: dark brown with slight tapering", + "throat: off-white with fine brown streaks" + ], + "pale billed scrubwren": [ + "back: brownish-grey feathers", + "beak: pale, thin, and slightly curved", + "belly: light grey-white", + "breast: white with faint brown markings", + "crown: brownish-grey with faint streaks", + "forehead: pale brown, smooth feathers", + "eyes: small, black, and alert", + "legs: slender, beige-colored", + "wings: brown-grey with subtle striping", + "nape: grey-brown with subtle streaks", + "tail: short, brown-grey, fan-shaped", + "throat: white with light brown streaks" + ], + "pale billed sicklebill": [ + "back: long, reddish-brown feathers", + "beak: pale, curved and slender", + "belly: mixture of dark brown and iridescent green feathers", + "breast: reddish-brown with iridescent green streaks", + "crown: dark brown with short, curled feathers", + "forehead: blackish, adorned with small feathers", + "eyes: small, dark, surrounded by pale skin", + "legs: long, slender, pale pink", + "wings: long, slightly curved, with dark and iridescent green feathers", + "nape: dark brown with a slight reddish tinge", + "tail: long, gracefully curved, bronzy-green feathers", + "throat: pale greyish-brown with fine black streaks" + ], + "pale billed woodpecker": [ + "back: black and white striped pattern", + "beak: long, straight, pale ivory color", + "belly: white or pale cream color", + "breast: white or pale cream with black streaking", + "crown: red or crimson cap on top of the head", + "forehead: white or cream color extending from the beak", + "eyes: small, dark, and slightly surrounded by white feathers", + "legs: strong, grayish-blue with sharp claws for gripping", + "wings: large, black with white horizontal bars and spots", + "nape: black and white striped pattern, connecting the crown to the back", + "tail: black with white barring, used for support while climbing", + "throat: white or cream color, may be mottled with black streaks" + ], + "pale blue monarch": [ + "back: delicate pale blue feathers", + "beak: slim, sharp, and black", + "belly: soft white underbelly", + "breast: light blue plumage", + "crown: subtle blue crest", + "forehead: fading blue gradient", + "eyes: round, black, and watchful", + "legs: dark gray, slender limbs", + "wings: vibrant blue with white edges", + "nape: (neck) graceful curve with pale blue feathers", + "tail: long, blue feathers with white tips", + "throat: light blue with a hint of white" + ], + "pale breasted illadopsis": [ + "back: light brown feathers", + "beak: short and sturdy, pale color", + "belly: off-white feathers, blending into breast", + "breast: pale creamy-white feathers", + "crown: brownish-gray feathers", + "forehead: slightly lighter brown feathers", + "eyes: small, dark, and rounded", + "legs: slender with pale, short feet", + "wings: brown with faint white markings, rounded", + "nape: light brown feathers, distinct from the crown", + "tail: medium length, dark brown with white tips", + "throat: smooth, pale off-white feathers" + ], + "pale breasted spinetail": [ + "back: light brown with subtle streaks", + "beak: thin, slightly curved, dark in color", + "belly: creamy white with pale brown streaks", + "breast: pale beige with soft streaks", + "crown: rufous-brown with slight crest", + "forehead: rufous-brown, blends with crown", + "eyes: small, dark, encircled by pale eye-ring", + "legs: long, slender, pale brown", + "wings: brown with faint rufous edges on feathers", + "nape: rufous-brown, blending with crown", + "tail: long, brown with rufous undertail coverts", + "throat: creamy white, unmarked" + ], + "pale breasted thrush": [ + "back: brownish-grey feathers", + "beak: strong, slightly curved, pale yellow", + "belly: light cream-colored feathers", + "breast: pale, spotted breast feathers", + "crown: smooth greyish-brown feathers", + "forehead: light grey feathers", + "eyes: dark, round with white eye-ring", + "legs: strong, greyish-brown", + "wings: greyish-brown with faint white bars", + "nape: grey-brown feathers", + "tail: long, grey-brown with white tips", + "throat: pale with light spotting" + ], + "pale browed tinamou": [ + "back: light brown with subtle markings", + "beak: short, curved, and yellowish", + "belly: pale, cream-tinted gray with faint spots", + "breast: buff-colored with dusky speckles", + "crown: warm brown with a black streak", + "forehead: pale cinnamon-brown", + "eyes: small, dark, and alert", + "legs: feathered, bluish-gray with sharp claws", + "wings: rounded, short, and barred brown", + "nape: pale cinnamon with black marks", + "tail: short and wedged, brownish with faint bars", + "throat: creamy white with a brown collar" + ], + "pale browed treehunter": [ + "back: olive-brown with lighter streaks", + "beak: long, slender, and curved", + "belly: creamy white with brown speckles", + "breast: pale buff with brown streaks", + "crown: rufous-brown with a pale stripe", + "forehead: buffy-white with brown streaks", + "eyes: dark brown, surrounded by pale rings", + "legs: strong and grayish", + "wings: olive-brown with buffy-white edges", + "nape: rufous-brown with a pale stripe", + "tail: long, graduated, and olive-brown", + "throat: creamy-white with faint brown streaks" + ], + "pale capped pigeon": [ + "back: light grayish-blue feathers", + "beak: short, stout, and pale gray", + "belly: soft white feathers", + "breast: pale pinkish or lavender hue", + "crown: pale gray with a slight blue tint", + "forehead: light gray blending into the crown", + "eyes: large, dark, and round", + "legs: red or pinkish with short scaly toes", + "wings: broad with grayish-blue feathers", + "nape: pale capped with gray-blue feathers", + "tail: rounded with dark grayish-blue feathers", + "throat: soft whitish feathers" + ], + "pale chinned blue flycatcher": [ + "back: deep blue feathers with pale edges", + "beak: slender, black, and slightly hooked", + "belly: white or very pale blue", + "breast: light blue with slight gradation", + "crown: dark blue with a hint of grayish-blue", + "forehead: deep, glossy blue", + "eyes: black, surrounded by a faint white circle", + "legs: short, dark gray with strong talons", + "wings: bright blue with blackish primary feathers", + "nape: bluish-gray with a subtle tinge of green", + "tail: long, deep blue, with some black feather tips", + "throat: light blue, blending into the breast color" + ], + "pale crested woodpecker": [ + "back: black and white striped pattern", + "beak: strong and slightly curved, grayish color", + "belly: white or off-white with faint black streaks", + "breast: solid white or off-white", + "crown: bright red patch on top of the head", + "forehead: black, extending to eye area", + "eyes: small and black, with white outlines", + "legs: gray and slender with sharp claws for gripping", + "wings: black with white spotted pattern, medium length", + "nape: black area connecting to red crown", + "tail: black with white outer feathers, providing support while perching on trees", + "throat: white or off-white, bordered by black stripe" + ], + "pale crowned cisticola": [ + "back: light brown with faint streaks", + "beak: thin, pointed, and black", + "belly: off-white base with thin brown streaks", + "breast: creamy white with subtle streaks", + "crown: pale, creamy white", + "forehead: delicate brown blending into the crown", + "eyes: round, black, with a white eye-ring", + "legs: thin, dark pinkish-brown", + "wings: mottled brown with faint white bars", + "nape: light brown transitioning to the pale crown", + "tail: short, brown with darker bands", + "throat: white with sparse brown streaks" + ], + "pale edged flycatcher": [ + "back: light brown with subtle streaks", + "beak: thin and pointed, black", + "belly: white with faint spots", + "breast: grayish-white with soft streaking", + "crown: gray-brown with a slight crest", + "forehead: pale gray blending into the crown", + "eyes: black with thin white eye-ring", + "legs: slender gray-black", + "wings: brownish-gray with pale feather edges", + "nape: gray-brown, continuous with crown", + "tail: brownish-gray with faint pale edges", + "throat: white with minimal streaking" + ], + "pale eyed blackbird": [ + "back: sleek, black feathers", + "beak: slightly curved, sharp", + "belly: slightly lighter black feathers", + "breast: smooth dark feathers", + "crown: black, slightly raised crest", + "forehead: flat, black feathers", + "eyes: pale, light-catching", + "legs: thin, dark, clawed", + "wings: long, shaped for agile flight", + "nape: black, curved neckline", + "tail: fan-like, intersecting feathers", + "throat: black, thin feathered" + ], + "pale eyed pygmy tyrant": [ + "back: olive-green feathers", + "beak: sharp, black, and hooked", + "belly: pale yellow plumage", + "breast: soft yellow feathers", + "crown: olive-green with hidden yellow patches", + "forehead: olive-green feathers", + "eyes: pale-colored with white eye-ring", + "legs: short and slender, light gray", + "wings: olive-green, slightly rounded", + "nape: olive-green plumage", + "tail: short and square, olive-green feathers", + "throat: pale yellow feathers" + ], + "pale eyed thrush": [ + "back: brownish-grey feathers", + "beak: pale-yellow, medium length", + "belly: white with brownish spots", + "breast: pale-grey with slight speckling", + "crown: dark-brown with pale streaks", + "forehead: smooth brownish-grey", + "eyes: distinctive pale-colored, encircled with fine dark line", + "legs: thin, pale-brownish", + "wings: brownish-grey with white and black bars", + "nape: dark brown with paler streaks", + "tail: medium length, brown with white tips", + "throat: white, unmarked" + ], + "pale faced bare eye": [ + "back: dark green feathers with slight iridescence", + "beak: short, slightly curved, pale yellow", + "belly: soft white feathers with gray undertones", + "breast: light gray feathers with a hint of olive", + "crown: pale white feathers with brown streaks", + "forehead: bright white, transitioning into the pale white crown", + "eyes: black and beady, surrounded by pale white feathers", + "legs: slender, olive-gray legs with sharp talons", + "wings: mixture of green and gray with flight feathers typically darker", + "nape: a band of gray feathers connecting to the pale-faced crown", + "tail: long and slender, with dark green, grey, and black markings", + "throat: delicate, white feathers, continuing down towards the breast" + ], + "pale footed bush warbler": [ + "back: olive-brown upperparts", + "beak: slim and pointed", + "belly: pale and finely streaked", + "breast: buff-colored with light streaks", + "crown: olive-brown with hint of rufous", + "forehead: slightly paler than crown", + "eyes: dark, with prominent white eye-ring", + "legs: pale pinkish-brown", + "wings: rounded, olive-brown with pale edges", + "nape: olive-brown, blending with crown", + "tail: long and rounded, olive-brown with faint bars", + "throat: pale buff, unmarked" + ], + "pale footed swallow": [ + "back: sleek, blueish-gray plumage", + "beak: short, sharp, blackish color", + "belly: white or pale gray underparts", + "breast: white or pale gray, blending with belly", + "crown: blueish-gray with slightly raised feathers", + "forehead: blueish-gray, smooth transition to crown", + "eyes: dark, round, surrounded by white eyering", + "legs: short and pale, designed for perching", + "wings: long, pointed, blueish-gray with white edges", + "nape: blueish-gray, connecting crown to back", + "tail: forked, blueish-gray with white outer edges", + "throat: white or pale gray, contrasting with beak" + ], + "pale fronted nigrita": [ + "back: grayish-brown, finely streaked feathers", + "beak: short, conical, and black", + "belly: pale gray with light streaks", + "breast: pale gray, slightly streaked on sides", + "crown: dark gray with fine white spots", + "forehead: pale gray with a white band", + "eyes: black with a white eye-ring", + "legs: short, dark gray", + "wings: brownish-gray with white speckles on coverts", + "nape: grayish-brown with fine white streaks", + "tail: short, graduated, dark gray", + "throat: pale gray, streaked with white" + ], + "pale headed brushfinch": [ + "back: olive-green feathered body", + "beak: short, stout, and conical", + "belly: light-gray or whitish coloration", + "breast: off-white or pale-yellow", + "crown: distinctive pale-white head", + "forehead: white or pale-colored feathers", + "eyes: small, dark, and rounded", + "legs: strong, medium-length, and gray", + "wings: olive-green with darker tips", + "nape: slightly darker olive-green feathers", + "tail: long and olive-green with contrasting dark tips", + "throat: white or pale-yellow coloration" + ], + "pale headed jacamar": [ + "back: iridescent green feathers", + "beak: long, thin, dark gray", + "belly: light grayish-white feathers", + "breast: grayish-white feathers transitioning from green", + "crown: white feathers with a pale brownish shade", + "forehead: pale white feathers", + "eyes: small, dark with a white eyering", + "legs: slender, light gray", + "wings: iridescent green, tapering to a rounded point", + "nape: pale white feathers, continuous with the crown", + "tail: long, slender, iridescent green feathers", + "throat: grayish-white feathers, continuous with breast" + ], + "pale headed munia": [ + "back: light brown with subtle streaks", + "beak: short, stubby, and pale gray", + "belly: white and slightly plump", + "breast: light brown and smooth", + "crown: pale white with soft, feathery texture", + "forehead: white and gently curved", + "eyes: small, round, and black", + "legs: long, thin, and pale gray", + "wings: light brown with fine white streaks", + "nape: white with a smooth transition to light brown", + "tail: long, narrow, and light brown with white edges", + "throat: white and slightly rounded" + ], + "pale headed rosella": [ + "back: vibrant blue and yellow feathers", + "beak: off-white, hooked shape", + "belly: light blue mixed with white feathers", + "breast: bright yellow-orange with white borders", + "crown: pale white head with blue highlights", + "forehead: light blue leading into white crown", + "eyes: dark, encircled by white plumage", + "legs: grayish-blue with strong claws", + "wings: vivid blue with yellow and white details", + "nape: white transitioning to blue and yellow", + "tail: long blue-barred feathers with white tips", + "throat: crisp white feathers with yellow tinge" + ], + "pale headed woodpecker": [ + "back: greenish-gray with thin black streaks", + "beak: long, robust, and chisel-like", + "belly: white to pale yellow with faint black markings", + "breast: white with fine black bands", + "crown: bright white to pale cream", + "forehead: creamy white, blending with crown", + "eyes: dark, medium-sized with black eyeliner-like markings", + "legs: light gray with strong, sharp claws", + "wings: greenish-black with white spots on primaries", + "nape: pale cream to white, gently curving around the head", + "tail: black with white outer feathers and black bars", + "throat: white with thin black bands" + ], + "pale legged hornero": [ + "back: tawny-brown with light streaks", + "beak: slightly curved, blackish-brown", + "belly: pale cream with faint brown markings", + "breast: buff-white with sparse spots", + "crown: tawny-brown with a slight crest", + "forehead: light rufous and relatively flat", + "eyes: black surrounded by pale eyering", + "legs: pale pinkish-gray and slender", + "wings: tawny-brown with slightly darker tips", + "nape: tawny-brown with light streaks", + "tail: tawny-brown with dark barring", + "throat: buff-white and unmarked" + ], + "pale legged leaf warbler": [ + "back: olive-brown with faint streaks", + "beak: thin, pointed, blackish-brown", + "belly: off-white with light yellow tinges", + "breast: pale yellow with dull streaks", + "crown: olive-green with fine streaks", + "forehead: yellowish-white, blending with olive crown", + "eyes: dark brown with pale eyering", + "legs: pale pinkish-grey, slim", + "wings: olive-brown with two white wingbars", + "nape: olive-brown, matching crown and back", + "tail: olive-brown, graduated with white tips on outer feathers", + "throat: off-white with light yellow wash" + ], + "pale legged warbler": [ + "back: olive-green with faint streaks", + "beak: thin and pointed, dark color", + "belly: pale yellow or off-white", + "breast: light-yellowish or creamy-white", + "crown: brownish-grey with distinct stripes", + "forehead: slightly paler brownish-grey", + "eyes: dark-colored, encircled by a pale eye-ring", + "legs: pale pink or dull yellow", + "wings: brownish-grey with two white wingbars", + "nape: olive-green with faint streaks", + "tail: brownish-grey with white outer feathers", + "throat: creamy-white or light-yellowish" + ], + "pale naped brushfinch": [ + "back: olive-green with brown hues", + "beak: short, black and conical", + "belly: whitish-yellowish underside", + "breast: grayish-white with pale streaks", + "crown: grayish olive-green", + "forehead: light grayish-olive", + "eyes: small, black with white eye-ring", + "legs: pinkish-brown slender limbs", + "wings: olive-green with blackish wing-bars", + "nape: pale grayish-yellow tint", + "tail: long, olive-green with black edges", + "throat: off-white with faint gray streaks" + ], + "pale olive greenbul": [ + "back: pale olive-green with subtle feather patterns", + "beak: slender, curved, and light-colored", + "belly: creamy white fading to pale olive", + "breast: pale olive-green, slightly paler than back", + "crown: softly streaked olive-green", + "forehead: smooth pale olive-green", + "eyes: small, dark with pale eye-ring", + "legs: light-colored with strong claws", + "wings: pale olive-green, well-defined feathers", + "nape: pale olive-green, smooth transition from crown", + "tail: slightly darker olive-green, fan-like shape", + "throat: pale cream, contrasting with breast" + ], + "pale rumped swift": [ + "back: sleek, pale feathers", + "beak: small, sharply pointed", + "belly: soft, light-colored plumage", + "breast: smooth, curved pale feathers", + "crown: lightly marked, pale top of the head", + "forehead: gentle, lightly marked curve", + "eyes: small, alert, and round", + "legs: slender and swift", + "wings: long, narrow, and pointed", + "nape: smooth, pale feather transition to back", + "tail: forked, slender, and agile", + "throat: delicate, pale feathering" + ], + "pale shouldered cicadabird": [ + "back: slate gray feathers with hints of olive-green", + "beak: black, slightly hooked, and slim", + "belly: light gray with soft white streaks", + "breast: pale gray with subtle white markings", + "crown: dark gray with a slight green sheen", + "forehead: lighter gray with feathers sleek against head", + "eyes: small, round, and dark", + "legs: slender, black, and slightly scaled", + "wings: dark gray with fine white edging on the tips", + "nape: soft gray with a hint of olive tones", + "tail: dark gray with narrow white bands at the tip", + "throat: pale gray with delicate white speckles" + ], + "pale tailed barbthroat": [ + "back: vibrant green hue", + "beak: long and slim", + "belly: pale yellow color", + "breast: light green with fine markings", + "crown: radiant green", + "forehead: bright green", + "eyes: small and black", + "legs: short and gray", + "wings: green with white tips", + "nape: iridescent green", + "tail: elongated, pale-tipped feathers", + "throat: white with delicate streaks" + ], + "pale throated pampa finch": [ + "back: light brown with faint streaks", + "beak: straight, grayish-black", + "belly: pale beige, slightly streaked", + "breast: soft beige color with gray streaks", + "crown: uniform light brown", + "forehead: light brown, blending with crown", + "eyes: dark black with faint white eye-ring", + "legs: slender, grayish-brown", + "wings: light brown with darker flight feathers", + "nape: light brown, same as crown", + "tail: short, light brown with dark band at the tips", + "throat: pale, faintly streaked beige" + ], + "pale throated wren babbler": [ + "back: olive-brown feathered", + "beak: short, thin, slightly curved", + "belly: creamy-yellow plumage", + "breast: warm buff-colored feathers", + "crown: brown with pale streaks", + "forehead: pale, thinly striped brown", + "eyes: small, black, surrounded by white-ring", + "legs: pinkish-brown, slender", + "wings: olive-brown with mahogany-brown bars", + "nape: streaked brown and gray pattern", + "tail: olive-brown, long, and graduated", + "throat: pale buff-white color" + ], + "pale tipped tyrannulet": [ + "back: light olive-green with subtle streaks", + "beak: small, slender, and black", + "belly: pale yellowish-white", + "breast: light yellowish-brown", + "crown: soft gray with light streaks", + "forehead: pale grayish-white", + "eyes: alert, dark with faint eye-ring", + "legs: slim, pale brown", + "wings: olive-green with pale-edged feathers", + "nape: light olive-green", + "tail: long and narrow, olive-green with white outer edges", + "throat: pale white-yellow with faint streaks" + ], + "pale vented bush hen": [ + "back: light brown with black streaks", + "beak: short, sharp, and grey", + "belly: pale yellow with faint blotches", + "breast: light brown with small black spots", + "crown: dark brown with thin black stripes", + "forehead: pale beige with faint speckles", + "eyes: small, round, and black", + "legs: thin and greyish-brown", + "wings: light brown with black bars", + "nape: dark brown with thin black stripes", + "tail: medium length, brown with black bands", + "throat: pale beige with light black speckles" + ], + "pale vented pigeon": [ + "back: light gray feathers", + "beak: short and stout, pale gray", + "belly: pale gray-white feathers", + "breast: light gray-white plumage", + "crown: light gray feathers with a hint of purple or pink", + "forehead: light gray, slightly rounded", + "eyes: dark, round with a pale eyering", + "legs: reddish-purple, scaly texture", + "wings: light gray with black tips and purplish-pink hues", + "nape: light gray with purple-pink tinge", + "tail: gray with black bands and white edges", + "throat: pale gray, smooth transition from breast" + ], + "pale vented thrush": [ + "back: olive-brown with faint streaking", + "beak: straight, slightly curved at the tip, dark color", + "belly: pale greyish-white", + "breast: white with dark spots and streaks", + "crown: olive-brown with slight streaking", + "forehead: smooth, olive-brown", + "eyes: dark with contrasting pale eyering", + "legs: strong and stout, dark grey", + "wings: olive-brown with faint pale wing-bars", + "nape: olive-brown with slight streaking", + "tail: long and thin, olive-brown with faint pale tips", + "throat: white with dark streaks" + ], + "pale winged starling": [ + "back: dark metallic sheen", + "beak: sharp, pointy black beak", + "belly: light greyish-white", + "breast: pale greyish-white", + "crown: glossy dark plumage", + "forehead: glossy dark feathers", + "eyes: small, round with dark brown irises", + "legs: thin, short, dark gray", + "wings: pale grey with black tips", + "nape: dark metallic feathers", + "tail: long, fan-shaped with grey-black bars", + "throat: light greyish-white" + ], + "pale winged trumpeter": [ + "back: smooth grey feathers", + "beak: black and slightly curved", + "belly: soft white underbelly", + "breast: light grey feathered area", + "crown: pale grey rounded crest", + "forehead: delicate white feathers", + "eyes: dark black with a white outline", + "legs: sleek, long, black legs", + "wings: pale grey with black tips", + "nape: subtle transition from white to grey", + "tail: fluffy tail feathers with white and black coloration", + "throat: white feathers with some grey spots" + ], + "pale yellow robin": [ + "back: pale olive-yellow feathers", + "beak: thin, grayish-brown", + "belly: light creamy-yellow", + "breast: soft yellow plumage", + "crown: pale yellow-green", + "forehead: yellowish-green tinge", + "eyes: small, deep black", + "legs: slender, grayish-brown", + "wings: olive-green with pale edges", + "nape: yellow-green, blending into back", + "tail: olive-green with pale-yellow tips", + "throat: unmarked, buttery-yellow" + ], + "palestine sunbird": [ + "back: shimmering green and blue feathers", + "beak: slender, curved, and black", + "belly: light gray to white plumage", + "breast: vibrant purple and turquoise feathers", + "crown: iridescent violet-blue feathers", + "forehead: metallic green feathers", + "eyes: small, round, and black", + "legs: slender and dark gray", + "wings: dark gray with lighter edges", + "nape: greenish-blue metallic feathers", + "tail: long and forked with dark gray feathers", + "throat: brilliant purple-blue iridescence" + ], + "pallas bunting": [ + "back: dark, streaked feathers", + "beak: short, conical, silver-grey", + "belly: white with sparse dark streaks", + "breast: greyish-white, lightly streaked", + "crown: rufous-brown with bold black stripes", + "forehead: white, bordered by dark lines", + "eyes: black with thin white eyering", + "legs: pale pink or greyish-pink", + "wings: dark brown with white highlights", + "nape: rufous-brown, connecting to crown", + "tail: dark brown, white outer feathers", + "throat: white or pale grey with thin streaks" + ], + "pallas fish eagle": [ + "back: rich brown feathers with light edges", + "beak: large, hooked, and powerful", + "belly: white with a golden tinge", + "breast: white plumage with some golden-brown streaks", + "crown: light brown with streaks of white", + "forehead: white and slightly feathered", + "eyes: piercing yellow with a sharp gaze", + "legs: strong with sharp, curved talons", + "wings: broad and powerful with a wingspan of up to 180 cm", + "nape: golden-brown feathers with a white streak", + "tail: long and brown with wide white bands", + "throat: white plumage, sometimes with a hint of yellow" + ], + "pallas grasshopper warbler": [ + "back: olive-brown with dark streaks", + "beak: short, pointed, and black", + "belly: buff-white with dark streaks", + "breast: pale yellow-brown with black markings", + "crown: dark brown with pale central stripe", + "forehead: olive-brown with fine streaks", + "eyes: small and black with white eye-ring", + "legs: long and pinkish-brown", + "wings: rounded, olive-brown with dark bars", + "nape: olive-brown with pale central streak", + "tail: straight, narrow, and brown with dark bars", + "throat: buff-white with subtle streaks" + ], + "pallas gull": [ + "back: grayish-brown feathers", + "beak: long, sharp, yellow with a red tip", + "belly: snowy white with a light gray hue", + "breast: white and pristine", + "crown: smooth, black feathers", + "forehead: black cap that extends to eyes", + "eyes: dark, round, and piercing", + "legs: bright yellow with webbed feet", + "wings: broad, gray-white, and black-tipped", + "nape: sleek black transitions to gray", + "tail: white with black band at the end", + "throat: snow white and fluffy" + ], + "pallas leaf warbler": [ + "back: olive-green with contrasting pale lines", + "beak: slender and pointed, dark upper mandible and yellow lower mandible", + "belly: pale yellow with light streaks", + "breast: pale yellow, well-defined lateral streaks", + "crown: grayish-green with a concealed yellow crest", + "forehead: slightly paler green than the crown", + "eyes: large, dark with a white eyering", + "legs: pale pinkish with sharp claws", + "wings: olive-green with two prominent pale wingbars", + "nape: olive-green, matching the back", + "tail: olive-brown with thin, white outer feathers", + "throat: light yellow with subtle markings" + ], + "pallas rosefinch": [ + "back: reddish-brown with dark streaks", + "beak: short and conical, grayish-pink", + "belly: off-white with faint streaks", + "breast: faint pinkish-red hue", + "crown: bright pinkish-red with darker feather tips", + "forehead: intense pinkish-red color", + "eyes: small and black, surrounded by white", + "legs: sturdy, grayish-pink", + "wings: reddish-brown with white and black bars", + "nape: pinkish-red with darker feather tips", + "tail: dark brown with white edges", + "throat: vibrant pinkish-red color" + ], + "pallas sandgrouse": [ + "back: earthy brown with black markings", + "beak: short and stout, beige color", + "belly: light gray with brown speckles", + "breast: reddish-orange with a dark band", + "crown: sandy brown with black streaks", + "forehead: beige and lightly streaked", + "eyes: dark, surrounded by beige feathers", + "legs: long and thin, pale yellowish-gray", + "wings: rounded with black, brown, and gray patterning", + "nape: sandy brown with black streaks", + "tail: black and white with distinctive banding", + "throat: pale beige, unmarked" + ], + "pallid cuckoo": [ + "back: light gray with faint barring", + "beak: long, slender, and slightly decurved", + "belly: pale gray with thin dark barring", + "breast: light gray with faint barring", + "crown: light gray with faint streaks", + "forehead: light gray blending into the crown", + "eyes: dark with a thin white eye-ring", + "legs: slender, grayish-yellow", + "wings: gray with dark barring and white spots", + "nape: light gray with subtle streaks", + "tail: long and graduated with white outer feathers and dark barring", + "throat: pale gray with faint streaks" + ], + "pallid dove": [ + "back: light grayish-brown feathers", + "beak: small, black, and pointed", + "belly: pale grayish-white feathers", + "breast: soft, light gray plumage", + "crown: rounded with a pale gray hue", + "forehead: smooth, pale gray feathers", + "eyes: dark, round with a thin eye-ring", + "legs: short, pinkish-red with sharp talons", + "wings: elongated, grayish-brown with subtle feather patterns", + "nape: pale gray with a subtle collar effect", + "tail: medium length, grayish-brown with white outer edges", + "throat: light gray, gently blending into the breast area" + ], + "pallid harrier": [ + "back: light grey with dark feather tips", + "beak: sharp, hooked, dark grey", + "belly: white with fine grey streaks", + "breast: pale grey with a touch of light brown", + "crown: greyish-brown with a dark streak", + "forehead: whitish, blending into greyish crown", + "eyes: dark, piercing, with a yellow eyering", + "legs: yellow and slender", + "wings: long, grey with dark tips", + "nape: light grey with narrow dark streaks", + "tail: grey, with dark bands and white at the base", + "throat: white, blending into the breast area" + ], + "pallid honeyguide": [ + "back: olive-brown and plain", + "beak: short, pointed, blackish-brown", + "belly: pale grayish-white", + "breast: grayish-white", + "crown: olive-brown", + "forehead: olive-brown, slightly paler", + "eyes: dark, encircled by pale eye-ring", + "legs: short, dark gray", + "wings: olive-brown with faint pale wingbars", + "nape: olive-brown, similar to the crown", + "tail: olive-brown, slightly darker, with a notch", + "throat: grayish-white, blending into the breast" + ], + "pallid scops owl": [ + "back: light brown with dark streaks", + "beak: pale yellow, hooked", + "belly: soft white with brownish markings", + "breast: creamy white with dark streaks", + "crown: light brown, streaked with dark lines", + "forehead: light brown with dark speckles", + "eyes: large, yellow-orange, surrounded by a whitish facial disc", + "legs: feathered, light brown with darker bars", + "wings: mottled brown with pale spots", + "nape: light brown with dark streaks", + "tail: light brown with darker bands", + "throat: creamy white, thinly streaked with dark brown" + ], + "pallid spinetail": [ + "back: brownish-gray feathers", + "beak: slender, slightly curved", + "belly: whitish, light gray", + "breast: pale gray with streaks", + "crown: grayish-brown with a thin crest", + "forehead: light gray, slightly streaked", + "eyes: dark, medium-sized", + "legs: long, pale pinkish", + "wings: brownish-gray with pale edges", + "nape: grayish-brown, streaked", + "tail: long, thin and pale gray", + "throat: light gray, faintly streaked" + ], + "pallid swift": [ + "back: sleek, grayish-brown feathers", + "beak: small and hooked, black in color", + "belly: light and pale gray, sometimes white", + "breast: slightly darker gray, blends with belly", + "crown: gray-brown, with a rounded shape", + "forehead: pale gray, white edges", + "eyes: small, round, and dark", + "legs: short and black, with sharp claws", + "wings: long and slender, grayish-brown, swift in flight", + "nape: gray-brown, blending with the crown and back", + "tail: short and forked, grayish-brown feathers", + "throat: pale gray, white edges, slight curve" + ], + "palm cockatoo": [ + "back: dark grey feathers covering the rear upper body", + "beak: large and powerful black hooked bill", + "belly: smooth grey feathers on the lower body", + "breast: sleek grey plumage on the upper chest", + "crown: raised bold crest of dark feathers", + "forehead: feathers transitioning into the dark grey crest", + "eyes: bold, expressive black or brown encircled by a blue eye ring", + "legs: sturdy grey-black legs with strong feet", + "wings: expansive dark grey feathers with a slight shine", + "nape: grey-feathered neck connecting to the head and back", + "tail: long dark grey feathers with slight curvature", + "throat: grey plumage transitioning from breast to head" + ], + "palm crow": [ + "back: smooth, grayish-black feathers", + "beak: strong, slightly curved, black", + "belly: light gray with some white feathers", + "breast: grayish-black plumage", + "crown: slightly raised, black feathers", + "forehead: black, smooth feathers", + "eyes: dark, small, surrounded by black feathers", + "legs: long, black, and slender", + "wings: wide, black, suitable for soaring", + "nape: grayish-black, short feathers", + "tail: long, black, fan-shaped", + "throat: grayish-black, short feathers" + ], + "palm lorikeet": [ + "back: vibrant green with light feather texture", + "beak: bright orange, strong, and slightly curved", + "belly: light green, trimmed with subtle yellow hues", + "breast: luminous green, blending from back", + "crown: brilliant blue, slightly purple tinged", + "forehead: striking blue, merging into the crown", + "eyes: dark, round, and sharp, framed by blue feathers", + "legs: slender and gray, ending in sharp talons", + "wings: mix of vivid green and blue, with a strong span", + "nape: green flowing into the blue crown and back", + "tail: green and blue feathers, fanned out when in flight", + "throat: soft, lighter green, transitioning into the belly" + ], + "palmchat": [ + "back: olive-brown feathers", + "beak: short and stout, pale gray", + "belly: pale yellowish underparts", + "breast: streaked grayish-brown", + "crown: grayish-brown, slightly raised", + "forehead: shorter feathers, grayish-brown", + "eyes: dark, rounded, and small", + "legs: dark gray, with strong feet", + "wings: broad, olive-brown, with lighter edges", + "nape: gradual transition from crown, grayish-brown", + "tail: long, squared-off, olive-brown", + "throat: pale grayish-white, lightly streaked" + ], + "pampas meadowlark": [ + "back: reddish-brown feathers with darker streaks", + "beak: long, slender, and black", + "belly: white with pale black streaks", + "breast: bright yellow with black v-shaped band", + "crown: rufous-colored with dark streaks", + "forehead: reddish-brown with fine black striations", + "eyes: dark with pale gray eyering", + "legs: long and slender, light pinkish-gray", + "wings: brownish-gray with pale yellow shoulder patches", + "nape: reddish-brown with delicate black streaks", + "tail: long and pointed, with black and white outer feathers", + "throat: bright yellow with small black speckles" + ], + "pampas pipit": [ + "back: light brown with subtle streaks", + "beak: slender, slightly curved, dark grey", + "belly: yellowish-white with faint spots", + "breast: pale buff with light streaks", + "crown: brownish-grey with thin stripes", + "forehead: light grayish-brown with fine streaks", + "eyes: dark brown with pale eyering", + "legs: long, slender, pale pink", + "wings: brown with pale wing bars and dark primary feathers", + "nape: grayish-brown with faint streaks", + "tail: long, dark brown with white outer feathers", + "throat: white with a horizontal streaked pattern" + ], + "panama flycatcher": [ + "back: light brownish feathers", + "beak: slim, slightly curved, dark-colored", + "belly: creamy white underside", + "breast: pale brown chest feathers", + "crown: grayish-brown tuft", + "forehead: lighter gray-brown feathers", + "eyes: small, dark, with white eye-ring", + "legs: thin, dark-colored, long", + "wings: brownish, with light wingbars", + "nape: grayish-brown, continuous with crown", + "tail: long, slender, dark brown", + "throat: creamy white, matching the belly" + ], + "panao antpitta": [ + "back: olive-brown and streaked", + "beak: short, curved, blackish", + "belly: white with black stripes", + "breast: gray with faint scaling", + "crown: rufous-brown with indistinct streaks", + "forehead: slightly paler than the crown", + "eyes: dark brown, moderately small", + "legs: long, grayish-pink", + "wings: olive-brown with darker edges", + "nape: olive-brown with faint streaks", + "tail: short, olive-brown with irregular barring", + "throat: white with fine black scaling" + ], + "panay striped babbler": [ + "back: olive-brown feathers with narrow white streaks", + "beak: short, slender, and black", + "belly: pale beige with thin, faint streaks", + "breast: white with light brown streaks", + "crown: warm brown with distinctive white striping", + "forehead: pale brown with subtle white markings", + "eyes: dark brown, surrounded by small white feathers", + "legs: gray-brown and moderately long", + "wings: olive-brown with white streaks and slight bluish sheen", + "nape: warm brown with white streaks", + "tail: long, olive-brown, and slightly rounded with white edges", + "throat: white throat patch, contrasting with striped breast" + ], + "pangani longclaw": [ + "back: golden-brown feathers", + "beak: sharp, pointed, and black", + "belly: off-white with yellow hues", + "breast: bright yellow patch", + "crown: dark brown with streaks", + "forehead: distinctive black band", + "eyes: small and dark", + "legs: slender, powerful, and gray", + "wings: medium-sized, brown with white streaks", + "nape: golden-brown with streaks", + "tail: long and narrow, with white-tipped feathers", + "throat: bright yellow with black markings" + ], + "pantanal snipe": [ + "back: dark brown with white streaks", + "beak: long, straight, and slender", + "belly: light brown with dark markings", + "breast: brown with dark spots and streaks", + "crown: dark brown with a pale central stripe", + "forehead: white with dark brown streaks", + "eyes: small and dark, framed by white eye-ring", + "legs: long and reddish-orange", + "wings: dark brown with white markings", + "nape: dark brown with lighter streaks", + "tail: short, dark brown with white corner spots", + "throat: white with dark mottling" + ], + "pantepui thrush": [ + "back: brownish-gray feathered coverage", + "beak: straight and slender black bill", + "belly: creamy-white with blackish streaks", + "breast: subtly spotted with black markings", + "crown: dark gray with slight feather tufts", + "forehead: smooth and grayish-brown", + "eyes: round and dark with white eye-ring", + "legs: long and black with strong feet", + "wings: brownish-gray with dark striping", + "nape: gray with a slight collar-like pattern", + "tail: fan-shaped with dark gray feathers", + "throat: white with black streaks and markings" + ], + "paperbark flycatcher": [ + "back: pale-brown with thin white streaks", + "beak: short, straight, and black", + "belly: off-white with subtle brown streaking", + "breast: creamy white, faintly streaked", + "crown: pale-brown, blending with forehead", + "forehead: slightly lighter brown than the crown", + "eyes: small and dark, framed in a white eye-ring", + "legs: slender, dark gray to black", + "wings: pale-brown, with faint white bars", + "nape: pale-brown, blending into the back", + "tail: long, thin, and pale-brown with white outer feathers", + "throat: white, contrasting against breast and belly" + ], + "papuan babbler": [ + "back: brown feathered with lighter streaks", + "beak: short and strong, dark grey", + "belly: pale brown with faint streaks", + "breast: light brown with subtle streaks", + "crown: dark brown with lighter markings", + "forehead: pale brown, blending into the crown", + "eyes: dark brown surrounded by faint pale ring", + "legs: slender, dark grey with strong claws", + "wings: brown with lighter edging on feathers", + "nape: streaked brown transitioning from crown", + "tail: long and brown with subtle barring", + "throat: pale brown with lighter streaks" + ], + "papuan black myzomela": [ + "back: olive-black in color", + "beak: short and slender", + "belly: dark greyish black", + "breast: darker shade of grey", + "crown: smooth black feathers", + "forehead: black with fine feathers", + "eyes: dark brown with thin eye-rings", + "legs: sturdy and dark grey", + "wings: black with a faint shimmer", + "nape: dark olive-black", + "tail: black and slightly forked", + "throat: dark grey-black feathers" + ], + "papuan boobook": [ + "back: brownish feather pattern", + "beak: sharp, curved, and dark", + "belly: whitish with dark streaks", + "breast: rufous color with dark markings", + "crown: dark brown feathers", + "forehead: brown with some white spots", + "eyes: large and yellow", + "legs: strong and yellowish", + "wings: brown with light and dark barring", + "nape: dark brown with faint white streaks", + "tail: long and brown with barring pattern", + "throat: whitish with dark streaks" + ], + "papuan cicadabird": [ + "back: dark grey feathers with a slight sheen", + "beak: short, sharp, black hooked beak", + "belly: soft, pale grey with a slight tinge of green", + "breast: light grey, blending into the belly color", + "crown: glossy black plumage on top of the head", + "forehead: smooth, black feathers transitioning into grey", + "eyes: small, circular, dark black with a thin eye-ring", + "legs: slender, greyish-black legs and feet", + "wings: dark grey with a hint of green, faint white markings", + "nape: glossy black feathers fading into grey towards the back", + "tail: long, dark grey with a faint greenish tinge, white tip", + "throat: pale grey, blending seamlessly with the breast and belly" + ], + "papuan dwarf kingfisher": [ + "back: vibrant blue feathers", + "beak: small, bright orange", + "belly: white with slight orange tint", + "breast: white feathers with blue edges", + "crown: rich blue with a slight purple hue", + "forehead: bright blue with a touch of purple", + "eyes: dark, beady, encircled by blue feathers", + "legs: short, orange with strong claws", + "wings: brilliant blue with black edges and white spots", + "nape: deep blue transitioning to white", + "tail: short, blue with black bands and white tips", + "throat: white with a soft orange outline" + ], + "papuan flycatcher": [ + "back: dark brown feathers with slight iridescence", + "beak: small, thin, and sharply pointed for catching insects", + "belly: pale, creamy-white plumage for camouflage", + "breast: spotted with brown and white markings for added visual interest", + "crown: dark brown feathers with some lighter streaks for contrast", + "forehead: creamy white with dark brown streaks hinting at fierceness", + "eyes: round and alert, black with a slight gleam for capturing sight", + "legs: slender and long, perfect for perching with ease", + "wings: mid-sized with beautiful brown patterns, designed for agile flight", + "nape: covered in dark brown feathers, providing warmth and protection", + "tail: moderately long with white tips, used for balance and display", + "throat: soft, white plumage with delicate brown markings, portraying elegance" + ], + "papuan frogmouth": [ + "back: camouflaged brown feathers", + "beak: wide, hooked, and strong", + "belly: light brown or beige feathers", + "breast: tawny brown with fine barring", + "crown: rounded and textured tufts", + "forehead: angular with prominent whiskers", + "eyes: large, yellow, and forward-facing", + "legs: extended and resilient", + "wings: elongated and powerful for short flights", + "nape: thickly plumed with subtle patterns", + "tail: long and slender with distinct bands", + "throat: pale with fine feathered whiskers" + ], + "papuan grassbird": [ + "back: light brown with subtle markings", + "beak: thin, sharp, black", + "belly: cream-colored with streaks", + "breast: buff with brown speckles", + "crown: dark, streaked crown", + "forehead: pale buff with streaks", + "eyes: small and dark, with white eye-ring", + "legs: thin, pinkish-gray", + "wings: brown with black tips and pale edges", + "nape: brown with streaks", + "tail: long, brown with dark bars", + "throat: buff with thin streaks" + ], + "papuan hanging parrot": [ + "back: striking green feathers covering the upper body", + "beak: small yet strong, curved and hook-like beak", + "belly: vibrant yellowish-green plumage", + "breast: bright green feathers contrast against belly", + "crown: vibrant shades of blue with hints of purple", + "forehead: rich blue and purple feathers blend with the crown", + "eyes: dark, attentive, and inquisitive gaze", + "legs: short and sturdy, with sharp claws for gripping", + "wings: bright green, accented with hints of blue and yellow", + "nape: transitioning from crown's blue to back's green feathers", + "tail: long, tapered feathers in shades of green and blue", + "throat: subtle yellow and green mix, blending with breast and belly" + ], + "papuan king parrot": [ + "back: vibrant green feathers", + "beak: strong, coral red", + "belly: deep green hue", + "breast: bright red coloring", + "crown: striking green plumage", + "forehead: deep crimson shade", + "eyes: piercing dark orbs", + "legs: sturdy, grayish-black", + "wings: vibrant green feathers with hints of blue", + "nape: rich green neck feathers", + "tail: elongated green and blue feathers", + "throat: brilliant red hue" + ], + "papuan logrunner": [ + "back: brownish-grey plumage", + "beak: short and sturdy, dark grey", + "belly: white with black speckles", + "breast: white with black speckles", + "crown: dark brown with a slightly raised crest", + "forehead: dark brown, blending with crown", + "eyes: small, black, and piercing", + "legs: strong and feathered, light grey", + "wings: brownish-grey, short and rounded", + "nape: brownish-grey, matching back color", + "tail: long and sturdy, brownish-grey with white tips", + "throat: white with black stripes" + ], + "papuan lorikeet": [ + "back: vibrant blue and green feathers on the upper body", + "beak: short, curved, and bright orange", + "belly: yellow and purple feathered underside", + "breast: reddish-pink and orange feathers on the chest area", + "crown: bright red feathers on top of the head", + "forehead: smooth red feathers above the eyes", + "eyes: small, round, and black", + "legs: short and powerful with zygodactyl toes", + "wings: long and blue, with green and yellow feather tips", + "nape: red and purple feathers on the back of the neck", + "tail: elongated blue and green feathers", + "throat: yellow and purple plumage around the neck area" + ], + "papuan marsh harrier": [ + "back: dark brown with lighter streaks", + "beak: sharp, hooked, black tip", + "belly: creamy white with brown streaks", + "breast: white with bold brown streaks", + "crown: dark brown", + "forehead: lighter brown with some white streaks", + "eyes: piercing yellow or orange", + "legs: long, pale yellow, strong talons", + "wings: broad, dark brown with lighter streaks", + "nape: dark brown to blend with the crown", + "tail: long, narrow, dark brown with wide white bands", + "throat: white with some faint brown streaks" + ], + "papuan mountain pigeon": [ + "back: dark slate grey with hints of green iridescence", + "beak: black and stout, slightly curved", + "belly: white with a hint of green from iridescence", + "breast: white extending up to the throat, slightly iridescent", + "crown: dark slate grey blending into the nape", + "forehead: dark slate grey transitioning into the crown", + "eyes: small, dark brown with a narrow black eye ring", + "legs: short and sturdy, deep red in color", + "wings: dark slate grey with green iridescence, long and broad", + "nape: dark slate grey, blending into the crown and back", + "tail: long, dark slate grey with green iridescence, and white tips", + "throat: white, extending down to the belly and breast" + ], + "papuan nightjar": [ + "back: brownish-black with camouflaging patterns", + "beak: small, thin, and sharp", + "belly: light gray and black speckles", + "breast: dark gray with mottled patterns", + "crown: smooth, tawny-brown", + "forehead: dark gray with white specks", + "eyes: large, dark, and nocturnal", + "legs: short, gray, and sturdy", + "wings: brownish-black with buff spots", + "nape: grayish-brown with white streaks", + "tail: long, brown, with white bands", + "throat: pale gray with dark streaks" + ], + "papuan owl": [ + "back: brownish-black feathers with white speckles", + "beak: sharp, yellowish-white curved beak", + "belly: creamy white with horizontal dark brown stripes", + "breast: white with dark brown streaks and spots", + "crown: dark brown with light speckles", + "forehead: light brown with white streaks", + "eyes: large, bright yellow with black pupils", + "legs: sturdy, feathered with yellow talons", + "wings: brown with white markings and feathered tips", + "nape: dark brown with light speckles", + "tail: long, dark brown with white horizontal bands", + "throat: creamy white with small dark brown markings" + ], + "papuan parrotfinch": [ + "back: vibrant green feathers", + "beak: strong, red-orange point", + "belly: bright turquoise-blue plumage", + "breast: brilliant blue feathers", + "crown: vivid green with orange speckles", + "forehead: striking orange-red patch", + "eyes: dark, lively beads", + "legs: sturdy, blue-gray limbs", + "wings: green-blue feathers with darker flight feathers", + "nape: rich green plumage with orange highlights", + "tail: elongated, green-blue feathers with black tips", + "throat: bright blue, blending into chest feathers" + ], + "papuan pitta": [ + "back: vibrant green feathers", + "beak: short and black", + "belly: creamy-white with blue patches", + "breast: bright blue with black stripes", + "crown: turquoise with black streaks", + "forehead: brilliant orange", + "eyes: dark and piercing", + "legs: sturdy and pinkish-gray", + "wings: greenish-blue with black bands", + "nape: turquoise and black streaks", + "tail: dark blue with black tips", + "throat: vibrant yellow" + ], + "papuan scrub robin": [ + "back: light brown with subtle streaks", + "beak: short and black", + "belly: white with faint brown spots", + "breast: brownish-grey with a white streak", + "crown: rufous-brown", + "forehead: light brown", + "eyes: dark brown", + "legs: sturdy and grey", + "wings: brown with white edging", + "nape: reddish-brown", + "tail: dark brown with white tips", + "throat: greyish-white" + ], + "papuan scrubwren": [ + "back: brownish with slightly darker streaks", + "beak: short, straight, and pale grey", + "belly: light grey to white blending", + "breast: dull grey with white undertones", + "crown: brownish-grey with darker streaks", + "forehead: pale grey-brown gradient", + "eyes: small, dark, and alert", + "legs: slender and pale pinkish-grey", + "wings: short, rectangular, and brownish-grey", + "nape: pale brown with fine streaks", + "tail: short and fan-shaped, brownish-grey", + "throat: white with faint grey markings" + ], + "papuan sittella": [ + "back: olive-brown plumage", + "beak: slim and pointed", + "belly: pale gray-white feathers", + "breast: soft white plumage", + "crown: striking black and white pattern", + "forehead: black and white streaks", + "eyes: dark round pupils", + "legs: slim and gray", + "wings: short and rounded, variegated feathers", + "nape: black and white streak-like patterns", + "tail: short and fan-shaped, with white outer tips", + "throat: white plumage with subtle streaks" + ], + "papuan spinetailed swift": [ + "back: sleek, dark gray feathers", + "beak: black, short, and pointed", + "belly: lighter gray with white streaks", + "breast: dark gray feathers", + "crown: smooth, dark gray feathers", + "forehead: dark gray, above beak", + "eyes: small, black, almond-shaped", + "legs: slender, black, with sharp claws", + "wings: long, narrow, pointed, dark gray feathers", + "nape: dark gray, connects head to back", + "tail: short, forked, dark gray feathers", + "throat: dark gray with lighter gray streaks" + ], + "papuan thornbill": [ + "back: olive-brown with subtle streaks", + "beak: short, slender, and curved", + "belly: pale yellow with brown streaks", + "breast: yellowish-brown with fine streaks", + "crown: dark brown with prominent feathers", + "forehead: olive-brown fading to pale yellow", + "eyes: small, dark, and alert", + "legs: short, strong, and gray", + "wings: olive-brown with thick, strong feathers", + "nape: dark brown with slight streaks", + "tail: short, stiff, and olive-brown", + "throat: light yellow with faint streaks" + ], + "papuan treecreeper": [ + "back: olive-brown with subtle streaks", + "beak: long and slightly curved", + "belly: creamy white with brown markings", + "breast: pale brown with dark streaks", + "crown: streaky brown with a slight crest", + "forehead: brown with a hint of lighter streaks", + "eyes: dark with a white eyering", + "legs: slender and grayish", + "wings: brown with faint bars", + "nape: brown with darker streaks", + "tail: long and brown with white tips", + "throat: light brown with subtle streaks" + ], + "papuan whipbird": [ + "back: olive-brown with subtle dark streaks", + "beak: short and stout, dark gray", + "belly: pale cream with olive-brown streaks", + "breast: light olive-brown with fine streaks", + "crown: dark olive-brown, uniform color", + "forehead: slightly paler olive-brown", + "eyes: black, surrounded by pale eye-ring", + "legs: strong and grayish-brown", + "wings: olive-brown with darker flight feathers", + "nape: similar color to crown, dark olive-brown", + "tail: long and slender, olive-brown with darker bars", + "throat: pale buffy-white with brown speckles" + ], + "papyrus canary": [ + "back: green-gold feathers", + "beak: strong, yellowish", + "belly: white-cream fluff", + "breast: light yellow softness", + "crown: yellow-greenish crest", + "forehead: bright yellow patch", + "eyes: black, curious beads", + "legs: slender, pinkish", + "wings: green-gold flight feathers", + "nape: greenish-yellow hue", + "tail: long, greenish fan", + "throat: yellow, petite curve" + ], + "papyrus gonolek": [ + "back: vibrant red-orange plumage", + "beak: sharp, pointed, black", + "belly: bright yellow feathers", + "breast: striking yellow plumage", + "crown: black, with red-orange crest", + "forehead: black with a touch of red-orange", + "eyes: dark, small, and alert", + "legs: sturdy, grey, suited for perching", + "wings: black with bold red-orange markings", + "nape: black with red-orange streaks", + "tail: black, long, and slightly forked", + "throat: black, contrasting with yellow breast" + ], + "papyrus yellow warbler": [ + "back: olive-green feathers", + "beak: slender and black", + "belly: pale yellow hue", + "breast: bright yellow plumage", + "crown: yellow-green crest", + "forehead: light olive-green", + "eyes: small and dark", + "legs: thin and black", + "wings: olive-green with dark bars", + "nape: yellowish-green patch", + "tail: dark feathers with yellow edges", + "throat: vibrant yellow coloring" + ], + "para foliage gleaner": [ + "back: olive-green with buff streaks", + "beak: slightly curved, brownish", + "belly: creamy-white with greenish-yellow flanks", + "breast: pale buff with faint streaks", + "crown: rufous-brown with buff streaks", + "forehead: rufous-brown, slightly crest-like", + "eyes: dark brown surrounded by pale eye-ring", + "legs: dull pinkish-brown", + "wings: olive-brown with paler edging", + "nape: rufous-brown with buff streaks", + "tail: olive-brown, slightly graduated", + "throat: creamy-white, unmarked" + ], + "paradise jacamar": [ + "back: iridescent green with sleek feathers", + "beak: long, slender, and black", + "belly: white with subtle green hues", + "breast: vibrant green transitioning from the neck", + "crown: emerald green with a subtle shine", + "forehead: green feathers extending from the beak", + "eyes: dark and expressive with a black outline", + "legs: delicate and black, with strong perching ability", + "wings: elongated and shimmering green", + "nape: iridescent green connecting to crown and back", + "tail: long, fine feathers in a glossy green shade", + "throat: white with a gentle fade into the breast area" + ], + "paradise riflebird": [ + "back: iridescent greenish-blue", + "beak: short, black, and hooked", + "belly: velvety black", + "breast: shiny turquoise-blue", + "crown: dark glossy green", + "forehead: greenish-black", + "eyes: dark and round", + "legs: gray and strong", + "wings: black with blue highlights", + "nape: vibrant green", + "tail: elongated, black with greenish-blue sheen", + "throat: bright blue iridescence" + ], + "paradise shelduck": [ + "back: vibrant colors with intricate patterns", + "beak: strong, black, hooked tip", + "belly: soft cream feathers", + "breast: deep chestnut hue with speckled white", + "crown: sleek iridescent-black shading", + "forehead: striking white-to-black gradient", + "eyes: dark, intelligent gaze", + "legs: sturdy orange-red limbs", + "wings: impressive span with bold, contrasting colors", + "nape: smooth, elegant curve from head to back", + "tail: fan-like plumage, colorful accents", + "throat: tawny feathers, frames neck gracefully" + ], + "paradise crow": [ + "back: iridescent black with shimmering blues and purples", + "beak: sleek, sharp, and black", + "belly: soft black with a subtle sheen", + "breast: glossy black with hints of iridescence", + "crown: glossy black with shimmering metallic hue", + "forehead: sleek black and smooth", + "eyes: alert and black, surrounded by dark skin", + "legs: strong and black with sharp talons", + "wings: long and black with stunning iridescent edges", + "nape: glossy black with feather tips shining in blues and purples", + "tail: long and black with graceful, shimmering feathers", + "throat: smooth black with a slight hint of iridescence" + ], + "paramillo tapaculo": [ + "back: dark gray, short-feathered", + "beak: slim, slightly curved, black", + "belly: pale gray, occasionally striped", + "breast: light gray, marked with black spots", + "crown: black, slightly tufted", + "forehead: dark gray, feathers blend with crown", + "eyes: small, dark, well-defined", + "legs: black, medium-length, strong", + "wings: dark gray, rounded, medium-sized", + "nape: dark gray, continuous with back feathers", + "tail: short, dark gray, slightly flared", + "throat: white, contrasting with darker plumage" + ], + "paramo pipit": [ + "back: olive-brown with streaks", + "beak: thin and pointed", + "belly: pale brownish-white", + "breast: cream with dark streaks", + "crown: brownish-gray with streaks", + "forehead: pale brownish-gray", + "eyes: small, dark brown", + "legs: long and thin, dull pink", + "wings: brownish-gray with black stripes", + "nape: olive-brown with streaks", + "tail: dark brown with white outer feathers", + "throat: pale brownish-white" + ], + "paramo seedeater": [ + "back: olive-gray feathers", + "beak: short, conical, silvery-blue", + "belly: pale grayish-white", + "breast: light gray with some streaks", + "crown: black on males, olive-gray on females", + "forehead: black on males, olive-gray on females", + "eyes: dark brown with white eye-ring", + "legs: strong, thin, light gray", + "wings: olive-gray with slightly darker flight feathers", + "nape: olive-gray, continuous with the back", + "tail: long and notched, olive-gray with lighter edges", + "throat: grayish-white, bordered by thin black line on males" + ], + "paramo tapaculo": [ + "back: blackish-brown with subtle streaks", + "beak: short and slender, black", + "belly: grayish with black streaks", + "breast: grayish with black streaks", + "crown: blackish-brown with subtle streaks", + "forehead: blackish-brown with subtle streaks", + "eyes: medium-sized and dark", + "legs: robust and grayish-brown", + "wings: blackish-brown with faint barring", + "nape: blackish-brown with subtle streaks", + "tail: blackish-brown with faint barring", + "throat: pale grayish-white" + ], + "parasitic jaeger": [ + "back: sleek dark gray feathers", + "beak: curved, sharp-pointed black beak", + "belly: grayish white plumage", + "breast: pale gray feathers", + "crown: dark gray head plumage", + "forehead: smooth dark gray plumage", + "eyes: alert, piercing yellow eyes", + "legs: strong, black, scaled bird legs", + "wings: powerful, pointed, black and gray wings", + "nape: dark gray with a white collar", + "tail: long, narrow, forked black tail feathers", + "throat: white or gray feathers, blending with the breast" + ], + "parasitic weaver": [ + "back: streaked with shades of brown and black", + "beak: sharp and yellowish", + "belly: white with pale brown spots", + "breast: chestnut brown with streaks", + "crown: brownish-black with a slight crest", + "forehead: black with a hint of chestnut", + "eyes: small, black, and alert", + "legs: yellowish-brown with strong claws", + "wings: brown and black with white highlights", + "nape: lighter brown with hints of chestnut", + "tail: long, black, and slightly forked", + "throat: white with faint brown streaks" + ], + "pardusco": [ + "back: brownish-olive hue with a hint of gray", + "beak: short, sharp, and black", + "belly: pale gray or beige with subtle streaks", + "breast: light brown or russet with dusky speckles", + "crown: darker olive or gray with bold black stripes", + "forehead: smooth, pale gray or buff", + "eyes: black, surrounded by a white eye-ring", + "legs: sturdy and dark grayish-blue", + "wings: olive-brown with blackish wing-bars", + "nape: grayish-olive with subtle streaks", + "tail: dark olive-brown with faint bands", + "throat: pale grayish-white, sometimes tinged with buff" + ], + "paria brushfinch": [ + "back: olive-green feathered covering", + "beak: short, conical, and dark gray", + "belly: pale yellow with light streaks", + "breast: grayish-brown with a hint of olive", + "crown: brownish-gray with subtle streaks", + "forehead: olive-brown with fine streaks", + "eyes: small, dark, and alert", + "legs: slender and dark gray", + "wings: olive-brown with faint dark bars", + "nape: grayish-brown blending with the crown", + "tail: long and olive-brown with dark bars", + "throat: pale gray with fine dark streaks" + ], + "paria redstart": [ + "back: vibrant olive-green upper torso", + "beak: small, pointed black beak", + "belly: creamy white lower portion", + "breast: bright yellow-orange chest", + "crown: olive-green head feathers", + "forehead: yellow-orange patch above the eyes", + "eyes: black, tiny beads with a white eye-ring", + "legs: slender dark gray limbs", + "wings: olive-green with black tips and patches", + "nape: olive-green connecting the head to the back", + "tail: deep black with white edges and tips", + "throat: yellow-orange plumage leading to the breast" + ], + "parker antbird": [ + "back: dark brown feathers with pale streaks", + "beak: short, curved, and dark gray", + "belly: white with fine brown streaks", + "breast: light gray with brown streaks", + "crown: brown with pale streaks, forming a crest", + "forehead: light brown with pale flecks", + "eyes: dark brown surrounded by white eye-rings", + "legs: long and slender, grayish-blue", + "wings: brown with white streaks and spots", + "nape: light brown with pale streaks", + "tail: long, reddish-brown with white tip", + "throat: white with fine brown streaks" + ], + "parker spinetail": [ + "back: dark brown with faint pale stripes", + "beak: short and slightly curved, blackish-brown", + "belly: creamy white color with black speckles", + "breast: light-gray, scattered with thin black streaks", + "crown: dark brown with a dull crest", + "forehead: dark brown, blending with the crown color", + "eyes: small, black, and round, surrounded by inconspicuous eyering", + "legs: grayish-brown, slim and moderately long", + "wings: dark brown with faint tan wingbars", + "nape: dark brown, similar in color to crown and back", + "tail: blackish-brown, with slightly rounded edges and white tips on the outer feathers", + "throat: pale gray, transitioning to the breast coloration" + ], + "parkinson petrel": [ + "back: sleek greyish-brown feathers", + "beak: sharp, hooked, black", + "belly: white with mottled brown specks", + "breast: white and soft", + "crown: dark greyish-brown with slight crest", + "forehead: smooth and dark greyish-brown", + "eyes: small, dark, and alert", + "legs: pinkish-grey, thin, and webbed", + "wings: long, slender, and dark greyish-brown", + "nape: greyish-brown with fine feathers", + "tail: forked, dark greyish-brown feathers", + "throat: white with light brown speckles" + ], + "parodi hemispingus": [ + "back: greenish-gray with streaks", + "beak: short, slender, and sharply pointed", + "belly: pale yellow with dark striations", + "breast: olive-gray with light streaks", + "crown: bright blue with a black stripe", + "forehead: greenish-gray plumage", + "eyes: black with a small white ring", + "legs: grayish-beige and thin", + "wings: green and blue with black markings", + "nape: olive-gray feathers", + "tail: long, black with blue tips", + "throat: yellowish with dark streaks" + ], + "parrot crossbill": [ + "back: vibrant green feathers with a slight blue tinge", + "beak: large, curved and powerful, orange-red in color", + "belly: light green and yellowish feathers", + "breast: bright green with a hint of yellow undertones", + "crown: vibrant green feathers with a slight blue sheen", + "forehead: bright green, blending into the crown", + "eyes: small, black, and alert with a white eye-ring", + "legs: short and sturdy, with gray scaly skin and strong claws", + "wings: green with blue tinges, long and slightly pointed at the ends", + "nape: green blending into a lighter shade at the back of the neck", + "tail: slightly forked, green with hints of blue and red near the base", + "throat: greenish-yellow feathers, blending into lighter shades on the breast" + ], + "parrot billed seedeater": [ + "back: vibrant green feathers covering the parrot billed seedeater's back", + "beak: large, sturdy, and curved beak perfect for cracking seeds, typically silver-gray", + "belly: soft mix of green and yellow feathers covering the lower torso", + "breast: bright yellow plumage on the upper torso, accentuating the chest", + "crown: green feathers adorning the top of the head", + "forehead: yellow to green gradient, blending with the crown and eyes", + "eyes: round, black eyes focused in the center of the eye socket", + "legs: strong, gray scaly legs for perching and hopping", + "wings: striking green feathers with hints of black, allowing for swift flight", + "nape: yellow and green plumage where the head meets the back", + "tail: long, slender green and black feathers, aiding in balance and steering", + "throat: vibrant yellow feathers surrounding the lower beak and transitioning to the breast" + ], + "parrot billed sparrow": [ + "back: vibrant green feathers", + "beak: strong, curved, parrot-like bill", + "belly: soft, pale grey plumage", + "breast: creamy white feathers with subtle streaks", + "crown: striking yellow and black striped pattern", + "forehead: bright yellow markings", + "eyes: round, dark, attentive gaze", + "legs: sturdy, pale pink with sharp claws", + "wings: green with black-tipped flight feathers", + "nape: green and yellow striped pattern", + "tail: long, green feathers with black barring", + "throat: white with fine black streaks" + ], + "partridge pigeon": [ + "back: brownish-grey feathers with a slight sheen", + "beak: short and curved, light-colored with a darker tip", + "belly: soft, pale grey feathers", + "breast: rounded with a slight hint of pinkish-orange hue", + "crown: dark grey with a faint blue tint", + "forehead: smooth, grey feathers blending into the crown", + "eyes: bright and round, with a small black pupil and pale white eye ring", + "legs: strong and short, reddish-pink with sharp claws", + "wings: greyish-brown with black and white striped patterns", + "nape: grey, with a slight bluish tint blending into the back", + "tail: dark grey feathers with white tip, fan-shaped", + "throat: pale grey feathers, blending into the breast" + ], + "patagonian canastero": [ + "back: light brown with streaks of black", + "beak: long, thin, and slightly curved", + "belly: creamy-white with brown streaks", + "breast: beige with subtle brown markings", + "crown: rich brown with black streaks", + "forehead: pale brown, blending into crown", + "eyes: small, dark, and alert", + "legs: slender and greyish-brown", + "wings: brown with black and white feather markings", + "nape: light brown blending into crown and back", + "tail: long and rectangular, brown with black markings", + "throat: creamy-white with faint brown streaks" + ], + "patagonian forest earthcreeper": [ + "back: brownish-grey plumage", + "beak: long, slightly curved", + "belly: pale buff-colored", + "breast: streaked brown and white feathers", + "crown: reddish-brown with dark spots", + "forehead: brown, blending with the crown", + "eyes: dark, surrounded by faint white eye-ring", + "legs: sturdy and greyish", + "wings: brown with white-tipped feathers", + "nape: reddish-brown with dark markings", + "tail: long, brownish with barred pattern", + "throat: white, contrasting with the breast" + ], + "patagonian mockingbird": [ + "back: grayish-brown feathered covering", + "beak: long, slender, curved black tip", + "belly: light gray-white soft plumage", + "breast: light gray with a white undertone", + "crown: smooth grayish-brown feathers", + "forehead: lighter gray section above beak", + "eyes: small, round, dark brown or black", + "legs: strong, thin, gray-black legs with sharp claws", + "wings: medium length, gray-brown blend with pointed tips", + "nape: slightly darker gray-brown plumage on back of neck", + "tail: long, straight, grayish-brown feathers with white tips", + "throat: light gray-white feathers transitioning to the breast" + ], + "patagonian tinamou": [ + "back: brownish-grey plumage with subtle barring", + "beak: short, stout, and light-colored", + "belly: soft grey to white feathering", + "breast: pale brown with dark speckles", + "crown: greyish-brown with faint barring or streaks", + "forehead: pale grey with slight streaks", + "eyes: small, round, and dark in color", + "legs: sturdy, pale pinkish-grey with sharp claws", + "wings: rounded with dark brown and buff-colored feathers", + "nape: greyish-brown with fine streaks and barring", + "tail: short with brown, barred feathers", + "throat: white or light grey with faint streaks" + ], + "patagonian tyrant": [ + "back: olive-brown feathers", + "beak: short, thick, and black", + "belly: creamy-white plumage", + "breast: pale gray feathers", + "crown: dark olive-green crest", + "forehead: slight eyebrow pattern", + "eyes: piercing black gaze", + "legs: sturdy, grayish-yellow", + "wings: greenish-brown with faint bars", + "nape: olive-green fading to gray", + "tail: long, dark brown with white outer feather tips", + "throat: white, contrasting with breast" + ], + "patagonian yellow finch": [ + "back: olive-green with faint streaks", + "beak: short and conical, grayish-black", + "belly: pale yellow with light streaking", + "breast: bright yellow with delicate streaks", + "crown: olive-green with faint streaks", + "forehead: bright yellow with smooth plumage", + "eyes: dark brown with thin, white eye-ring", + "legs: grayish-black and thin", + "wings: olive-green with two faint wing-bars", + "nape: olive-green with light streaking", + "tail: olive-green with dark banding and white outer feathers", + "throat: bright yellow and unblemished" + ], + "pavonine cuckoo": [ + "back: deep green-brown feathers", + "beak: short, curved and dark", + "belly: creamy white undertones", + "breast: light green-brown with iridescent sheen", + "crown: glossy dark feather crest", + "forehead: dark green-brown plumage", + "eyes: amber colored, sharp gaze", + "legs: slender and grayish", + "wings: long, vibrant green-brown with tinges of blue", + "nape: dark green-brown with iridescent shine", + "tail: long and green-brown with alternating patterns", + "throat: dusky white, well defined" + ], + "pavonine quetzal": [ + "back: shimmering green feathers", + "beak: short, curved, yellowish", + "belly: vibrant red plumes", + "breast: brilliant red feathers", + "crown: iridescent green crest", + "forehead: radiant green with hints of blue", + "eyes: dark and penetrating", + "legs: strong, grey, and thin", + "wings: glossy green with blue undertones", + "nape: glistening green and blue", + "tail: long, trailing, emerald green plumes", + "throat: bright scarlet feathers" + ], + "peaceful dove": [ + "back: soft grey feathers", + "beak: slender, black, curved tip", + "belly: pale grey, feathered, faint spots", + "breast: rosy-pink tint with grey base", + "crown: smooth blue-grey feathers", + "forehead: bluish-grey, unmarked", + "eyes: dark, round, encircled in blue skin", + "legs: short, pinkish-red with scaly texture", + "wings: light grey, barred with darker grey", + "nape: blue-grey, collar-like tapering", + "tail: long, grey, with white outer feathers", + "throat: plump, blue-grey, merging with breast" + ], + "peach fronted parakeet": [ + "back: light green feathers covering the backside", + "beak: short, curved, and whitish-orange", + "belly: pale yellow or off-white underbelly", + "breast: bright yellow and light green mix", + "crown: peach-orange colored crest atop the head", + "forehead: peach-orange coloring that blends into the crown", + "eyes: dark, round with a white eye-ring", + "legs: short and gray with strong claws", + "wings: bright green with blue-tinted flight feathers", + "nape: light green, blending into the back feathers", + "tail: long and blue-tipped, green base", + "throat: pale green, merging into the yellow breast area" + ], + "peacock coquette": [ + "back: iridescent green upper body", + "beak: short, curved, and dark-colored", + "belly: pale feathered underside", + "breast: vibrant purplish-blue", + "crown: adorned with several eye-catching plumes", + "forehead: short, rounded crest with blue and green feathers", + "eyes: large, black, and expressive", + "legs: slender, gray, and sturdy", + "wings: deep blue with green and bronze accents", + "nape: continuation of iridescent green feathers", + "tail: elongated, shimmering with green and blue hues", + "throat: rich purplish-blue patch of feathers" + ], + "peale imperial pigeon": [ + "back: sleek, light gray plumage", + "beak: short and robust, light pinkish hue", + "belly: soft, white feathers blending into gray", + "breast: smooth, lighter gray feathers", + "crown: slightly darker gray, rounded top", + "forehead: smooth transition from beak to crown", + "eyes: small, deep-set, black in color", + "legs: slender, light pink with sharp claws", + "wings: large, wide-spread, light gray with hints of white", + "nape: connecting crown and back, light gray", + "tail: long, fan-like feathers in varying shades of gray", + "throat: blend of white and gray feathers, subtly defined" + ], + "pearl kite": [ + "back: narrow, grayish-brown feathers", + "beak: small, sharp, black hooked shape", + "belly: white feathers with light barring", + "breast: white feathers with narrow gray stripes", + "crown: dark gray feathers with a streaked pattern", + "forehead: grayish-white with fine black stripes", + "eyes: large, dark, round, with a thin white eyering", + "legs: slender, pale yellow with sharp, black talons", + "wings: elongated, grayish-brown with black-tipped feathers", + "nape: dark gray feathers with light streaks", + "tail: long, black with narrow white bands", + "throat: white with subtle gray streaks" + ], + "pearl breasted swallow": [ + "back: sleek, pearly-gray feathers", + "beak: short, thin, and pointed", + "belly: soft, light-grey plumage", + "breast: iridescent pearl-white feathers", + "crown: dark, glossy head feathers", + "forehead: smooth transition into crown", + "eyes: small, black, and alert", + "legs: slender, strong limbs with small talons", + "wings: long, pointed, and built for fast flight", + "nape: pearly-gray, blending with crown and back", + "tail: slightly forked with contrasting white edges", + "throat: gleaming pearl-white, connecting to breast" + ], + "pearl spotted owlet": [ + "back: light, brownish-grey feathers with white speckles", + "beak: small, sharp, and greyish-black", + "belly: off-white with faint brownish-grey spots", + "breast: tawny brown with white speckles", + "crown: pale brown with whitish streaks", + "forehead: brown, merging into the crown", + "eyes: round, large, and yellow", + "legs: feathered, short, and light brown", + "wings: brownish-grey with white and ochre spots and bars", + "nape: tawny brown with small white spots", + "tail: dark brown with lighter bars and white markings", + "throat: white with light brown markings" + ], + "pearled treerunner": [ + "back: olive-green with slight streaks", + "beak: thin, pointed, and dark", + "belly: whitish gray with black streaks", + "breast: cream-colored with black speckles", + "crown: deep chestnut with white streaks", + "forehead: olive-green, blending into crown", + "eyes: small, round, black, and alert", + "legs: sturdy, grayish-brown, and slender", + "wings: olive-green with white spots on flight feathers", + "nape: olive-green, fading to chestnut", + "tail: long, dark, with white tips on outer feathers", + "throat: white with black streaks" + ], + "pearly antshrike": [ + "back: olive-green feathers covering the upper body", + "beak: short, curved, and black", + "belly: white or pale gray with faint streaks", + "breast: white or pale gray, may have faint streaks", + "crown: distinct black-and-white striped pattern", + "forehead: black-and-white striped pattern, continuous with the crown", + "eyes: dark with a faint white eye-ring", + "legs: slender, gray to black, and strong", + "wings: olive-green with white wing-bars", + "nape: olive-green, transitioning to the back coloration", + "tail: long, olive-green with blackish edges and white tips", + "throat: white or pale gray, part of the unstreaked underparts" + ], + "pearly parakeet": [ + "back: vibrant green feathers", + "beak: small, pale orange hook-shaped", + "belly: soft, light green plumage", + "breast: smooth, bright green feathers", + "crown: rounded, emerald head feathers", + "forehead: blue-green feathered brow", + "eyes: small, black, and bright", + "legs: slender, grayish pink", + "wings: iridescent green-blue with black stripes", + "nape: blue-tinted green feathers", + "tail: long, narrow, green-blue feathers", + "throat: yellow-green smooth plumage" + ], + "pearly bellied seedeater": [ + "back: smooth olive-green feathers", + "beak: short, pointed, hooked black beak", + "belly: light pearly grey plumage", + "breast: soft white feathers transitioning to grey", + "crown: faint streaks of grey-brown color", + "forehead: faint pale grey striations", + "eyes: small, dark beady eyes", + "legs: slender, black legs with clawed toes", + "wings: olive-green with subtle black markings", + "nape: olive-green feathers fading to grey", + "tail: short, dark feathers with faint markings", + "throat: white blending into pearly grey" + ], + "pearly breasted conebill": [ + "back: sleek, iridescent green feathers", + "beak: thin, slightly curved, black", + "belly: soft white feathers with faint streaks", + "breast: white with pearly iridescence", + "crown: vivid blue with a black stripe", + "forehead: bright blue, merging with crown", + "eyes: dark, expressive with a thin eye-ring", + "legs: slender, black with zygodactyl feet", + "wings: greenish-blue with black tips, flight-ready", + "nape: blue and green transition towards back", + "tail: long, tapering, black with greenish-blue hues", + "throat: white with a subtle blue tint" + ], + "pearly breasted cuckoo": [ + "back: soft-gray plumage", + "beak: curved and light pinkish-orange", + "belly: pearly white with faint spots", + "breast: pearly white with faint horizontal streaks", + "crown: slate-gray with a slight gloss", + "forehead: smooth, slate-gray", + "eyes: dark and expressive, surrounded by a thin white eye-ring", + "legs: long, slender, and pinkish-brown", + "wings: gray with white-tipped feathers and black-edged primaries", + "nape: slate-gray, smoothly transitioning from the crown", + "tail: long and graduated, with white tips and outer feathers", + "throat: pearly white, blending into the breast" + ], + "pearly eyed thrasher": [ + "back: olive-brown with subtle streaks", + "beak: strong, slightly curved, and dark", + "belly: pale grayish-white", + "breast: grayish-white with faint brown streaks", + "crown: dark brown with streaks", + "forehead: brown with slight streaks", + "eyes: striking pearly-white iris", + "legs: long and dark gray", + "wings: olive-brown with faint barring", + "nape: brownish with slight streaks", + "tail: long and dark brown", + "throat: pale grayish-white" + ], + "pearly vented tody tyrant": [ + "back: light olive-green, blending smoothly into the wings", + "beak: petite, slightly curved, and dark grey", + "belly: soft whitish-cream hue, fading gently towards the underparts", + "breast: delicate cream color, speckled with subtle hints of olive", + "crown: olive-green, gradually transitioning into the forehead and nape", + "forehead: unassuming light olive hue, blending seamlessly into the crown", + "eyes: beady and dark, giving the bird a sharp, keen gaze", + "legs: slim and charcoal-colored, perfectly suited for perching and hopping", + "wings: soft olive-green, faintly patterning throughout the feathers", + "nape: continuation of the crown's color, light olive-green smoothly connecting to the back", + "tail: short, slightly forked, showing off muted olive-green feathers mixed with creamy undertones", + "throat: pale cream shade, hinting at the gentle color gradient seen throughout the breast and belly" + ], + "pechora pipit": [ + "back: brownish streaked upperparts", + "beak: thin, pointed, and pale", + "belly: pale with dark streaks", + "breast: buffy-white with brown streaks", + "crown: brown with dark streaks", + "forehead: buffy-white with brown streaks", + "eyes: dark and round", + "legs: pinkish-brown", + "wings: brown with lighter edges and white wing-bars", + "nape: brown with dark streaks", + "tail: brown, long, and slender", + "throat: buffy-white with light streaks" + ], + "pectoral antwren": [ + "back: olive-brown with dark streaks", + "beak: short, pointed, blackish-grey", + "belly: light buff with a tinge of yellow", + "breast: white with faint dark streaks", + "crown: rufous-brown with black feathers", + "forehead: similar to crown, rufous-brown", + "eyes: dark brown, surrounded by pale eye-ring", + "legs: slim, greyish-brown", + "wings: blackish-brown with white wing bars", + "nape: rufous-brown, blends with the crown", + "tail: long, blackish-brown, stiff outer feathers", + "throat: white, contrasting with the breast" + ], + "pectoral sparrow": [ + "back: pale brown with darker streaks", + "beak: short, conical, and seed-cracking", + "belly: creamy white with light brown shades", + "breast: buff-colored with fine dark streaks", + "crown: rufous-brown with a broad central stripe", + "forehead: buffy or pale with a subtle dark line", + "eyes: black and beady, encircled by a pale eyering", + "legs: thin and reddish-brown", + "wings: brown with contrasting white edgings on feathers", + "nape: pale brown with darker streaks, continuing from the back", + "tail: short and brown with a slight notch", + "throat: plain and grayish-white, unmarked" + ], + "pectoral patch cisticola": [ + "back: light olive-brown color with streaks", + "beak: short and pointed, pale color", + "belly: creamy white and streaked", + "breast: buff-colored with fine streaks", + "crown: reddish-brown with dark streaks", + "forehead: light brown and smooth", + "eyes: dark and small, encircled with pale eyering", + "legs: long and slender, pale pinkish", + "wings: brownish with dark barring and white edging", + "nape: olive-brown with fine streaks", + "tail: dark brown, short and square-ended", + "throat: creamy white and smooth" + ], + "peg billed finch": [ + "back: olive-green with subtle streaks", + "beak: short and robust peg-like structure", + "belly: light brown with faint white speckles", + "breast: pale brown with fine streaks", + "crown: dark gray with a slight olive-green hue", + "forehead: gray with a touch of olive-green", + "eyes: small, dark and lively with white eye-ring", + "legs: slender, grayish-pink", + "wings: olive-green with darker flight feathers", + "nape: grayish-olive with fine streaks", + "tail: olive-brown with darker central feathers", + "throat: pale gray with light streaks" + ], + "pel fishing owl": [ + "back: dark brown plumage with contrasting white spots", + "beak: strong, hooked, blackish upper mandible with a paler lower mandible", + "belly: creamy white feathers with brown bands", + "breast: white with bold, dark brown stripes", + "crown: dark brown feathers with subtle white spots", + "forehead: dark brown feathers with a slight white border", + "eyes: large, forward-facing, dark brown", + "legs: short, well-feathered, powerful yellow legs", + "wings: broad, rounded, dark brown with faint white bands", + "nape: mottled dark brown and white feathers", + "tail: dark brown with white bands, medium-length, broad at the base", + "throat: white feathers with light brown streaks" + ], + "pelzeln tody tyrant": [ + "back: vibrant green feathers with a slight sheen", + "beak: short, black, and slightly curved", + "belly: pale yellow with a touch of gray", + "breast: light olive color, transitioning to the yellow belly", + "crown: smooth, green feathers similar to the back", + "forehead: bright yellow smoothly transitioning to the green crown", + "eyes: small and black with white eye-ring", + "legs: medium length, grayish-blue", + "wings: green with dark gray, well-defined flight feathers", + "nape: same green as the back, seamlessly transitioning from the crown", + "tail: relatively short, covered in green feathers with dark gray tips", + "throat: pale yellow, blending into the breast color" + ], + "pemba green pigeon": [ + "back: vibrant green feathers covering the upper body", + "beak: short, slightly curved, light grey or whitish beak", + "belly: pale greenish-yellow feathers on the lower abdomen", + "breast: lighter green feathers blending to yellowish-green", + "crown: bright green feathers forming a smooth, rounded crest", + "forehead: small, brightly colored green forehead feathers", + "eyes: dark, beady eyes with a thin skin-colored ring around them", + "legs: short, strong greyish-pink legs with scaly texture", + "wings: striking green feathers with occasional splashes of yellow", + "nape: richly colored green feathers that transition from the crown", + "tail: long, broad feathers with a mix of green and yellow shades", + "throat: soft, pale green feathers subtly contrasted with the breast" + ], + "pemba scops owl": [ + "back: grayish-brown feathers with streaks and bars", + "beak: short, hooked, blackish-gray", + "belly: light grayish-brown with fine vertical streaks", + "breast: pale gray with dark streaks and bars", + "crown: grayish-brown with bold streaks and bars", + "forehead: pale grayish-brown with fine streaks", + "eyes: large, bright yellow with black pupils", + "legs: feathered, grayish-brown with sharp talons", + "wings: rounded, grayish-brown with dark bars", + "nape: grayish-brown with fine streaks and bars", + "tail: short, grayish-brown with dark horizontal bars", + "throat: pale grayish-brown with fine vertical streaks" + ], + "pemba sunbird": [ + "back: iridescent green plumage", + "beak: long, curved, black", + "belly: vibrant yellow feathers", + "breast: bright yellow plumage", + "crown: metallic green with a purple sheen", + "forehead: shimmering green feathers", + "eyes: small, dark, and alert", + "legs: slender, grey, and agile", + "wings: iridescent green with black tips", + "nape: greenish-blue feathers", + "tail: forked and elongated, green and black", + "throat: brilliant golden-yellow color" + ], + "pemba white eye": [ + "back: olive-green feathers", + "beak: slender and curved, black", + "belly: pale yellow-white", + "breast: grayish-white", + "crown: yellow-greenish", + "forehead: bright yellow", + "eyes: distinct white eye ring", + "legs: grayish-blue", + "wings: green with pale edges", + "nape: yellow-green", + "tail: olive-green, short", + "throat: pale gray" + ], + "penan bulbul": [ + "back: olive-brown feathers with a gentle sheen", + "beak: short and sharp, dark gray", + "belly: creamy-white with a hint of yellow", + "breast: white fading to soft yellow", + "crown: dark gray, slightly raised crest", + "forehead: olive-brown, blending with the crown", + "eyes: surrounded by thin, white eye-ring", + "legs: grayish-blue and slender", + "wings: olive-brown with a white streak along edges", + "nape: olive-brown, transitioning to gray of the crown", + "tail: dark brown with a white outer edge", + "throat: white, leading to the breast area" + ], + "pennant winged nightjar": [ + "back: dark brown with bold white spots", + "beak: short, straight, and black", + "belly: light brown with fine black markings", + "breast: rich brown with bold white streaks", + "crown: dark brown with small white spots", + "forehead: light brown with black bars", + "eyes: large and dark, positioned on the sides of the head", + "legs: short, feathered, and grayish-brown", + "wings: long and pointed, with distinctive white wing patches", + "nape: dark brown with fine white streaks", + "tail: short, squared, and dark brown with white markings", + "throat: light brown with faint black bars" + ], + "pere david laughingthrush": [ + "back: rich-chestnut colored with dark streaks", + "beak: short, stout, and black", + "belly: pale gray with dark streaks", + "breast: grayish-white with distinctive dark barring", + "crown: reddish-brown with black streaking", + "forehead: reddish-brown with black streaking", + "eyes: dark-brown surrounded by pale eye-ring", + "legs: strong, leaden-gray", + "wings: chestnut-brown with dark tips", + "nape: reddish-brown with black streaking", + "tail: long, chestnut-brown with white at the tip", + "throat: grayish-white with dark bars" + ], + "pere david snowfinch": [ + "back: dark grey feathers with slight brown highlights", + "beak: short, sharp, black curved beak", + "belly: white feathers with small grey speckles", + "breast: pale grey with some darker spots", + "crown: dark grey, slightly-crest-shaped feathers", + "forehead: lighter grey gradually fading into the darker crown", + "eyes: small, dark, round and alert-looking", + "legs: thin, black with strong scale-like texture", + "wings: dark grey to black with brownish edges and white markings", + "nape: dark grey feathers transitioning to lighter grey on the back", + "tail: long and dark with white edges and black central feathers", + "throat: white feathers contrasting with the grey breast" + ], + "pere david tit": [ + "back: olive-green feathers, slightly mottled", + "beak: small, dark-grey conical shape", + "belly: creamy yellow, hint of pale stripes", + "breast: soft yellow, some grey streaks", + "crown: olive-grey, faint black stripes", + "forehead: muted yellow, subtle streaks", + "eyes: bright, circular, black bead-like", + "legs: delicate, grey-blue, thin", + "wings: olive-green, pale wing bars", + "nape: olive-grey, sporadic black streaks", + "tail: olive-green, faint pale band", + "throat: soft yellow, light grey stripes" + ], + "perija antpitta": [ + "back: olive-brown with darker streaks", + "beak: short, straight, and pale", + "belly: creamy white or pale yellow", + "breast: grayish-brown with faint streaks", + "crown: dark gray with small rufous spots", + "forehead: pale gray with some spotting", + "eyes: round and dark", + "legs: long and pinkish-brown", + "wings: olive-brown with faint pale bars", + "nape: dark gray with rufous markings", + "tail: short and olive-brown with pale tips", + "throat: white with faint gray streaks" + ], + "perija brushfinch": [ + "back: olive-green feathers", + "beak: short, conical, black", + "belly: yellowish-white plumage", + "breast: greyish-blue feathers", + "crown: blueish-black cap", + "forehead: bright blue streak", + "eyes: dark, round, black", + "legs: thin, strong, grey", + "wings: olive-green with black edges", + "nape: transitioning from blueish-black to olive-green", + "tail: olive-green with black tips", + "throat: greyish-blue feathers" + ], + "perija metaltail": [ + "back: iridescent green feathers", + "beak: slender, slightly curved black", + "belly: grayish-blue plumage", + "breast: shimmering green feathers", + "crown: glossy violet-blue feathers", + "forehead: mixture of blue and green hues", + "eyes: small, black, and alert", + "legs: strong and black", + "wings: greenish-blue with iridescent sheen", + "nape: vivid blue-green plumage", + "tail: long and forked, metallic blue", + "throat: glittering greenish-blue feathers" + ], + "perija starfrontlet": [ + "back: bright turquoise-blue feathers", + "beak: long, slender, and black", + "belly: greenish-blue plumage", + "breast: vibrant blue feathers", + "crown: iridescent purple-blue crest", + "forehead: shimmering turquoise-blue color", + "eyes: small, round, and black", + "legs: short and black with strong claws", + "wings: greenish-blue, elongated feathers", + "nape: rich blue coloration", + "tail: long, green and blue feathers", + "throat: shiny, metallic blue-feathered" + ], + "perija tapaculo": [ + "back: dark bluish-gray feathers", + "beak: slim, sharp, black", + "belly: chestnut brown", + "breast: bluish-gray with white speckles", + "crown: dark bluish-gray", + "forehead: bluish-gray feathers", + "eyes: small, dark, surrounded by gray feathers", + "legs: strong, yellow-orange", + "wings: dark bluish-gray with white markings", + "nape: bluish-gray with a dark line", + "tail: short, dark, semi-fan shaped", + "throat: bluish-gray with white markings" + ], + "perija thistletail": [ + "back: olive-brown with slightly darker streaks", + "beak: slender, slightly curved, and black", + "belly: buff-colored with brown streaks", + "breast: pale gray with brown streaks", + "crown: dark rufous with subtle streaks", + "forehead: chestnut-brown with fine black streaks", + "eyes: dark brown with pale eyering", + "legs: strong, brown, with black claws", + "wings: short, rounded, olive-brown with blackish primaries", + "nape: chestnut-brown continuing from the crown", + "tail: long, thin, and brown with black barring", + "throat: pale gray with fine brown streaks" + ], + "pernambuco foliage gleaner": [ + "back: olive-brown feathers, camouflaging in foliage", + "beak: straight and short, brownish in color", + "belly: light brownish-grey, well hidden during foraging", + "breast: light olive-brown, blending with the belly", + "crown: olive-brown, slightly ruffled look", + "forehead: flat profile, similar color to crown", + "eyes: black, surrounded by a faint off-white eye-ring", + "legs: pale yellow, thin and sturdy for moving through branches", + "wings: olive-brown with faint wing bars, good for short flights", + "nape: olive-brown, continuous with crown and back", + "tail: brown with lighter tips, fan-shaped for balance", + "throat: white with fine streaks, distinguishing feature" + ], + "persian shearwater": [ + "back: brownish-gray feathers covering the dorsal side", + "beak: narrow, hooked tip for catching prey", + "belly: creamy white underside for camouflage", + "breast: white feathers transitioning to gray", + "crown: grayish-brown head feathers", + "forehead: slight slope with slightly darker feathers", + "eyes: small, dark-colored eyes for sharp vision", + "legs: strong, webbed feet for swimming and walking", + "wings: elongated, slender wings for gliding over water", + "nape: slightly darker than crown, connecting head to back", + "tail: short, square-shaped tail for steering in flight", + "throat: white feathers meeting beak, contrasting with darker head" + ], + "persian wheatear": [ + "back: grayish-brown upperparts", + "beak: short and sharp black beak", + "belly: off-white underparts", + "breast: pale cream or light gray", + "crown: grayish-brown plumage", + "forehead: short off-white supercilium", + "eyes: dark brown with white eyering", + "legs: long black legs and feet", + "wings: rounded, grayish-brown, and slightly darker than back", + "nape: grayish-brown with slight collar effect", + "tail: black and white pattern with elongated central feathers", + "throat: off-white with subtle mottling" + ], + "peruvian antpitta": [ + "back: olive-brown with faint streaks", + "beak: short and hooked, black or dark gray", + "belly: pale yellow with fine black streaks", + "breast: grayish-brown with streaks", + "crown: rufous-brown, sometimes with grayish streaks", + "forehead: rufous-brown with faint gray streaks", + "eyes: medium-sized, dark brown", + "legs: long and sturdy, pale pink or yellowish", + "wings: relatively short, olive-brown with faint barring", + "nape: rufous-brown with faint gray streaks", + "tail: short and fan-shaped, olive-brown with darker barring", + "throat: pale buff or yellowish with fine black streaks" + ], + "peruvian booby": [ + "back: dark brownish-grey feathers", + "beak: long and pointed, greyish-blue color", + "belly: white with occasional light grey markings", + "breast: white and slightly fluffy", + "crown: dark brownish-grey feathers, slightly raised", + "forehead: smooth transition to the crown, dark brownish-grey", + "eyes: sharp and dark, slightly obscured by feathers", + "legs: strong and webbed, pale grey color", + "wings: broad and elongated, dark brownish-grey feathers with white edges", + "nape: continuation of dark brownish-grey feathers from the crown", + "tail: medium length, straight with dark brownish-grey feathers", + "throat: white with light grey markings, slight feather ruffling" + ], + "peruvian diving petrel": [ + "back: dark grey with white underparts", + "beak: short, hooked, and black", + "belly: white and soft", + "breast: white with a dark grey stripe", + "crown: dark grey, almost black", + "forehead: dark grey blending with crown", + "eyes: small and round, black or dark brown", + "legs: short and strong, black or dark grey", + "wings: dark grey, bent at sharp angle for diving", + "nape: dark grey, continuous with crown color", + "tail: short and squared, dark grey", + "throat: white, contrasting with darker head color" + ], + "peruvian martin": [ + "back: dark iridescent blue-green", + "beak: black, slightly stubby", + "belly: light grayish-white", + "breast: grayish-white, fading to belly", + "crown: dark glossy blue-black", + "forehead: iridescent blue-black", + "eyes: black with white eye-ring", + "legs: black and strong", + "wings: dark blue-green with black edges", + "nape: iridescent blue-green, blending into the back", + "tail: dark blue-green with black tips", + "throat: grayish-white, similar to breast" + ], + "peruvian meadowlark": [ + "back: smooth-feathered, reddish-brown hue", + "beak: sharp, black, and pointed", + "belly: white with faint black streaks", + "breast: bright yellow-orange with black markings", + "crown: black with a reddish-brown stripe", + "forehead: white-bordered black stripe", + "eyes: dark brown with white eyering", + "legs: slender, dark gray in color", + "wings: reddish-brown with black and white streaks", + "nape: black and white patterned", + "tail: long, reddish-brown with black streaks", + "throat: white with black markings" + ], + "peruvian pelican": [ + "back: sleek grey feathers", + "beak: long and hooked, pale in color", + "belly: white feathers with subtle grey", + "breast: white plumes with soft grey edges", + "crown: dark grey to blackish feathers", + "forehead: white with pale grey markings", + "eyes: bright, piercing, and surrounded by white plumage", + "legs: short and sturdy, dark grey to black", + "wings: expansive, dark grey with white edges", + "nape: dark grey, smoothly connecting with crown and back", + "tail: elongated, dark grey feathers tapering towards tips", + "throat: white feathers blending with breast plumage" + ], + "peruvian piedtail": [ + "back: olive-green feathers covering the bird's dorsal area", + "beak: straight, elongated, and sharp-pointed black bill", + "belly: light grayish-white underparts with yellow tinges", + "breast: pale gray with a touch of yellowish-green", + "crown: olive-green feathers with darker streaks, fading to gray on the supercilium", + "forehead: grayish-white with a subtle tuft on top", + "eyes: black round eyes surrounded by a faint grayish-white ring", + "legs: sturdy and medium-length, with blackish-gray coloration", + "wings: olive-green feathers with darker edging, spanning out for flight", + "nape: olive-green feathers, transitioning from the bird's crown", + "tail: long, slim, and white-tipped, with black and white banding patterns", + "throat: pale gray with a golden hue, bordered by a yellowish-green breast" + ], + "peruvian pigeon": [ + "back: subdued gray-brown feathers", + "beak: short and stout, grayish color", + "belly: pale gray and slightly puffed out", + "breast: light purplish-gray hue with hints of iridescence", + "crown: smooth gray feathers with slightly darker shading", + "forehead: pale gray and unblemished", + "eyes: dark, rounded, and expressive with a white eye-ring", + "legs: pinkish-red and scaly, ending in strong claws", + "wings: gray-brown with a pattern of black bars and white tips", + "nape: pale gray feathers transitioning to brown on the back", + "tail: long and squared, banded with black and white markings", + "throat: whitish-gray with a smooth appearance" + ], + "peruvian pipit": [ + "back: olive-brown with faint streaks", + "beak: narrow and pointed, pale pinkish-brown", + "belly: off-white with subtle brown markings", + "breast: creamy-white with light brown streaks", + "crown: brownish-olive with a mild crest", + "forehead: smooth olive-brown", + "eyes: small and black with thin pale eyering", + "legs: long and slender, pale pinkish-brown", + "wings: olive-brown with faint, narrow stripes", + "nape: olive-brown with subtle darker streaks", + "tail: medium-length, brownish feathers with white outer edges", + "throat: whitish with light brown streaks" + ], + "peruvian plantcutter": [ + "back: olive-brown with blackish feather edges", + "beak: short, stout, and hooked", + "belly: pale yellowish-gray", + "breast: grayish-brown", + "crown: olive-brown with a buffy supercilium", + "forehead: pale buffy-brown", + "eyes: dark brown with a white eye-ring", + "legs: short and strong, dark gray", + "wings: olive-brown with blackish flight feathers", + "nape: olive-brown with a slight crest", + "tail: long and graduated, with dark brown central feathers and pale outer feathers", + "throat: pale buffy-white" + ], + "peruvian pygmy owl": [ + "back: brownish-grey plumage with white spots", + "beak: sharp, hooked, yellowish", + "belly: light cream with dark brown bars", + "breast: pale cream with brown streaks", + "crown: brownish-grey with white spots", + "forehead: pale brown with darker markings", + "eyes: large, yellow-orange, dark outline", + "legs: yellowish, well-feathered", + "wings: brownish-grey with white bands", + "nape: brownish-grey with white marks", + "tail: brown with white bars, rounded feathers", + "throat: creamy-white, some brown markings" + ], + "peruvian racket tail": [ + "back: iridescent green, upper part", + "beak: slim black, slightly curved", + "belly: white to pale grayish", + "breast: green, shimmering feathers", + "crown: deep green, rounded head", + "forehead: green, meeting beak", + "eyes: beady black, well-spaced", + "legs: slender and light pink", + "wings: strong, shimmering green", + "nape: vibrant green, connecting head and back", + "tail: long, wire-like with disc-shaped tips", + "throat: shimmering green, small area below beak" + ], + "peruvian recurvebill": [ + "back: dark brown with pale streaks", + "beak: curved, strong, silver-black", + "belly: pale, creamy-white with brown streaks", + "breast: light brown with fine streaks", + "crown: reddish-brown with a slight crest", + "forehead: flat and whitish-brown", + "eyes: dark, piercing with a white eyering", + "legs: sturdy, grayish-brown", + "wings: shorter, brown with pale streaks", + "nape: lighter reddish-brown", + "tail: long, graduated, and dark brown with pale tips", + "throat: whitish with fine brown streaks" + ], + "peruvian screech owl": [ + "back: dark brown with distinct white spots", + "beak: small, sharp, and hooked, grayish-yellow in color", + "belly: pale buff with brown streaks", + "breast: creamy-white with brown barring", + "crown: dark dusky brown with white mottling", + "forehead: speckled mix of light and dark brown", + "eyes: large, round, and yellow", + "legs: feathered, buff-colored with gray-brown bars", + "wings: brown with white spots and barred pattern", + "nape: grayish-brown with white streaks", + "tail: relatively short, brown with white markings", + "throat: pale buff and smooth" + ], + "peruvian sheartail": [ + "back: iridescent green upperparts", + "beak: long and straight black bill", + "belly: dull grayish-white underparts", + "breast: green feathers grading to white", + "crown: shining green head feathers", + "forehead: bright green plumage", + "eyes: small, round and black", + "legs: short and thin black legs", + "wings: medium-sized with dark brown feathers", + "nape: green sheen on neck area", + "tail: elongated iridescent blue tail feathers", + "throat: bright white and green patch" + ], + "peruvian sierra finch": [ + "back: earthy brown with subtle streaks", + "beak: stout, conical shape, blackish color", + "belly: pale cream to grayish hue", + "breast: grayish with thin brown streaks", + "crown: chestnut-colored and smooth", + "forehead: chestnut color, blending seamlessly with the crown", + "eyes: beady and black, encircled with a thin whitish eye-ring", + "legs: robust, dark in color", + "wings: blackish-brown with narrow white bars", + "nape: chestnut color extending from crown, slightly darker than the back", + "tail: blackish-brown, slightly forked, with white outer tips", + "throat: creamy white with faint streaks" + ], + "peruvian tern": [ + "back: smooth, slightly rounded feathers", + "beak: slender, curved, and black", + "belly: soft grey-white hue", + "breast: white feathers with minimal grey markings", + "crown: sleek black cap atop head", + "forehead: narrow white stripe above beak", + "eyes: sharp, dark, and inquisitive gaze", + "legs: slender, black-red, and long", + "wings: elongated and tapered, with dark tips", + "nape: grey transitioning into black crown", + "tail: forked, white with black outer edges", + "throat: clean white patch below beak" + ], + "peruvian thick knee": [ + "back: brownish-gray with light streaks", + "beak: long, slightly curved, and pale", + "belly: creamy white with faint spots", + "breast: light gray-brown with streaks", + "crown: brownish-gray with a pale stripe", + "forehead: pale stripe above the eye", + "eyes: large and dark with a yellow eye-ring", + "legs: long, yellow-green, and thick-kneed", + "wings: brownish-gray with light streaks and barred pattern", + "nape: brownish-gray with pale streaks", + "tail: long, brownish-gray with alternating white and dark bands", + "throat: light gray with streaks" + ], + "peruvian tyrannulet": [ + "back: olive-green with brownish tinge", + "beak: short and black, slightly curved", + "belly: pale yellow with faint streaks", + "breast: light olive-yellow, transitioning from belly", + "crown: grayish-olive, slightly darker than back", + "forehead: pale grayish-white", + "eyes: dark brown with faint white eyering", + "legs: pale pinkish-brown, slender and agile", + "wings: olive-green with two white wing bars", + "nape: grayish-olive, like the crown", + "tail: squared with olive-green base and blackish tips", + "throat: pale grayish-white, contrasting with breast" + ], + "peruvian warbling antbird": [ + "back: olive brown with light streaks", + "beak: black, slightly curved", + "belly: buff-colored, finely barred", + "breast: whitish, heavily striped", + "crown: rufous with black mottling", + "forehead: olive brown, blending with crown", + "eyes: dark with white eye-ring", + "legs: greyish-blue, relatively short and strong", + "wings: olive brown with pale-edged feathers", + "nape: olive brown, merging with back", + "tail: olive brown, long and square-tipped", + "throat: white with black streaking" + ], + "peruvian wren": [ + "back: olive-brown with blackish streaks", + "beak: thin, slightly curved, and black", + "belly: buffy-white with brownish markings", + "breast: light brown with darker spots", + "crown: chestnut-brown with black streaks", + "forehead: pale brown with fine black markings", + "eyes: dark with pale eye-ring", + "legs: long and slender with pinkish-brown color", + "wings: dark brown with white and chestnut feather tips", + "nape: olive-brown with blackish streaks", + "tail: long and blackish-brown with white tips", + "throat: white with fine black barring" + ], + "pesquet parrot": [ + "back: deep maroon feathers", + "beak: large, hooked, cream-colored", + "belly: dark red feathers", + "breast: rusty red plumage", + "crown: black feathered head", + "forehead: black feathered area above beak", + "eyes: small, black, encircled by narrow white eye-ring", + "legs: strong, grayish-blue", + "wings: red and black feathers with hints of blue", + "nape: black feathers on the back of the neck", + "tail: long, dark red feathers with black tips", + "throat: dark red and black-feathered area below beak" + ], + "peters twinspot": [ + "back: deep olive-green, with a slight shimmer", + "beak: short and conical, black in color", + "belly: tawny brown with white spots, hint of yellow", + "breast: vibrant orange-red with white speckles", + "crown: olive-green, with a concealed yellow patch", + "forehead: bright yellow, merging into the green crown", + "eyes: alert and dark, surrounded by faint white rings", + "legs: slim and grey, with well-defined scales", + "wings: olive-green, with bright red edges on the feathers", + "nape: olive-green, flowing seamlessly from the crown", + "tail: medium in length, olive-green with black and white tips", + "throat: radiant yellow, contrasting with the vibrant breast" + ], + "petit cuckooshrike": [ + "back: smooth, greenish-gray feathers", + "beak: short, black, and hooked", + "belly: creamy-white plumage", + "breast: pale grayish-green feathers", + "crown: greenish-gray with a slight crest", + "forehead: smooth greenish-gray feathers", + "eyes: small, dark brown, with a white eye-ring", + "legs: short, black, and sturdy", + "wings: greenish-gray with blackish primary feathers", + "nape: greenish-gray, blending into the crown", + "tail: long and pointed, with dark gray and white feathers", + "throat: pale grayish-green plumage" + ], + "pfrimer parakeet": [ + "back: vibrant green feathers covering the upper body", + "beak: short, curved, light-colored beak for cracking seeds", + "belly: soft, light green feathers on the lower abdomen", + "breast: brighter, yellow-green feathers on the upper chest", + "crown: bold green feathers adorning the top of the head", + "forehead: slightly lighter green feathers just above the beak", + "eyes: round, black eyes with white rings around them", + "legs: thin, gray legs with sharp claws for perching", + "wings: long, green feathers with black-tipped, flight feathers", + "nape: light green feathers at the back of the neck", + "tail: long, tapering tail feathers in green and blue shades", + "throat: pale green feathers around the base of the beak and neck" + ], + "pharaoh eagle owl": [ + "back: brownish-gray with white mottling", + "beak: black and hooked", + "belly: pale buff with dark streaks", + "breast: creamy-white with gray-brown spots", + "crown: gray-brown with black streaks", + "forehead: gray-brown with white speckles", + "eyes: piercing yellow-orange", + "legs: thick and feathered", + "wings: broad with brown and buff patterns", + "nape: brownish-gray with white spots", + "tail: banded in pale gray and brown", + "throat: pale grayish-white" + ], + "pheasant coucal": [ + "back: dark brown with black streaks", + "beak: strong, black, slightly curved", + "belly: chestnut red plumage", + "breast: dark brown with black stripes", + "crown: black, slight crest on the head", + "forehead: black, blending into the crown", + "eyes: bright yellow, surrounded by black feathers", + "legs: long, greyish-black with strong feet", + "wings: rounded, barred black and brown feathers", + "nape: dark brown, with horizontal black markings", + "tail: long, dark, barred feathers with coppery sheen", + "throat: white to pale buff, with sharp black stripes" + ], + "pheasant cuckoo": [ + "back: light brown with darker markings", + "beak: long, thin, and slightly curved", + "belly: cream-colored with faint brown markings", + "breast: buff with black spotting", + "crown: dark brown with lighter streaks", + "forehead: slightly lighter brown with faint streaks", + "eyes: prominent black with white eye-ring", + "legs: short and stout with strong toes", + "wings: brown with faint black bars", + "nape: light brown with darker streaks", + "tail: long and barred with black and white pattern", + "throat: pale buff with faint black spotting" + ], + "pheasant pigeon": [ + "back: brownish-gray feathers", + "beak: curved, sturdy, and pale pink", + "belly: pale white-gray with light spotted patterns", + "breast: muted orange-brown with dark speckles", + "crown: deep slate-blue hue", + "forehead: pale blue-gray", + "eyes: striking red-orange with a white ring", + "legs: strong, pinkish-gray with scaly texture", + "wings: long, brown-gray feathers with darker barring", + "nape: slate-blue feathers transitioning to brown", + "tail: broad black band followed by grayish-brown feathers", + "throat: pale blue-gray with possible speckles" + ], + "pheasant tailed jacana": [ + "back: golden-brown feathers with contrasting black wingtips", + "beak: long, slender, dark-colored bill", + "belly: clean white feathers with a slight yellow tint", + "breast: soft, beige-toned plumage with subtle streaks", + "crown: dark, glossy feathers with hints of green and blue", + "forehead: sleek, black feathering with a slight crest", + "eyes: bright, inquisitive eyes with white eyelids", + "legs: elongated, slender legs with large, splayed feet", + "wings: iridescent green and blue feathers with elongated design", + "nape: white feathers merging into darker plumage on the back", + "tail: striking, long, pheasant-like tail feathers with intricately patterned tips", + "throat: creamy white feathers transitioning into the beige breast area" + ], + "philby partridge": [ + "back: reddish-brown and well-camouflaged", + "beak: short and stout, orange-yellow", + "belly: creamy-white with brown markings", + "breast: buff-colored with brown streaks", + "crown: chestnut with white and black stripes", + "forehead: rust-colored with a black border", + "eyes: dark brown, surrounded by pale eyering", + "legs: strong and yellowish-orange", + "wings: short, rounded, with brown and black patterning", + "nape: chestnut with white and black stripes", + "tail: dark brown with lighter edges and a black subterminal band", + "throat: white with black side streaks" + ], + "philippine bulbul": [ + "back: olive-green feathers", + "beak: short and slightly curved", + "belly: light grayish-white", + "breast: grayish-white plumage", + "crown: dark head with slight crest", + "forehead: blackish-brown feathers", + "eyes: small, dark, and beady", + "legs: thin and dark gray", + "wings: olive-green with slight wing-bars", + "nape: same as back, olive-green", + "tail: long and olive-green with white tips", + "throat: grayish-white with faint stripe markings" + ], + "philippine bush warbler": [ + "back: olive-brown with subtle feather patterns", + "beak: short, slender, and pointed", + "belly: pale yellowish-white with faint barring", + "breast: yellowish-white, blending into the belly", + "crown: brownish with a slightly lighter center", + "forehead: light brown, continuing the crown's color", + "eyes: small, dark, and well-defined", + "legs: long, pale pinkish-gray, and strong", + "wings: olive-brown with faint feather markings", + "nape: brownish, similar in color to the crown", + "tail: olive-brown, moderately long with subtle feather patterns", + "throat: pale yellowish-white, connecting to breast and belly" + ], + "philippine cockatoo": [ + "back: vibrant white feathers", + "beak: curved, powerful white beak", + "belly: soft white plumage", + "breast: white feathers with a hint of yellow", + "crown: crest of white feathers", + "forehead: smooth white feathers", + "eyes: black, piercing eyes", + "legs: strong, grey legs", + "wings: large white wings with yellow underwing", + "nape: white feathers, flowing down the neck", + "tail: long white feathers with yellow tips", + "throat: white feathers covering a strong neck" + ], + "philippine collared dove": [ + "back: light gray-brown feathers", + "beak: short and black", + "belly: whitish-gray", + "breast: pale gray", + "crown: gray with slight bluish tint", + "forehead: light gray", + "eyes: dark brown with pale eyering", + "legs: reddish-purple", + "wings: gray-brown with black edges", + "nape: black \"collar\" marking", + "tail: long with white tips", + "throat: pale gray" + ], + "philippine coucal": [ + "back: dark brown with black streaks", + "beak: strong, black and curved", + "belly: bi-colored, with a dark reddish-brown upper part and creamy-white lower part", + "breast: reddish-brown with black streaks", + "crown: dark brown with a hint of black streaks", + "forehead: black with slight reddish-brown highlights", + "eyes: black, surrounded by a narrow white ring", + "legs: slate-gray, strong and sturdy", + "wings: long, dark brown with black streaks, and broad flight feathers", + "nape: dark brown with black streaks", + "tail: long, in a dark brown color with black streaks", + "throat: creamy white, contrasting with the reddish-brown breast" + ], + "philippine cuckoo dove": [ + "back: sleek, bronze-green feathers", + "beak: curved, slender, and dark-colored", + "belly: pale gray with pale pink undertones", + "breast: light grayish-pink hue", + "crown: soft and smooth, brownish-gray plumage", + "forehead: slightly lighter brownish-gray", + "eyes: small, round, and black", + "legs: short with dark gray-blue coloring", + "wings: long, dark brown with light brown edges", + "nape: brownish-gray blending into the crown", + "tail: lengthy, dark brown with thin white tips", + "throat: pale grayish-white, distinct from the breast" + ], + "philippine drongo cuckoo": [ + "back: sleek, dark gray feathers", + "beak: elongated, slightly curved, black", + "belly: less grayish light-brown feathers", + "breast: grayish-brown feather coverage", + "crown: dark gray feathers, slightly raised", + "forehead: smooth, dark gray feathers", + "eyes: small, round, black with white outline", + "legs: slender, black, with sharp claws", + "wings: long and pointed, dark gray feathers", + "nape: covered in dark gray feathers", + "tail: long, black, forked or fan-shaped feathers", + "throat: light grayish-brown with soft feather texture" + ], + "philippine duck": [ + "back: brownish-grey feathered", + "beak: dark grey and stout", + "belly: light grey with fine markings", + "breast: greyish-brown with faint spots", + "crown: dark brown, slightly crested", + "forehead: dark brown, transitioning from the crown", + "eyes: dark brown, medium-sized", + "legs: dark grey, webbed feet", + "wings: dark brown with greenish-blue speculum", + "nape: brownish-grey, connects to crown and back", + "tail: dark brown, medium-length", + "throat: light grey, slightly paler than breast" + ], + "philippine dwarf kingfisher": [ + "back: vibrant blue with greenish tinge", + "beak: sharp, black, and slightly hooked", + "belly: white or pale yellow", + "breast: bright orange and yellow", + "crown: iridescent blue-green", + "forehead: brilliant blue", + "eyes: dark with a thin white ring around them", + "legs: short and reddish-orange", + "wings: blue and violet feathers with white dots", + "nape: shining blue-green", + "tail: short, blue feathers with white tips", + "throat: yellow, bordered with reddish-orange" + ], + "philippine eagle owl": [ + "back: dark brown with white spots", + "beak: large, black, and hooked", + "belly: buff color with dark streaks", + "breast: pale brown with dark markings", + "crown: dark brown with distinct ear tufts", + "forehead: buff color with dark feather lines", + "eyes: large, forward-facing, and yellow-orange", + "legs: feathered with powerful talons", + "wings: dark brown with lighter buff bands", + "nape: dark brown with a white patch on the neck", + "tail: long and dark brown, with buff bands and white tips", + "throat: pale buff color with dark markings" + ], + "philippine fairy bluebird": [ + "back: vibrant blue with a slight gradient", + "beak: black, small and slightly curved", + "belly: turquoise-blue with a soft sheen", + "breast: bright cobalt blue, smooth feathers", + "crown: iridescent blue with hints of purple", + "forehead: deep blue that fades into the crown", + "eyes: black with a thin blue eyering", + "legs: dark grey with sharp claws", + "wings: brilliant blue with black accents along the edges", + "nape: shimmering blue transitioning from the crown", + "tail: long, blue with gradient black tips", + "throat: deep turquoise blending into the breast" + ], + "philippine falconet": [ + "back: sleek feathered", + "beak: sharp, black, hooked", + "belly: white, compact", + "breast: white, rounded", + "crown: dark brown, smooth", + "forehead: brown, prominent", + "eyes: large, dark, piercing", + "legs: yellow, strong, short", + "wings: powerful, elongated, dark brown", + "nape: dark brown, well-feathered", + "tail: long, slightly forked, dark brown", + "throat: white, slender" + ], + "philippine frogmouth": [ + "back: well-camouflaged brown plumage", + "beak: wide, hooked tip, greyish-yellow", + "belly: light brown or beige with dark bars", + "breast: pale brown or buff-colored feathers", + "crown: rounded and brown, streaked appearance", + "forehead: buff-colored with fine streaks", + "eyes: large, yellowish, forward-facing", + "legs: short, greyish-brown, and feathered", + "wings: long, brown and barred, broad feathers", + "nape: brown with black or dark brown streaks", + "tail: fan-shaped, brown with dark bars and white tips", + "throat: light brown or beige with fine streaks and bars" + ], + "philippine green pigeon": [ + "back: vibrant green feathers", + "beak: short, pale yellow hooked tip", + "belly: lighter greenish-yellow hue", + "breast: rich green plumage", + "crown: slightly darker green with a hint of bluish color", + "forehead: bright green similarly matching the crown", + "eyes: small, dark with a thin pale eye-ring", + "legs: reddish-orange with curved claws", + "wings: elongated, green and dark blue flight feathers", + "nape: green extending to the rear of the head", + "tail: long, tapering green and blue feathers", + "throat: lighter green transitioning to the belly" + ], + "philippine hanging parrot": [ + "back: vibrant green feathers", + "beak: small, curved, orange-red", + "belly: bright blue and green hues", + "breast: rich lime green", + "crown: deep green plumage", + "forehead: bright red feathers", + "eyes: black, alert, round", + "legs: short, light grey", + "wings: vivid green with hints of blue", + "nape: lush emerald green", + "tail: green feathers, notched ends", + "throat: intense red patch" + ], + "philippine hawk cuckoo": [ + "back: dark brown with thin white streaks", + "beak: long, hook-shaped, and dark gray", + "belly: white with brown flecks", + "breast: whitish with brownish streaks", + "crown: dark brown with a hint of reddish-brown", + "forehead: pale brown with faint streaks", + "eyes: circular, dark brown, and unassuming", + "legs: long, slender, and grayish in color", + "wings: dark brown with white-tipped feathers", + "nape: reddish-brown with faint light streaks", + "tail: long and dark brown, with white banding and white tips", + "throat: pale brown with a lighter streak down the center" + ], + "philippine hawk eagle": [ + "back: brown and slightly barred feathers", + "beak: strong, hooked, and dark grey", + "belly: off-white and faintly streaked", + "breast: white with brown streaks", + "crown: dark brown with crest feathers", + "forehead: brownish-grey and smooth feathers", + "eyes: piercing yellow with dark outline", + "legs: long, yellow, and featherless", + "wings: broad with dark brown upper feathers and light brown bars", + "nape: dark brown with a hint of grey", + "tail: long, brown, and banded with lighter hues", + "throat: off-white and lightly streaked" + ], + "philippine honey buzzard": [ + "back: deep brown feathers with a slight sheen", + "beak: sharp and hooked, yellowish with a dark tip", + "belly: pale brown with horizontal streaks", + "breast: creamy white with dark brown bars", + "crown: brown with a slight crest", + "forehead: whitish-brown with faint streaks", + "eyes: dark brown, piercing gaze", + "legs: yellow, with long, curved talons", + "wings: broad and long, brown with pale bands", + "nape: brown with pale streaks", + "tail: long and brown with wide, dark bands", + "throat: white with dark brown streaks" + ], + "philippine leaf warbler": [ + "back: olive-green plumage", + "beak: thin, pointed", + "belly: pale yellow", + "breast: light yellow with olive wash", + "crown: olive-green with a pale stripe", + "forehead: light olive-green", + "eyes: dark with a pale eye-ring", + "legs: pale pinkish-grey", + "wings: olive-green with slight yellowish edges", + "nape: olive-green", + "tail: dark olive-green, slightly forked", + "throat: yellowish-white" + ], + "philippine leafbird": [ + "back: vibrant green feathers for camouflage", + "beak: slender and curved for feeding on insects and nectar", + "belly: pale yellow to light green with some blackish streaks", + "breast: various hues of bright yellow or green", + "crown: brilliant blue or green with streaks of black", + "forehead: smooth green or yellow coloration", + "eyes: round and dark, surrounded by a thin white eye-ring", + "legs: strong yet slender, with dark brown or black color", + "wings: green and blue feathers with occasional black markings", + "nape: bright green or blue with possible black streaking", + "tail: elongated green or blue feathers with white tips or highlights", + "throat: distinctive black markings or \"necklace\" over a yellow or green base" + ], + "philippine magpie robin": [ + "back: slate gray feathers covering upper back", + "beak: short, sturdy, black beak for insect-eating", + "belly: light gray plumage with hints of white", + "breast: subtly striped gray and white feathers", + "crown: sleek, slate gray head plumage", + "forehead: smooth gray feathers transitioning into the crown", + "eyes: alert, black, beady eyes", + "legs: slim, long, strong, grayish-brown legs", + "wings: dark gray feathers with white accents along edges", + "nape: gray plumage transitioning from the crown to the back", + "tail: elongated dark gray feathers with white edges", + "throat: pale gray and white intermingled feathers" + ], + "philippine megapode": [ + "back: dark brown feathers with black streaks", + "beak: curved, strong, and sharply pointed", + "belly: dark-brown with white streaks", + "breast: rich chestnut-brown feathers", + "crown: dark gray and black with a slight crest", + "forehead: dark gray feathers", + "eyes: medium size, dark brown color", + "legs: strong, long, and featherless, adapted for digging", + "wings: rounded with barred light and dark patterns", + "nape: dark brown with lighter streaks", + "tail: long, broad, and brownish-black, featuring white tips", + "throat: pale gray with white spots" + ], + "philippine nightjar": [ + "back: dark plumage with prominent spotting", + "beak: small, hooked with a wide gape", + "belly: mottled brown with pale feather edges", + "breast: brown with black and white spotting", + "crown: brownish-gray with subtle streaks", + "forehead: slightly paler than the crown, streaked", + "eyes: large, dark brown with a wide field of vision", + "legs: short and feathered, with small talons", + "wings: long and pointed, with intricate brown patterns", + "nape: brown, blending with the color of the crown", + "tail: moderately long, slightly forked, with white bands", + "throat: pale brown with some darker mottles" + ], + "philippine oriole": [ + "back: rich-yellow feathers with contrasting black", + "beak: sturdy, black, and slightly hooked", + "belly: bright yellow with darker streaks on sides", + "breast: yellow gradient with a tinge of orange", + "crown: glossy black with yellow edging", + "forehead: yellow stripe above the eyes", + "eyes: dark brown and well-rounded", + "legs: slender, greyish-black with strong claws", + "wings: black with bold yellow bars", + "nape: bright yellow with a black collar", + "tail: long and black with yellow edges", + "throat: vibrant yellow with subtle markings" + ], + "philippine pied fantail": [ + "back: olive-brown feathers", + "beak: small, black, slightly curved", + "belly: light gray-white plumage", + "breast: grayish-white coloration", + "crown: black with white streaks", + "forehead: white stripe across the front", + "eyes: dark, beady, surrounded by white markings", + "legs: thin, dark-gray stems", + "wings: black, white edged flight feathers", + "nape: black and white striped pattern", + "tail: black and white, long, fan-shaped", + "throat: white-feathered, narrow area" + ], + "philippine pygmy woodpecker": [ + "back: olive-green with black bars", + "beak: chisel-shaped, pale gray", + "belly: white with black spots", + "breast: white with black streaks", + "crown: crimson-colored patch", + "forehead: cream with black dots", + "eyes: dark brown, encircled by white", + "legs: pale gray, strong", + "wings: black with white spots", + "nape: cream-colored with black markings", + "tail: black with white bars", + "throat: white with black speckles" + ], + "philippine scops owl": [ + "back: gray-brown with faint black streaks", + "beak: short and sharp, yellowish-gray", + "belly: soft whitish, with dark grayish streaks", + "breast: pale gray with dark barring", + "crown: gray-brown, with black-edged feathers", + "forehead: light gray and smooth", + "eyes: large, yellow-orange with a prominent black ring", + "legs: feathered, light gray with dark bands", + "wings: grayish-brown with black barring and white spots", + "nape: gray-brown, with faint black striations", + "tail: gray-brown, barred with black and white tips", + "throat: whitish, with dark grayish streaks" + ], + "philippine serpent eagle": [ + "back: dark brown with white flecks", + "beak: short, curved, and dark gray", + "belly: white with brown bars", + "breast: white with brown bars", + "crown: dark brown with white streaks", + "forehead: dark brown with white flecks", + "eyes: piercing, yellow-orange", + "legs: feathered, yellow talons", + "wings: broad, brown with white spots", + "nape: dark brown with white flecks", + "tail: long, brown with white bands", + "throat: white with brown streaks" + ], + "philippine shortwing": [ + "back: olive-brown upperparts", + "beak: small, curved black beak", + "belly: pale grey underparts", + "breast: white-tinged grey feathers", + "crown: brownish-grey crown", + "forehead: greyish-white markings", + "eyes: dark, beady eyes", + "legs: long, slender grey legs", + "wings: short, rounded brown wings", + "nape: brownish-grey nape", + "tail: short, dark brown tail", + "throat: white-striped grey throat" + ], + "philippine spinetailed swift": [ + "back: sleek dark feathers", + "beak: small and pointed", + "belly: light grayish", + "breast: smooth gray-brown", + "crown: slightly lighter shade of gray", + "forehead: dark, narrowed feathers", + "eyes: small round black dots", + "legs: short and hidden below feathers", + "wings: long, slender and aerodynamic, dark color", + "nape: grayish blend to dark", + "tail: long and forked spinetails", + "throat: pale and whitish gray" + ], + "philippine swamphen": [ + "back: dark purple-blue feathers", + "beak: strong, red, conical shape", + "belly: blackish-grey plumage", + "breast: dark purple-blue hue", + "crown: dark purple-blue feathers", + "forehead: white stripe above red beak", + "eyes: bright red with black pupils", + "legs: long, red, and sturdy", + "wings: dark purple-blue with hints of green", + "nape: dark purple-blue feathers", + "tail: short, blackish-grey feathers", + "throat: dark purple-blue plumage" + ], + "philippine swiftlet": [ + "back: sleek bluish-black feathers", + "beak: small, black, and pointed", + "belly: lighter shade of gray", + "breast: grayish-white feathers", + "crown: black glossy feathers", + "forehead: smooth black area", + "eyes: tiny, beady, black", + "legs: short, dark, and sturdy", + "wings: elongated, narrow, black", + "nape: black feathers with metallic shine", + "tail: v-shaped, sharp, and black", + "throat: light gray feathered area" + ], + "philippine trogon": [ + "back: vibrant green feathers", + "beak: yellow and sturdy", + "belly: orange-red hue", + "breast: creamy white feathers", + "crown: metallic green shine", + "forehead: iridescence green reflection", + "eyes: dark and beady", + "legs: light blue with strong claws", + "wings: green upperparts and bar-pattern feathers", + "nape: glossy blue-green feathers", + "tail: squared shape with alternating blue and white bands", + "throat: pale pinkish tone" + ], + "phoenix petrel": [ + "back: sleek grey feathers", + "beak: sharp, hooked, black tip", + "belly: pure white plumage", + "breast: soft white feathers", + "crown: grey feathers with streaked patterns", + "forehead: smooth feathered brow", + "eyes: dark, round, piercing gaze", + "legs: slender, blue-grey, webbed feet", + "wings: long, pointed, grey with black accents", + "nape: grey feathers transitioning to white", + "tail: forked, grey, and black feathers", + "throat: white, smooth plumage" + ], + "piapiac": [ + "back: glossy black feathers", + "beak: large, black and stout", + "belly: black and slightly lighter than back", + "breast: smooth black feathers", + "crown: black feathers with slight bluish sheen", + "forehead: black, blends with crown", + "eyes: small, dark and expressive", + "legs: long, dark gray, strong", + "wings: long and black with white patches", + "nape: short black feathers, relaxed against back", + "tail: long, graduated, with white outer feathers", + "throat: black feathers, blending with breast" + ], + "picazuro pigeon": [ + "back: light gray with faint streaks", + "beak: short, curved and dark gray", + "belly: pale grayish-brown with faint spots", + "breast: rosy-gray or vinaceous, blending into brown", + "crown: light gray with faint streaks", + "forehead: plain gray with lighter edges", + "eyes: bright reddish-orange surrounded by dark eyelid", + "legs: red or pinkish-red with short feathers", + "wings: dark gray with white outer edges and covert patches", + "nape: light gray with faint streaks", + "tail: dark gray with white, broad terminal band", + "throat: soft gray with pale streaks" + ], + "pictorella munia": [ + "back: sleek brownish-grey feathers", + "beak: short, stout, and silver-grey", + "belly: pale greyish-white plumage", + "breast: distinct brownish-orange barring", + "crown: greyish-brown feathers with darker streaks", + "forehead: smooth greyish-brown plumage", + "eyes: small, black, and bright", + "legs: slender, greyish-pink, with strong toes", + "wings: brownish-grey with slight barring and rounded tips", + "nape: light brownish-grey with subtle streaks", + "tail: short, brownish-grey, with faint barring", + "throat: pale greyish-white with light streaks" + ], + "picui ground dove": [ + "back: pale brown with subtle markings", + "beak: short and black", + "belly: light buff color", + "breast: pale orange-brown", + "crown: grayish-brown", + "forehead: faded brown", + "eyes: dark with pale eyering", + "legs: short and pinkish-gray", + "wings: brown with black spots", + "nape: pale gray-brown", + "tail: dark brown with white edges", + "throat: light buff color" + ], + "pied avocet": [ + "back: sleek, black and white feathers", + "beak: long, thin, and upturned", + "belly: white, rounded feathers", + "breast: white, thin feathers transitioning to black", + "crown: black mark, extending from eye area to nape", + "forehead: white, smooth curve", + "eyes: small, black, and alert", + "legs: long, thin, blue-gray", + "wings: long, black and white feathers with a distinct pattern", + "nape: black, elongated patch connecting to crown", + "tail: short, fanned out, black and white feathers", + "throat: white, smooth and curved" + ], + "pied barbet": [ + "back: black and white spotted", + "beak: short, strong, slightly curved", + "belly: cream-colored with black spots", + "breast: white and black streaked", + "crown: red forehead and yellow-topped crest", + "forehead: vivid red patch", + "eyes: small, black and beady", + "legs: sturdy, grayish-brown legs", + "wings: black with white patches and yellow edges", + "nape: yellow and black feathers", + "tail: black with white-tipped outer feathers", + "throat: black with white streaks" + ], + "pied bushchat": [ + "back: sleek black feathers", + "beak: short and sharp", + "belly: white underside", + "breast: contrasting black-and-white plumage", + "crown: black with a slightly raised shape", + "forehead: smooth black feathering", + "eyes: small and alert, black with white borders", + "legs: long and slender, pale brown", + "wings: black with white patches, short and rounded", + "nape: black feathers continuing from the crown", + "tail: black, with faint white strip at the base", + "throat: white, extending from the belly" + ], + "pied butcherbird": [ + "back: black and white feathers with distinct patterns", + "beak: sharp, hooked, and black for tearing meat", + "belly: white feathers with minimal markings", + "breast: white with a black bib-like patch", + "crown: black with soft, rounded feathering", + "forehead: white contrast against black crown", + "eyes: dark, surrounded by a faint white eye ring", + "legs: long, slender, and black for perching and walking", + "wings: black and white feathers with clear shapes", + "nape: black and white contrasting feather pattern", + "tail: long, black with white tips and rounded ends", + "throat: white, connecting to the black breast patch" + ], + "pied coucal": [ + "back: long grayish-black feathers", + "beak: short and sturdy, black in color", + "belly: white and lightly spotted", + "breast: grayish-white with patches of black", + "crown: black and glossy with slightly raised feathers", + "forehead: black feathers meeting the beak", + "eyes: reddish-brown with thin black margins", + "legs: strong and slender, dark gray", + "wings: black with white splotches, round at the tips", + "nape: black feathers transitioning from crown", + "tail: long and black, with white banding", + "throat: grayish-white and unmarked" + ], + "pied crow": [ + "back: glossy black plumage", + "beak: sturdy black bill", + "belly: snowy white feathers", + "breast: contrasting black and white plumage", + "crown: sleek black with a metallic sheen", + "forehead: smooth black contour", + "eyes: dark brown with a sharp gaze", + "legs: long black limbs", + "wings: powerful black and white flight feathers", + "nape: shiny black iridescence", + "tail: wide, fan-shaped black feathers", + "throat: white plumage transitioning to black" + ], + "pied cuckoo dove": [ + "back: sleek, grayish-brown feathers", + "beak: short, curved, blackish tip", + "belly: white with dark speckles", + "breast: light grayish-brown, with dark barring", + "crown: grayish-brown, blending with back", + "forehead: slightly lighter grayish-brown than crown", + "eyes: dark, bead-like, surrounded by gray eye-ring", + "legs: pinkish-gray, with strong claws", + "wings: dark, grayish-brown with prominent white spots", + "nape: grayish-brown, flowing into back and crown", + "tail: long, blackish-brown with white outer feathers", + "throat: white with a hint of grayish-brown" + ], + "pied cuckooshrike": [ + "back: black and white streaked feathers", + "beak: short, sharp, black hooked bills", + "belly: white with some black feathers", + "breast: white with black markings around edges", + "crown: black with white streaks", + "forehead: black with white streaks", + "eyes: dark brown with black outlines", + "legs: light grey, strong with sharp talons", + "wings: black with white patches and edges", + "nape: black with white streaks", + "tail: long, fan-like, black with white edges", + "throat: white with subtle black markings" + ], + "pied currawong": [ + "back: sleek black feathers", + "beak: strong, sharp, black", + "belly: dark grey plumage", + "breast: greyish-black feathers", + "crown: shiny black crest", + "forehead: smooth black feathers", + "eyes: piercing yellow gaze", + "legs: sturdy, dark grey, claws", + "wings: long black with white tips", + "nape: black feathers with white patch", + "tail: long, fan-shaped, black", + "throat: greyish-black, curved feathers" + ], + "pied falconet": [ + "back: sleek black plumage", + "beak: sharp, black, and hooked", + "belly: contrasting white feathers", + "breast: white with black speckles", + "crown: dark feathers with a slight crest", + "forehead: black with pronounced white stripe", + "eyes: striking yellow with a black ring", + "legs: yellow and sturdy, with sharp talons", + "wings: black and white, long and pointed", + "nape: black feathers blending with the crown", + "tail: black and white with prominent banding", + "throat: pure white, continuing to the belly" + ], + "pied goshawk": [ + "back: dark gray-blue with white feathers scattered", + "beak: strong, hooked and black", + "belly: white with thin gray-blue stripes", + "breast: white with gray-blue barring", + "crown: dark gray-blue", + "forehead: lighter gray-blue fading into the crown", + "eyes: bright yellow with a black pupil", + "legs: strong, yellow, and featherless", + "wings: dark gray-blue with white and pale gray patches", + "nape: gray-blue with thin white streaks", + "tail: gray-blue with white bands", + "throat: white with fine gray-blue streaks" + ], + "pied harrier": [ + "back: light grey feathers with black stippling", + "beak: dark, hooked and sharp for catching prey", + "belly: white and black barred plumage", + "breast: greyish-white with black streaks", + "crown: dark grey feathers with black speckling", + "forehead: lighter grey feathers blending into crown", + "eyes: large, dark, and forward-facing for binocular vision", + "legs: long, thin, and yellow with talons for grasping prey", + "wings: broad, grey, and black-tipped for agile flight", + "nape: grey with black speckles connecting to the back", + "tail: long and black-banded with white tip", + "throat: white feathers transitioning to grey on the breast" + ], + "pied heron": [ + "back: gray-blue feathers with lighter streaks", + "beak: long, sharp, and black with a yellow base", + "belly: white feathers", + "breast: white feathers with darker gray spots", + "crown: black plumage extending from the forehead", + "forehead: black feathers transition into gray-blue", + "eyes: bright yellow with a black circular pupil", + "legs: long, slender, and yellow-green", + "wings: gray-blue with white and black markings", + "nape: black feathers with a slight crest", + "tail: long and gray-blue with black and white stripes", + "throat: white feathers extending from the beak down the neck" + ], + "pied honeyeater": [ + "back: black and white streaked plumage", + "beak: slender and slightly curved, black", + "belly: white with black spots", + "breast: white with black spots and streaks", + "crown: black with white spots", + "forehead: black with a few white spots", + "eyes: dark with white eyelid edges", + "legs: black and slender", + "wings: black with white spotting and streaks", + "nape: black with white spots and streaks", + "tail: black with white outer feathers", + "throat: white with black spots" + ], + "pied imperial pigeon": [ + "back: upper body part covered in white feathers", + "beak: sturdy, slightly curved, pale in color", + "belly: white-feathered rounded underside", + "breast: fluffy white chest area", + "crown: top head part with white plumage", + "forehead: white-fronted head area above the beak", + "eyes: dark, slightly oval with pale eye-ring", + "legs: pinkish, strong with scaly texture", + "wings: wide, white-feathered with black flight feathers", + "nape: back area of the neck with white feathers", + "tail: long, white feathers with black tips and square end", + "throat: white-feathered neck area below the beak" + ], + "pied lapwing": [ + "back: black feathers with white streaks", + "beak: long, thin, and black", + "belly: white plumage", + "breast: white with black band", + "crown: black with white patch", + "forehead: white with black border", + "eyes: dark, round, with white eye-ring", + "legs: long, slender, yellowish", + "wings: black and white patterns", + "nape: black with white stripe", + "tail: short, black and white bars", + "throat: white with black outline" + ], + "pied monarch": [ + "back: black and white striped pattern", + "beak: thin and black, slightly hooked", + "belly: white with black scales", + "breast: white feathers with black scales", + "crown: black with a patch of blue", + "forehead: black with blue markings", + "eyes: black, surrounded by black feathers", + "legs: thin and black, with sharp claws", + "wings: black with white patches and blue highlights", + "nape: black with white stripes", + "tail: black with white patches, long and fan-shaped", + "throat: white with black scales" + ], + "pied oystercatcher": [ + "back: black feathers with slight iridescence", + "beak: long, straight, and orange-red", + "belly: white plumage, contrasting with black torso", + "breast: black feathers, transitioning to white belly", + "crown: black feathers extending from forehead to nape", + "forehead: black feathers, part of the bird's overall black head", + "eyes: dark, circular, surrounded by black feathers", + "legs: long, slender, orange-red in color", + "wings: black with white patches and an elongated, pointed shape", + "nape: black feathers, continuous with the bird's crown", + "tail: black feathers with white outer edges, slightly spread apart", + "throat: black plumage, leading to the white-bellied underparts" + ], + "pied puffbird": [ + "back: olive-brown feathers", + "beak: short, stout, black", + "belly: white with black streaks", + "breast: white with black streaks", + "crown: black and white striped", + "forehead: white with black streaks", + "eyes: dark, round, outlined with white", + "legs: short, gray", + "wings: olive-brown with white spots", + "nape: black and white striped", + "tail: short, olive-brown with white tip", + "throat: white with black streaks" + ], + "pied shrike babbler": [ + "back: grayish-white feathers with black stripes", + "beak: short, straight, and black", + "belly: off-white feathers", + "breast: shades of gray plumage", + "crown: black and white striped head feathers", + "forehead: white feathers above the beak", + "eyes: small, round, and brown", + "legs: thin, dark gray", + "wings: black and white feathers with patterned edges", + "nape: white and black striped feathers on the back of the neck", + "tail: long, black and white patterned feathers", + "throat: white feathers with dark gray accents" + ], + "pied stilt": [ + "back: black and white striped feathers", + "beak: long, slender, black", + "belly: white, soft feathers", + "breast: white, merging into the black back", + "crown: black, sleek feathers", + "forehead: white, contrasting with black crown", + "eyes: dark, small but alert", + "legs: lengthy, red, thin", + "wings: black and white, long and pointed", + "nape: white, bordered by black feathers", + "tail: black and white, short and fan-shaped", + "throat: white, extending to belly" + ], + "pied thrush": [ + "back: brown with black speckles", + "beak: short and dark", + "belly: pale pinkish-white", + "breast: white with black markings", + "crown: brownish-black", + "forehead: light brown", + "eyes: dark with white eye-ring", + "legs: yellowish-orange", + "wings: dark brown with white patches", + "nape: light brown", + "tail: dark brown with white tips", + "throat: white with black streaks" + ], + "pied triller": [ + "back: black and white striped pattern", + "beak: short and pointed, pale color", + "belly: creamy white feathers", + "breast: white and black patches", + "crown: black with white streaks", + "forehead: white with black markings", + "eyes: small and dark", + "legs: thin, light-colored", + "wings: black and white, with white edged feathers", + "nape: black and white streaks", + "tail: black feathers with white tips", + "throat: white with black markings" + ], + "pied water tyrant": [ + "back: black and white feathers", + "beak: short and pointed", + "belly: white plumage", + "breast: white feathers", + "crown: black head feathers", + "forehead: black plumage", + "eyes: small and black", + "legs: thin and gray", + "wings: black and white feathers", + "nape: black neck feathers", + "tail: long, black and white feathers", + "throat: white feathers" + ], + "pied wheatear": [ + "back: blackish-grey plumage", + "beak: short, pointed black bill", + "belly: white underside", + "breast: patchy black and white feathers", + "crown: black or dark brown cap", + "forehead: black plumage meets beak", + "eyes: dark, small rounded eyes", + "legs: long black legs", + "wings: black with white patches on flight feathers", + "nape: black covering the back of the neck", + "tail: mostly black with white outer feathers", + "throat: predominantly black patch" + ], + "pied crested tit tyrant": [ + "back: grayish-green feathers", + "beak: small, sharp black beak", + "belly: white with fine black streaks", + "breast: white and black flecked", + "crown: black plumage with white streaks", + "forehead: black feathers with fine white streaks", + "eyes: large, dark brown with white eye-ring", + "legs: thin, dark gray", + "wings: greenish-gray with black and white bars", + "nape: black and white striped pattern", + "tail: long, narrow black tail with white outer edges", + "throat: white with streaked black markings" + ], + "pied winged swallow": [ + "back: sleek, blue-black feathers", + "beak: small, pointed, and dark", + "belly: white and soft feathered", + "breast: greyish-white, slightly puffed", + "crown: contrasting black cap", + "forehead: white and smooth feathers", + "eyes: round, dark, and alert", + "legs: short, sturdy, and dark", + "wings: elongated, blue-black with white patches", + "nape: blue-black feathers, connecting to the crown", + "tail: forked, blue-black with white outer edges", + "throat: white feathers, blending into the breast" + ], + "pileated finch": [ + "back: olive-green feather coverage", + "beak: short, conical, and pointed", + "belly: pale yellow with faint streaks", + "breast: creamy-yellow with faint streaks", + "crown: bright red feathers", + "forehead: red to orange tint", + "eyes: black with white eye-ring", + "legs: sturdy, dark gray", + "wings: olive-green with black barred pattern", + "nape: olive-green with red touches", + "tail: long, black with white spots", + "throat: creamy-yellow with faint streaks" + ], + "pileated flycatcher": [ + "back: olive-green with slight streaking", + "beak: thin, dark, and pointed", + "belly: pale yellow with faint streaks", + "breast: light olive-green with darker streaks", + "crown: red or orange crest, prominent", + "forehead: red or orange, transitioning to the crown", + "eyes: dark brown, surrounded by white eye-ring", + "legs: grey and slender", + "wings: dark with bold white bars", + "nape: olive-green, joining the back and crown", + "tail: long and dark with noticeable white markings", + "throat: pale yellow or white, streaked with grey" + ], + "pileated parrot": [ + "back: vibrant green feathers", + "beak: robust, ivory-colored hooked beak", + "belly: bright yellow feathers", + "breast: reddish-orange plumage", + "crown: scarlet crest with elongated feathers", + "forehead: splash of vibrant red feathers blending into the crown", + "eyes: intelligent black eyes surrounded by a ring of white skin", + "legs: strong, grey-scaled legs with sharp claws", + "wings: striking green feathers with hints of red and yellow", + "nape: deep green feathers extending to the wings", + "tail: long, green feathers with red and yellow accents", + "throat: yellowish-green plumage blending into the breast" + ], + "pilotbird": [ + "back: dark brown feathers with subtle light streaks", + "beak: short, slightly curved, black or dark gray", + "belly: white or light gray with faint brown streaks", + "breast: reddish-brown with white speckles", + "crown: dark brown, slightly raised feathers", + "forehead: dark brown with lighter brown streaks", + "eyes: small and black, surrounded by grayish-brown feathers", + "legs: strong, grayish-black, with long toes and sharp claws", + "wings: dark brown with lighter brown edging", + "nape: dark brown with subtle lighter streaks", + "tail: long and brown, with darker brown bands and white tips", + "throat: white or light gray, with fine brown speckling" + ], + "pin striped tit babbler": [ + "back: striped olive-green feathers", + "beak: short and slender, pale yellow", + "belly: whitish-grey with fine dark streaks", + "breast: pale grey with subtle pin striping", + "crown: rich brown with thin white stripes", + "forehead: dark brown with delicate thin stripes", + "eyes: small, round and black", + "legs: slim and pale pinkish-grey", + "wings: olive-green with faint striping, rounded shape", + "nape: warm brown with white pin-stripes", + "tail: long and narrow, olive-brown with faint barring", + "throat: pale grey with fine pin stripes" + ], + "pin tailed green pigeon": [ + "back: vibrant green feathers with slight iridescence", + "beak: small, curved pinkish-orange beak", + "belly: lighter green with subtle yellow tinges", + "breast: bright green feathers fading to lighter green", + "crown: smooth, iridescent green", + "forehead: pale green with slight iridescence", + "eyes: small, round, and dark with white feathered surroundings", + "legs: short and pinkish-orange with scaly texture", + "wings: deep green with black flight feathers and blue-green accents", + "nape: green feathers with a slight shine", + "tail: elongated, slender black feathers with green and blue highlighting", + "throat: light green transitioning to the darker breast color" + ], + "pin tailed manakin": [ + "back: vibrant green feathers ensuring camouflage", + "beak: short, stout, and dark-colored for pecking fruits", + "belly: pale olive-green, blending with foliage", + "breast: bright red, attracting mates", + "crown: unassuming green, part of natural disguise", + "forehead: light yellow-green, showcasing expressive features", + "eyes: beady, black, and alert", + "legs: slim, strong, adept to hopping branches", + "wings: green with elongated, curved pin tail feathers", + "nape: smooth green continuation from back", + "tail: two elongated central pin feathers for agile flight and display", + "throat: bright red plumage converging with breast color" + ], + "pin tailed parrotfinch": [ + "back: vibrant green feathers", + "beak: short, stout, and red", + "belly: turquoise blue hue", + "breast: rich blue coloration", + "crown: emerald green plumage", + "forehead: brilliant red feathers", + "eyes: dark, round, and alert", + "legs: sturdy with grayish color", + "wings: green, solid flight feathers", + "nape: luminous green feathers", + "tail: elongated, red-tipped pin feathers", + "throat: bright red plumage" + ], + "pin tailed sandgrouse": [ + "back: mottled brown feathers with hints of gray", + "beak: short, thick, and conical, dark gray in color", + "belly: light buff with dark brown barring", + "breast: warm sand-colored with fine brown speckles", + "crown: grayish-brown with faint streaks", + "forehead: light buff merging into the grey crown", + "eyes: dark, round, and well-set, surrounded by buff feathering", + "legs: short, feathered, with strong dark gray feet", + "wings: long, pointed, with dark gray to brown primaries and pale buff secondaries", + "nape: mottled brown transitioning from the crown to the back", + "tail: long and pointed, predominantly brown with alternating dark and light bars", + "throat: pale buff, contrasting with the darker breast feathers" + ], + "pin tailed snipe": [ + "back: brownish-gray with dark streaks", + "beak: long, slender, dark-colored", + "belly: white with brown streaks", + "breast: vertically striped brown-and-white", + "crown: dark brown with lighter stripes", + "forehead: broad white stripe", + "eyes: dark, beady, encircled by white", + "legs: long, yellow-green", + "wings: dark brown with lighter spots", + "nape: brown with faint stripes", + "tail: pointed with white and brown bands", + "throat: white with brown streaks" + ], + "pin tailed whydah": [ + "back: vibrant black with subtle green sheen", + "beak: short, conical, and pale gray", + "belly: sleek white feathers", + "breast: striking white plumage", + "crown: black with a slight iridescent shine", + "forehead: glossy black plumage", + "eyes: dark, expressive with a white ring", + "legs: slender, grayish-black", + "wings: black with contrasting white edges", + "nape: shimmering black feathers", + "tail: elongated, thin, black streamers", + "throat: contrasting white with black border" + ], + "pincoya storm petrel": [ + "back: sleek, dark gray feathers", + "beak: sharp, hooked, black", + "belly: white, slightly fluffy feathers", + "breast: white with gray edges", + "crown: dark gray, evenly feathered", + "forehead: smooth, gray plumage", + "eyes: small, dark, expressive", + "legs: slender, yellowish, webbed feet", + "wings: long, narrow, dark gray", + "nape: curved, dark gray feathers", + "tail: forked, dark gray feathers", + "throat: white, soft feathering" + ], + "pine bunting": [ + "back: brownish-gray with white streaks", + "beak: short, stout, and conical", + "belly: pale white to creamy", + "breast: buffy-yellow with dark streaks", + "crown: chestnut-brown with black border", + "forehead: yellowish-brown", + "eyes: dark, beady, and encircled with white", + "legs: sturdy and reddish-brown", + "wings: dark brown with white bars", + "nape: chestnut-brown with black border", + "tail: brown with white edges", + "throat: pale white to creamy" + ], + "pine flycatcher": [ + "back: olive-green feathers", + "beak: slim, pointed, black", + "belly: pale yellow", + "breast: light olive-yellow", + "crown: greenish-yellow", + "forehead: greenish-yellow", + "eyes: beady, dark", + "legs: grayish-black, thin", + "wings: olive-green, long", + "nape: greenish-yellow", + "tail: medium length, olive-green", + "throat: pale yellowish-white" + ], + "pink cockatoo": [ + "back: smooth, feathered pink", + "beak: robust, off-white curve", + "belly: soft, light pink feathers", + "breast: rosy-pink, feathery plumage", + "crown: elongated, pink crest feathers", + "forehead: vibrant pink feathers", + "eyes: expressive, dark beady orbs", + "legs: sturdy, grey-brown limbs", + "wings: wide, pink-feathered span", + "nape: rosy, curved neck", + "tail: long, rose-colored feathers", + "throat: gentle, pinkish hue" + ], + "pink pigeon": [ + "back: soft pinkish-gray feathers", + "beak: short and slightly curved, pale pink", + "belly: light pinkish-white plumage", + "breast: delicate pink feathers", + "crown: smooth pinkish-gray top of head", + "forehead: subtly lighter pink above the beak", + "eyes: dark and round, surrounded by pale pink skin", + "legs: long and slender, pinkish-gray", + "wings: pinkish-gray with darker flight feathers", + "nape: pale pinkish-gray just below the head", + "tail: pinkish-gray feathers with dark tips", + "throat: soft pinkish-white plumage" + ], + "pink backed pelican": [ + "back: light pink feathers with a gentle curve", + "beak: long, hooked, and pale yellow", + "belly: white soft feathers", + "breast: flushed pinkish plumage", + "crown: rounded greyish head feathers", + "forehead: smooth and flat with light grey plumage", + "eyes: small, round, and dark brown", + "legs: short, sturdy, and webbed", + "wings: broad and pinkish-grey with black tips", + "nape: long and curved with greyish-pink feathers", + "tail: short and pointed with mixed pink and grey feathers", + "throat: soft white feathers extending to breast" + ], + "pink bellied imperial pigeon": [ + "back: soft pinkish-grey feathers", + "beak: short, curved, pale yellow", + "belly: light pink hue, blending into grey", + "breast: rosy pink feathers, gradually fading out", + "crown: smooth, pastel pinkish-grey", + "forehead: pale pink, merging with crown", + "eyes: small, round, black with thin white outlines", + "legs: scaly, red or pinkish hues, ending in sharp claws", + "wings: pinkish-grey with darker flight feathers", + "nape: delicate pinkish-grey plumage", + "tail: long, grey feathers with lighter edges", + "throat: subtle pinkish hue, matching body coloration" + ], + "pink billed lark": [ + "back: subtle brownish-gray feathers", + "beak: delicate pink bill", + "belly: soft, pale underbelly", + "breast: light buff-colored feathers", + "crown: smooth, brownish-gray crest", + "forehead: slightly paler brownish-gray", + "eyes: small, black, and beady", + "legs: thin, pinkish-gray", + "wings: brownish-gray with faint streaks", + "nape: brownish-gray with a hint of buff", + "tail: elongated, brownish-gray feathers with white outer tips", + "throat: pale buff hue" + ], + "pink billed parrotfinch": [ + "back: vibrant green feathers, slightly darker shade than wings", + "beak: strong, short pink beak for cracking seeds", + "belly: light green colored soft feathers", + "breast: bright green plumage with a hint of blue", + "crown: green feathers transitioning to blue on top of the head", + "forehead: mix of blue and green feathers above the beak", + "eyes: dark, round eyes with a white ring surrounding them", + "legs: sturdy grey legs with sharp claws for perching", + "wings: bright green with a slight blue tinge, strong feathers for swift flight", + "nape: greenish-blue feathers at the back of the neck", + "tail: long blue-green tail feathers for balance and control in flight", + "throat: light green feathers, slightly paler than the breast" + ], + "pink breasted lark": [ + "back: soft brown feathers with white streaks", + "beak: slender, black, curved tip", + "belly: pale pinkish-white with light speckling", + "breast: delicate, rosy pink hue", + "crown: mottled brown with subtle streaks", + "forehead: light brown fading to white", + "eyes: dark, round, bead-like", + "legs: slender, gray, scaly texture", + "wings: brownish with white and black patterns", + "nape: white streaked with brown", + "tail: long, fan-shaped, light brown with dark bands", + "throat: creamy white with faint markings" + ], + "pink browed rosefinch": [ + "back: vibrant olive green", + "beak: short, conical, and pale pinkish", + "belly: off-white with a hint of pink", + "breast: rosy pink hue", + "crown: reddish-brown", + "forehead: pinkish-red feathers", + "eyes: small with black pupils and white eye-ring", + "legs: sturdy and light pink", + "wings: brownish with pinkish-red highlights", + "nape: olive green", + "tail: brownish-red with a slight fork", + "throat: rosy pink feathers" + ], + "pink eared duck": [ + "back: dark brown with elongated pink feathers", + "beak: short, light gray with a unique shovel shape", + "belly: pale grayish-white with fine speckling", + "breast: light brown with delicate feather patterns", + "crown: dark brown with a slight crest", + "forehead: creamy white with a subtle curve to the beak", + "eyes: small, black, and well-defined", + "legs: short, grayish-blue, and partially hidden by plumage", + "wings: brown and white with pink highlights on coverts", + "nape: dark brown, merging into the crown", + "tail: short, fan-shaped, and dark brown", + "throat: creamy white with a contrasting sharp boundary to breast" + ], + "pink footed goose": [ + "back: slate-grey feathers converging symmetrically", + "beak: short, stout, and pale pinkish-orange", + "belly: off-white with slight grey-brown mottling", + "breast: lightly streaked grey-brown with a pink hue", + "crown: smooth and rounded, greyish-brown", + "forehead: slightly paler grey-brown than the crown", + "eyes: small and dark, with a gentle expression", + "legs: short and sturdy, bright pinkish-orange", + "wings: long and strong, grey-brown with white-edged feathers", + "nape: continuous grey-brown from the crown, with lighter streaks", + "tail: short and fan-shaped, with dark bands and white-tipped feathers", + "throat: unblemished white, contrasting with the breast" + ], + "pink footed puffback": [ + "back: pale brown with subtle white markings", + "beak: short, black, and sturdy", + "belly: off-white with occasional light streaks", + "breast: delicate off-white transitioning from the belly", + "crown: rusty brown with slight crest", + "forehead: smooth, pale brown blending into the crown", + "eyes: small, black, and alert", + "legs: pinkish hue with dark claws", + "wings: pale brown featuring white accents", + "nape: light brown blending into the back and crown", + "tail: pale brown and short with white edges", + "throat: soft off-white with minimal streaks" + ], + "pink footed shearwater": [ + "back: light grey with darker grey speckles", + "beak: lengthy, hooked, dark grey", + "belly: white with grey tinges", + "breast: white, feathery, and fluffy", + "crown: dark grey with light streaks", + "forehead: lighter grey, merging into the crown", + "eyes: small, dark, and lively", + "legs: pink-hued webbed feet", + "wings: broad, grey-black with white underparts", + "nape: grey with light streaks, connecting to the back", + "tail: long, thin, and dark grey", + "throat: white, meeting the breast and belly" + ], + "pink headed fruit dove": [ + "back: vibrant green feathers with a pinkish hue", + "beak: short, curved, and light gray", + "belly: creamy white with a soft pink tint", + "breast: rich, rosy pink feathers", + "crown: bright pink plumage fading to white", + "forehead: pale pink, merging with the crown", + "eyes: dark with a thin, gray-blue eye-ring", + "legs: short, with grayish-blue scales", + "wings: green with dark blue and yellow accents", + "nape: pinkish feathers transitioning to green", + "tail: long, greenish-blue feathers, with yellow tips", + "throat: delicate, pale pink feathers" + ], + "pink headed imperial pigeon": [ + "back: soft, pinkish-gray feathers", + "beak: short, hooked, pale gray", + "belly: light pink, smooth plumage", + "breast: rosy pink, slightly puffed", + "crown: vibrant pink, rounded crest", + "forehead: bright pink, smooth feathers", + "eyes: dark, round, surrounded by thin gray ring", + "legs: short, pale gray, scaly", + "wings: pinkish-gray, broad, rounded tips", + "nape: soft pink, descending into gray", + "tail: grayish-pink, fan-shaped, medium length", + "throat: delicate pink, smooth feathers" + ], + "pink headed warbler": [ + "back: vibrant reddish-pink feathers", + "beak: small, thin, and black", + "belly: bright red with light streaks", + "breast: rich red with faint stripes", + "crown: deep pink head cap", + "forehead: gradient pink and red feathers", + "eyes: black and beady, surrounded by white eye rings", + "legs: thin and grayish-brown", + "wings: reddish-pink with black and white outlines", + "nape: pinkish-red feathers with faint streaks", + "tail: black and red with distinct white spots", + "throat: bright red with light feather accents" + ], + "pink legged graveteiro": [ + "back: vibrant green feathered coat", + "beak: slender, slightly curved bill", + "belly: pale yellow feathered underbelly", + "breast: light-greenish yellow plumage", + "crown: green-colored feathery crest", + "forehead: bright green feathered area", + "eyes: round, dark, and expressive", + "legs: pink-toned tall and thin stems", + "wings: splendid green feathers with hints of blue", + "nape: green plumes transitioning to neck", + "tail: elongated forked emerald feathers", + "throat: pale yellow feathery covering" + ], + "pink necked green pigeon": [ + "back: vibrant green feathers", + "beak: short, curved, pale yellow", + "belly: soft grayish-white", + "breast: pinkish-orange hue", + "crown: bright green cap", + "forehead: vivid light green", + "eyes: black with thin white eyering", + "legs: grayish-brown, strong", + "wings: blue-green with contrasting black tips", + "nape: gradient of pink to green", + "tail: dark blue-green with white edges", + "throat: pale pink, slightly iridescent" + ], + "pink rumped rosefinch": [ + "back: deep pink feathers shimmering in sunlight", + "beak: sharp, pointed blackish beak for picking seeds", + "belly: lighter pink plumage with white highlights", + "breast: rosy pink feathers transitioning to the white belly", + "crown: vibrant pink crest atop the head", + "forehead: smooth pink feathers extending from the base of the beak", + "eyes: dark, small, and watchful set in pink feathered surroundings", + "legs: strong, grayish legs supporting its lightweight frame", + "wings: deep pink wings with contrasting white stripes and dark edges", + "nape: soft feathers cascading down the back of the neck", + "tail: long, black tail feathers with white accents for proper balance", + "throat: gentle pink melding into the breast and belly plumage" + ], + "pink spotted fruit dove": [ + "back: light green, spotted with pink", + "beak: short, curved, grayish color", + "belly: light pink, speckled with darker pink spots", + "breast: light pink, subtle spots", + "crown: vivid pink, soft feathered", + "forehead: pale pink, smooth feathers", + "eyes: dark, round, expressive", + "legs: short, gray, scaly texture", + "wings: greenish-brown, pink spotted, rounded tips", + "nape: light-colored, pink accentuation", + "tail: long, greenish-brown, pink spots, distinct feathers", + "throat: pale pink, soft, smooth feathers" + ], + "pink throated becard": [ + "back: light brownish-grey feathers", + "beak: short, hooked, black", + "belly: pale white with pinkish hue", + "breast: light greyish-pink plumage", + "crown: dark grey with subtle crest", + "forehead: blending from dark grey to light grey", + "eyes: round, small, and black", + "legs: thin, dark grey, and sturdy", + "wings: brownish-grey with defined feather patterns", + "nape: grayish-brown transitioning to lighter hues", + "tail: long and slightly forked, greyish-brown", + "throat: soft and delicate pink hue" + ], + "pink throated brilliant": [ + "back: vibrant green feathers", + "beak: slender, black, slightly curved", + "belly: lighter shade of pink, soft feathers", + "breast: bright pink, eye-catching", + "crown: emerald green, iridescent", + "forehead: continuation of the green crown", + "eyes: round, black, curious gaze", + "legs: gray, strong, slender", + "wings: green and pink feathers, sleek", + "nape: brilliantly green, connects to crown", + "tail: elongated, green and pink feathers", + "throat: deep pink, smooth texture" + ], + "pink throated twinspot": [ + "back: olive-green with brown speckles", + "beak: short and black", + "belly: pale pinkish-white", + "breast: bright pinkish-red", + "crown: rich chestnut-brown", + "forehead: reddish-brown", + "eyes: black with white eye-ring", + "legs: slender and pinkish-grey", + "wings: brownish-black with white spots", + "nape: chestnut-brown", + "tail: long and dark brown with white spots", + "throat: vibrant pink" + ], + "pinnated bittern": [ + "back: greenish-brown with dark streaks", + "beak: long, pointy, and yellowish", + "belly: pale buff with brownish spots", + "breast: tawny-orange with dark streaks", + "crown: brown with long feathery crest", + "forehead: greenish-yellow with fine dark lines", + "eyes: yellow-orange with black surrounding", + "legs: greenish-yellow, long and slender", + "wings: greenish-brown with a fine stripe pattern", + "nape: dark brown with a black stripe", + "tail: brown with darker bands and white spots", + "throat: pale buff with brownish mottling" + ], + "pinon imperial pigeon": [ + "back: pale gray-blue feathers", + "beak: short, light-colored curved beak", + "belly: creamy white plumage", + "breast: white and soft feathers", + "crown: smooth slate gray feathers", + "forehead: light gray-blue coloration", + "eyes: small, dark and round", + "legs: short, red scaly legs", + "wings: strong, broad wings with gray-blue and white markings", + "nape: slate gray plumage, blending with crown", + "tail: medium length, squared tail with white and gray-blue feathers", + "throat: white, slightly ruffled feathers" + ], + "pinsker hawk eagle": [ + "back: dark brown feathers with slight white streaks", + "beak: strong, hooked, and black", + "belly: creamy white with scattered brown markings", + "breast: creamy white with pale brown streaks", + "crown: dark brown feathers with lighter edges", + "forehead: slightly lighter brown than the crown", + "eyes: sharp, piercing, and yellow", + "legs: strong, feathered, and yellowish", + "wings: long, broad, and brown with white patches", + "nape: dark brown with paler streaks", + "tail: long, brown with horizontal white bands", + "throat: creamy white, lightly streaked with pale brown" + ], + "pinto spinetail": [ + "back: dark brown streaked with white", + "beak: small and sharp", + "belly: pale brownish-grey", + "breast: also pale brownish-grey", + "crown: brown with white streaks", + "forehead: dark brown", + "eyes: small and black", + "legs: slender with sharp claws", + "wings: brown with white markings", + "nape: brownish-grey", + "tail: long and brown with white tips", + "throat: pale grey" + ], + "pinyon jay": [ + "back: sleek blue-gray feathers", + "beak: short, strong black beak", + "belly: light grayish-blue underside", + "breast: smooth blue-gray plumage", + "crown: rounded blue-gray crest", + "forehead: bluish-gray feathers", + "eyes: inquisitive, black eyes", + "legs: black, slender legs", + "wings: broad, blue-gray wings", + "nape: blue-gray feathers at the back of the neck", + "tail: long, straight blue-gray tail feathers", + "throat: slightly lighter bluish-gray plumage" + ], + "piping bellbird": [ + "back: olive-green feathers with a sturdy build", + "beak: straight and strong, light grey color", + "belly: lighter olive-green with paler streaks", + "breast: pale olive-green feathers with minimal markings", + "crown: smooth olive-green plumage, slightly darker than back", + "forehead: light olive-green feathers meeting the beak", + "eyes: small and dark, nestled in olive-green feathers", + "legs: short and stout with greyish-brown color", + "wings: olive-green with darker flight feathers and visible wing bars", + "nape: darker shade of green connecting the crown and back", + "tail: short and square, olive-green with darker tips", + "throat: creamy-white, contrasting belly and breast color" + ], + "piping cisticola": [ + "back: light brown with streaks", + "beak: short, thin, and pointed", + "belly: white or pale yellow", + "breast: buffs-yellow with faint streaks", + "crown: golden-brown with dark streaks", + "forehead: pale with fine streaks", + "eyes: dark with white eye-ring", + "legs: slender with dark color", + "wings: brown with pale fringes", + "nape: golden-brown with dark streaks", + "tail: brown, fan-shaped, and white-tipped", + "throat: white or pale yellow" + ], + "piping crow": [ + "back: sleek dark feathers", + "beak: short, sharp black beak", + "belly: light grey underside", + "breast: dark grey plumage", + "crown: glossy black head", + "forehead: smooth black feathers", + "eyes: bright intelligent gaze", + "legs: strong, black legs", + "wings: pointed dark grey feathers", + "nape: black plumage with slight sheen", + "tail: long black tail feathers", + "throat: dark grey or black feathers" + ], + "piping hornbill": [ + "back: sleek, dark-feathered curve", + "beak: long, curved with a horn-like casque", + "belly: soft, pale gray feathering", + "breast: grayish-white plumage, with darker feathers near wings", + "crown: ebony-feathered crest", + "forehead: smooth, dark feathers transition to casque", + "eyes: piercing, bright yellow with dark pupils", + "legs: strong, gray-clad limbs with zygodactyl toes", + "wings: broad, black feathered with white tips", + "nape: gradation from dark to light gray feathers", + "tail: elongated, black feathers tipped in white", + "throat: pale gray plumage connecting to breast and belly" + ], + "pipipi": [ + "back: sleek, olive-green feathers", + "beak: small, sharp, and curved", + "belly: light, cream-colored feathers", + "breast: pale-yellowish hues", + "crown: defined, deep russet stripe", + "forehead: light olive-green hues", + "eyes: small, curious, and dark", + "legs: delicate, slender, and twig-like", + "wings: intricately patterned, olive-green feathers", + "nape: olive-green hues fading to russet", + "tail: elongated, rounded, olive-green feathers", + "throat: pale, creamy-white feathers" + ], + "piratic flycatcher": [ + "back: olive-brown feathers", + "beak: short, black and hooked", + "belly: pale-yellow plumage", + "breast: light olive-gray", + "crown: prominent black crest", + "forehead: black feathers", + "eyes: dark, circular, and alert", + "legs: long and thin, grayish-black", + "wings: olive-brown with yellow edges", + "nape: olive-brown plumage", + "tail: long, black, and slightly forked", + "throat: pale-grayish white" + ], + "pirre chlorospingus": [ + "back: vibrant green feathers", + "beak: short, dark, and conical", + "belly: pale yellow with slight gray hue", + "breast: pale yellowish-green", + "crown: bright green with a slight crest", + "forehead: smooth, vibrant green", + "eyes: small, round, and dark", + "legs: thin, black, and sturdy", + "wings: green with darker flight feathers", + "nape: bright green, connecting crown to back", + "tail: long, green, with blackish outer feathers", + "throat: light green, blending into breast color" + ], + "pirre hummingbird": [ + "back: iridescent green feathers", + "beak: long, slender, and slightly curved", + "belly: soft, pale gray coloration", + "breast: vibrant turquoise-blue hue", + "crown: bright, shimmering green", + "forehead: distinctive violet-blue band", + "eyes: small, round, and black", + "legs: short with petite claws for perching", + "wings: rapid, buzzing flaps with curved tips", + "nape: green transitioning to violet-blue", + "tail: forked, with iridescent blue or purple feathers", + "throat: striking ruby-red gorget" + ], + "pirre warbler": [ + "back: olive-green feathers covering upper body", + "beak: short, sharp, pointed black beak", + "belly: light greyish-white plumage", + "breast: pale yellow to light grey feathers", + "crown: olive-green cap-like feathers on top of the head", + "forehead: slight curve between beak and crown, olive-green", + "eyes: small, black, round with thin white eye-ring", + "legs: grey, slender, and wiry with sharp claws", + "wings: olive-green with darker flight feathers", + "nape: back of the neck, olive-green feathers", + "tail: medium-length, olive-green, with rounded edges", + "throat: light greyish-white, meeting the breast plumage" + ], + "pitcairn reed warbler": [ + "back: olive-brown and streaked", + "beak: thin, pointed, and black", + "belly: light yellowish-brown", + "breast: buff-colored with faint streaks", + "crown: olive-brown with faint streaks", + "forehead: unmarked and slightly paler", + "eyes: dark with pale eyering", + "legs: long, slender and pale pink", + "wings: olive-brown with faint streaks", + "nape: olive-brown with faint streaks", + "tail: long and olive-brown with faint streaks", + "throat: pale buff-colored" + ], + "pitt island shag": [ + "back: iridescent green-blue plumage", + "beak: long, slender, and hooked", + "belly: white feathered underbelly", + "breast: white-feathered chest area", + "crown: blackish-brown head feathers", + "forehead: blackish-brown and tufted", + "eyes: bright blue-green, surrounded by a ring of bare yellow skin", + "legs: pinkish-grey with webbed, strong feet", + "wings: long, black-brown with blue-green sheen", + "nape: blackish-brown feathers, connecting head to back", + "tail: elongated and black-brown with blue-green sheen", + "throat: white feathers meeting with breast" + ], + "pitta like ground roller": [ + "back: vibrant green feathers covering the bird's upper side", + "beak: slightly curved, slender, and sharp for catching insects", + "belly: brilliant blue plumage with a lighter shade on the sides", + "breast: rich orangey-yellow feathers merging into blue towards the belly", + "crown: bright green and blue feathers forming a sleek head crest", + "forehead: vibrant green feathers transitioning into the bird's bright eyes", + "eyes: large, black, and alert, surrounded by distinctive bluish-green feathers", + "legs: strong, short, and orange-toned for hopping along the forest floor", + "wings: striking blue, green, and black feathers with a rounded shape for agile flight", + "nape: brilliant green feathers fading into the darker back feathers", + "tail: long, blue-green feathers with black bands used for balance", + "throat: brilliant yellow-orange feathers contrasting the deep blue belly" + ], + "piura chat tyrant": [ + "back: soft grey feathers", + "beak: short, sharp, black", + "belly: white under-feathers", + "breast: white feathers blending into grey", + "crown: pale grey crest", + "forehead: smooth grey feathers", + "eyes: small, dark, watchful", + "legs: slim, dark gray", + "wings: grey feathers with white stripe", + "nape: soft grey feather coverage", + "tail: short, grey plumage", + "throat: pale white feathers" + ], + "plain antvireo": [ + "back: olive-green upperparts", + "beak: short, curved, and black", + "belly: pale yellowish-white", + "breast: brighter yellowish-white", + "crown: grayish with a crest", + "forehead: slightly paler gray", + "eyes: dark with pale eye-ring", + "legs: strong, grayish-blue", + "wings: olive-green, short and rounded", + "nape: grayish-olive", + "tail: relatively long, olive-green with black bars", + "throat: pale yellow-white" + ], + "plain bush hen": [ + "back: brownish-olive feathers", + "beak: short and stout, light brown", + "belly: pale, cream-colored feathers", + "breast: buff-brown, spotted plumage", + "crown: dark brown with a slight crest", + "forehead: light brown, slightly darker at the center", + "eyes: small, dark with a white ring", + "legs: long and slim, pale yellow", + "wings: earthy-brown, rounded with a white stripe", + "nape: dark brown fading into lighter brown at the neck", + "tail: short, brown with lighter tips", + "throat: cream-colored, spotted with brown" + ], + "plain chachalaca": [ + "back: light olive brown feathers", + "beak: short, stout, and pale-colored", + "belly: grayish-white underparts", + "breast: light gray feathers", + "crown: dark brown with slight crest", + "forehead: smooth and feathered", + "eyes: dark brown with a white eye-ring", + "legs: long, slender, and grayish", + "wings: brownish with visible white edges", + "nape: darker olive-brown plumage", + "tail: long and broad with pale tips", + "throat: pale gray with thin white stripe" + ], + "plain flowerpecker": [ + "back: olive-green feathers", + "beak: short and stout", + "belly: pale yellowish-white", + "breast: grayish-white", + "crown: dark green", + "forehead: lighter green", + "eyes: small, with black pupil and white ring", + "legs: slender, gray", + "wings: olive-green, short and rounded", + "nape: greenish-gray", + "tail: olive-green, short and square-ended", + "throat: whitish-gray with a hint of green" + ], + "plain gerygone": [ + "back: light olive-green with streaks", + "beak: thin, dark, and slightly curved", + "belly: pale yellowish-white", + "breast: off-white with faint gray markings", + "crown: grayish-brown with streaks", + "forehead: light gray blending into the crown", + "eyes: dark with an off-white eye-ring", + "legs: thin and pale gray", + "wings: gray-brown with lighter fringes", + "nape: light olive-green blending into the back", + "tail: light brown with white outer feathers", + "throat: off-white with grayish feather edges" + ], + "plain greenbul": [ + "back: vibrant green feathers", + "beak: short and pointed", + "belly: pale yellowish-green", + "breast: bright green plumage", + "crown: green with subtle striations", + "forehead: smooth green feathers", + "eyes: small and dark, surrounded by light green circles", + "legs: slender and grayish", + "wings: medium-sized, green with darker flight feathers", + "nape: green with faint striations", + "tail: long and tapering, with green and dark feathers", + "throat: pale yellowish-green with a clear line separating it from the breast" + ], + "plain honeyeater": [ + "back: olive-green feathers covering the dorsal side", + "beak: slender, curved, and pointed for nectar feeding", + "belly: pale grey or off-white plumage on the lower belly", + "breast: light grey feathers transitioning from throat", + "crown: dull brown or olive-green feathers on top of head", + "forehead: slightly paler shade than crown, narrow feathers", + "eyes: dark and round, surrounded by an off-white eye-ring", + "legs: thin and slightly curved, with small sharp claws", + "wings: olive-green feathers with brown edges for flying", + "nape: transition area between crown and back, same coloration", + "tail: moderately long, olive-green feathers with brown tips", + "throat: light grey feathers with slightly streaked pattern" + ], + "plain leaf warbler": [ + "back: olive-green feathers covering dorsal side", + "beak: thin, pointed, and black", + "belly: pale yellowish-white underside", + "breast: light yellow plumage", + "crown: olive-green with a faint stripe", + "forehead: smooth, olive-green feathers", + "eyes: small, dark, encircled by thin white ring", + "legs: slender, grayish-brown", + "wings: olive-green with faint wing bars", + "nape: olive-green, continuous with back and crown", + "tail: medium length, olive-green feathers with faint barring", + "throat: pale yellow, blending into breast" + ], + "plain martin": [ + "back: blue or gray upper body feathers", + "beak: small, pointed, dark-colored", + "belly: light gray or white feathers", + "breast: pale gray or white coloring", + "crown: blue or gray feathered head", + "forehead: smooth, blue or gray feathers", + "eyes: small, dark, round", + "legs: thin, pale, slightly elongated", + "wings: sleek, blue or gray, strong feathers", + "nape: blue or gray feathers extending to the back of the head", + "tail: relatively short, blue or gray feathers with a slight fork", + "throat: pale gray or white feathers below the beak" + ], + "plain mountain finch": [ + "back: grayish-brown feathers", + "beak: short, strong, and conical", + "belly: pale grey-white underside", + "breast: light grey plumage", + "crown: dark grey feathers", + "forehead: slightly lighter grey", + "eyes: small, dark, alert", + "legs: thin, delicate, and light brown", + "wings: grayish-brown with white-edged feathers", + "nape: grey transitioning to brown", + "tail: brownish-grey, forked", + "throat: lighter grey plumage" + ], + "plain nightjar": [ + "back: soft brown and black pattern", + "beak: short and stout, slightly hooked", + "belly: beige with dark streaks", + "breast: creamy brown with dark spots", + "crown: mottled brown and gray", + "forehead: grayish-brown with fine streaks", + "eyes: large and dark, well-suited for night vision", + "legs: short with small feet", + "wings: long, pointed with brown and black patterning", + "nape: streaked beige and brown", + "tail: long, brownish-grey with subtle patterns", + "throat: pale gray with faint streaks" + ], + "plain parakeet": [ + "back: green and smooth feathers", + "beak: ivory hook-shaped", + "belly: pale green feathers", + "breast: feathery and light yellow", + "crown: green with blue tint", + "forehead: light green with narrow markings", + "eyes: dark with white rings", + "legs: slender and grey", + "wings: green and long with black flight feathers", + "nape: light green with faint blue markings", + "tail: long with green and blue-tipped feathers", + "throat: yellow feathers with black, vertical stripes" + ], + "plain pigeon": [ + "back: light grey feathers", + "beak: small, pointed, and dark", + "belly: soft, light grey plumage", + "breast: rounded, pale grey", + "crown: smooth, grey feathers", + "forehead: light grey, slightly rounded", + "eyes: small, black, and round", + "legs: thin, reddish, with scaly texture", + "wings: long, grey, with darker feathers at the tips", + "nape: grey, smoothly curved", + "tail: fan-shaped, grey feathers with dark bands", + "throat: pale grey and smooth" + ], + "plain prinia": [ + "back: light brown with thin streaks", + "beak: thin, pointed, black", + "belly: off-white or buff-colored", + "breast: pale brown with light streaks", + "crown: gray or rufous, with a dark stripe", + "forehead: smooth, merging into the crown", + "eyes: small, black, with a white eyering", + "legs: slender, gray or pinkish-gray", + "wings: brownish, with faint barring on flight feathers", + "nape: light brown, matching the back", + "tail: long, narrow, brownish with fine barring", + "throat: off-white or buff-colored, extending to the breast" + ], + "plain softtail": [ + "back: sleek, smooth feathers", + "beak: sharp, pointed edges", + "belly: soft, light plumage", + "breast: rounded and slightly puffed", + "crown: flat top with unique markings", + "forehead: slightly feathered, leading to beak", + "eyes: small, round, and alert", + "legs: slender, long with small claws", + "wings: strong, curved for flight", + "nape: where the neck meets the head, with fine feathers", + "tail: elongated, key-shaped feathers", + "throat: thin, delicate region below beak" + ], + "plain sunbird": [ + "back: vibrant greenish-blue feathers", + "beak: slender, curved black beak", + "belly: bright yellow underbelly", + "breast: yellowish-orange chest feathers", + "crown: iridescent blue-purple head", + "forehead: shimmering blue-violet brow", + "eyes: small, dark round eyes", + "legs: thin black twig-like legs", + "wings: dazzling blue-green flight feathers", + "nape: metallic purple-blue neck", + "tail: elongated, blue-green forked tail", + "throat: iridescent violet-blue patch" + ], + "plain swift": [ + "back: sleek, streamlined feathers", + "beak: short, pointed black beak", + "belly: light greyish-white underbelly", + "breast: pale grey, slightly puffed", + "crown: dark grey, slightly flattened", + "forehead: narrow, dark grey feather strip", + "eyes: small, sharp, black orbs", + "legs: short, thin, hidden by feathers", + "wings: long, slender, scythe-like shape", + "nape: dark grey, smoothly feathered", + "tail: short, square or slightly forked", + "throat: pale grey, narrowing towards beak" + ], + "plain tyrannulet": [ + "back: light olive-green feathers", + "beak: small, thin, and pointed", + "belly: pale yellow or white feathers", + "breast: subtly streaked or spotted white", + "crown: unpatterned gray or olive", + "forehead: smooth, unmarked gray or olive", + "eyes: dark with inconspicuous eye-ring", + "legs: slender and pale gray", + "wings: relatively short, rounded, with two dull wing-bars", + "nape: light olive-green feathers", + "tail: short, square-tipped and often flicked", + "throat: unmarked, light-colored feathers" + ], + "plain white eye": [ + "back: pristine white feathers", + "beak: sharp, ivory-hued", + "belly: snowy softness", + "breast: cotton-like fluffiness", + "crown: velvety white cap", + "forehead: unblemished white", + "eyes: clear, glistening gaze", + "legs: slender, alabaster stems", + "wings: wide, white plumes", + "nape: smooth, snowy curve", + "tail: flowing white fan", + "throat: puffy, pearl-toned" + ], + "plain xenops": [ + "back: soft brown feathers", + "beak: small, hooked, and black", + "belly: light cream with brown streaks", + "breast: pale grayish-white", + "crown: dark gray to black stripes", + "forehead: light gray with black band", + "eyes: dark, round with white eye-ring", + "legs: short, slender, brownish-gray", + "wings: banded with black and buff markings", + "nape: creamy white with brown streaks", + "tail: long, square-ended, banded with black", + "throat: white with grayish-brown streaks" + ], + "plain backed antpitta": [ + "back: smooth, plain back with subtle feather patterns", + "beak: thin, slightly curved, sharp beak", + "belly: pale, soft underbelly with minimal markings", + "breast: rounded chest with a mottled appearance", + "crown: slightly raised, uniform feathered crown", + "forehead: lean, flat forehead meeting the beak", + "eyes: small, black, alert eyes", + "legs: strong, slender legs with sharp claws", + "wings: fairly short, rounded wings for quick flights", + "nape: feathered, simple with clear line to back", + "tail: short, fan-shaped tail for balance", + "throat: slim, unmarked throat leading to the breast" + ], + "plain backed pipit": [ + "back: soft brown with subtle markings", + "beak: slender and pointed", + "belly: pale with faint streaks", + "breast: light brown with slight markings", + "crown: plain brown, unmarked", + "forehead: pale and unmarked", + "eyes: small and black", + "legs: long and thin, usually pinkish", + "wings: brown with white-edged feathers", + "nape: light brown, plain", + "tail: brown with white outer feathers", + "throat: pale with faint streaks" + ], + "plain backed sparrow": [ + "back: light brown with subdued streaking", + "beak: small, conical, and grayish-black", + "belly: pale gray or whitish", + "breast: light gray with faint streaks", + "crown: brown with central light stripe", + "forehead: pale brown and unmarked", + "eyes: small, dark, and round", + "legs: short and grayish-pink", + "wings: relatively short with blackish-brown feathers and light edging", + "nape: pale brown with faint streaking", + "tail: short and square-ended, with brownish-black feathers", + "throat: whitish or pale gray, unmarked" + ], + "plain backed sunbird": [ + "back: olive-green, unmarked feathers", + "beak: long, slender, downward-curving", + "belly: pale yellow or cream-colored", + "breast: vibrant yellow or orange", + "crown: iridescent green or blue", + "forehead: marked yellow, thin stripe", + "eyes: small, dark with white eye-rings", + "legs: short, slender, pale gray", + "wings: rounded, olive-green, black edging", + "nape: smooth olive-green transition", + "tail: medium-length, dark, narrow feathers", + "throat: iridescent green, metallic shine" + ], + "plain bellied emerald": [ + "back: vibrant emerald green", + "beak: slim, slightly curved, black", + "belly: pale lemon-yellow hue", + "breast: bright emerald green fading to yellow", + "crown: radiant emerald green", + "forehead: shining emerald green", + "eyes: round, dark with a small white ring around", + "legs: slender, greyish-black", + "wings: shimmering emerald with black flight feathers", + "nape: radiant emerald green", + "tail: elongated, iridescent green with dark tips", + "throat: bright green merging into yellow" + ], + "plain breasted ground dove": [ + "back: smooth, earth-toned feathers", + "beak: small, pointed, and pale", + "belly: light beige or cream-colored", + "breast: plain, unmarked beige", + "crown: soft, brownish-grey feathers", + "forehead: pale, unmarked feathers", + "eyes: dark, rounded, with a thin ring", + "legs: slender, pinkish-gray", + "wings: mottled earthy brown shades", + "nape: light brown transitioning to the back", + "tail: short, fan-shaped, with darker tips", + "throat: plain, pale beige feathers" + ], + "plain breasted piculet": [ + "back: light brown feathers", + "beak: petite, pointed, and black", + "belly: subtle beige plumage", + "breast: plain, cream-colored feathers", + "crown: brownish-grey with fine streaks", + "forehead: faint streaks on a light background", + "eyes: small, round, with black pupils", + "legs: slender and grey", + "wings: light brown with darker streaks", + "nape: gently feathered, greyish-brown", + "tail: short and spiky, with brownish-black feathers", + "throat: creamy white with faint barring" + ], + "plain brown woodcreeper": [ + "back: plain brown with subtle streaks", + "beak: moderately long, slightly curved", + "belly: pale brownish with faint barring", + "breast: soft brown, finely streaked", + "crown: unmarked brown with slight crest", + "forehead: smooth brown, blending with crown", + "eyes: small, dark, surrounded by light brown feathers", + "legs: sturdy, pale gray-brown", + "wings: brown, unmarked, with slightly rounded tips", + "nape: light brown, blending smoothly with back", + "tail: brown, straight, with subtle light bars", + "throat: pale brownish-white, finely streaked" + ], + "plain capped ground tyrant": [ + "back: smooth, streamlined feathers", + "beak: short, slightly curved shape", + "belly: light, unmarked plumage", + "breast: plain, soft coloring", + "crown: subtle, unassuming cap", + "forehead: unadorned, smooth transition to crown", + "eyes: small, alert with dark color", + "legs: lean, lengthy limbs", + "wings: medium-sized, strong for quick flights", + "nape: continuation of crown coloration", + "tail: slender, for balance in movement", + "throat: unobtrusive hue, coordinates with breast" + ], + "plain capped starthroat": [ + "back: green-bronze iridescent feathers", + "beak: long, curved black bill", + "belly: white with a greenish sheen", + "breast: shimmering green feathers", + "crown: smooth dark plumage", + "forehead: plain dark feathers", + "eyes: small, dark brown orbs", + "legs: short, grayish-black limbs", + "wings: long, pointed, green-bronze feathers", + "nape: dark, glossy plumage", + "tail: slightly forked, iridescent green feathers", + "throat: vibrant magenta, elongated gorget" + ], + "plain colored seedeater": [ + "back: sleek, uniform feathers", + "beak: small, conical shape", + "belly: smooth, plain-colored feathers", + "breast: rounded, unmarked plumage", + "crown: flat, unadorned top of the head", + "forehead: unremarkable, clean line", + "eyes: round, black, and alert", + "legs: thin, twig-like appendages", + "wings: compact, single-colored feathers", + "nape: seamless transition from head to back", + "tail: short, slightly fan-shaped feathers", + "throat: unadorned, contiguous with breast color" + ], + "plain colored tanager": [ + "back: smooth, uniform color", + "beak: short, cone-shaped", + "belly: slightly lighter hue", + "breast: vibrant, plain color", + "crown: rounded, same color as body", + "forehead: bright, unmarked", + "eyes: dark, round, and alert", + "legs: slender, matching body color", + "wings: sleek, single-toned", + "nape: unadorned, continuous color", + "tail: elongated, color-coordinated", + "throat: slightly contrasting shade" + ], + "plain crested elaenia": [ + "back: olive-green feathers", + "beak: short and sharp, black", + "belly: pale yellowish-white", + "breast: soft grayish-white", + "crown: olive-green with distinct crest", + "forehead: olive-green, crest starts here", + "eyes: dark brown with white eye ring", + "legs: grayish-black, medium-length", + "wings: olive-green with white wing bars", + "nape: olive-green, connects to the crown", + "tail: olive-green with subtle black markings", + "throat: grayish-whitish coloration" + ], + "plain crowned spinetail": [ + "back: olive-brown color, streaks of black", + "beak: short, curved, and sharp", + "belly: lighter hue of olive-brown, fading to a creamy white", + "breast: chestnut brown markings, lighter olive-brown than back", + "crown: rufous, with a short, stiff crest", + "forehead: rufous, like the crown", + "eyes: deep black, with a pale eye-ring", + "legs: long, slender, and grayish-brown", + "wings: olive-brown, with darker flight feathers", + "nape: olive-brown, forming a smooth transition to the back", + "tail: long, dark brown, with prominent white tips", + "throat: creamy white, transitioning to the paler belly color" + ], + "plain flanked rail": [ + "back: light brown streaked feathers", + "beak: short, straight, and yellowish", + "belly: white with black bars", + "breast: pale buff with dark streaks", + "crown: reddish-brown and slightly raised", + "forehead: light brown blending into the crown", + "eyes: small, black, and beady", + "legs: slender and greenish-yellow", + "wings: short and rounded with brown and black bars", + "nape: reddish-brown with faint streaks", + "tail: short, black with white outer feathers", + "throat: pale buff with few dark markings" + ], + "plain mantled tit spinetail": [ + "back: streaked with shades of brown and gray", + "beak: small, slender, and pointed", + "belly: pale beige with slight gray undertones", + "breast: whitish-gray with gray streaks", + "crown: brownish-gray with faint streaks", + "forehead: slightly darker gray than crown", + "eyes: black with a thin white eye ring", + "legs: slender and grayish", + "wings: dark brown with grayish-white bars", + "nape: brownish-gray, blending with the crown", + "tail: long and brownish-gray with black barring", + "throat: pale gray with a hint of white" + ], + "plain pouched hornbill": [ + "back: dark grey with subtle striped patterns", + "beak: large, curved yellow-orange casque", + "belly: pale grey with slightly darker grey side feathers", + "breast: white merging into grey belly", + "crown: glossy black feathers with a slight green sheen", + "forehead: black and smooth, leading up to the casque", + "eyes: small, round, yellow-orange with black pupils", + "legs: fairly short, grey with sharp black talons", + "wings: dark grey with black flight feathers and white wing-coverts", + "nape: black feathers, connecting the crown and back", + "tail: long, horizontally striped grey and black feathers with splayed ends", + "throat: white with pronounced pouch extending from lower beak" + ], + "plain tailed warbling finch": [ + "back: sleek, grayish-brown feathers", + "beak: short, conical, dark-colored", + "belly: whitish, with fine dark streaks", + "breast: pale gray with faint streaks", + "crown: smooth, grayish-brown plumage", + "forehead: unmarked, grayish-brown", + "eyes: small, dark, and alert", + "legs: thin, with sharp claws, pale pinkish-brown", + "wings: long, grayish-brown, with faint barring", + "nape: smooth, neatly-feathered, grayish-brown", + "tail: plain, short, square-ended, grayish-brown", + "throat: pale gray, lightly streaked" + ], + "plain tailed wren": [ + "back: brown, streaked feathers", + "beak: short, thin, slightly curved", + "belly: light, buffy white", + "breast: brown with faint streaks", + "crown: reddish-brown, slightly streaked", + "forehead: pale brown with fine streaks", + "eyes: dark, round with white eyering", + "legs: thin, greyish-brown", + "wings: brown, with faint barring", + "nape: reddish-brown, slightly streaked", + "tail: short, plain brown, square-tipped", + "throat: whitish, unmarked" + ], + "plain throated antwren": [ + "back: olive-gray feathers covering the upper body", + "beak: slender, sharp, and curved for catching insects", + "belly: light grayish-white underside", + "breast: pale gray plumage on the upper chest", + "crown: dark gray feathers on top of the head", + "forehead: smooth feathers transitioning from crown to eyes", + "eyes: dark, beady, and alert", + "legs: thin, long, and adapted for perching on branches", + "wings: olive-gray with lighter wingbars for agile flight", + "nape: back of the head with feathers similar to the crown", + "tail: long, slim, featuring brownish-gray feathers with white outer tips", + "throat: white or light gray feathers just below the beak" + ], + "plain winged antshrike": [ + "back: slate-gray feathers with textured pattern", + "beak: short, sturdy, and sharp, dark gray in color", + "belly: light gray with fine white bars", + "breast: light gray with darker gray streaks", + "crown: black cap on head with a slight crest", + "forehead: smooth black feathers above the eyes", + "eyes: dark, small, and alert with a small white ring around them", + "legs: long, slender, and gray with sharp talons", + "wings: dark gray with white wing bars and rounded tips", + "nape: slate-gray feathers blending into the black cap", + "tail: long, dark gray, and broad with white edges", + "throat: light gray with subtle vertical streaks" + ], + "plain winged antwren": [ + "back: pale olive-brown with indistinct streaks", + "beak: short, slender, and curved", + "belly: light grayish-white", + "breast: pale gray with thin barring", + "crown: uniform dark gray or black", + "forehead: slightly paler gray than crown", + "eyes: dark, with thin white eye-ring", + "legs: pale flesh-colored with strong claws", + "wings: pale gray with distinct white wing bars", + "nape: olive-brown, blending into the back", + "tail: short and erect, with dark barring", + "throat: whitish with light gray barring" + ], + "plain winged woodcreeper": [ + "back: brownish, with streaks", + "beak: long, slender, and curved", + "belly: pale and streaked", + "breast: buff with fine streaks", + "crown: brown, slightly crested", + "forehead: plain brown", + "eyes: black, with pale eye-ring", + "legs: pale, strong and sturdy", + "wings: plain brown, slightly rounded", + "nape: brown, with fine streaks", + "tail: slightly long, with faint barring", + "throat: pale, with light streaks" + ], + "plains wanderer": [ + "back: light brown with black markings", + "beak: short and straight, pale in color", + "belly: white with fine black barring", + "breast: buff-colored with spotted patterns", + "crown: brownish with faint black lines", + "forehead: pale brown with black speckles", + "eyes: dark and bead-like, surrounded by a faint white ring", + "legs: long, slender, and pale pinkish-gray", + "wings: mottled brown and gray, with intricate patterns", + "nape: light brown with black stripe along the neck", + "tail: short, rounded, and barred with black and white", + "throat: white with black-edged feathers" + ], + "plaintive cuckoo": [ + "back: olive-brown with slight green sheen", + "beak: slender, slightly curved, pale bluish gray", + "belly: whitish with fine black bars", + "breast: pale buff with fine dark bars", + "crown: olive-brown with faint streaks", + "forehead: olive-brown, blending with crown color", + "eyes: dark brown with pale eye-ring", + "legs: dull pinkish-gray", + "wings: olive-brown with faint pale spots", + "nape: olive-brown, slightly lighter than back", + "tail: long, graduated, dark brown with white-tipped outer feathers", + "throat: pale buff with fine black streaks" + ], + "planalto hermit": [ + "back: greenish-brown upperparts with light streaks", + "beak: elongated, curved downward, dark colored", + "belly: pale grayish-white with lighter streaks", + "breast: grayish-white with dark speckles/streaks", + "crown: greenish-brown with lighter streaks", + "forehead: similar to crown, greenish-brown with lighter streaks", + "eyes: dark and beady, surrounded by dull plumage", + "legs: slender and dark gray or black", + "wings: long and rounded, greenish-brown with lighter streaks", + "nape: greenish-brown with lighter streaks, connects to crown", + "tail: long, white-tipped feathers with central pair elongated into streamers", + "throat: white with fine dark streaks" + ], + "planalto slaty antshrike": [ + "back: slate-gray feathers covering its upper body", + "beak: hooked black beak for insects catching", + "belly: light gray feathers with slight streaks", + "breast: slaty-gray plumage with minimal markings", + "crown: smooth slate-gray feathers on top of the head", + "forehead: flat, slaty-gray subtly blending into the crown", + "eyes: dark brown, small, and alert", + "legs: long and slender, light gray for tree perching", + "wings: slate-gray primary feathers with thin white wingbars", + "nape: slaty-gray seamlessly connected to the back", + "tail: medium-length, slate-gray feathers with slight white edges", + "throat: light gray plumage transitioning to breast area" + ], + "planalto tapaculo": [ + "back: dark grey, slightly patterned", + "beak: short, thin, and black", + "belly: whitish-grey, vague barring", + "breast: whitish-grey, scattered barring", + "crown: dark grey, faint stripes", + "forehead: dark grey, smooth texture", + "eyes: small, black, and beady", + "legs: strong, unfeathered, and greyish-blue", + "wings: rounded, grey with faint darker barring", + "nape: dark grey, some slight stripes", + "tail: short, rounded, with grey barring", + "throat: whitish-gray, indistinct barring" + ], + "planalto tyrannulet": [ + "back: olive-green color, smooth feathers", + "beak: thin, pointy, and black", + "belly: pale yellowish-white, small feathers", + "breast: light grayish-olive hue, gradually transitions from belly", + "crown: olive-gray pattern, slightly darker than back", + "forehead: lighter gray, blending into crown", + "eyes: dark and beady, encircled by white eye-ring", + "legs: long, slender, and grayish", + "wings: olive-green with pale edges on flight feathers", + "nape: olive-gray coloring, continues from crown", + "tail: long, dark, and grayish, with white outer feathers", + "throat: whitish-gray, underneath beak, lighter than breast" + ], + "planalto woodcreeper": [ + "back: brown, streaked pattern", + "beak: long, slightly curved, pale color", + "belly: buffy-brown, slightly mottled", + "breast: brown, streaked with lighter shades", + "crown: rich brown, lightly streaked", + "forehead: brown fading to pale near beak", + "eyes: dark with pale eye-ring", + "legs: sturdy, grayish-brown", + "wings: brown with light barring", + "nape: brown, subtly streaked", + "tail: long, brown with faint bands", + "throat: pale buff, finely streaked" + ], + "plate billed mountain toucan": [ + "back: bright green feathers", + "beak: large, curved, multicolored (yellow, orange, green", + "belly: vibrant yellow plumage", + "breast: deep blue feathers", + "crown: glossy black head feathers", + "forehead: smooth black and glossy feathers", + "eyes: dark round eyes with thin white eye rings", + "legs: short and sturdy gray legs", + "wings: green with blue and red accents, elongated feathers", + "nape: glossy black with green hints where the neck meets the back", + "tail: long, blue and green feathers with red tips", + "throat: dark blue plumage, transitioning to the breast area" + ], + "pleske grasshopper warbler": [ + "back: brownish with streaks", + "beak: thin and pointed", + "belly: buffy-white", + "breast: pale with streaks", + "crown: brown with stripes", + "forehead: light brown", + "eyes: dark and small", + "legs: pinkish or pale brown", + "wings: rounded with bars", + "nape: brown with stripes", + "tail: short and rounded", + "throat: pale and unmarked" + ], + "plum faced lorikeet": [ + "back: vibrant green plumage", + "beak: sharp, curved, orange-red", + "belly: light green feathers", + "breast: greenish-yellow hue", + "crown: dark purple-blue sheen", + "forehead: deep plum coloration", + "eyes: dark and expressive", + "legs: short, gray, and sturdy", + "wings: bright green with blue tips", + "nape: purple-blue feathering", + "tail: long, green with blue undertones", + "throat: plum-colored feathers" + ], + "plum headed finch": [ + "back: olive-green hues", + "beak: bright red-orange", + "belly: pale grayish-white", + "breast: soft pinkish-red", + "crown: deep purple plumage", + "forehead: vibrant purple-blue", + "eyes: beady black with white circle", + "legs: slender and pinkish-gray", + "wings: olive-green with black markings", + "nape: purple-blue blending into green", + "tail: long and black with white edges", + "throat: pale grayish-white" + ], + "plum headed parakeet": [ + "back: vibrant green feathers", + "beak: reddish-orange hooked upper beak, gray lower beak", + "belly: soft bluish-gray feathers", + "breast: shades of purple and red plumage", + "crown: deep purple or crimson cap", + "forehead: plum-colored feathers smoothly transition to green", + "eyes: dark brown with pale gray eye-ring", + "legs: grayish-blue with strong, zygodactyl feet", + "wings: bright green with darker flight feathers", + "nape: bluish-gray plumage blending into green", + "tail: long bluish-green with dark blue tips", + "throat: muted purple transitioning into breast plumage" + ], + "plum throated cotinga": [ + "back: vibrant blue feathers", + "beak: short and black", + "belly: rich purple hue", + "breast: deep plum coloring", + "crown: shimmering blue-green", + "forehead: contrasting light blue", + "eyes: small and dark", + "legs: thin, black limbs", + "wings: blue with hints of iridescent green", + "nape: brilliant blue, transitioning to purple", + "tail: elongated and colorful, with blue and purple shades", + "throat: striking plum coloration" + ], + "plumbeous antbird": [ + "back: grayish-blue feathers", + "beak: short, straight, black", + "belly: lighter grayish-blue plumage", + "breast: pale blue-gray feathers", + "crown: blue-gray plumage", + "forehead: smooth, blue-gray feathers", + "eyes: dark brown with grayish eye-ring", + "legs: strong, dark gray", + "wings: grayish-blue with white bars", + "nape: blue-gray plumage", + "tail: long, grayish-blue feathers", + "throat: pale blue-gray feathers" + ], + "plumbeous antvireo": [ + "back: bluish-gray feathers", + "beak: short and hooked, slate color", + "belly: pale grayish-white underparts", + "breast: light bluish-gray plumage", + "crown: blue-gray feathers with subtle streaks", + "forehead: smooth bluish-gray plumage", + "eyes: dark brown surrounded by light eyering", + "legs: long and slender, dark gray", + "wings: bluish-gray with white wingbars", + "nape: continuous bluish-gray feathers from the crown", + "tail: long and gray with faint white tips", + "throat: pale grayish-white coloring" + ], + "plumbeous black tyrant": [ + "back: light grayish-blue plumage", + "beak: small, black, and pointed", + "belly: pale gray, slightly lighter than back", + "breast: light gray blending into belly", + "crown: grayish-blue, slightly darker than back", + "forehead: light gray, blending into crown", + "eyes: small, dark brown with black ring", + "legs: moderately long, black with sharp claws", + "wings: grayish-blue with darker flight feathers", + "nape: light grayish-blue, blending into the back", + "tail: moderately long, dark gray with lighter edges", + "throat: light gray, blending into breast" + ], + "plumbeous euphonia": [ + "back: vibrant blue-gray plumage", + "beak: short, strong, and conical-shaped", + "belly: pale, bluish-gray feathers", + "breast: deep blue-gray feathering", + "crown: bright blue-black feathers", + "forehead: dark blue ascents", + "eyes: small, encircled with thin white feathers", + "legs: slender, pale gray", + "wings: bluish-gray with slightly darker primaries", + "nape: blue-gray plumage", + "tail: short, blue-gray feathers", + "throat: lighter gray-blue plumage" + ], + "plumbeous forest falcon": [ + "back: slate gray with subtle stripes", + "beak: sharp, hooked, grayish-black", + "belly: light gray, slightly barred", + "breast: soft gray, lightly streaked", + "crown: dark gray, hint of blue sheen", + "forehead: lighter gray than crown", + "eyes: piercing yellow-orange", + "legs: sturdy, yellow-gray with sharp talons", + "wings: slate gray, broad and rounded", + "nape: soft gray, blending into crown", + "tail: long, gray with dark bands", + "throat: light gray, pale streaking" + ], + "plumbeous ibis": [ + "back: bluish-gray feathers with a slightly darker shade", + "beak: long, curved, and grayish-black in color", + "belly: pale bluish-gray feathers with occasional white streaks", + "breast: light gray with a tinge of blue and subtle white streaks", + "crown: slightly darker bluish-gray feathers with a smooth contour", + "forehead: light grayish-blue feathers blending into the nape", + "eyes: small, round, and dark with a subtle black eyeline", + "legs: long, slender, and dark gray with partially webbed feet", + "wings: large, bluish-gray with subtle feather patterns and a rounded edge", + "nape: smooth, light grayish-blue feathers extending to the back", + "tail: short, bluish-gray feathers with a slightly darker shade at the tips", + "throat: pale gray, almost white with a featherless patch near the beak" + ], + "plumbeous kite": [ + "back: slate-grey feathers", + "beak: sharp, hooked black beak", + "belly: lighter grey coloration", + "breast: pale grey with white streaks or spots", + "crown: dark grey, slightly crested appearance", + "forehead: smooth, slate-grey feathers", + "eyes: piercing yellow or orange", + "legs: strong, yellow-grey in color", + "wings: long, dark grey with pale stripes", + "nape: slate-grey feathers, blending with the crown", + "tail: long, grey with white or pale grey bars", + "throat: whitish or pale grey, sometimes streaked" + ], + "plumbeous pigeon": [ + "back: blue-gray feathers with a smooth appearance", + "beak: short and strong, dark grayish-black color", + "belly: pale gray with occasional white feathers", + "breast: light gray with a faint purplish-blue sheen", + "crown: blue-gray feathers, slightly darker than the back", + "forehead: light gray plumage blending into the darker crown", + "eyes: dark brown with a thin pale gray eyering", + "legs: reddish-pink color with strong, stout appearance", + "wings: broad and rounded, blue-gray with darker primary feathers", + "nape: pale gray, contrasting slightly with the crown", + "tail: blue-gray with a darker band at the tip and slightly fanned when resting", + "throat: light gray, transitioning smoothly to the darker breast color" + ], + "plumbeous rail": [ + "back: blue-grey plumage with darker streaks", + "beak: short, sturdy, and pale greenish-yellow", + "belly: pale grey with thin black barring", + "breast: bluish-grey with faint black barring", + "crown: blue-grey with a slight crest", + "forehead: pale grey with a subtle blue tint", + "eyes: small, dark, and round", + "legs: strong, greenish-yellow with long toes", + "wings: blue-grey with faint black barring and white bands", + "nape: bluish-grey with a slight collar effect", + "tail: short, blue-grey, and slightly rounded", + "throat: pale grey with thin black barring" + ], + "plumbeous redstart": [ + "back: dark bluish-grey or slate-gray", + "beak: black, thin, and pointed", + "belly: white with a slightly bluish tinge", + "breast: dark bluish-grey or slate-gray", + "crown: darker bluish-grey", + "forehead: dark bluish-grey or slate-gray", + "eyes: black with white eye-ring", + "legs: dark, sturdy, and slender", + "wings: bluish-grey with white patches", + "nape: dark bluish-grey or slate-gray", + "tail: black with white outer feathers, slightly forked", + "throat: dark bluish-grey or slate-gray" + ], + "plumbeous seedeater": [ + "back: bluish-gray feathers", + "beak: short, thick, cone-shaped", + "belly: light gray underparts", + "breast: grayish-blue plumage", + "crown: slate-blue color", + "forehead: bluish-gray feathers", + "eyes: small, black, surrounded by light gray feathers", + "legs: dark gray, thin", + "wings: bluish-gray with dark feather edges", + "nape: grayish-blue plumage", + "tail: dark gray, medium-length", + "throat: light gray feathers" + ], + "plumbeous sierra finch": [ + "back: slate-gray feathers", + "beak: robust and conical", + "belly: pale gray underbelly", + "breast: light gray plumage", + "crown: smooth gray crest", + "forehead: slightly lighter gray", + "eyes: dark, round eyes with a thin white eye-ring", + "legs: slender, black legs", + "wings: muted blue-gray with dark flight feathers", + "nape: medium-gray plumage", + "tail: long, dark gray feathers with white outer edges", + "throat: pale gray, transitioning to the breast" + ], + "plumbeous warbler": [ + "back: bluish-gray upper body", + "beak: slender and pointed, dark gray", + "belly: light gray with a hint of blue", + "breast: smooth pale gray-blue", + "crown: deep grayish-blue with slight crest", + "forehead: soft bluish-gray", + "eyes: dark with white eyelid edges", + "legs: grayish-blue, strong and slender", + "wings: bluish-gray with darker edges", + "nape: subtle blue-gray", + "tail: medium length, gray-blue with darker edges", + "throat: pale gray-blue, unmarked" + ], + "plumbeous backed thrush": [ + "back: bluish-gray plumage", + "beak: short, straight, dark-colored", + "belly: pale gray-white feathers", + "breast: lighter gray plumage", + "crown: dark bluish-gray feathers", + "forehead: slightly paler gray plumage", + "eyes: black with white eye-ring", + "legs: thin, dark-colored", + "wings: bluish-gray with bold white bars", + "nape: deep bluish-gray feathers", + "tail: straight, long, bluish-gray", + "throat: pale gray-white feathering" + ], + "plumbeous crowned tyrannulet": [ + "back: bluish-grey feathers", + "beak: short, sharp, and black", + "belly: pale grey-white", + "breast: greyish-white transitioning to white", + "crown: bluish-grey with contrasting plumbeous crest", + "forehead: pale, blending with bluish-grey crown", + "eyes: small, dark, with pale eyering", + "legs: slender greyish-black", + "wings: bluish-grey with two lightly colored wingbars", + "nape: bluish-grey, continuous with crown", + "tail: elongated, bluish-grey with black tips", + "throat: white, transitioning into breast color" + ], + "plume toed swiftlet": [ + "back: sleek, smooth feathers in shades of gray", + "beak: short, curved, black with a sharp point", + "belly: pale gray or white, soft feathers", + "breast: light gray, slightly puffed-out feathers", + "crown: dark gray, smoothly contoured to the head", + "forehead: lighter gray, blending into the crown", + "eyes: small, black, alert with a white eye-ring", + "legs: short, slender, black with small toes", + "wings: long, narrow, pointed with dark gray feathers", + "nape: dark gray feathers connecting head to back", + "tail: forked with gray and white feathers, for maneuverability", + "throat: pale gray or white, smooth feathers" + ], + "plumed guineafowl": [ + "back: iridescent blue and black feathers", + "beak: short, sturdy, and horn-colored", + "belly: creamy white with dark spots", + "breast: mix of white and dark feathers", + "crown: curly black crest on top of the head", + "forehead: small, with subtle feathers", + "eyes: bright red with a pale blue rim", + "legs: bluish-gray, strong, with short toes", + "wings: rounded, with dark black and blue feathers", + "nape: white and black checkered pattern", + "tail: short and rounded, mix of colors", + "throat: patchy white and dark feathers" + ], + "plumed whistling duck": [ + "back: brownish-grey plumage", + "beak: pale pinkish-orange with black tip", + "belly: white and greyish-brown feathers", + "breast: chestnut-speckled with black spots", + "crown: dark brown with a subtle crest", + "forehead: light brown and slightly rounded", + "eyes: dark, expressive with white eye-ring", + "legs: long, pinkish-orange with webbed feet", + "wings: brown, grey, and white-feathered with a green speculum", + "nape: light brown feathers with a dark stripe", + "tail: dark brown, short, and pointed", + "throat: chestnut-speckled, continuous with breast" + ], + "plushcap": [ + "back: olive green and smooth", + "beak: short, dark and cone-shaped", + "belly: cream-colored and soft", + "breast: bright golden-yellow", + "crown: vibrant yellow-orange", + "forehead: dark greenish-yellow", + "eyes: small, beady, and dark", + "legs: sturdy, short, and gray", + "wings: olive-green with rounded edges", + "nape: greenish-yellow with subtle streaks", + "tail: short and olive-green", + "throat: light cream and unmarked" + ], + "pohnpei fantail": [ + "back: olive-green with a hint of gray", + "beak: small, curved, and black", + "belly: creamy-white with rufous wash", + "breast: pale, grayish with a hint of rufous", + "crown: grayish-olive with a slight crest", + "forehead: similar to crown, grayish-olive", + "eyes: dark with a white eyering", + "legs: slender, black, and sturdy", + "wings: olive-gray with white-tipped feathers", + "nape: grayish-olive continuing from the crown", + "tail: long, black, and fan-shaped with white tips", + "throat: pale grayish-white with rufous undertones" + ], + "pohnpei flycatcher": [ + "back: olive-green feathers with a slight sheen", + "beak: short, sharp, and black", + "belly: pale yellow with light streaks", + "breast: light yellow, slightly darker than the belly", + "crown: bright orange-red with a small crest", + "forehead: orange-red, part of the crown", + "eyes: dark brown, surrounded by white eye-ring", + "legs: slender, black, and featherless", + "wings: olive-green, with some faint yellow on edges", + "nape: olive-green, blending into the back", + "tail: olive-green with yellowish tips and sides", + "throat: light yellow, same as breast" + ], + "pohnpei kingfisher": [ + "back: vibrant turquoise feathers", + "beak: strong, black, and hooked", + "belly: white and fluffy", + "breast: rich orange coloration", + "crown: brilliant azure crest", + "forehead: striking blue feathers", + "eyes: piercing black orbs", + "legs: short and sturdy", + "wings: broad with blue-green plumage", + "nape: bright blue and well-defined", + "tail: elongated with blue feathers", + "throat: bold orange hue" + ], + "pohnpei lorikeet": [ + "back: vibrant green feathered coverage", + "beak: strong, curved, orange-red beak", + "belly: lighter green feathers with faint streaks", + "breast: vivid green plumage fading into yellow", + "crown: striking red feathers with purple-blue edges", + "forehead: red and purple-blue feathered area", + "eyes: small, dark, and alert", + "legs: short, strong, with grayish-yellow scales", + "wings: long, bright green feathers with reddish patches", + "nape: transition of red crown to green back feathers", + "tail: elongated, green feathers with red-orange tips", + "throat: yellowish-green feathers with faint streaks" + ], + "pohnpei white eye": [ + "back: greenish-golden feathers", + "beak: petite and slightly curved", + "belly: light gray coloration", + "breast: subtly yellow-tinged", + "crown: brilliant olive green", + "forehead: greenish-yellow tint", + "eyes: distinctive white rings", + "legs: slender and dark gray", + "wings: olive-green with flight feathers", + "nape: rich green hue", + "tail: moderately long with greenish feathers", + "throat: pale gray shading" + ], + "point tailed palmcreeper": [ + "back: brownish-gray with subtle feather patterns", + "beak: long, slender, and slightly curved", + "belly: creamy white with light streaks", + "breast: pale grayish-brown with faint streaks", + "crown: dark brown with a hint of reddish color", + "forehead: slightly paler brown than crown", + "eyes: small, black, and alert", + "legs: long, slender, and pale gray", + "wings: brownish-gray with fine barring and white tips on flight feathers", + "nape: dark brown, transitioning from the crown", + "tail: long and pointed, with dark brown and white feathers", + "throat: whitish with a hint of brown streaks" + ], + "pollen vanga": [ + "back: dark bluish-gray feathers", + "beak: stout, slightly decurved, blackish", + "belly: light grayish-white feathers", + "breast: bluish-gray, fading to grayish-white", + "crown: black feathers with bluish sheen", + "forehead: black with a blue gloss", + "eyes: dark, round, surrounded by black", + "legs: strong, dark-colored legs", + "wings: long, with bluish-gray feathers and black tips", + "nape: bluish-gray feathers extending from the crown", + "tail: bluish-gray with black tips, medium length", + "throat: grayish-white, lighter than the breast" + ], + "polynesian ground dove": [ + "back: earthy brown feathers with faint patterns", + "beak: short and stout, silver-grey color", + "belly: soft, pale grey with white undertones", + "breast: light grey feathers transitioning to the belly", + "crown: darker grey-brown, slightly raised feathers", + "forehead: smooth, pale grey blending with crown", + "eyes: beady, dark, and alert with light grey circles", + "legs: slender, pinkish-grey with strong feet", + "wings: mottled brown and grey feathers with black edges", + "nape: slightly darker grey-brown than the crown", + "tail: long, earthy brown feathers with white tips", + "throat: pale grey, blending seamlessly with breast" + ], + "polynesian imperial pigeon": [ + "back: sleek grayish-white feathers", + "beak: short, strong, pale bluish-gray", + "belly: soft white plumage", + "breast: smooth white feathers", + "crown: pale grayish-blue crest", + "forehead: white to blue-gray gradation", + "eyes: bright, deep-set, black", + "legs: sturdy, reddish-pink, with strong claws", + "wings: wide, powerful, grayish-white", + "nape: smooth transition from white to gray", + "tail: long, well-feathered, white", + "throat: plump, white feathers" + ], + "polynesian starling": [ + "back: olive-green with yellowish tinge", + "beak: slender, slightly curved, black", + "belly: pale gray-white", + "breast: light gray shading to white", + "crown: glossy dark green-blue", + "forehead: slightly paler blue-green", + "eyes: dark brown with white eyering", + "legs: slender gray-black", + "wings: rich blue-green with black tips", + "nape: olive-green with bluish sheen", + "tail: long, gradient blue-green to black", + "throat: pale white-gray" + ], + "polynesian storm petrel": [ + "back: dark grayish-brown feathers", + "beak: small, black, and hooked", + "belly: white underside with some dark spots", + "breast: white with streaks of grayish-brown", + "crown: dark grayish-brown with a slight crest", + "forehead: smooth, dark grayish-brown feathers", + "eyes: small, black, and round", + "legs: relatively long with black scales", + "wings: long, slender, dark grayish-brown feathers", + "nape: dark grayish-brown with a slight curve", + "tail: forked with dark grayish-brown feathers", + "throat: white, blending seamlessly with the breast" + ], + "polynesian swiftlet": [ + "back: sleek, dark feathers", + "beak: small, pointed, black", + "belly: light grey, soft plumage", + "breast: grey, streamlined feathers", + "crown: dark, smooth feathers", + "forehead: grey, slightly rounded", + "eyes: small, black, alert", + "legs: thin, dark, agile", + "wings: long, curved, dark feathers", + "nape: grey, slender neck", + "tail: slightly forked, dark feathers", + "throat: pale grey, delicate feathers" + ], + "polynesian triller": [ + "back: olive-brown feathers", + "beak: short, pointed, black", + "belly: white with pale yellow hues", + "breast: white with light grey streaks", + "crown: greyish-black top", + "forehead: light grey with slight yellow tint", + "eyes: round, dark, with white eye-ring", + "legs: small, greyish-black", + "wings: olive-brown with faint white bars", + "nape: light grey with smooth feathers", + "tail: olive-brown, relatively short with light tips", + "throat: white and smooth-textured" + ], + "pompadour cotinga": [ + "back: vibrant blue color, slightly darker than the wings", + "beak: short and black, curved for fruit consumption", + "belly: soft, pale blue color, transition from the darker blue breast", + "breast: bright blue with a slight fading towards the belly area", + "crown: deep blue feathers standing upright, forming a small crest", + "forehead: vivid, blue feathers extending down to the eyes", + "eyes: dark, beady, accentuated by the surrounding blue feathers", + "legs: black and slender, with strong claws for grasping branches", + "wings: bold blue color, rounded edges, perfect for short flights", + "nape: a striking blue plumage extending down from the head", + "tail: long and elegant, with a mix of blue and black feathers", + "throat: lighter blue shade, connecting the breast and the beak" + ], + "powerful owl": [ + "back: dark grey-brown plumage with white spots", + "beak: stout and sharply hooked, grayish-black", + "belly: pale grey with bold dark streaks", + "breast: buff to white with broad dark barring", + "crown: dark grey-brown with a mottled pattern", + "forehead: slightly paler grey-brown with faint speckling", + "eyes: piercing yellow with dark surrounding feathers", + "legs: strong, feathered legs with powerful talons", + "wings: large and rounded, grey-brown with white markings", + "nape: dark grey-brown with a mottled appearance", + "tail: long and broad, grey-brown with white bars", + "throat: whitish-grey with faint barring" + ], + "powerful woodpecker": [ + "back: strong, greenish-black feathers", + "beak: chisel-like, sharp, and robust", + "belly: creamy white underbelly", + "breast: solid red patch", + "crown: bright red, striking cap", + "forehead: sleek, black curve", + "eyes: alert, piercing white rings", + "legs: muscular, stout, grey", + "wings: black barring, white streaks", + "nape: distinct red band", + "tail: rigid, supportive, black feathers", + "throat: clean, white outline" + ], + "predicted antwren": [ + "back: sleek black feathers", + "beak: slim, pointed, and black", + "belly: white with faint grey speckles", + "breast: mottled grey and white feathers", + "crown: glossy black with a prominent crest", + "forehead: smooth black feathers transitioning into the crown", + "eyes: small, dark, and alert", + "legs: long and slender, with black claws", + "wings: black with white wing bars and edges", + "nape: black feathers transitioning from the crown", + "tail: long, black feathers with white tips", + "throat: white with a faint grey mottling" + ], + "preuss swallow": [ + "back: sleek, dark blue feathers", + "beak: short, pointed, black", + "belly: grayish-white plumage", + "breast: light gray feathers", + "crown: blue-black, glossy head feathers", + "forehead: dark blue, blending into the crown", + "eyes: small, black, round", + "legs: short, dark gray", + "wings: long, dark blue, powerful", + "nape: blue-black, glossy feathers", + "tail: forked, dark blue, elongated", + "throat: grayish-white, smooth feathers" + ], + "preuss weaver": [ + "back: olive-green with a subtle sheen", + "beak: black and conical-shaped", + "belly: pale yellow with brown streaks", + "breast: yellowish with dark streaks", + "crown: deep black with a slightly glossy appearance", + "forehead: black, blending into the crown", + "eyes: dark brown and beady", + "legs: bluish-gray and slender", + "wings: olive-green with black flight feathers edged in yellow", + "nape: greenish-black, transitioning from the crown", + "tail: olive-green with black central feathers and yellow trim", + "throat: bright yellow with light streaks" + ], + "prince henry laughingthrush": [ + "back: olive-brown feathers", + "beak: curved, black, and sharp", + "belly: off-white with brown streaks", + "breast: rufous-brown, subtly streaked", + "crown: bold black and white pattern", + "forehead: white patch above beak", + "eyes: dark with white eye-ring", + "legs: strong, pinkish-brown", + "wings: olive-brown with dark tips", + "nape: black collar separating head and back", + "tail: elongated, dark, and gradually tapering", + "throat: white with black speckles" + ], + "prince ruspoli turaco": [ + "back: vibrant blue-green feathers", + "beak: short, red-orange curved beak", + "belly: soft white plumage", + "breast: deep blue feathers", + "crown: blue-green crest with white tips", + "forehead: striking red patch", + "eyes: bright, dark brown or black", + "legs: sturdy grey with sharp claws", + "wings: elongated, blue-green with white wingtips", + "nape: blue-green feathers fading into white on the neck", + "tail: long, white tail feathers with blue-green tips", + "throat: bright blue plumage" + ], + "princess parrot": [ + "back: vibrant green with pale blue highlights", + "beak: curved, coral pink", + "belly: soft, pastel green", + "breast: light greenish-blue", + "crown: bright pink and purple", + "forehead: pale blue with a pinkish tint", + "eyes: dark, surrounded by light blue feathers", + "legs: charcoal grey with two backward and two forward-facing toes", + "wings: blue and green feathers with hints of pink", + "nape: pastel pink and blue blend", + "tail: elongated, blue and purple feathers with white tips", + "throat: soft, pastel pink" + ], + "principe golden weaver": [ + "back: vibrant golden-yellow feathers", + "beak: strong, conical-shaped silver-black", + "belly: lighter golden-yellow plumage", + "breast: vivid golden-yellow feathers", + "crown: bright yellow with intricate weavings", + "forehead: bright golden-yellow strip", + "eyes: dark, deep-set with a protective white circle", + "legs: slender, grayish-black with strong grip", + "wings: golden-yellow with dark edge feathering", + "nape: rich golden-yellow continuation from the crown", + "tail: long, golden-yellow with darker edges", + "throat: slightly paler yellow than the breast" + ], + "principe seedeater": [ + "back: olive-green with darker streaks", + "beak: short, stout, conical", + "belly: pale buff or whitish", + "breast: grayish-white, gradient from throat", + "crown: black with slight streaks", + "forehead: black, fading to back color", + "eyes: dark brown with white eye-ring", + "legs: strong, grayish to pale brown", + "wings: olive, with faint dark bars", + "nape: black top fading to olive-green", + "tail: elongated, olive-green with dark bars", + "throat: grayish-white, rounded shape" + ], + "principe speirops": [ + "back: dark blueish-black feathers", + "beak: black, short and conical shape", + "belly: greyish-white feathers", + "breast: light bluish-grey plumage", + "crown: distinct blue-black crest", + "forehead: blue-black feathers meeting with crown", + "eyes: white eye-ring surrounding dark brown iris", + "legs: strong, dark grey in color", + "wings: dark blueish-black with white highlights", + "nape: blue-black feathers blending with crown", + "tail: blueish-black with some white highlights", + "throat: light bluish-grey feathers extending to the breast" + ], + "principe starling": [ + "back: iridescent green and blue feathers", + "beak: short, black, strong", + "belly: feathered, white with dark spots", + "breast: pale gray with metallic sheen", + "crown: glossy blue-black with purple tint", + "forehead: dark feathers, blending into crown", + "eyes: bright yellow, surrounded by black feathers", + "legs: long, black, slender", + "wings: metallic, blue-green, long and pointed", + "nape: purple-blue iridescence, dark feathers", + "tail: black, long, with subtle blue-green shimmer", + "throat: white feathers, spotted with black" + ], + "principe sunbird": [ + "back: iridescent blue-green feathers", + "beak: slender, curved black bill", + "belly: bright yellow feathers", + "breast: vibrant metallic blue plumage", + "crown: glossy dark blue-green feathers", + "forehead: intense metallic blue-green sheen", + "eyes: round, small, and dark", + "legs: slim grey-black legs with sharp claws", + "wings: iridescent blue-green feathers with black edges", + "nape: dark blue-green plumage, slightly less metallic than crown", + "tail: long streamer-like tail feathers in blue-green and black", + "throat: shimmering metallic blue plumage" + ], + "principe thrush": [ + "back: olive-green with faint streaks", + "beak: black, thin and slightly curved", + "belly: pale yellow-white with dark spots", + "breast: light brown with dark streaks", + "crown: dark brown with lighter highlights", + "forehead: pale brown with subtle markings", + "eyes: dark black with white eye-ring", + "legs: slender and beige-colored", + "wings: brown with olive-green edges and white-barred patterns", + "nape: brownish with faint streaks", + "tail: long, brown with slight white edges", + "throat: white interspersed with dark streaks" + ], + "principe white eye": [ + "back: olive-green feathers", + "beak: slender curved black", + "belly: light grayish-white underparts", + "breast: pale grayish-white plumage", + "crown: bright yellow crown-ring", + "forehead: yellow-to-green transition", + "eyes: distinctive white eye-ring", + "legs: pale blue-gray", + "wings: olive-green with dark tips", + "nape: greenish-yellow merging into back", + "tail: olive-green with darker central feathers", + "throat: pale grayish-white, connecting to belly" + ], + "pringle puffback": [ + "back: olive-green feathers", + "beak: short, sharp, black", + "belly: off-white to pale yellow", + "breast: creamy-white with light tinges", + "crown: grayish-brown feathers", + "forehead: slightly darker gray-brown", + "eyes: round, dark brown", + "legs: slender, grayish-brown", + "wings: olive-green with blackish edges", + "nape: grayish-brown, blending into back", + "tail: long, olive-green to blackish-brown", + "throat: off-white, slightly lighter than belly" + ], + "pririt batis": [ + "back: black and white striped pattern", + "beak: short, sturdy, black", + "belly: light greyish-white", + "breast: white with black band", + "crown: black with thin white lines", + "forehead: black with white streaks", + "eyes: dark, surrounded by white mask", + "legs: thin, reddish-brown", + "wings: black and white, with two white wingbars", + "nape: black with white lines", + "tail: long, black with white edges", + "throat: white with black border" + ], + "prong billed barbet": [ + "back: green and yellowish plumage", + "beak: sharp, black prong-like", + "belly: pale yellow feathers", + "breast: vibrant yellow and green mix", + "crown: dark greenish-blue feathers", + "forehead: red and maroon feathers", + "eyes: black with white eyelids", + "legs: strong grayish-blue", + "wings: green and blue patterned plumage", + "nape: yellowish-green feathers", + "tail: short, blue-green feathers", + "throat: light yellow plumage" + ], + "protea canary": [ + "back: olive-yellow feathers with black streaks", + "beak: short, thick, and curved for seed crushing", + "belly: pale yellow with subtle brown markings", + "breast: bright yellow and slightly puffed", + "crown: vibrant yellow with a rounded shape", + "forehead: yellow merging into orange-tinted crown", + "eyes: dark and expressive with thin white eye-ring", + "legs: strong with scaled pinkish-gray skin", + "wings: black with olive-yellow edging, folded at sides", + "nape: yellow feathers transitioning to olive-green at back", + "tail: long and pointed, black with outer yellow feathering", + "throat: vibrant yellow with no obvious markings" + ], + "providence petrel": [ + "back: blue-gray feathers with dark streaks", + "beak: sturdy, hooked, gray-black color", + "belly: white with pale gray underwing coverts", + "breast: light gray plumage with some white streaks", + "crown: dark gray with slight pale streaks", + "forehead: pale gray color", + "eyes: dark brown with thin pale eye-ring", + "legs: pink-gray with strong black claws", + "wings: dark gray to black primary feathers, white edges", + "nape: light gray with dark streaks, blending into crown", + "tail: medium-length, dark gray-black with white base and tips", + "throat: white with light gray streaks" + ], + "przevalski nuthatch": [ + "back: light grey with hints of brown", + "beak: short, slightly curved, and black", + "belly: cream-colored with warm undertones", + "breast: subtle pale orange hue", + "crown: dark grey-black, contrasting lighter feather shades", + "forehead: smooth, consistent grey-black transition from crown", + "eyes: small, dark, and round; piercing gaze", + "legs: sturdy, grey-black in color", + "wings: lighter grey edges with darker feather layers", + "nape: dark black-grey striping from crown to back", + "tail: elongated, grey feathers with distinctive white tips", + "throat: pale cream with a slight bluish-purple tint" + ], + "przevalski partridge": [ + "back: brown with black and white markings", + "beak: short and stout, grayish color", + "belly: buff-color with brown bars", + "breast: grayish-blue with dark spots", + "crown: reddish-brown with black markings", + "forehead: white contrasting with black on the crown", + "eyes: black, surrounded by narrow pale eyering", + "legs: strong, reddish-orange", + "wings: brown mottled with black and white", + "nape: reddish-brown streaked with black", + "tail: brown with black bars and white edges", + "throat: white or pale buff with dark brown bands" + ], + "przevalski pinktail": [ + "back: grayish-brown with pink highlights", + "beak: short and black", + "belly: white with faint pink accents", + "breast: soft pinkish-white", + "crown: gray with pale pink highlights", + "forehead: grayish-brown", + "eyes: small and black with a white eye ring", + "legs: strong, grayish-black", + "wings: grayish-brown with white and pink streaks", + "nape: subtle pink and white", + "tail: long and slender, pink with black stripes", + "throat: pale white with pink undertones" + ], + "puaiohi": [ + "back: olive-brown with faint streaks", + "beak: short and slightly curved, blackish-brown", + "belly: pale gray-white with some brown undertones", + "breast: light gray with brown spots and streaks", + "crown: grayish-brown with lighter streaks", + "forehead: gray-brown with faint streaks", + "eyes: dark with pale greyish-brown eye-rings", + "legs: pinkish-grey with strong, sturdy claws", + "wings: olive-brown with distinct white-tipped feathers", + "nape: grayish-brown with lighter streaks", + "tail: olive-brown with white-tipped feathers", + "throat: pale gray with faint streaks and spots" + ], + "puerto rican bullfinch": [ + "back: olive-green with dark streaks", + "beak: short, thick, and silver-gray", + "belly: light gray-white with streaking", + "breast: pale grayish-brown with dark streaks", + "crown: black, oval-shaped spot", + "forehead: grayish-white to brownish-olive", + "eyes: black with thin, white eye-ring", + "legs: slender, light pinkish-gray", + "wings: dull olive-green with dark streaks, thin white wing bars", + "nape: olive-brown with dark streaks", + "tail: olive-green with dark barring, rounded feather tips", + "throat: whitish-gray with dark streaks" + ], + "puerto rican emerald": [ + "back: bright green, shimmering", + "beak: black, slender, curved", + "belly: pale gray, slightly iridescent", + "breast: grayish-white, soft appearance", + "crown: vibrant green, shiny", + "forehead: bright emerald green, gleaming", + "eyes: dark, round, bordered with faint white circles", + "legs: dark gray, delicate", + "wings: rich green, glossy, short", + "nape: greenish-bronze, subtly glowing", + "tail: elongated, green-blue feathers, slightly forked", + "throat: greenish-white, smooth transition from breast" + ], + "puerto rican flycatcher": [ + "back: olive-green feathers", + "beak: black, hooked and thin", + "belly: white-yellowish underside", + "breast: white with streaks grayish", + "crown: golden-yellow crest", + "forehead: lighter yellow shade", + "eyes: dark with white eyering", + "legs: sturdy, dark grey", + "wings: olive-green with black barring", + "nape: olive-green with golden wash", + "tail: dark grey with white tips", + "throat: white, bordered by grey streaks" + ], + "puerto rican lizard cuckoo": [ + "back: olive-brown with streaks", + "beak: long, curved, and black", + "belly: whitish with blackish streaks", + "breast: grayish with dark stripes", + "crown: reddish-brown with streaks", + "forehead: light gray and smooth", + "eyes: large and black with white eye-ring", + "legs: long and grayish-blue", + "wings: olive-brown with prominent white spots", + "nape: reddish-brown with streaks", + "tail: long, dark, and graduated with white-tipped feathers", + "throat: white with faint blackish streaks" + ], + "puerto rican mango": [ + "back: vibrant green feathers", + "beak: curved, elongated black beak", + "belly: bright yellow plumage", + "breast: striking orange-red color", + "crown: vivid green with a hint of blue", + "forehead: slightly lighter green shade", + "eyes: small, black, and alert", + "legs: slender and brownish-gray", + "wings: iridescent green with blue edges", + "nape: rich green transitioning to blue", + "tail: long, graduated blue feathers", + "throat: deep orange-red patch" + ], + "puerto rican nightjar": [ + "back: brownish-gray with white speckles", + "beak: small, straight, and dark-colored", + "belly: pale gray with dark vertical streaks", + "breast: mottled gray-brown", + "crown: grayish-brown with white streaks", + "forehead: pale gray with brown markings", + "eyes: large and dark", + "legs: long and slender with dark coloring", + "wings: mottled gray-brown with white markings", + "nape: pale gray with dark streaks", + "tail: gray-brown with white bands", + "throat: light gray with dark markings" + ], + "puerto rican oriole": [ + "back: black and yellow feathers", + "beak: slender and curved, silver-gray", + "belly: bright yellow", + "breast: vibrant yellow", + "crown: black with streaks of yellow", + "forehead: black with a small yellow patch", + "eyes: black with a thin yellow eye-ring", + "legs: gray and thin", + "wings: long and black with yellow edges", + "nape: black with streaks of yellow", + "tail: black with a yellow tip", + "throat: bold yellow" + ], + "puerto rican owl": [ + "back: rusty-brown feathered", + "beak: sharp and curved, grayish-black", + "belly: creamy-white with brownish streaks", + "breast: light beige with dark barring", + "crown: rusty brown with fine markings", + "forehead: light reddish-brown with white streaks", + "eyes: large, dark, and penetrating", + "legs: feathered and grayish-yellow with strong talons", + "wings: broad and brown with barred pattern", + "nape: rusty brown with white streaks", + "tail: squared and darkly barred", + "throat: creamy-white with fine brown streaks" + ], + "puerto rican parrot": [ + "back: vibrant green feathers", + "beak: hook-shaped, white or horn-colored", + "belly: light green feathers", + "breast: olive-green plumage", + "crown: bluish-green hues", + "forehead: red or blue patch above the beak", + "eyes: yellow iris surrounded by white eye-ring", + "legs: grayish-black with sharp claws", + "wings: dark blue-green edges with flight feathers", + "nape: bluish-green and well-defined", + "tail: two long central tail feathers, green tinged with blue", + "throat: light green patch feathers" + ], + "puerto rican spindalis": [ + "back: vibrant olive-green with scattered black streaks", + "beak: sharp, conical, and dark gray", + "belly: pale yellow with faint streaks", + "breast: yellowish-green, fading to pale yellow", + "crown: striking black and white striped pattern", + "forehead: broad white supercilium above black eyestripe", + "eyes: black with thin white eye-ring", + "legs: dark gray with strong, compact claws", + "wings: blackish-brown with bold white wing bars", + "nape: olive-green, blending into striped crown", + "tail: blackish-brown, slightly forked with white edges", + "throat: white with distinctive black \"necklace\" marking" + ], + "puerto rican tanager": [ + "back: olive-green with a slight sheen", + "beak: slim, pointed, and blackish", + "belly: bright yellow with a grayish tint", + "breast: vibrant yellow blending into the belly", + "crown: deep black with bluish iridescence", + "forehead: shining black seamlessly joining the crown", + "eyes: dark with white eye-ring", + "legs: strong and blackish-brown", + "wings: olive-green with blue-violet highlights", + "nape: olive-green transitioning from the crown", + "tail: slightly forked, olive-green with blue-violet edges", + "throat: intense yellow, demarcating the head from the belly" + ], + "puerto rican tody": [ + "back: bright green upper back", + "beak: short, wide, blackish-gray", + "belly: bright yellow underside", + "breast: bright yellow chest", + "crown: greenish-yellow top of head", + "forehead: green color with white lores", + "eyes: large and dark with pale blue eye-ring", + "legs: pinkish-gray and slender", + "wings: greenish-yellow with black tips", + "nape: bright green behind the head", + "tail: short, greenish-yellow with black edges", + "throat: white with yellow tinge" + ], + "puerto rican vireo": [ + "back: olive-green feathers", + "beak: slightly hooked, dark upper mandible, pale lower mandible", + "belly: pale yellow-white hues", + "breast: yellowish-white with faint streaks", + "crown: olive-green with slight crest", + "forehead: olive-green to blend with the crown", + "eyes: dark with white eyering", + "legs: pale pinkish-grey", + "wings: olive-green with white wingbars", + "nape: olive-green, matching the back and crown", + "tail: olive-green with slight yellow edges", + "throat: white to yellowish-white" + ], + "puerto rican woodpecker": [ + "back: greenish-black feathers with white streaks", + "beak: long, chisel-like and black", + "belly: white with black horizontal bands", + "breast: white with black horizontal bands", + "crown: crimson red feathers, more prominent in males", + "forehead: red feathers blending to white", + "eyes: black with white surrounding feathers", + "legs: gray with sharp claws for gripping trees", + "wings: greenish-black with white spots and yellow edges", + "nape: black with a hint of red, connecting to the crown", + "tail: stiff, greenish-black feathers with a red base, used for support while climbing trees", + "throat: white with black horizontal bands" + ], + "puff backed bulbul": [ + "back: olive-green with puffed feathers", + "beak: short and curved, ivory color", + "belly: pale yellow or white, slightly fluffy", + "breast: light olive-green, blending with belly", + "crown: grayish-brown with slight crest", + "forehead: grayish-brown, similar to crown", + "eyes: brown with white eye-rings", + "legs: long and slender, grayish-brown", + "wings: olive-green with white-tipped feathers", + "nape: grayish-brown, similar to crown", + "tail: long and dark, with white tips", + "throat: pale yellow or white, matching belly" + ], + "puff backed honeyeater": [ + "back: olive-green with a slight gloss", + "beak: slender, decurved, black", + "belly: pale yellow with light streaks", + "breast: yellowish, blending into belly", + "crown: greenish-black, rounded", + "forehead: greenish-black, slightly glossy", + "eyes: dark brown, well-defined", + "legs: slender, grayish-blue", + "wings: olive-green with yellowish-green edges", + "nape: olive-green with a slight gloss", + "tail: medium length, olive-green, slightly forked", + "throat: yellowish with pale streaks" + ], + "puff throated babbler": [ + "back: brownish-gray with streaks", + "beak: short and curved", + "belly: white with spotted patterns", + "breast: white with brownish spots", + "crown: pale gray-brown", + "forehead: light gray", + "eyes: dark brown with pale eye-ring", + "legs: sturdy and yellowish", + "wings: brownish with white tips", + "nape: gray-brown with slight streaks", + "tail: long and brown with white tips", + "throat: white and puffed" + ], + "puff throated bulbul": [ + "back: olive-brown feathers", + "beak: short, curved, greyish", + "belly: pale yellow, streaked", + "breast: off-white, spotted", + "crown: beige, gently sloping", + "forehead: light brown", + "eyes: dark, small, round", + "legs: greyish, strong", + "wings: olive-brown, short", + "nape: olive-brown, slightly darker than back", + "tail: dark brown, edged in white", + "throat: puffy, white, distinctive" + ], + "pulitzer longbill": [ + "back: vibrant green feathers", + "beak: long and curved, black color", + "belly: pale yellow hue with fine streaks", + "breast: soft white plumage", + "crown: rich red crest atop the head", + "forehead: bright yellow patch", + "eyes: large and round, dark brown", + "legs: sturdy legs with zygodactyl feet", + "wings: green and black with red accents", + "nape: yellow-green with fine dark streaks", + "tail: elongated black feathers with red tips", + "throat: white plumage with delicate streaks" + ], + "puna canastero": [ + "back: brownish-gray, streaked feathers", + "beak: slender, slightly curved, and black", + "belly: pale brown with dark markings", + "breast: light brown with darker streaks", + "crown: brownish-gray with a faint crest", + "forehead: brownish-gray, blending with crown", + "eyes: dark brown, encircled by light eye-ring", + "legs: strong, gray, adapted for perching", + "wings: moderately long, brown with light barring", + "nape: brownish-gray, transitioning from crown to back", + "tail: long, graduated, brown with white outer feathers", + "throat: creamy white, streaked with light brown" + ], + "puna ground tyrant": [ + "back: light grayish-brown plumage", + "beak: black, short and sturdy", + "belly: white with soft gray markings", + "breast: pale gray with slight brownish hue", + "crown: darker gray with faint streaks", + "forehead: light gray transitioning from crown", + "eyes: dark and round, surrounded by faint eyering", + "legs: slender, pale orange with long toes", + "wings: grayish-brown with subtle barring", + "nape: grayish-brown consistent with back color", + "tail: blackish-brown, square-ended with white edges", + "throat: white, contrasting with gray breast" + ], + "puna ibis": [ + "back: dark gray-feathered with a slight metallic sheen", + "beak: long, curved, and black", + "belly: white with hints of pale orange", + "breast: white, fading into pale orange", + "crown: dark gray with a slight iridescent shimmer", + "forehead: dark gray with a white patch", + "eyes: round with a dark iris and thin eyelid", + "legs: long, slender, and black", + "wings: broad with dark gray feathers and white patches", + "nape: dark gray with a metallic sheen", + "tail: long, dark gray feathers with white tips", + "throat: white with hints of pale orange" + ], + "puna miner": [ + "back: dusty brown with light streaks", + "beak: robust, slightly curved, dark-colored", + "belly: whitish-gray with faint markings", + "breast: pale gray-brown with light streaks", + "crown: grayish-brown, faintly streaked", + "forehead: pale gray with faint brownish streaks", + "eyes: black, surrounded by thin white eye-ring", + "legs: long, strong, dull pinkish", + "wings: brownish-gray, white wingbars, elliptical shape", + "nape: gray-brown, lightly streaked", + "tail: moderate length, gray-brown with white tips", + "throat: whitish, unmarked" + ], + "puna pipit": [ + "back: light brown with black streaks", + "beak: thin and pointed, adapted for seeds", + "belly: pale white or cream-colored", + "breast: light brown with dark streaks", + "crown: brown with a faint central stripe", + "forehead: light brown, blending with the crown", + "eyes: dark and beady, surrounded by a faint pale eyebrow", + "legs: long and slender, pale brown", + "wings: light brown with blackish streaks and patches", + "nape: brown with a soft blend into back color", + "tail: long, dark brown with white outer feathers", + "throat: pale white, contrasting with the breast" + ], + "puna plover": [ + "back: brownish-gray feathers", + "beak: short, black, and slightly curved", + "belly: white, soft feathers", + "breast: light gray with hints of brown", + "crown: brown feathers with black speckles", + "forehead: whitish-gray, smooth feathers", + "eyes: dark brown, round", + "legs: thin, light pink, webbed feet", + "wings: brown-gray feathers, white stripe", + "nape: brown feathers with black speckles", + "tail: fan-shaped, brown-gray feathers", + "throat: white, delicate feathers" + ], + "puna snipe": [ + "back: brownish-grey with striped pattern", + "beak: long, slender, and straight", + "belly: white with faint barring", + "breast: buff color with dark barring", + "crown: brown with a central beige stripe", + "forehead: beige with brown speckles", + "eyes: small, dark, and alert", + "legs: long and slender, yellow-green", + "wings: brown with intricate markings", + "nape: brown with a beige stripe", + "tail: short and fan-shaped, dark barred pattern", + "throat: pale buff with speckled markings" + ], + "puna tapaculo": [ + "back: dark gray with slight barring", + "beak: short, curved, blackish", + "belly: pale gray with black spots", + "breast: gray with small black markings", + "crown: dark gray with faint barring", + "forehead: slightly paler gray", + "eyes: round, black, relatively large", + "legs: strong, short, dark gray", + "wings: short, rounded, dark gray with hints of brown", + "nape: dark gray with minimal barring", + "tail: long, dark gray, slightly rounded", + "throat: pale gray with dark flecks" + ], + "puna thistletail": [ + "back: dark brown with streaks", + "beak: short, curved, black", + "belly: off-white with black streaks", + "breast: grayish-brown with faint streaks", + "crown: red-brown with fine black streaks", + "forehead: grayish-brown with streaks", + "eyes: small, dark", + "legs: strong, orange-brown", + "wings: brown with dark barring", + "nape: grayish-brown with fine streaks", + "tail: long, reddish-brown with black barring", + "throat: light gray with black streaks" + ], + "puna tinamou": [ + "back: greenish-brown with black markings", + "beak: short and curved, grayish color", + "belly: grayish-white with fine dark barring", + "breast: bluish-gray, subtly barred", + "crown: dark brown with a slight crest", + "forehead: whitish with fine dark markings", + "eyes: dark color with pale eyering", + "legs: short and reddish-brown", + "wings: rounded, greenish-brown", + "nape: dark brown with light borders on feathers", + "tail: short and rounded, greenish-brown", + "throat: whitish with light barring" + ], + "puna yellow finch": [ + "back: vibrant greenish-yellow feathers", + "beak: small, pointy, and black", + "belly: bright yellow with a slight fade", + "breast: vivid yellow plumage", + "crown: striking yellow crest", + "forehead: bold yellow patch above the beak", + "eyes: small, round, and black", + "legs: slender and gray", + "wings: greenish-yellow with black edging", + "nape: rich yellow fading to green", + "tail: elongated black feathers with yellow edges", + "throat: bold yellow feathers with a smooth texture" + ], + "puno antpitta": [ + "back: olive-brown feathers", + "beak: short, curved, yellowish-orange", + "belly: light grayish-white", + "breast: gray with faint streaks", + "crown: russet-orange color", + "forehead: olive-brown feathers", + "eyes: dark, beady, encircled in pale white", + "legs: long and slender, yellowish-orange", + "wings: olive-brown with faint banding", + "nape: olive-brown with orange-russet patch", + "tail: short and fan-shaped, olive-brown", + "throat: grayish-white with faint streaks" + ], + "purple cochoa": [ + "back: vibrant blue and purple feathers", + "beak: sharp, slender black beak", + "belly: light grayish-blue underbelly", + "breast: rich violet-blue plumage", + "crown: deep blue, slightly raised feathers", + "forehead: sleek blue-violet feathers", + "eyes: small, black, alert eyes", + "legs: slim, grayish-blue legs", + "wings: bright blue and purple-striped wings", + "nape: darker blue-violet feathers", + "tail: elongated, blue-purple tail feathers", + "throat: soft grayish-blue feathers" + ], + "purple grenadier": [ + "back: vibrant blue-violet feathers", + "beak: short, cone-shaped, light pinkish", + "belly: bright yellow-orange hue", + "breast: rich golden-yellow plumage", + "crown: brilliant blue-violet head top", + "forehead: iridescent violet-blue shade", + "eyes: small, black, and round", + "legs: slender and greyish-pink", + "wings: striking blue-violet and black pattern", + "nape: deep blue-violet feathers", + "tail: long, with blue-violet and black stripes", + "throat: golden-yellow feathered area" + ], + "purple heron": [ + "back: long, dark grey feathers with purplish highlights", + "beak: long, sharp, and yellowish", + "belly: pale grey with dark streaks", + "breast: dark grey with purple sheen", + "crown: black with elongated feathers", + "forehead: white stripe above eyes", + "eyes: round, yellow with black pupil", + "legs: long, yellowish, with slender toes", + "wings: broad, dark grey with purple iridescence", + "nape: white stripe extending from neck to crown", + "tail: short, black and dark grey feathers", + "throat: white with grey streaks" + ], + "purple honeycreeper": [ + "back: vibrant blue-purple feathers", + "beak: slightly curved black bill", + "belly: iridescent purple-blue hue", + "breast: shiny purple-blue plumage", + "crown: bright blue-purple crest", + "forehead: rich purple-blue feathers", + "eyes: dark round with white circle", + "legs: thin and dark gray", + "wings: striking blue-purple with black edges", + "nape: deep-purple feathered neck", + "tail: long and slender with blue-black feathers", + "throat: flashy purple-blue coloration" + ], + "purple indigobird": [ + "back: vibrant purple feathers with shimmering iridescence", + "beak: short, straight, and black in color", + "belly: pale purple hue with occasional white undertones", + "breast: bright purplish-blue with subtle streaks", + "crown: deep purple with iridescent sheen", + "forehead: rich purple shading towards the beak", + "eyes: small, black, and alert", + "legs: slender and black, ending in sharp claws", + "wings: iridescent purple with hints of blue and black", + "nape: gleaming purple hue blending into the back feathers", + "tail: elongated with purple and black feathers, slightly forked", + "throat: deep bluish-purple with fine streaks" + ], + "purple needletail": [ + "back: sleek, iridescent purple", + "beak: slender, black, needle-like", + "belly: light grey with faint purple hue", + "breast: smooth, glossy purplish-blue", + "crown: vibrant purple with slight crest", + "forehead: narrow, shimmering dark blue", + "eyes: small, dark, positioned on each side of the head", + "legs: short, black, with sharp claws", + "wings: long, rounded, deep purplish-blue", + "nape: glossy purple down to the back", + "tail: slightly forked, dark purple feathers", + "throat: vibrant purplish-blue, thinner feather density" + ], + "purple quail dove": [ + "back: purple and blue iridescent plumage", + "beak: short, gray, and curved", + "belly: light gray with purple sheen", + "breast: lavender purple with light streaks", + "crown: dark blue-purple with faint white stripes", + "forehead: lighter shade of lavender purple", + "eyes: black with white eye-ring", + "legs: reddish-orange with scaly texture", + "wings: purple and blue feathers, rounded", + "nape: bluish-violet with thin white stripes", + "tail: long, purple fading to gray, fan-shaped", + "throat: pale gray with a hint of purple" + ], + "purple starling": [ + "back: iridescent purple feathers", + "beak: sharp, yellow-tipped", + "belly: soft lavender plumage", + "breast: deep purple feathers", + "crown: shimmering violet crest", + "forehead: glimmering purple sheen", + "eyes: round, black and alert", + "legs: slender, grayish-blue", + "wings: glossy indigo with fine barring", + "nape: radiant purple hue", + "tail: long and fan-shaped, dark purple", + "throat: bright violet feathers" + ], + "purple sunbird": [ + "back: iridescent bluish-purple feathers", + "beak: slender curved black beak", + "belly: pale yellow underparts", + "breast: vibrant purplish-blue plumage", + "crown: shiny purple-blue feathers", + "forehead: gleaming purple-blue color", + "eyes: small black rounded eyes", + "legs: thin, grayish-black legs", + "wings: glossy blue-violet feathers with a darker edge", + "nape: purplish-blue with iridescent sheen", + "tail: black undertail with short, slightly square-shape", + "throat: bright blue-purple shimmering feathers" + ], + "purple backed fairywren": [ + "back: vibrant purple-blue plumage", + "beak: small, black, and pointy", + "belly: pale grey-white feathers", + "breast: bright purple-blue fluff", + "crown: glossy royal blue crest", + "forehead: dark blue plumage", + "eyes: round, black, and alert", + "legs: thin and pale orange", + "wings: purple-blue feathers with a black accent", + "nape: brilliant blue-purple hues", + "tail: long, expressive, blue-violet feathers", + "throat: bright blue-purple plumage" + ], + "purple backed sunbeam": [ + "back: shimmering purple feathers", + "beak: slender, curved black bill", + "belly: pale grayish-white underparts", + "breast: iridescent purple-green chest", + "crown: shining copper-colored top", + "forehead: golden-bronze sheen", + "eyes: small and round, dark brown", + "legs: slender, long legs with sharp claws", + "wings: bright purple with white-tipped feathers", + "nape: purple hue merging into golden copper", + "tail: long and forked, purple with white edges", + "throat: vibrant golden-green shimmer" + ], + "purple backed thornbill": [ + "back: vibrant purple feathers", + "beak: slender, curved, and sharp", + "belly: white and soft plumage", + "breast: purple hue blending into the white belly", + "crown: iridescent purple crown with a slight crest", + "forehead: purple and smooth feathering", + "eyes: small, dark, alert, and round", + "legs: delicate and light gray", + "wings: elongated, purple with hints of iridescence", + "nape: purple transitioning to the purple back", + "tail: long, purple, slightly forked", + "throat: purple shading into the white belly" + ], + "purple banded sunbird": [ + "back: vibrant purple and green iridescence", + "beak: long, slender, and sharply curved", + "belly: soft, pale yellow hue", + "breast: bright purple band with metallic shine", + "crown: glossy emerald green with hints of purple", + "forehead: brilliant shimmering green", + "eyes: small, dark, and expressive", + "legs: slender, grayish-brown with strong grip", + "wings: iridescent purple with green edges, mid-length", + "nape: luminous green with a smooth transition to purple", + "tail: elongated, forked, with radiant purple feathers", + "throat: radiant green, transitioning to the purple breast band" + ], + "purple bearded bee eater": [ + "back: sleek, iridescent green feathers", + "beak: long, slender, orange-tipped", + "belly: pale bluish-green plumage", + "breast: bright turquoise feathers", + "crown: shiny green, slightly raised", + "forehead: rich purple, short bristly feathers", + "eyes: dark, shining, surrounded by black markings", + "legs: slim, grayish-brown", + "wings: long, vibrant green, curved at tips", + "nape: smooth, green-glossed feathers", + "tail: long, elegant, forked, green-blue feathers", + "throat: radiant purple, distinctive beard-like appearance" + ], + "purple bellied lory": [ + "back: vibrant green feathers", + "beak: striking orange color", + "belly: bright purple plumage", + "breast: deep blue feathers", + "crown: rich blue and green hues", + "forehead: striking blue patch", + "eyes: dark with white eye-ring", + "legs: short, gray, and strong", + "wings: green and blue feathers with red highlights", + "nape: green and blue intermingling", + "tail: green, blue, and red feathers", + "throat: brilliant blue shading" + ], + "purple bibbed whitetip": [ + "back: vibrant purple feathers", + "beak: small, sharp, black", + "belly: white with purple tint", + "breast: bright purple bib", + "crown: smooth purple crest", + "forehead: purple feathered", + "eyes: dark, round and curious", + "legs: slender, gray and strong", + "wings: purple-tipped, white feathers", + "nape: purple and white striped", + "tail: long, white with purple tips", + "throat: white with a hint of purple" + ], + "purple breasted cotinga": [ + "back: vibrant blue feathers", + "beak: small, black, and pointed", + "belly: rich purple hue", + "breast: bright purple with a tinge of blue", + "crown: deep blue feathered crest", + "forehead: smooth blue feathers", + "eyes: dark and alert with a brown to black color", + "legs: thin and black with strong claws", + "wings: stunning blue and purple feathers, medium size", + "nape: blue feathers transitioning to purple", + "tail: blue and purple, medium length, and fanned", + "throat: vivid purple feathers" + ], + "purple breasted sunbird": [ + "back: shimmering green and blue feathers", + "beak: long, slender, and curved for nectar feeding", + "belly: purple iridescence fading to lighter shades", + "breast: bright metallic purple with iridescent sheen", + "crown: deep emerald green with glossy shine", + "forehead: shining green feathers transitioning into the crown", + "eyes: small and dark with a keen, curious gaze", + "legs: slender, greyish-black with strong feet for perching", + "wings: mix of vibrant blues, greens, and purples with intricate patterns", + "nape: glittering green feathers, connecting crown to back", + "tail: elongated, narrow feathers in gradients of blue and green", + "throat: continuation of the metallic purple breast, with a slight fade-out" + ], + "purple capped fruit dove": [ + "back: light green with hints of purple", + "beak: short, curved, and light gray", + "belly: pale grayish-purple", + "breast: reddish-purple plumage", + "crown: vibrant purple cap", + "forehead: bright purple feathers", + "eyes: dark, beady, and round", + "legs: slim, light pink", + "wings: green and purple with white trimming", + "nape: green and purple gradient", + "tail: long, green feathers with white tips", + "throat: whitish-gray with a gentle purple hue" + ], + "purple chested hummingbird": [ + "back: iridescent green feathers", + "beak: long, slender, and slightly curved", + "belly: pale white with a hint of violet", + "breast: vibrant purple iridescence", + "crown: shimmering green plumage", + "forehead: bright emerald feathers", + "eyes: small, dark, and alert", + "legs: thin, delicate, and short", + "wings: rapid flutter with iridescent green streaks", + "nape: greenish-gold transition from crown", + "tail: vibrant green with violet-tipped feathers", + "throat: brilliant purple with dazzling shine" + ], + "purple collared woodstar": [ + "back: vibrant green feathers", + "beak: slender, elongated black bill", + "belly: soft grayish-white plumage", + "breast: deep purple collar with white tufts", + "crown: iridescent green with purplish reflections", + "forehead: bright green shimmering feathers", + "eyes: small, dark, and rounded", + "legs: short, with strong black claws", + "wings: long, pointed, and iridescent green", + "nape: greenish feathers blending into purple collar", + "tail: short and slightly forked, with greenish feathers", + "throat: brilliant purple plumage with contrasting white tufts" + ], + "purple crested turaco": [ + "back: vibrant green feathers", + "beak: red and yellow hooked tip", + "belly: white and greenish-blue feathers", + "breast: deep purple plumage", + "crown: iridescent purple crest", + "forehead: red band of feathers", + "eyes: dark brown with white eye-ring", + "legs: long, grey and strong", + "wings: large with green and red feathers", + "nape: white and greenish-blue feathered neck", + "tail: green and red feathers, long and fan-shaped", + "throat: deep purple, white-bordered feathers" + ], + "purple crowned fairywren": [ + "back: vibrant purple-blue feathers", + "beak: small, thin, and dark", + "belly: pale grayish-white", + "breast: purple-blue feathers", + "crown: bright violet crown patch", + "forehead: deep rusty-red", + "eyes: dark, beady, and expressive", + "legs: slim, brown-grey", + "wings: iridescent purple-blue", + "nape: rusty-red and purple-blue", + "tail: long, dark, and slightly curved", + "throat: white with a purple-blue tint" + ], + "purple crowned lorikeet": [ + "back: vibrant green feathers", + "beak: curved, orange-red tip", + "belly: light green with blue undertones", + "breast: bright yellowish-green", + "crown: brilliant purple plumage", + "forehead: deep violet-blue feathers", + "eyes: dark, round with white eye-ring", + "legs: grayish with scaly texture", + "wings: green with blue-edged flight feathers", + "nape: vivid green coloration", + "tail: long, green with blue tips", + "throat: light green, blending with breast" + ], + "purple crowned plovercrest": [ + "back: vibrant green feathers", + "beak: slim, black curved bill", + "belly: pale greyish-white plumage", + "breast: light green blending into belly", + "crown: stunning purple crest, iridescent", + "forehead: greenish-blue hue, metallic sheen", + "eyes: dark, sharp gaze", + "legs: slender pinkish-grey, strong", + "wings: deep green, broad and rounded", + "nape: bright green", + "tail: elongated green feathers, fan-shaped", + "throat: soft grey, slightly paler than belly" + ], + "purple gaped honeyeater": [ + "back: deep olive-green feathers", + "beak: slender, curved, black", + "belly: pale yellow with darker streaks", + "breast: vibrant yellow with brownish streaks", + "crown: rich olive-green plumage", + "forehead: olive-green with hints of yellow", + "eyes: dark, beady eyes with white eyering", + "legs: strong, grayish-blue legs", + "wings: olive-green with hints of blue and yellow", + "nape: olive-green with subtle yellow streaks", + "tail: long, olive-green feathers with blue edging", + "throat: bright yellow with dark streaks" + ], + "purple headed starling": [ + "back: vibrant purplish-blue feathers", + "beak: slender, black and slightly curved", + "belly: light grey with white streaks", + "breast: purple-blue with touches of green sheen", + "crown: iridescent purple plumage", + "forehead: deep purple merging into blue", + "eyes: beady and black, surrounded by bare blue skin", + "legs: sleek black with strong grip", + "wings: glossy blue-purple with hints of green", + "nape: bluish-purple transitioning to grey", + "tail: long, blue-purple feathers with white tips", + "throat: gleaming purple-blue with green sheen" + ], + "purple naped lory": [ + "back: vibrant emerald green", + "beak: bright orange-red", + "belly: deep purple hue", + "breast: rich violet", + "crown: indigo and purple", + "forehead: bright blue edges", + "eyes: dark with white eye-ring", + "legs: strong and gray", + "wings: green with hints of blue", + "nape: striking purple patch", + "tail: elongated, green and blue feathers", + "throat: violet with a touch of blue" + ], + "purple naped spiderhunter": [ + "back: vibrant olive-green with a slight sheen", + "beak: long, curved, and blackish-grey", + "belly: pale yellow with subtle streaks", + "breast: warm yellow with light streaks", + "crown: olive-green with a purplish gloss", + "forehead: bright yellow with subtle striping", + "eyes: small and dark with a white eye-ring", + "legs: strong and greyish-black in color", + "wings: olive-green, elongated with white tips", + "nape: purplish-blue iridescence", + "tail: long and olive-green with white edges", + "throat: bright yellow with delicate streaks" + ], + "purple rumped sunbird": [ + "back: iridescent green feathers", + "beak: slender, curved, and black", + "belly: pale yellow underside", + "breast: vibrant purple patch", + "crown: glossy purple-blue cap", + "forehead: metallic green shine", + "eyes: small, round, and black", + "legs: thin and dark grey", + "wings: short, pointed, with greenish-blue feathers", + "nape: shiny green with hints of purple", + "tail: forked and dark blue-green", + "throat: glistening purple hue" + ], + "purple tailed imperial pigeon": [ + "back: dark bluish-grey feathers", + "beak: short and curved, pale gray", + "belly: light grey plumage", + "breast: purple-grey feathers", + "crown: dark purplish-grey crest", + "forehead: lighter shade of grey", + "eyes: small, black, surrounded by cobalt-blue eye-ring", + "legs: strong and reddish", + "wings: broad, purple-grey feathers with tinges of blue", + "nape: purplish-grey, blending into the crown", + "tail: dark purple feathers, elongated and fan-shaped", + "throat: lighter grey with a purplish sheen" + ], + "purple throated carib": [ + "back: vibrant green feathers", + "beak: slender, downward-curving black bill", + "belly: light grayish-white plumage", + "breast: soft gray with a hint of green", + "crown: iridescent green sheen", + "forehead: brilliant turquoise blue", + "eyes: dark, beady with a small white ring", + "legs: thin, black and twig-like", + "wings: glossy green with a slight curve", + "nape: distinctive purple patch on the throat", + "tail: long, forked, iridescent green feathers", + "throat: brilliant purple splash surrounded by green" + ], + "purple throated cotinga": [ + "back: vibrant blue with purple sheen", + "beak: short and black", + "belly: soft blue with a gradient effect", + "breast: brilliant purple", + "crown: deep blue with iridescent texture", + "forehead: shimmering dark blue", + "eyes: small and black, surrounded by blue", + "legs: dark gray and slender", + "wings: blue with hints of purple, elongated", + "nape: rich purple transitioning to blue", + "tail: long, blue feathers with purple undertones", + "throat: striking purple with shiny appearance" + ], + "purple throated cuckooshrike": [ + "back: slate gray, sleek feathers", + "beak: short, sturdy, dark-colored", + "belly: light gray with a white undertone", + "breast: soft, slightly curved, pale lavender hue", + "crown: slate gray, smooth contour", + "forehead: subtle transition to a lighter gray", + "eyes: sharp, black with a white ring", + "legs: slender, long, dark gray", + "wings: broad, elongated, gray with faint purple tint", + "nape: grayish-purple hue, well-defined feathers", + "tail: long, narrow, gray with a purplish tinge", + "throat: vibrant purple, stands out against lighter body color" + ], + "purple throated euphonia": [ + "back: deep blue plumage", + "beak: compact, black", + "belly: vivid yellow hue", + "breast: bright yellow feathers", + "crown: rich blue-black", + "forehead: iridescent purple patch", + "eyes: small, black, and watchful", + "legs: slender, dark gray", + "wings: blue-black with white trim", + "nape: blue-black transition to purple", + "tail: elongated, deep blue feathers", + "throat: striking purple vibration" + ], + "purple throated fruitcrow": [ + "back: glossy purple-black feathers", + "beak: short, strong, and hooked", + "belly: iridescent purple", + "breast: shimmering purple", + "crown: slightly raised, glossy dark feathers", + "forehead: smooth, violet-hued feathers", + "eyes: small and dark, with bright, alert expression", + "legs: thin, yet powerful, blackish-gray", + "wings: long, curved, with iridescent plumage", + "nape: purple-tinted, glossy dark feather", + "tail: medium-length, tapered, with lustrous feathers", + "throat: vivid purple sheen" + ], + "purple throated mountain gem": [ + "back: vibrant green plumage", + "beak: long, slender, and curved", + "belly: iridescent blue-green sheen", + "breast: shimmering metallic green", + "crown: deep green feathers", + "forehead: brilliant purple shine", + "eyes: small and dark", + "legs: thin and black", + "wings: bright green with white edges", + "nape: rich, purple hue", + "tail: forked, iridescent green feathers", + "throat: bright purple patch" + ], + "purple throated sunangel": [ + "back: vibrant green feathers", + "beak: long, slender black", + "belly: pale yellow", + "breast: shimmering purple-blue", + "crown: iridescent green", + "forehead: glistening violet-purple", + "eyes: small, black beads", + "legs: thin, grayish-purple", + "wings: fast-beating, yellow-green", + "nape: rich turquoise-green", + "tail: rounded, greenish-blue", + "throat: brilliant purple radiance" + ], + "purple throated sunbird": [ + "back: vibrant green feathers", + "beak: slender, curved black beak", + "belly: pale yellow plumage", + "breast: iridescent shades of blue", + "crown: shiny metallic purple", + "forehead: dark purple sheen", + "eyes: small, round, and black", + "legs: thin, grayish-black limbs", + "wings: shimmering green-blue feathers", + "nape: dark purple glimmer", + "tail: elongated, green and blue feathers", + "throat: striking deep purple hue" + ], + "purple throated woodstar": [ + "back: vibrant green feathers", + "beak: elongated, slender black", + "belly: pale white with hints of green", + "breast: bright iridescent purple", + "crown: shimmering emerald green", + "forehead: glittering lilac band", + "eyes: round, dark, and expressive", + "legs: thin, dark gray", + "wings: swift, curved, and translucent edges", + "nape: metallic green with purple iridescence", + "tail: forked, elongated, and black-tipped", + "throat: radiant deep purple" + ], + "purple winged roller": [ + "back: iridescent purple feathers with hints of blue", + "beak: stout, slightly hooked, dark grey", + "belly: soft white plumage with a lavender tint", + "breast: vibrant purple plumage fading to lavender", + "crown: iridescent purple crest with blue highlights", + "forehead: bright white patch in front of the eyes", + "eyes: dark brown with a thin white eye-ring", + "legs: long and slender, light grey", + "wings: striking purple feathers with hints of blue and teal", + "nape: rich purple plumage with blue undertones", + "tail: elongated feathers with a mix of deep purple and blue hues", + "throat: white plumage with a delicate lavender tint" + ], + "purplish jacamar": [ + "back: iridescent greenish-blue plumage", + "beak: long, slender, and dark", + "belly: light chestnut-brown hue", + "breast: vibrant chestnut coloring", + "crown: shimmering green-blue feathers", + "forehead: gleaming greenish-blue transition", + "eyes: small, dark, and alert", + "legs: thin, dark, and slightly curved", + "wings: rounded, green-blue with purplish edges", + "nape: bright green-blue feathers", + "tail: elongated, green-blue with chestnut undertones", + "throat: rich chestnut-colored patch" + ], + "purplish jay": [ + "back: vibrant violet feathers", + "beak: sleek black curve", + "belly: soft lavender fluff", + "breast: iridescent purple plume", + "crown: royal violet crest", + "forehead: smooth mauve gradient", + "eyes: piercing black orbs", + "legs: elegant slate-blue limbs", + "wings: majestic purple fan", + "nape: shaded lilac neck", + "tail: elongated violet streaming", + "throat: subtle lavender under-feathers" + ], + "purplish backed jay": [ + "back: shimmering purplish-blue feathers", + "beak: strong, black, and pointed", + "belly: pastel lavender hue", + "breast: light purplish-gray plumage", + "crown: iridescent purple-blue crest", + "forehead: deep blue-violet feathers", + "eyes: piercing black with small white ring", + "legs: dark gray and sturdy", + "wings: striking purplish-blue with black primaries", + "nape: transitioning from deep purple to blue", + "tail: long and vibrant purplish-blue", + "throat: pale lavender with gray streaks" + ], + "purplish backed quail dove": [ + "back: vibrant purplish-blue hues", + "beak: short and pointy, pale pinkish", + "belly: soft lavender undertones", + "breast: deep purple gradient", + "crown: striking iridescent purple", + "forehead: light purple tinged", + "eyes: small and black, surrounded by faint purple ring", + "legs: short and slender, pale pinkish hue", + "wings: mottled purplish-blue with hints of green", + "nape: vibrant purple fading into lavender", + "tail: elongated, layered feathers with purple tips", + "throat: pale lavender with subtle purple streaks" + ], + "purplish mantled tanager": [ + "back: deep blue-violet feathers", + "beak: short and sturdy, black", + "belly: vibrant turquoise-blue", + "breast: bright purple-blue shades", + "crown: iridescent purple crest", + "forehead: dark blue-violet plumage", + "eyes: small, dark with white eye-ring", + "legs: slim, black and strong", + "wings: blue-violet with lighter edges", + "nape: shiny purple-blue feathers", + "tail: long and blue-violet, slightly forked", + "throat: bold, blue-violet coloration" + ], + "purus jacamar": [ + "back: glossy greenish-blue plumage", + "beak: long, thin, and black", + "belly: reddish-brown feathers", + "breast: reddish or chestnut hue", + "crown: iridescent green or blue", + "forehead: slightly lighter greenish-blue", + "eyes: dark, medium-sized, with white eye-ring", + "legs: short, grayish-black", + "wings: metallic greenish-blue, narrow, and long", + "nape: greenish-blue, blending with the crown", + "tail: long, slender, black with blue or green sheen", + "throat: light reddish brown, transition from breast" + ], + "puvel illadopsis": [ + "back: vibrant olive-green feathers", + "beak: small, sharp, tan-colored", + "belly: creamy white with faint horizontal streaks", + "breast: bright yellow with fine black streaks", + "crown: rusty brown with subtle markings", + "forehead: light grayish-brown fading to the crown", + "eyes: dark, round, encircled by thin white eye-ring", + "legs: slender grayish-blue with sharp claws", + "wings: olive-green with indistinct brown bars", + "nape: olive-green, transitioning from the crown", + "tail: long, narrow, dark brown with lighter tips", + "throat: brilliant white contrasting with breast" + ], + "pycroft petrel": [ + "back: sleek, grayish upper-side", + "beak: sharp, hooked, dark-colored", + "belly: white feathered underside", + "breast: smooth, light-colored plumage", + "crown: rounded, grayish headcap", + "forehead: slightly sloping, grayish, above eyes", + "eyes: small, dark, and alert", + "legs: short, yellowish, and webbed", + "wings: long, slender, grayish-black feathers", + "nape: grayish curved neck region", + "tail: forked, black and white feathers", + "throat: white or light gray plumage" + ], + "pygmy antwren": [ + "back: vibrant brown and subtly striped", + "beak: slender, sharp, and curved", + "belly: light cream-colored with fine markings", + "breast: pale yellow with intricate stripes", + "crown: rich chestnut hue with a slight crest", + "forehead: smooth and light brown", + "eyes: small, dark, and bead-like", + "legs: thin, long, and blue-grey", + "wings: mottled brown with feathery edges", + "nape: warm brown with lighter streaks", + "tail: short, fan-shaped, and brown", + "throat: white with delicate gray streaks" + ], + "pygmy batis": [ + "back: sleek, dark gray feathers", + "beak: short, hooked, and black", + "belly: pale gray with thin dark streaks", + "breast: grayish-white with dark streaks", + "crown: dark gray with brownish tint", + "forehead: slightly paler gray than crown", + "eyes: small, black, and alert", + "legs: thin, black, and strong", + "wings: dark gray with lighter edges, rounded", + "nape: dark gray blending into the crown", + "tail: long, dark gray, with white outer feathers and black tips", + "throat: pale gray, contrasting with breast" + ], + "pygmy cormorant": [ + "back: dark greenish-black plumage", + "beak: long, slender, and hooked at the tip", + "belly: dark grey with a lighter center", + "breast: black with some brownish tones", + "crown: black and slightly crested", + "forehead: gently sloping towards beak", + "eyes: dark and round, surrounded by a thin white circle", + "legs: short and black with webbed feet", + "wings: long, black, and broad with a white patch", + "nape: black with a thick, elongated feather tuft", + "tail: short, black, and fan-shaped", + "throat: dark grey with a small white patch" + ], + "pygmy cuckooshrike": [ + "back: slate gray feathers for camouflage", + "beak: small, slightly curved for insects", + "belly: light gray with subtle streaks", + "breast: soft gray plumage for warmth", + "crown: slate-gray colored, rounded", + "forehead: flat, blending into the crown color", + "eyes: alert, dark with white surrounds", + "legs: slender,-grayish, adapted for perching", + "wings: slate gray, short, and rounded for maneuvering", + "nape: grayish, neck connecting to crown", + "tail: short, gray, with white tips for balance", + "throat: light gray, leading to breast area" + ], + "pygmy cupwing": [ + "back: small, rounded, greenish-brown feathers", + "beak: tiny, straight, blackish-grey", + "belly: light cream with brown spots", + "breast: pale rufous-brown with streaks", + "crown: rich brown with faint streaks", + "forehead: slightly lighter brown with wispy feathers", + "eyes: black and bead-like", + "legs: short, slender, pale pinkish-grey", + "wings: short, rounded, greenish-brown with faint barring", + "nape: soft brown with thin streaks", + "tail: short, square, brown with faint bands", + "throat: creamy white with light streaks" + ], + "pygmy eagle": [ + "back: compact and sturdy torso frame", + "beak: small, sharp, and hooked", + "belly: light and streamlined", + "breast: sleek, feathered, and robust", + "crown: smooth with brown feathers", + "forehead: narrow and slightly curved", + "eyes: round, sharp, and focused", + "legs: short, strong, and feathered", + "wings: broad, versatile, and well-structured", + "nape: slender and covered in feathers", + "tail: short, fan-shaped, and flexible", + "throat: unadorned but functional" + ], + "pygmy falcon": [ + "back: small, sleek body with gray or white feathers", + "beak: short, hooked, designed for grabbing prey", + "belly: light-colored, has fine, dark barring", + "breast: white or pale gray with fine, dark streaks", + "crown: smooth, gray feathers on top of the head", + "forehead: short and rounded, wears a light gray plumage", + "eyes: large, round, and dark, sharply peering out", + "legs: short, with sharp, curved talons for gripping", + "wings: compact and rounded, adapted for agile flying", + "nape: back of the neck, covered in gray or white feathers", + "tail: narrow and elongated, featuring dark bars and a white tip", + "throat: light-colored, blending with the breast plumage" + ], + "pygmy flowerpecker": [ + "back: olive-green feathers provide camouflaging in foliage", + "beak: short, pointed, designed for flower feeding", + "belly: whitish color with lighter streaks", + "breast: olive-grey feathers with streaks of brown", + "crown: olive-brown with marked feathers", + "forehead: olive-grey feathers with slight markings", + "eyes: small, dark, express curiosity", + "legs: short, sturdy, good for perching", + "wings: olive-brown with curved tips for swift flying", + "nape: olive-brown with marked feathers", + "tail: olive-brown, slightly forked for agile flight", + "throat: light grey, unmarked, appears delicate" + ], + "pygmy flycatcher": [ + "back: light olive-green feathers", + "beak: short, sharp, and slightly curved", + "belly: pale yellow with subtle markings", + "breast: soft yellow or greyish hue", + "crown: greyish-olive with faint streaks", + "forehead: pale grey with fine streaks", + "eyes: small, dark, and round", + "legs: slender and dark grey", + "wings: olive-green with two faint wingbars", + "nape: greyish-olive with slight streaking", + "tail: long and narrow, olive-green with blackish markings", + "throat: pale grey with indistinct streaks" + ], + "pygmy hanging parrot": [ + "back: vibrant green feathers", + "beak: small, black, curved upper mandible", + "belly: yellowish-green underbelly", + "breast: bright green plumage, hints of blue", + "crown: light blueish-gray feathers", + "forehead: red to light pink coloration", + "eyes: dark, round, and expressive", + "legs: short, grayish-brown talons", + "wings: stunning green with blue flight feathers", + "nape: blue and green feathers mixed", + "tail: short, bright green with a hint of red", + "throat: yellowish-green with a subtle blue tint" + ], + "pygmy longbill": [ + "back: short, streamlined olive-brown feathers", + "beak: long, slender, downward-curving bill", + "belly: pale yellow-tinged underparts", + "breast: light olive-brown with faint streaks", + "crown: dark olive-brown with faint streaks", + "forehead: slightly paler brown compared to crown", + "eyes: small, black with faint white eyering", + "legs: short, grayish-blue with strong toes", + "wings: olive-brown with darker flight feathers", + "nape: olive-brown with faint streaks", + "tail: long, narrow, dark brown with lighter brown tips", + "throat: pale olive-yellow with faint streaks" + ], + "pygmy lorikeet": [ + "back: vibrant green feathers", + "beak: small, curved, orange beak", + "belly: bright yellow feathering", + "breast: rich orange-red chest", + "crown: greenish-yellow head feathers", + "forehead: green plumage blending into the crown", + "eyes: round, dark, and alert", + "legs: short, gray, with strong toes", + "wings: green with blue-tipped flight feathers", + "nape: yellowish-green feathers at the back of the neck", + "tail: elongated, green and blue tail feathers", + "throat: orange-red plumage fading to yellow" + ], + "pygmy nightjar": [ + "back: pale grayish-brown with fine black streaks", + "beak: short, wide, and dark-colored", + "belly: light grayish-white with fine black spots", + "breast: grayish-brown with black streaks and spots", + "crown: grayish-brown with fine black streaks", + "forehead: pale gray with dark streaks", + "eyes: large, dark, and round with a white eyering", + "legs: short and dark-colored with strong claws", + "wings: long and pointed, grayish-brown with fine black streaks", + "nape: grayish-brown with fine black streaks", + "tail: long and rounded, grayish-brown with white tip and fine black streaks", + "throat: pale grayish-white with black streaks" + ], + "pygmy palm swift": [ + "back: sleek, dark brown feathers", + "beak: small, black and slightly curved", + "belly: soft, pale brown plumage", + "breast: smooth, light brown feathers", + "crown: dark brown with a slight crest", + "forehead: brownish feather transition to face", + "eyes: tiny, black, and alert", + "legs: short and dark, with sharp claws", + "wings: long, slender, and dark brown", + "nape: brown with subtle neck contour", + "tail: short and deeply forked", + "throat: pale brown with lighter feather edging" + ], + "pygmy sunbird": [ + "back: vibrant, green iridescent feathers", + "beak: slender, slightly curved black bill", + "belly: pale yellow with hints of olive-green", + "breast: brilliant yellow, fading into pale yellow", + "crown: rich metallic purple", + "forehead: striking purple shimmer", + "eyes: small, dark, alert gaze", + "legs: slim, dark grey legs, and tiny feet", + "wings: iridescent blue-green, web-like patterns", + "nape: lustrous purple, connecting crown to back", + "tail: two elongated central tail feathers, blue-green sheen", + "throat: saturated yellow, contrasting with head and belly" + ], + "pygmy swiftlet": [ + "back: sleek, grayish-brown feathers", + "beak: short, black, slightly curved", + "belly: light gray with soft plumage", + "breast: pale grayish-white feathers", + "crown: smooth, grayish-brown feathers", + "forehead: light gray coloring", + "eyes: small, black, and round", + "legs: short, black, and sturdy", + "wings: long, narrow, with grayish-brown feathers", + "nape: grayish-brown with well-defined feathers", + "tail: short, square-ended with grayish-brown feathers", + "throat: pale grayish-white with soft plumage" + ], + "pygmy tit": [ + "back: small, olive-green feathers", + "beak: tiny, needle-like, blackish", + "belly: light cream with pale yellow undertones", + "breast: fluffy, white with grayish streaks", + "crown: gray with subtle olive hue", + "forehead: small, pale gray", + "eyes: large, black, lively", + "legs: slender with dark gray color", + "wings: short, rounded, olive-green", + "nape: gray with greenish shades", + "tail: short, slightly forked, dark gray", + "throat: white with grayish tinge" + ], + "pygmy white eye": [ + "back: small and rounded with light green feathers", + "beak: short and thin, blackish-brown", + "belly: pale, whitish-yellow and slightly fluffy", + "breast: whitish-yellow with light green tinges", + "crown: light green with prominent white eye-ring", + "forehead: light green feathers blending into crown", + "eyes: black, beady, surrounded by a white eye-ring", + "legs: thin and gray with sharp, black claws", + "wings: light green with faint darker markings", + "nape: light green, blending into back feathers", + "tail: short and slightly rounded, light green feathers", + "throat: pale, whitish-yellow blending into breast" + ], + "quail plover": [ + "back: olive-brown with fine black markings", + "beak: short, stout, and pale gray", + "belly: light buff with dark spotting", + "breast: tawny with black spots and streaks", + "crown: reddish-brown with a black stripe", + "forehead: pale buff with black lines", + "eyes: dark and expressive, surrounded by thin eyering", + "legs: sturdy, grayish-yellow with sharp claws", + "wings: rounded, brown and black with buff and white markings", + "nape: reddish-brown, blending into back", + "tail: short and square, brownish-black with faint white bands", + "throat: pale buff with fine black streaks" + ], + "quailfinch": [ + "back: brownish-grey feathers", + "beak: short, conical, light-colored", + "belly: cream or buff feathers, speckled markings", + "breast: reddish-brown with dark spots", + "crown: greyish-brown with a black stripe", + "forehead: light buff with a dark stripe", + "eyes: small, dark, surrounded by a faint eyering", + "legs: thin, pale, with long toes", + "wings: mottled brown, rounded", + "nape: greyish-brown, lightly patterned", + "tail: short, brown with white outer feathers", + "throat: pale, buff with dark markings" + ], + "quebracho crested tinamou": [ + "back: subtle greyish-brown feathers", + "beak: stout, slightly curved, and greyish-brown", + "belly: pale buff color with streaks", + "breast: light brown with subtle barring", + "crown: elongated, black feathers with tuft-like crest", + "forehead: smooth, lighter brown feathers", + "eyes: small and black, framed by a thin white eyering", + "legs: slender, light grey with three forward-pointing toes", + "wings: greyish-brown, short and rounded", + "nape: warm brown, blending into the back feathers", + "tail: short, brown-barred feathers", + "throat: lightly streaked, pale feathers" + ], + "rachel malimbe": [ + "back: dark blue with iridescent sheen", + "beak: slender, black, and pointed", + "belly: white with blue speckles", + "breast: bright blue with darker streaks", + "crown: glossy blue with a slight crest", + "forehead: shiny blue with a hint of purple", + "eyes: dark brown with white feathered outlines", + "legs: short, black with strong feet", + "wings: iridescent blue with dark edges", + "nape: deep blue transitioning from the crown", + "tail: long, dark blue with white tips", + "throat: bright blue with distinctive black markings" + ], + "racket tailed roller": [ + "back: vibrant turquoise-blue feathers", + "beak: short, stout, black hook", + "belly: understated pale blue-gray plumage", + "breast: rich lilac coloring with a hint of blue", + "crown: unmistakable violet crest on top", + "forehead: subdued purple-blue hue, gradually blending with the crown", + "eyes: gleaming black beads surrounded by pale skin", + "legs: sturdy, grayish-black, and well-proportioned", + "wings: impressive sky-blue hue enveloped by violet streaks", + "nape: bluish-purple plumage transitioning to the back", + "tail: magnificent elongated twin streamers with racket-shaped tips", + "throat: subtle lavender-blue feathers with a touch of gray" + ], + "racket tailed treepie": [ + "back: olive-brown feathers", + "beak: strong, black, and slightly curved", + "belly: pale grayish-white feathers", + "breast: grayish-white with blueish tinge", + "crown: black with a slight bushy crest", + "forehead: black feathers gradually fading to gray", + "eyes: deep brown with a black ring", + "legs: long, gray, and well-adapted for perching", + "wings: olive-brown with deep blue undertones", + "nape: black with a blueish-gray tinge", + "tail: long, black, graduated, with two wide rackets at the ends", + "throat: pale grayish-white feathers with a tinge of blue" + ], + "racket tipped thorntail": [ + "back: vibrantly colored feathers with iridescent sheen", + "beak: slender, slightly curved, and black", + "belly: pale green with feather streaks", + "breast: bright green with an iridescent shine", + "crown: emerald green with a blue gradient", + "forehead: light green fading to iridescent blue", + "eyes: dark, round, and expressive", + "legs: thin, black, and wiry", + "wings: long, pointed, with shimmering green and blue feathers", + "nape: iridescent blue-green feathers, curved gracefully", + "tail: long, racket-tipped with two distinctive elongated tail feathers", + "throat: subtly iridescent, lighter green" + ], + "radde accentor": [ + "back: brownish-gray with light streaks", + "beak: short and conical shaped", + "belly: pale gray with brownish tinge", + "breast: grayish-white with faint streaks", + "crown: grayish-brown with light streaks", + "forehead: light gray with slight streaks", + "eyes: small, dark, and rounded", + "legs: thin and pale pinkish-brown", + "wings: brownish-gray with light feather edgings", + "nape: grayish-brown with light streaks", + "tail: brownish-gray with white outer feathers", + "throat: pale gray with faint streaks" + ], + "radde warbler": [ + "back: olive-brown with dark streaks", + "beak: thin, pointed, and blackish", + "belly: creamy-white with brownish sides", + "breast: pale buff with streaks", + "crown: grayish-brown with pale edges", + "forehead: slightly paler gray-brown", + "eyes: large and dark with pale eyering", + "legs: long, slender, and pinkish-brown", + "wings: dark brown with pale edges on feathers", + "nape: olive-brown with dark streaks", + "tail: long and brown with white outer feathers", + "throat: creamy-white with minimal streaks" + ], + "radjah shelduck": [ + "back: brownish plumage with dark streaks", + "beak: black with a white tip", + "belly: creamy white feathers", + "breast: cream-colored feathers blending into the belly", + "crown: rounded head with dark brown feathers", + "forehead: slightly lighter brown feathers", + "eyes: dark brown with a white eye-ring", + "legs: orangish-red with webbed feet", + "wings: white flight feathers with light brown edges", + "nape: dark brown feathers leading to the back", + "tail: short with a mix of white and brown feathers", + "throat: pale brown, blending into the breast area" + ], + "raffles malkoha": [ + "back: greenish-blue with blackish-white streaks", + "beak: long, slender, and slightly curved", + "belly: whitish with black streaks and greenish-blue tinges", + "breast: blackish-white with greenish-blue streaks", + "crown: black with white speckles and blue iridescence", + "forehead: blackish with white speckles", + "eyes: dark brown with a faint yellow ring", + "legs: greyish-black with sturdy feet", + "wings: greenish-blue with blackish-white streaks and a slight blue sheen", + "nape: black with white speckles and greenish-blue tinge", + "tail: long and graduated, with greenish-blue feathers and white tips", + "throat: blackish-white streaks and a slight greenish-blue tinge" + ], + "raggiana bird of paradise": [ + "back: vibrant green and yellow feathers", + "beak: long, slender, and black", + "belly: bright yellow feathers", + "breast: rich red-orange plumes", + "crown: red-orange fan-like crest", + "forehead: deep blue feathers", + "eyes: dark, piercing gaze", + "legs: black and sturdy", + "wings: mixture of green, blue, and red feathers", + "nape: brilliant green and yellow feathers", + "tail: elongated, fine black feathers", + "throat: iridescent blue patch" + ], + "raiatea fruit dove": [ + "back: olive-green with purple tinges", + "beak: short and hooked, pale grayish-brown", + "belly: yellowish-green fading to pale gray near the vent", + "breast: rich golden-orange merging into olive-green", + "crown: pale greenish-gray with a brownish hue", + "forehead: bright pale yellow", + "eyes: dark brown surrounded by fine white eye-ring", + "legs: short and strong, dark gray", + "wings: olive-green with purple sheen and blackened flight feathers", + "nape: pale greenish-gray transitioning to olive-green", + "tail: long and tapering, olive-green with purple-blue iridescence", + "throat: creamy-white transitioning into golden-orange" + ], + "raimondi yellow finch": [ + "back: bright yellow with black streaks", + "beak: sharp, pointed, silver-black", + "belly: vibrant yellow", + "breast: yellow with mixed shades of brown", + "crown: bright yellow with a hint of orange", + "forehead: yellow with a subtle black patch", + "eyes: round, black, and shiny", + "legs: slender, strong, gray-black", + "wings: black with yellow and white edge markings", + "nape: yellow with black streaks", + "tail: black with yellow and white outer feathers", + "throat: yellow, blending into the breast color" + ], + "rain quail": [ + "back: brownish-gray feathers with subtle markings", + "beak: short and stout, curved downward", + "belly: creamy white with black striped markings", + "breast: rusty-orange with dark spots and streaks", + "crown: grayish-brown with a dark central stripe", + "forehead: buff-colored with black bordered crest", + "eyes: small, black, and round", + "legs: short and strong, yellowish-brown", + "wings: brown with a white wingbar and black flight feathers", + "nape: grayish-brown with a darker collar", + "tail: short, brown with white outer feathers", + "throat: white with fine black streaks" + ], + "rainbow bee eater": [ + "back: vibrant green plumage", + "beak: slender, curved black bill", + "belly: pale yellow feathers", + "breast: golden-orange chest", + "crown: blue-green head", + "forehead: bright turquoise patch", + "eyes: striking black with white eyestripe", + "legs: small, dark brown", + "wings: green-blue feathers with black flight feathers", + "nape: blue-green, meeting the crown", + "tail: elongated, delicate streamers with a black bar", + "throat: velvety black stripe" + ], + "rainbow pitta": [ + "back: vibrant green feathers", + "beak: black and slightly curved", + "belly: pale blue with black patches", + "breast: rich turquoise blue", + "crown: deep green with a black stripe", + "forehead: bold orange-red stripe", + "eyes: dark and round, surrounded by black", + "legs: sturdy gray with sharp claws", + "wings: mixture of green and dark blue feathers", + "nape: dark blue with lighter blue highlights", + "tail: long and vivid blue with black pattern", + "throat: bright white with slender black lines" + ], + "rainbow starfrontlet": [ + "back: vibrant green feathers with iridescent shine", + "beak: long, slender, and black for sipping nectar", + "belly: soft, emerald green plumage", + "breast: bright green with interspersed colorful feathers", + "crown: radiant, multicolored cap of feathers", + "forehead: fiery orange to red gradient", + "eyes: small, dark, and alert", + "legs: thin, fine, and black for delicate perching", + "wings: iridescent, shining green with hints of blue", + "nape: blend of blue, green, and purple feathers", + "tail: elongated, streamer-like feathers with shimmering colors", + "throat: gleaming purple and blue, catches light beautifully" + ], + "rainbow bearded thornbill": [ + "back: vibrant green with iridescent shine", + "beak: slender black and slightly curved", + "belly: soft white feathers with a touch of pink", + "breast: brilliant red plumage", + "crown: bold purple and blue hues blending seamlessly", + "forehead: brilliant blue splash", + "eyes: small, round, and alert with a black pupil", + "legs: thin black limbs with sharp talons", + "wings: dazzling shades of green, blue, and violet in a striking pattern", + "nape: iridescent purple-blue transition to green", + "tail: elongated plumes in gradient purples, blues, and greens", + "throat: fiery orange and yellow feathers with a signature \"beard" + ], + "raja ampat pitohui": [ + "1. back: vibrant yellow-orange feathers", + "2. beak: slender and black", + "3. belly: bright yellow with black speckles", + "4. breast: rich orange with black pattern", + "5. crown: intense yellow-orange hue", + "6. forehead: yellow with a slight tint of orange", + "7. eyes: small, black, and alert", + "8. legs: slim and featherless, dark grey", + "9. wings: black with yellow-orange patterns", + "10. nape: deep yellow-orange coloration", + "11. tail: long black plumes with yellow-orange accents", + "12. throat: yellow-orange with black patches" + ], + "rajah scops owl": [ + "back: dark-colored with reddish-brown mottlings", + "beak: short, curved, sharp, and grayish", + "belly: white to pale buff and finely barred", + "breast: reddish-brown with prominent white spots", + "crown: blackish-brown with pale streaks", + "forehead: blackish, separated from the brown crown by a thin white line", + "eyes: large, bright yellow, and forward-facing", + "legs: feathered, light brown, with sharp yellowish talons", + "wings: rounded and brownish with white spots and fine dark bars", + "nape: reddish-brown with white spots", + "tail: brownish with white streaks and dark bands", + "throat: white to pale buff with fine brown bars" + ], + "rameron pigeon": [ + "back: bluish-gray with a sleek sheen", + "beak: short, strong, and black", + "belly: soft and light gray", + "breast: purplish-pink fading to gray", + "crown: darker blue-gray with a green sheen", + "forehead: slightly paler gray", + "eyes: bright orange with a dark pupil", + "legs: short and reddish-pink", + "wings: bluish-gray with darker primary feathers", + "nape: blue-gray with a hint of green iridescence", + "tail: long, bluish-gray feathers with a dark band near the tip", + "throat: pale gray closer to the beak, blending into the breast color" + ], + "rand warbler": [ + "back: olive-green and streaked feathers", + "beak: thin, pointed, and black", + "belly: pale yellow, lightly streaked", + "breast: bright yellow with faint stripes", + "crown: golden-yellow with black streaks", + "forehead: bright yellow and unmarked", + "eyes: black with pale eyering", + "legs: long and slender, light pink", + "wings: olive-green with two white wingbars", + "nape: golden-yellow with streaks extending to back", + "tail: dark with white outer tail feathers", + "throat: vibrant yellow, unmarked" + ], + "rapa shearwater": [ + "back: sleek, grayish-brown feathers", + "beak: long, slender, and hooked for catching fish", + "belly: light gray with patches of white", + "breast: white with pale gray streaks", + "crown: grayish-brown, subtly darker than back", + "forehead: white transitioning into grayish-brown", + "eyes: dark and beady, surrounded by white feathers", + "legs: short and sturdy with dark webbed feet", + "wings: long, slender, lined with white and grayish-brown feathers", + "nape: grayish-brown, blending with the back", + "tail: narrow and long, white underneath with grayish-brown upper feathers", + "throat: white, bordered by pale gray streaks" + ], + "rarotonga monarch": [ + "back: deep blue-black feathers", + "beak: slender, slightly curved, black", + "belly: lighter blue plumage", + "breast: vibrant blue feathers", + "crown: dark blue with slight crest", + "forehead: blue-black feathers", + "eyes: encircled in white plumes", + "legs: short, grey with strong feet", + "wings: elongated, blue-black with violet sheen", + "nape: rich blue colored feathers", + "tail: long, blue-black with hints of violet", + "throat: intense blue, lighter than breast feathers" + ], + "rarotonga starling": [ + "back: dark greenish-black feathers", + "beak: long, thin, and curved", + "belly: off-white with faint streaks", + "breast: creamy white with subtle green sheen", + "crown: glossy dark green", + "forehead: smooth, black feathers", + "eyes: dark, round, and alert", + "legs: strong and grey", + "wings: iridescent greenish-black", + "nape: vibrant green and black blended", + "tail: elongated, greenish-black feathers", + "throat: bright, snow-white patches" + ], + "ratchet tailed treepie": [ + "back: olive-brown with subtle grayish hue", + "beak: black, strong and slightly curved", + "belly: lustrous off-white with pale gray undertones", + "breast: light olive with pale gray streaks", + "crown: sleek black with a slight iridescence", + "forehead: faint gray feather markings above the beak", + "eyes: dark brown with a white eye-ring", + "legs: sturdy, dark-gray with sharp claws for gripping", + "wings: olive-brown with black primaries and white-tipped secondaries", + "nape: blackish-gray feathers connecting the crown and back", + "tail: impressive, long, and graduated with a unique ratchet-like pattern", + "throat: creamy white extending from lower beak to breast" + ], + "rattling cisticola": [ + "back: light brown with faint streaks", + "beak: thin, pointed, dark grey", + "belly: whitish with pale brown streaks", + "breast: buff, blending with belly", + "crown: rich brown with streaks", + "forehead: light brown, blending with crown", + "eyes: dark, medium-sized, surrounded by light markings", + "legs: pale pinkish-grey, slender", + "wings: brown with faint barring", + "nape: light brown, blending with back", + "tail: short, rounded, dark brown with faint barring", + "throat: pale buff, blending with breast" + ], + "razo skylark": [ + "back: light brown with streaks", + "beak: small and dark", + "belly: off-white and pale", + "breast: brownish with light streaks", + "crown: light brown and streaky", + "forehead: pale and feathered", + "eyes: small and black", + "legs: slender and dark", + "wings: brown with light tips", + "nape: light brown with streaks", + "tail: medium length, brown", + "throat: off-white and streaky" + ], + "razor billed curassow": [ + "back: dark greenish-black feathers", + "beak: strong, black, hooked tip", + "belly: black with white undertones", + "breast: deep black, dense feathers", + "crown: black with erect crest", + "forehead: dark black plumage", + "eyes: small, red with black pupils", + "legs: long, strong, dark grey", + "wings: dark iridescent green, broad", + "nape: black with long feather plumes", + "tail: long, black, white-tipped", + "throat: black with hints of gray" + ], + "recurve billed bushbird": [ + "back: olive-green plumage", + "beak: long and curved upward", + "belly: pale yellowish hue", + "breast: slightly paler green", + "crown: olive-green with a crest", + "forehead: lighter shades of green", + "eyes: small and black", + "legs: slender and grey", + "wings: green, with darker flight feathers", + "nape: vibrant olive-green", + "tail: elongated, green feathers with white tips", + "throat: pale, yellowish-green" + ], + "red avadavat": [ + "back: deep crimson with fine white spots", + "beak: pale, silvery-gray, conical shape", + "belly: deep red blending into black vent", + "breast: vibrant red with white spots", + "crown: rich red with hints of dark brown", + "forehead: bright scarlet feathers with white spots", + "eyes: dark, small, encircled by thin, faint white eye-ring", + "legs: pinkish-grey, with scaly texture", + "wings: dark brown with red edging and white spots", + "nape: red with thin white-spotted feathers", + "tail: brownish-black with white-tipped feathers", + "throat: bright red with fine white speckles" + ], + "red collared dove": [ + "back: light brown with grayish shades", + "beak: short, slim, slightly curved, black", + "belly: pale pinkish-gray", + "breast: rosy pink, fading to grayish-white", + "crown: pale pinkish-gray, slightly lighter than back", + "forehead: smooth, pale pinkish-gray", + "eyes: dark brown, small, surrounded by reddish eye ring", + "legs: short, sturdy, reddish-brown", + "wings: light brown with black wingtips", + "nape: pale pinkish-gray, uniform with crown and back", + "tail: elongated, light brown with black outer feathers and white tips", + "throat: grayish-white, blending into rosy pink breast" + ], + "red junglefowl": [ + "back: brownish-red feathers with a glossy finish", + "beak: stout, slightly curved, light-colored", + "belly: light gray feathers with faint black barring", + "breast: golden-orange with distinct black stripes", + "crown: prominent red comb and dark greenish-black feathers on the head", + "forehead: red comb and fine white bristly feathers", + "eyes: bright, alert, and surrounded by red facial skin", + "legs: strong, grayish-brown with scales and three forward-facing toes", + "wings: medium-length with brown and black patterned feathers", + "nape: long, iridescent greenish-black neck feathers", + "tail: curved, greenish-black feathers with orange and brown base colors", + "throat: white bristly feathers and red wattles below the beak" + ], + "red shining parrot": [ + "back: vibrant red plumage, sleek feathers", + "beak: strong, curved, dark gray", + "belly: fiery red feathers, slightly lighter than back", + "breast: rich crimson, fluffier plumage", + "crown: radiant red crest feathers, slightly elongated", + "forehead: smooth, scarlet feathers transitioning to crown", + "eyes: dark, round, with intelligent gaze", + "legs: sturdy, gray, with scaly texture", + "wings: brilliant red with hints of blue and green, wide-spread for flight", + "nape: crimson feathers, tapering to the back", + "tail: elongated red feathers, blue-tipped, sleek and aerodynamic", + "throat: bright red, with softer, smaller feathers" + ], + "red shoveler": [ + "back: deep rusty-orange feathers", + "beak: black spatula-shaped bill", + "belly: white feathered underparts", + "breast: reddish-brown plumage", + "crown: dark brownish-red cap", + "forehead: slightly lighter reddish-brown", + "eyes: dark, beady with a hint of white around", + "legs: greyish-blue with webbed feet", + "wings: dark brown with blue speculum and white edge", + "nape: rich rufous-brown with darker streaks", + "tail: dark brown, short and pointed", + "throat: lighter reddish-brown feathers" + ], + "red siskin": [ + "back: vibrant red feathers", + "beak: short, pointed, and dark", + "belly: lighter red-orange shade", + "breast: bright red, feathered", + "crown: deep red plumage", + "forehead: striking red feathers", + "eyes: dark, round, and alert", + "legs: thin, black, and strong", + "wings: red and black intermixed feathers", + "nape: lighter red fading into the back", + "tail: long, black, and slightly forked", + "throat: deep red blending into the breast" + ], + "red wattlebird": [ + "back: dark grey with brownish tints", + "beak: long and slightly down-curved", + "belly: white with faint brown streaks", + "breast: pale gray with dark streaks", + "crown: slightly raised with dark grey feathers", + "forehead: yellow and orange patterned with black", + "eyes: dark and round, surrounded by pale gray feathers", + "legs: sturdy and dark grey", + "wings: dark grey with faint white markings", + "nape: orange-red wattle-shaped patch", + "tail: long and fan-shaped with white tips", + "throat: pale grey with distinct dark streaks" + ], + "red and black grosbeak": [ + "back: vibrant reddish hue with black streaks", + "beak: large, powerful, pale-colored", + "belly: mix of deep red and black feathers", + "breast: brilliant red plumage", + "crown: deep red with black wings extension", + "forehead: bright red with a hint of black", + "eyes: sharp, black, and intelligent", + "legs: strong, sturdy, black", + "wings: black with white patches and red accents", + "nape: continuation of red and black coloration", + "tail: long, black feathers with white tips", + "throat: red feathers transitioning into black" + ], + "red and black thrush": [ + "back: vibrant red feathers with black streaks", + "beak: sharp, thin black beak", + "belly: deep red feathers fading to black", + "breast: bright red with black speckles", + "crown: red feathers with black edges", + "forehead: smooth red feathers", + "eyes: round, black eyes with white accents", + "legs: slender black legs with sharp claws", + "wings: red and black feathers in a striking pattern", + "nape: red feathers with black outlining", + "tail: long, black feathers with red highlights", + "throat: rich red feathers with sparse black spots" + ], + "red and blue lory": [ + "back: vibrant red feathers covering the upper body", + "beak: strong, curved, orange beak for gripping and cracking seeds", + "belly: deep blue feathers on the lower abdomen", + "breast: bright red feathers on the upper chest area", + "crown: stunning red plumage on top of the head", + "forehead: vivid blue feathers above the beak and eyes", + "eyes: striking, dark eyes with a curious gaze", + "legs: sturdy, blue-gray legs with sharp claws for perching", + "wings: beautiful mix of red and blue feathers for agile flight", + "nape: brilliant red feathers on the back of the neck", + "tail: long, red and blue tail feathers for balance and steering", + "throat: rich blue feathers extending from beak to chest area" + ], + "red and green macaw": [ + "back: vibrant green feathers", + "beak: strong, curved black beak", + "belly: light green to yellow hues", + "breast: bright red and orange feathers", + "crown: blue-green plumage at the top of the head", + "forehead: red feathers transition to green", + "eyes: yellow ring surrounds dark, round eyes", + "legs: dark grey with sharp claws", + "wings: mix of blue, red, and green feathers", + "nape: red and blue overlapping feathers", + "tail: long, red-blue feathers with yellow tips", + "throat: red and orange plumage, meeting the belly" + ], + "red and white antpitta": [ + "back: vibrant red feathers covering the upper body", + "beak: short, curved, and white with a black tip", + "belly: white feathers mixed with faint red streaks", + "breast: bright red feathers transitioning to white", + "crown: rounded and red, slightly raised", + "forehead: smooth white feathers meeting the red crown", + "eyes: small, black, and bright; surrounded by white feathers", + "legs: long, sturdy, and white for hopping through undergrowth", + "wings: red with white streaks, used for quick bursts of flight", + "nape: red feathers connected to the crown, merging into the back", + "tail: short, fan-shaped with red and white feathers to aid in balance", + "throat: predominantly white with a few reddish streaks near the breast" + ], + "red and white crake": [ + "back: vibrant red feathers", + "beak: short and sharp, whitish-yellow", + "belly: soft white plumage", + "breast: bright red feathers with white streaks", + "crown: red feathers contrasting with white forehead", + "forehead: striking white coloration", + "eyes: small, black, and alert", + "legs: sturdy and pale with sharp talons", + "wings: red feathers with white edging", + "nape: red feathers transitioning to white on the neck", + "tail: short, white with red streaks", + "throat: delicate white plumage" + ], + "red and white spinetail": [ + "back: red and white streaked feathers", + "beak: short, straight, and black", + "belly: white with soft rufous touches", + "breast: rich russet-red", + "crown: vibrant red with white streaks", + "forehead: bright red patches", + "eyes: dark with a white ring around them", + "legs: greyish-brown and sturdy", + "wings: red with white and black markings", + "nape: contrasting white and red feathers", + "tail: long and russet-red, tipped with white", + "throat: pale white with hints of red" + ], + "red and yellow barbet": [ + "back: vibrant red feathers", + "beak: sturdy yellow and black bill", + "belly: bright yellow plumage", + "breast: vivid red feathers", + "crown: red head with black spots", + "forehead: yellow and black striped pattern", + "eyes: dark beady gaze", + "legs: strong black limbs", + "wings: red and yellow feathers with black spots", + "nape: red and black spotted region", + "tail: red and black banded feathers", + "throat: brilliant yellow patch" + ], + "red backed buttonquail": [ + "back: reddish-brown feathers with black markings", + "beak: short and stout, pale grayish-blue", + "belly: buff-colored with dark brown streaks", + "breast: pale brown with black specks", + "crown: rufous-colored with faint black stripes", + "forehead: whitish-buff with fine black streaks", + "eyes: dark brown, encircled by pale eyering", + "legs: sturdy and grayish-blue", + "wings: reddish-brown with black bars and white spots", + "nape: rufous-toned with black striations", + "tail: short and dark brown with prominent white corner patches", + "throat: creamy-white with faint black markings" + ], + "red backed fairywren": [ + "back: vibrant red feathers", + "beak: small, black, and pointed", + "belly: white and fluffy", + "breast: gray and white feathers", + "crown: dark, blue-black plumage", + "forehead: blue-black plumage", + "eyes: round and black", + "legs: thin, black, and wiry", + "wings: blue-black with red patches", + "nape: blue-black plumage", + "tail: long, thin, and black", + "throat: white and gray feathers" + ], + "red backed flameback": [ + "back: radiant red feathers", + "beak: strong, chisel-like bill", + "belly: off-white plumage", + "breast: light cream color", + "crown: bright red crest", + "forehead: striking red plumage", + "eyes: dark and beady", + "legs: dark gray with sharp claws", + "wings: golden brown with dark striations", + "nape: red transitioning to brown", + "tail: long, golden brown feathers", + "throat: pale beige plumage" + ], + "red backed kingfisher": [ + "back: vibrant, reddish-brown plumage", + "beak: long, sturdy, black dagger-like", + "belly: bright white, delicate feathers", + "breast: pale orange tint, transitioning into white", + "crown: deep blue, iridescent feathers", + "forehead: striking azure-blue plumage", + "eyes: beady, dark and inquisitive", + "legs: slender, greyish-blue with scaly texture", + "wings: bright blue with black primary feathers", + "nape: reddish-brown, blending into the crown", + "tail: elongated, azure feathers with black tips", + "throat: vivid white, soft-looking feathers" + ], + "red backed mousebird": [ + "back: reddish-brown plumage", + "beak: slightly curved, dark gray", + "belly: pale gray-white feathers", + "breast: soft gray plumage", + "crown: grayish head feathers", + "forehead: lighter gray coloration", + "eyes: small with dark brown color", + "legs: long, dark gray legs with strong feet", + "wings: reddish-brown with grayish-white tips", + "nape: grayish plumage transitioning to red", + "tail: long, thin, dark gray with a slight curve", + "throat: light gray feathers" + ], + "red backed scrub robin": [ + "back: reddish-brown plumage", + "beak: short, thin, dark-colored", + "belly: white with pale gray-brown sides", + "breast: white with gray-brown streaks", + "crown: reddish-brown with darker streaks", + "forehead: reddish-brown", + "eyes: dark with white eye-ring", + "legs: long, slender, dark gray", + "wings: reddish-brown with dark flight feathers", + "nape: reddish-brown with darker streaks", + "tail: reddish-brown, long, and notched", + "throat: white with gray-brown streaks" + ], + "red backed shrike": [ + "back: reddish-brown with black streaks", + "beak: strong, hooked, black", + "belly: pale greyish-white", + "breast: light pinkish-red", + "crown: brownish-grey with black streaks", + "forehead: light brownish-grey", + "eyes: black and round, with white eyering", + "legs: slender black legs and claws", + "wings: dark brown with white patches", + "nape: light reddish-brown", + "tail: long and black, with white outer feathers", + "throat: white, bordered by black 'masked' markings" + ], + "red backed sierra finch": [ + "back: reddish-brown feathers", + "beak: small, conical shape", + "belly: light gray-white plumage", + "breast: reddish-brown hue", + "crown: red feathers, slightly raised", + "forehead: red plumage, merging with crown", + "eyes: small, black, and beady", + "legs: skinny and dark gray", + "wings: reddish-brown with black streaks", + "nape: red feathers meeting back plumage", + "tail: short, reddish-brown with black bands", + "throat: light gray-white feathers" + ], + "red banded flowerpecker": [ + "back: vibrant green feathers", + "beak: short, sharp, black", + "belly: pale yellowish-white", + "breast: distinctive red band", + "crown: glossy blue-green", + "forehead: greenish-blue hue", + "eyes: dark brown, small", + "legs: slim, grayish-black", + "wings: green feathers with a bluish sheen", + "nape: greenish-blue feathers", + "tail: short, green with black tips", + "throat: white, with reddish-orange spots" + ], + "red banded fruiteater": [ + "back: vibrant green and slightly rounded", + "beak: sharp, hooked, black", + "belly: rich yellow with red bands", + "breast: bright yellow with red streaks", + "crown: deep green with a slight crest", + "forehead: brilliant green", + "eyes: dark with a wise gaze", + "legs: short, strong, and gray", + "wings: green with bold red and black markings", + "nape: green with subtle yellow highlights", + "tail: long and red with black tips", + "throat: bright yellow with red markings" + ], + "red bellied fruit dove": [ + "back: greenish-blue feathers with subtle golden sheen", + "beak: short and curved, with a grayish color", + "belly: bright red-orange hue with specks of green", + "breast: vibrant red fading into orange-yellow", + "crown: olive green with tinges of blue", + "forehead: blended green-blue with gold shimmer", + "eyes: black, surrounded by bare red-orange skin", + "legs: short and sturdy, with reddish-gray color", + "wings: green-blue with hints of yellow, blending into bright red-orange", + "nape: smooth transition from olive crown to bluish-green with gold shimmer", + "tail: greenish-blue central feathers, flanked by red-orange outer feathers", + "throat: bright red-orange fading into yellow near breast" + ], + "red bellied grackle": [ + "back: glossy black with iridescent blue-green sheen", + "beak: long, slender, and dark gray", + "belly: reddish hue with dark streaks", + "breast: dark and glossy with occasional red streaks", + "crown: iridescent black with blue-green tinges", + "forehead: shiny black with a slight curve", + "eyes: bright pale yellow with black pupil", + "legs: sturdy, dark gray and featherless", + "wings: lustrous black with bluish-green highlights", + "nape: gleaming black with iridescent tones", + "tail: long, fan-shaped with a metallic luster", + "throat: shiny black with streaks of red near the base" + ], + "red bellied macaw": [ + "back: vibrant green feathers covering the upper body", + "beak: strong, curved black beak for cracking nuts", + "belly: eye-catching orange to reddish abdomen feathers", + "breast: rich green feathered chest area", + "crown: forest-green feathers covering the top of the head", + "forehead: deep green feathers slightly lighter than the crown", + "eyes: piercing light yellow eyes with black pupils", + "legs: dark strong scaled legs with sharp talons", + "wings: elongated and broad, green feathers with blue edges", + "nape: continuation of green crown feathers down the neck", + "tail: long, sweeping green and blue feathers for balance", + "throat: slightly lighter green feathers transitioning to the orange belly" + ], + "red bellied malimbe": [ + "back: vibrant green feathers", + "beak: strong, black, and conical", + "belly: bright red patch", + "breast: brilliant red plumage", + "crown: shining green with a hint of red", + "forehead: smooth and green-touched", + "eyes: deep black, alert-looking", + "legs: slender, charcoal grey", + "wings: lush green with red highlights", + "nape: silky green with red accents", + "tail: elongated, green, and slightly forked", + "throat: striking red feathers" + ], + "red bellied myzomela": [ + "back: vibrant red with black streaks", + "beak: thin, slightly curved, black", + "belly: bright red-orange hue", + "breast: deep red fading into orange", + "crown: brilliant red patch on the head", + "forehead: red blending with crown", + "eyes: small, round, dark brown", + "legs: thin, black, with sharp claws", + "wings: black with reddish-orange edges", + "nape: fiery red, blending with the crown", + "tail: short, black with reddish-orange tips", + "throat: brilliant red, extending to the breast" + ], + "red bellied parrot": [ + "back: vibrant green feathers", + "beak: strong, curved, grayish beak", + "belly: reddish-orange hue", + "breast: light green with a touch of red", + "crown: bright green feathers on top of the head", + "forehead: green with a distinctive red border", + "eyes: dark, alert eyes surrounded by a white eye-ring", + "legs: sturdy gray legs with zygodactyl feet", + "wings: vivid green with hints of turquoise and blue", + "nape: brilliant green feathers", + "tail: long, green feathers with blue and black and tips", + "throat: soft green and yellow undertones" + ], + "red billed blue magpie": [ + "back: vibrant blue feathers with darker shades", + "beak: striking red with a slight curve", + "belly: soft white and grey plumage", + "breast: pale grey to white, fading into belly", + "crown: deep blue feathers, forming a slight crest", + "forehead: blue matching the crown color", + "eyes: dark black, encircled by faint blue-grey feathers", + "legs: strong, red with sharp claws", + "wings: long blue feathers with white and black patterns", + "nape: glossy blue, with a smooth transition from the crown", + "tail: elongated, blue feathers with bold white bars and a black tip", + "throat: subtle grey-white, creating a contrast with the vibrant beak" + ], + "red billed brushturkey": [ + "back: dark, iridescent feathers", + "beak: red, hooked curve", + "belly: dusky brownish-grey plumage", + "breast: dark, glossy feathers", + "crown: black, featherless with small red wattle", + "forehead: red, bare skin with small wattles", + "eyes: dark, piercing gaze", + "legs: strong, scaly, grey", + "wings: dark, broad, fairly short", + "nape: dark feathers, blending into back", + "tail: long, erect, fan-like feathers", + "throat: exposed red wattles, dark feathers" + ], + "red billed buffalo weaver": [ + "back: reddish-brown feathers with black streaks", + "beak: bright red, robust, and slightly curved", + "belly: white or pale cream with blackish streaks", + "breast: white, with streaks or spots of black", + "crown: bold black feathers with a thick crest", + "forehead: red feathers blending into the black crown", + "eyes: dark, round, and alert with a white or pale yellow eye-ring", + "legs: strong, orange or ochre colored, and scaly", + "wings: blackish feathers with vivid red or orange patches", + "nape: matching reddish-brown and black-streaked feathers", + "tail: long, black feathers with a hint of red and a white tip", + "throat: white or pale cream with a patch of black or brown streaks" + ], + "red billed chough": [ + "back: black, glossy feathers", + "beak: vibrant red, slightly curved", + "belly: dark black, soft plumage", + "breast: shiny black feathers", + "crown: black, smooth feathers", + "forehead: sleek black plumage", + "eyes: dark, surrounded by black feathers", + "legs: bright red, fairly long", + "wings: black, rounded shape", + "nape: glossy black feathers", + "tail: square-shaped, black with a hint of green gloss", + "throat: black, dense feathers" + ], + "red billed curassow": [ + "back: dark brown plumage", + "beak: striking red, hooked shape", + "belly: light brown feathers", + "breast: lighter brown with pale streaks", + "crown: thin crest of black feathers", + "forehead: black feathers, smooth appearance", + "eyes: dark brown with white ring", + "legs: sturdy gray, partially feathered", + "wings: long, dark brown with lighter streaks", + "nape: black plumage blending into brown", + "tail: long, dark brown with slightly pointed end", + "throat: black feathers, meeting the breast" + ], + "red billed duck": [ + "back: sleek, reddish-brown feathers", + "beak: bright red, slightly curved", + "belly: white with soft, downy texture", + "breast: chestnut-colored with wavy patterns", + "crown: smooth, reddish-brown feathers", + "forehead: rounded, reddish-brown", + "eyes: dark and alert, encircled by a thin white ring", + "legs: strong, reddish-orange with webbed feet", + "wings: reddish-brown with white and black stripes", + "nape: reddish-brown, transitioning to white on the lower neck", + "tail: short and pointed, with black and white markings", + "throat: white, with a soft, feathered appearance" + ], + "red billed dwarf hornbill": [ + "back: vibrant black plumage with a smooth texture", + "beak: striking red color with a curved shape", + "belly: black and white feather pattern with a soft curve", + "breast: speckled white and black feathers forming a cylindrical shape", + "crown: glossy black feathers with a slightly puffed appearance", + "forehead: sleek black plumage transitioning into the red beak", + "eyes: piercing yellow with dark outlines and prominent gaze", + "legs: thin, dark grey with powerful grasping talons", + "wings: black feathers with elongated shape for swift flight", + "nape: continuation of sleek black plumage with a gentle curve", + "tail: long black feathers with a slightly fanned appearance", + "throat: black and white patterned feathers meeting the breast area" + ], + "red billed emerald": [ + "back: shimmering green feathers", + "beak: vibrant red, straight and pointed", + "belly: soft white with hints of green", + "breast: iridescent green feathers", + "crown: bright green with a metallic sheen", + "forehead: green, merging into reddish beak", + "eyes: shining black, surrounded by green feathers", + "legs: slender grayish-brown", + "wings: dazzling green with feathers tapering to a point", + "nape: brilliant green, transitioning from crown", + "tail: elongated green feathers with a forked tip", + "throat: intense green, contrasting with red beak" + ], + "red billed firefinch": [ + "back: vibrant reddish-brown feathers", + "beak: bright red, stout, and conical", + "belly: pale greyish-white feathers", + "breast: deep red and slightly rounded", + "crown: intense red, smoothly rounded", + "forehead: bold red feathers", + "eyes: small, black, and alert", + "legs: slender, pale pinkish-grey", + "wings: reddish-brown with black flight feathers", + "nape: fervent red merging into brown", + "tail: dusky brown with contrasting white tips", + "throat: striking red plumage" + ], + "red billed helmetshrike": [ + "back: black and white horizontal stripes", + "beak: bright red, sharp, slightly curved", + "belly: light gray with subtle patterning", + "breast: black with white feather tips", + "crown: solid black, crest-like", + "forehead: black, continuing crown coloring", + "eyes: black with a white eye-ring", + "legs: gray, medium-length, strong", + "wings: black, white-tipped primary feathers", + "nape: black, connecting to crown", + "tail: black, white-tipped, forked", + "throat: black, fading to gray on belly" + ], + "red billed leiothrix": [ + "back: vibrant yellow with slight greenish tinge", + "beak: bright red-orange, slightly curved", + "belly: creamy white, mixed with yellow", + "breast: rich golden-yellow hue", + "crown: distinct black head markings", + "forehead: blackish-brown with reddish-brown streaks", + "eyes: dark brown, encircled by white eye-ring", + "legs: slender grayish-pink legs", + "wings: mix of green, yellow, and black feathers", + "nape: olive green transitioning from the crown", + "tail: long and graduated, black with yellow sides", + "throat: white blending into the golden breast" + ], + "red billed malkoha": [ + "back: olive-brown with slight green sheen", + "beak: striking red-orange color", + "belly: off-white or pale gray", + "breast: pale gray with light streaks", + "crown: blackish head crest", + "forehead: short, black feathers with slight hints of green", + "eyes: dark brown or black with inconspicuous ring", + "legs: sturdy and grayish-brown", + "wings: olive-green with black primary feathers", + "nape: olive-brown with thin black feathers creating a slight neck fringe", + "tail: long, graduated tail feathers with black and white tips", + "throat: creamy white with fine black streaks" + ], + "red billed oxpecker": [ + "back: olive-brown feathers", + "beak: curved, red bill", + "belly: light cream-colored underparts", + "breast: pale, cream-colored feathers", + "crown: olive-brown feathers with a slight crest", + "forehead: olive-brown feathers blending into the crown", + "eyes: dark with thin white eye-ring", + "legs: grayish-black, strong and agile", + "wings: olive-brown with hints of white and dark brown", + "nape: olive-brown feathers blending into the back", + "tail: olive-brown with white and dark brown tips", + "throat: pale, cream-colored plumage" + ], + "red billed parrot": [ + "back: vibrant green feathers", + "beak: striking red color", + "belly: pale green or light blue plumage", + "breast: bright green or bluish feathers", + "crown: bold green with slight patchy variations", + "forehead: rich green, sometimes tinged with blue", + "eyes: dark and expressive, encircled by white eye-ring", + "legs: sturdy grey limbs", + "wings: green primary feathers, blue edges on secondary", + "nape: dark green plumage, sometimes tinged with blue", + "tail: elongated green feathers with blue tips", + "throat: paler green hue, sometimes light blue or grey" + ], + "red billed partridge": [ + "back: brownish feathers with black and white speckles", + "beak: vibrant red and slightly curved shape", + "belly: light brown and white feathers", + "breast: pale orange-brown feathers", + "crown: reddish-brown with slight crest", + "forehead: bright red wattles above eye", + "eyes: dark and expressive with white ring", + "legs: strong and scaly with sharp claws", + "wings: brown with black and white streaks", + "nape: reddish-brown and slightly ruffled", + "tail: long, brown feathers with black and white markings", + "throat: white with thin, black stripes" + ], + "red billed pied tanager": [ + "back: greenish-black feathers", + "beak: red, slender, slightly curved", + "belly: white, some black streaks", + "breast: black, with greenish sheen", + "crown: black, can appear glossy", + "forehead: greenish-black, shiny", + "eyes: dark, with a narrow white eye-ring", + "legs: grey, long and sturdy", + "wings: greenish-black, prominent white patches", + "nape: black, with greenish hue", + "tail: long, black, forked", + "throat: white, contrasting with breast" + ], + "red billed pigeon": [ + "back: sleek, grayish feathers", + "beak: striking, red-orange bill", + "belly: light gray, soft plumage", + "breast: pale purple-gray hue", + "crown: smooth, darker gray feathers", + "forehead: gradual transition from crown to lighter gray", + "eyes: dark, round, with subtle white eye-ring", + "legs: sturdy, reddish-pink limbs", + "wings: gray, elongated, with black flight feathers", + "nape: seamless blend with the crown's gray hue", + "tail: darker gray, fanned shape, with a band of white at the tip", + "throat: pale gray, blending with the breast and belly" + ], + "red billed pytilia": [ + "back: olive-green patterned feathers", + "beak: bright red and sharply pointed", + "belly: whitish with dark scale-like markings", + "breast: yellowish with fine dark speckles", + "crown: slate gray with a hint of red", + "forehead: slate gray merging into the crown", + "eyes: black with a white eye-ring", + "legs: pale pinkish-gray", + "wings: olive-green with black flight feathers", + "nape: slate gray with subtle olive-green wash", + "tail: black with white outer feathers", + "throat: intense red accentuating the beak" + ], + "red billed quelea": [ + "back: reddish-brown feathers", + "beak: bright red color, cone-shaped", + "belly: creamy-white feathers", + "breast: pinkish-brown feathers", + "crown: masked black head", + "forehead: striking black plumage", + "eyes: black with a white ring, expressive", + "legs: slender, grayish-brown", + "wings: reddish-brown with white and black markings", + "nape: masked black plumage", + "tail: short and squared, brown with white tips", + "throat: pale white, contrasting with black mask" + ], + "red billed scimitar babbler": [ + "back: olive-brown feathers with a slight greenish tinge", + "beak: bright red, curved, and sharp", + "belly: white with light rusty-brown streaks", + "breast: warm chestnut-brown", + "crown: dark reddish-brown with black stripes", + "forehead: black with slight rusty-brown tinge", + "eyes: dark, surrounded by a pale gray eye-ring", + "legs: pinkish-gray with long, slender claws", + "wings: olive-brown feathers with white streaks", + "nape: dark reddish-brown with black stripes", + "tail: long, graduated, with rusty-brown feathers edged in black", + "throat: white with a faint tinge of rusty-brown" + ], + "red billed scythebill": [ + "back: rich chestnut-brown feathers", + "beak: long, slender, down-curved red bill", + "belly: whitish with brownish streaks", + "breast: pale buff with light streaks", + "crown: chestnut-brown with slight crest", + "forehead: chestnut-brown feathers", + "eyes: dark with pale, thin eyering", + "legs: sturdy pale pink legs", + "wings: barred chestnut-brown and cream", + "nape: chestnut-brown, streaked feathers", + "tail: long, chestnut-brown with white tips", + "throat: lighter brown with faint streaks" + ], + "red billed spurfowl": [ + "back: olive-brown with dark barring", + "beak: bright red, sharp-pointed", + "belly: cream-colored with dark speckles", + "breast: buff with faint dark barring", + "crown: rufous with dark streaks", + "forehead: pale rufous-brown", + "eyes: dark brown with reddish eye-ring", + "legs: long, strong, reddish-orange", + "wings: olive-brown with white spots", + "nape: streaked dark brown and rufous", + "tail: dark brown with white tip", + "throat: pale buff with dark streaks" + ], + "red billed starling": [ + "back: sleek, dark plumage", + "beak: striking red-orange bill", + "belly: light gray underbelly", + "breast: cool gray feathering", + "crown: glossy dark blue-green head", + "forehead: smoothened feather transition", + "eyes: contrasting black pupils, white eye-ring", + "legs: lean, light gray and sturdy", + "wings: iridescent blue-green, angular tips", + "nape: slightly paler shading than crown", + "tail: elongated, dark feathers, forked shape", + "throat: smooth gray plummage transition" + ], + "red billed streamertail": [ + "back: iridescent green feathers", + "beak: long, slender, vibrant red", + "belly: bright white plumage", + "breast: shimmering green feathers", + "crown: striking green crest", + "forehead: smooth green plumage", + "eyes: shiny round black orbs", + "legs: slender, dark gray limbs", + "wings: vibrant green with layered feathers", + "nape: radiant green plumage", + "tail: two elongated black feathers (streamers", + "throat: deep green glossy feathers" + ], + "red billed tyrannulet": [ + "back: olive-green feathers", + "beak: bright red, slim, and pointed", + "belly: whitish-gray plumage", + "breast: pale gray with soft streaks", + "crown: olive-green with faded eyestripe", + "forehead: soft olive-green feathers", + "eyes: black with white eye-rings", + "legs: dark gray, slender, and long", + "wings: olive-green with faint wing-bars", + "nape: olive-green plumage", + "tail: olive-green with dark tips, slightly forked", + "throat: pale gray with delicate streaks" + ], + "red billed woodcreeper": [ + "back: dark brown with fine streaks", + "beak: long and slightly curved, bright red", + "belly: pale and off-white, faint streaks", + "breast: spotted with brown and grey colors", + "crown: dark brown, slightly crested", + "forehead: dark brown", + "eyes: black bead-like surrounded by light feathers", + "legs: long and slender, dark grey", + "wings: dark brown with white-barred pattern", + "nape: dark brown, finely streaked", + "tail: long and stiff, dark brown with white tips", + "throat: white with light streaks" + ], + "red breasted chat": [ + "back: olive-green upper area", + "beak: slender, black, and pointy", + "belly: orange-yellow plumage", + "breast: bright red feathers", + "crown: olive-green top of the head", + "forehead: olive-green, merging into the crown", + "eyes: dark and beady, surrounded by white eyering", + "legs: gray and slender with scaly texture", + "wings: olive-green with dark flight feathers", + "nape: olive-green, continuing from the crown", + "tail: long, olive-green with dark central feathers", + "throat: red like the breast, transitioning into the belly" + ], + "red breasted coua": [ + "back: deep green feathers with hints of blue", + "beak: sturdy, slightly curved, black", + "belly: reddish-orange to chestnut brown", + "breast: rich reddish-orange plumage", + "crown: deep green with shimmering blue accents", + "forehead: vibrant green feathers", + "eyes: bright red with black pupils", + "legs: strong, grayish-blue with zygodactyl feet", + "wings: greenish-blue with white and black patterns", + "nape: iridescent green and blue feathers", + "tail: elongated, greenish-blue with white tips", + "throat: reddish-orange, transitioning from breast color" + ], + "red breasted dotterel": [ + "back: brownish-grey plumage", + "beak: black, short, and slightly curved", + "belly: clean white feathers", + "breast: bright reddish-orange", + "crown: dark brown with a white band", + "forehead: white with black markings", + "eyes: dark, rounded, and expressive", + "legs: pinkish-grey with short, sharp claws", + "wings: brown, white, and black, with noticeable white wingbars", + "nape: brown with a white stripe", + "tail: short and black with white edges", + "throat: white, bordered by dark markings" + ], + "red breasted flycatcher": [ + "back: olive-brown with a slight gray tinge", + "beak: black and slim, with a slightly hooked tip", + "belly: white with pale orange undertones", + "breast: vibrant red-orange plumage", + "crown: dark gray with a semi-concealed crest", + "forehead: grayish-brown, blending into the crown", + "eyes: dark brown, surrounded by a thin, white eye-ring", + "legs: black and slender, with sharp talons", + "wings: olive-brown with white wing bars and black flight feathers", + "nape: olive-brown, continuing the color from the back", + "tail: fairly long, dark brown with white outer tail feathers", + "throat: white, transitioning into the red-orange breast" + ], + "red breasted goose": [ + "back: sleek, reddish-brown feathers", + "beak: short, black tapering to white tip", + "belly: black with white-barred sides", + "breast: vibrant chestnut-red with white patterning", + "crown: black with white patch around the eye", + "forehead: white stripe above the beak", + "eyes: bright, dark brown with white eyering", + "legs: strong, orange-yellow webbed feet", + "wings: contrasting mix of black, white, and chestnut-red feathers", + "nape: red-brown transitioning to black on the lower neck", + "tail: black with greyish-green undertail coverts", + "throat: white extending from the chin area" + ], + "red breasted meadowlark": [ + "back: brownish with black streaks", + "beak: straight, sharp, and conical", + "belly: whitish with faint streaks", + "breast: vibrant red-orange", + "crown: brown with black streaks", + "forehead: pale brown", + "eyes: dark, round, and expressive", + "legs: long and slender", + "wings: brownish black with white edges", + "nape: brown with black streaks", + "tail: black with white outer feathers", + "throat: red-orange, blending into breast color" + ], + "red breasted paradise kingfisher": [ + "back: vibrant blue feathers", + "beak: long, black, and pointed", + "belly: soft white plumage", + "breast: bright red feathers", + "crown: glossy blue-green feathers", + "forehead: sleek blue-green plumage", + "eyes: dark and beady", + "legs: sturdy, yellowish-orange", + "wings: iridescent blue and green", + "nape: striking blue-green plumage", + "tail: long, blue feathers with white tips", + "throat: white feathers transitioning to red" + ], + "red breasted parakeet": [ + "back: vibrant green feathers covering the upper body", + "beak: strong, curved, and orange-red in color", + "belly: light shade of green, with a creamy tint", + "breast: brilliant red and orange feathers", + "crown: bright green feathers blending into the rest of the head", + "forehead: green with a subtle bluish sheen", + "eyes: small, round with dark pupils, and white-gray eye rings", + "legs: slender and pale pinkish-white with sharp claws", + "wings: prominent green with blue and yellow accents, visible during flight", + "nape: rich green feathers transitioning from head to back", + "tail: long and green with a blue tinge at the tips", + "throat: greenish-yellow feathers on the underside of the head" + ], + "red breasted partridge": [ + "back: earthy-brown feathers with subtle black barring", + "beak: short, stout, and grayish in color", + "belly: white feathers with black and reddish-brown speckles", + "breast: vibrant rusty-red plumage with grayish-white streaks", + "crown: grayish-brown feathers with a high, rounded shape", + "forehead: off-white feathers transitioning into brown towards the crown", + "eyes: dark, beady, and surrounded by light gray feathers", + "legs: sturdy, short and grayish-pink in color", + "wings: earthy-brown, lightly patterned with black stripes and speckles", + "nape: grayish-brown plumage with subtle black barring", + "tail: short, broad, and earthy-brown with thin black barring", + "throat: whitish-gray feathers, bordered by a black and red half-collar" + ], + "red breasted pygmy parrot": [ + "back: vibrant green feathers", + "beak: small, curved, gray", + "belly: light green plumage", + "breast: bright red patch", + "crown: vivid green cap", + "forehead: green and slightly rounded", + "eyes: dark, round, attentive", + "legs: short, gray, multi-toed", + "wings: green with blue tinges", + "nape: green, transitioning to red", + "tail: short, green feathers", + "throat: pale green area" + ], + "red breasted toucan": [ + "back: vibrant green feathers", + "beak: large, curved, multicolored", + "belly: white or yellow plumage", + "breast: bright red feathers", + "crown: black or deep green", + "forehead: deep green or black plumage", + "eyes: surrounded by blue skin, black pupils", + "legs: short, sturdy, dark gray", + "wings: green with blue or black tips", + "nape: deep green or black feathers", + "tail: long, colorful, green and blue feathers", + "throat: white or yellow plumage" + ], + "red browed firetail": [ + "back: olive-green feathers", + "beak: black, conical shape", + "belly: off-white with fine black streaks", + "breast: pale orange with fine black streaks", + "crown: bright red stripe", + "forehead: red over the eyes", + "eyes: black with white eye-ring", + "legs: pinkish-gray", + "wings: olive-green with distinct black patches", + "nape: olive-green with red stripe extension", + "tail: long, dark brown with black barring", + "throat: off-white, unstreaked" + ], + "red browed pardalote": [ + "back: olive-green feathered", + "beak: small, pointed, black", + "belly: creamy-yellow with black spots", + "breast: vibrant yellow with black streaks", + "crown: black with white spots", + "forehead: bright red stripe", + "eyes: dark, beady, surrounded by white feathers", + "legs: short, grayish-brown", + "wings: olive-green with black and white edges", + "nape: black with white spots", + "tail: short, olive-green with black tips", + "throat: creamy-white with black spots" + ], + "red browed parrot": [ + "back: vibrant green feathers covering the main body", + "beak: strong, curved, light-colored hooked beak", + "belly: bright green feathers on the lower body", + "breast: brilliant green plumage on the chest area", + "crown: red stripe across the forehead and crown", + "forehead: red brow-line extending over the eyes", + "eyes: dark, round eyes surrounded by white eye-ring", + "legs: gray, scaly limbs with strong, zygodactyl feet", + "wings: long, vivid green feathers with blue highlights", + "nape: green plumage at the back of the neck", + "tail: elongated, bright green feathers with blue tips", + "throat: lime green feathers with a lighter shade than the rest of the body" + ], + "red browed treecreeper": [ + "back: reddish-brown with fine streaks", + "beak: long, curved, and pointed", + "belly: white with faint streaks", + "breast: pale rufous with fine streaks", + "crown: brownish-red with black streaks", + "forehead: pale with faint streaks", + "eyes: dark with pale eye-ring", + "legs: long, slim, and light brown", + "wings: brown with black and white markings", + "nape: reddish-brown with black streaks", + "tail: long, brown with light bars", + "throat: white with faint streaks" + ], + "red capped cardinal": [ + "back: blue-black feathers with a subtle sheen", + "beak: sharp, conical, silver-gray color", + "belly: pale white with a tinge of gray", + "breast: vibrant red plumage", + "crown: bright red cap extending to the nape", + "forehead: red crest merging with the crown", + "eyes: black, piercing, with a white eye-ring", + "legs: slender, pale gray, and strong", + "wings: blue-black with a greenish iridescence", + "nape: continuation of the red crown", + "tail: long, blue-black feathers with a slight taper", + "throat: pale white transitioning into red breast" + ], + "red capped coua": [ + "back: vibrant green-blue plumage", + "beak: curved, strong, black", + "belly: white with dense gray-blue barring", + "breast: light gray-blue with white streaks", + "crown: distinctive bright red cap", + "forehead: red cap extending to brows", + "eyes: large, dark brown with subtle eye ring", + "legs: sturdy, gray-blue", + "wings: green-blue, rounded with prominent white stripes", + "nape: green-blue, flowing into red cap", + "tail: long, green-blue feathers with white barring", + "throat: white, merging into gray-blue breast" + ], + "red capped crombec": [ + "back: subtle greyish-brown", + "beak: slender and curved", + "belly: off-white, faintly streaked", + "breast: whitish with light streaks", + "crown: bright chestnut-red", + "forehead: red cap continuation", + "eyes: dark, beady with soft grey outline", + "legs: sturdy and pale pinkish-gray", + "wings: greyish-brown with pale edges", + "nape: chestnut-red cap meets greyish-brown", + "tail: short, rounded, greyish-brown", + "throat: whitish and unmarked" + ], + "red capped flowerpecker": [ + "back: dark olive-green feathers", + "beak: short and thick, black", + "belly: pale greyish-white", + "breast: bright red patch", + "crown: deep red feathers", + "forehead: red cap extending", + "eyes: small, black, encircled by thin white ring", + "legs: slender, gray-brown", + "wings: dark olive-green with slight blue iridescence", + "nape: dark olive-green, connecting to red crown", + "tail: short and dark olive-green", + "throat: whitish-grey with faint streaks" + ], + "red capped lark": [ + "back: brown-striped and elongated", + "beak: slim and pointy, blackish-gray", + "belly: white with subtle brown markings", + "breast: white with brownish speckles", + "crown: distinctive reddish-brown cap", + "forehead: red-brown fading into white", + "eyes: small, black, and bead-like", + "legs: long and slender, grayish-brown", + "wings: brown with white and dark streaks", + "nape: reddish-brown blending into back", + "tail: long, brown with white outer edges", + "throat: white with faint speckling" + ], + "red capped manakin": [ + "back: vibrant green feathers", + "beak: small and black", + "belly: bright white plumage", + "breast: vivid red patch", + "crown: brilliant red cap", + "forehead: striking red hue", + "eyes: tiny, black, and alert", + "legs: slender and grayish-blue", + "wings: green with hidden iridescent blues", + "nape: green feathers transitioning into red cap", + "tail: long, green, and tapered", + "throat: white feathers meeting the red breast" + ], + "red capped parrot": [ + "back: bright green feathers", + "beak: black, strong, curved", + "belly: pale green shading", + "breast: turquoise-blue plumage", + "crown: vibrant red cap", + "forehead: red feathers meeting the beak", + "eyes: dark, surrounded by small white feathers", + "legs: grayish, scaly, sturdy", + "wings: green with blue edges", + "nape: red, blending into green feathers", + "tail: long, green with blue tips", + "throat: light green, smooth feathers" + ], + "red capped plover": [ + "back: light sandy brown plumage", + "beak: short black pointed beak", + "belly: white underbelly", + "breast: white with black band", + "crown: red cap across the head", + "forehead: white with black patch above beak", + "eyes: round black eyes with small white eye-ring", + "legs: long pale pinkish-gray legs", + "wings: sandy brown with black and white markings", + "nape: light sandy brown with red cap continuity", + "tail: light brown with black and white striped edges", + "throat: white with black band, connecting to the breast" + ], + "red capped robin chat": [ + "back: olive-brown with a slight reddish hue", + "beak: small, black, slightly hooked", + "belly: white with subtle black streaks", + "breast: vibrant orange-red plumage", + "crown: striking red with dark streaks", + "forehead: rich red mixed with dark streaks", + "eyes: large, deep brown, surrounded by a faint white eye-ring", + "legs: slender, grey, and strong", + "wings: olive-brown with intricate black and white markings", + "nape: brownish-olive, blends into the red crown", + "tail: medium length, dark olive with white outer feathers", + "throat: white with faint black markings" + ], + "red cheeked cordonbleu": [ + "back: sky blue feathered body", + "beak: short, light-colored, conical-shaped", + "belly: light blue and white feathers", + "breast: bright blue plumage", + "crown: deep blue crest on head", + "forehead: blue with red cheek patch", + "eyes: small, black, and round", + "legs: slender, grayish-brown", + "wings: blue feathers with streaks of brown", + "nape: smooth blue plumage", + "tail: long, blue, delicately pointed", + "throat: soft white and blue feathers" + ], + "red cheeked parrot": [ + "back: vibrant green feathers", + "beak: strong, curved, and black", + "belly: pale greenish-yellow plumage", + "breast: bright green feathers fading to yellow", + "crown: deep blue with red cheeks", + "forehead: rich blue plumage", + "eyes: dark, round, and expressive", + "legs: sturdy, grey, and scaly", + "wings: long and green with blue-tipped feathers", + "nape: green feathers transitioning to blue", + "tail: elongated, green, and narrow", + "throat: lime green with yellowish tinge" + ], + "red cheeked wattle eye": [ + "back: vibrant green feathers", + "beak: short and black, slightly curved", + "belly: light grayish-white plumage", + "breast: gray with a hint of lavender", + "crown: iridescent blue feathers", + "forehead: bright blue band above the eye", + "eyes: large, black, and alert", + "legs: slender and black, ending in sharp claws", + "wings: long and green, tipped with white", + "nape: green-blue feathers transitioning to gray", + "tail: elongated, fan-shaped, with green and blue feathers", + "throat: bright red cheek patches on either side" + ], + "red chested buttonquail": [ + "back: brown and white streaked feathers", + "beak: short and cream-colored", + "belly: buff beige with faint black lines", + "breast: vibrant red hue with black streaks", + "crown: grey-brown with dark streaks", + "forehead: buff with fine black lines", + "eyes: large, dark and round", + "legs: cream-colored and slender", + "wings: brown and patterned with feathers", + "nape: grey-brown with dark streaks", + "tail: short, brown with black barring", + "throat: pale beige and unmarked" + ], + "red chested cuckoo": [ + "back: greenish-brown feathers", + "beak: black, slim, and pointed", + "belly: creamy white underside", + "breast: red-chestnut plumage", + "crown: dark greenish-brown", + "forehead: greenish-grey", + "eyes: dark brown with thin white eye-ring", + "legs: light blue-grey with sharp claws", + "wings: greenish-brown with black and white bands", + "nape: greenish-brown coloration", + "tail: long, greenish-brown with white spots", + "throat: pale grey with faint streaks" + ], + "red chested flowerpecker": [ + "back: greenish-blue feathers", + "beak: short, black, curved", + "belly: white underside plumage", + "breast: vibrant red patch", + "crown: greenish-blue feathered top", + "forehead: greenish-blue plumage", + "eyes: small, black, round", + "legs: slender, gray", + "wings: greenish-blue, short, rounded", + "nape: greenish-blue, connecting head and back", + "tail: short, greenish-blue feathers", + "throat: white feathered front" + ], + "red chested flufftail": [ + "back: brownish-red with black markings", + "beak: short and conical, dark gray", + "belly: white with dark barring", + "breast: reddish-orange crossed with thin white bands", + "crown: black with white spots", + "forehead: white with a thin black band", + "eyes: black and round, surrounded by a white eyering", + "legs: pale pinkish-gray, strong and suited for its wetland habitat", + "wings: dark brown with white-tipped feathers", + "nape: black and white striped", + "tail: short and squared, with brownish-red feathers and black barring", + "throat: white with a reddish-orange patch" + ], + "red chested owlet": [ + "back: small, reddish-brown feathers", + "beak: short, sharp, grayish-black", + "belly: white with faint brown stripes", + "breast: bright reddish-orange", + "crown: brownish-red with pale white marks", + "forehead: pale white with fine brown streaks", + "eyes: large, dark, and round", + "legs: grayish-black and feathered", + "wings: brownish-red with lighter markings", + "nape: brownish-red with pale white lines", + "tail: short and reddish-brown with subtle light bands", + "throat: white with fine brown streaks" + ], + "red chested sunbird": [ + "back: green iridescent feathers", + "beak: long, slender, and curved", + "belly: grayish-white with some green feathers", + "breast: bright red shimmering plumage", + "crown: iridescent green feathers with some purple sheen", + "forehead: shining green with traces of dark purple", + "eyes: small, round, and black", + "legs: dark gray and slender", + "wings: iridescent green with hints of purple towards the tips", + "nape: green-purple shimmering feathers", + "tail: long, green iridescent feathers with some purple sheen", + "throat: red plumage blending into the green feathers of the neck" + ], + "red chested swallow": [ + "back: sleek blue-black feathers", + "beak: small and pointed", + "belly: white or pale under-feathers", + "breast: vibrant red chest patch", + "crown: smooth blue-black cap", + "forehead: blue-black with slight curve", + "eyes: small and dark", + "legs: thin and sturdy", + "wings: long and pointed, blue-black", + "nape: blue-black with slight curve", + "tail: forked with blue-black feathers", + "throat: white or pale feathered surround" + ], + "red chinned lorikeet": [ + "back: vibrant green feathers covering the upper body", + "beak: short, curved, orange-red beak", + "belly: lighter green feathers transitioning into yellow", + "breast: bright green feathers graduating to yellow near the belly", + "crown: deep blue feathers atop the head", + "forehead: blue feathers meeting the base of the beak", + "eyes: small, black, encircled by bright blue feathers", + "legs: short, gray, two-toed feet with sharp claws", + "wings: green feathers with hints of blue and red", + "nape: blue feathers blending into the green of the back", + "tail: long, tapering green feathers with some red accents", + "throat: distinctive red patch below the beak, surrounded by yellow-green feathers" + ], + "red collared lorikeet": [ + "back: vibrant green feather coverage", + "beak: short, curved, orange-red", + "belly: light green with blue tint", + "breast: rich orange fading to yellow", + "crown: deep blue with violet shades", + "forehead: bright red-orange feathers", + "eyes: dark, surrounded by narrow, blue eye-ring", + "legs: grayish, strong, and scaled", + "wings: green with blue and red accents", + "nape: green blending with blue crown", + "tail: greenish-blue, elongated", + "throat: bright orange-yellow" + ], + "red collared mountain babbler": [ + "back: red-brown feathers with streaks", + "beak: small, slightly curved, black", + "belly: greyish-white, thin streaks", + "breast: reddish-brown, faint speckles", + "crown: striking red collar, well-defined", + "forehead: smooth, light greyish", + "eyes: round, dark, observant", + "legs: slender, strong, black", + "wings: darker brown, flight feathers", + "nape: reddish-brown, spotted pattern", + "tail: medium length, red-brown, fanned", + "throat: light grey, vertical streaks" + ], + "red collared myzomela": [ + "back: vibrant greenish-yellow hue", + "beak: small, slender, and black", + "belly: pale yellow with slight orange tinge", + "breast: bright orangish-red feathers", + "crown: fiery red plumage", + "forehead: brilliant red coloration", + "eyes: shiny black with a white eye-ring", + "legs: short, dark grey and sturdy", + "wings: dark greenish-brown with pale fringes", + "nape: reddish-orange transition to green", + "tail: short, dark greenish-brown with pale edges", + "throat: radiant orange-red feathers" + ], + "red collared widowbird": [ + "back: black plumage with iridescent sheen", + "beak: sharp, narrow, and black", + "belly: black with subtle iridescent shine", + "breast: glossy black feathers", + "crown: sleek black with a bright red collar", + "forehead: smooth black plumage", + "eyes: small, round, and dark", + "legs: long, thin, and gray", + "wings: black and elongated, with white patches when spread", + "nape: crimson-red collar encircling the neck", + "tail: long, streaming feathers in jet black", + "throat: velvety black feathers" + ], + "red collared woodpecker": [ + "back: deep red with black markings", + "beak: sharp, straight, and black", + "belly: white with black speckles", + "breast: vibrant red patch", + "crown: glossy black", + "forehead: black with red borders", + "eyes: bright yellow with black pupils", + "legs: dark gray and sturdy", + "wings: black with white bars", + "nape: red collar surrounding neck", + "tail: black with white tips", + "throat: white with black speckles" + ], + "red cowled cardinal": [ + "back: vibrant red feathers create a striking contrast", + "beak: short, conical, and black in color for cracking seeds", + "belly: lighter greyish-white feathers for blending in", + "breast: vivid red plumage, an iconic feature", + "crown: intense red crest feathers for communication", + "forehead: red feathers smoothly transition from crown", + "eyes: black in color, sharp and perceptive gaze", + "legs: slender and black for perching on tree branches", + "wings: mix of red, black, and grey feathers for agile flight", + "nape: red feathers elegantly curve from the crown", + "tail: long, with black and grey feathers for balance", + "throat: greyish-white plumage softening into the belly" + ], + "red cowled widowbird": [ + "back: vibrant red feathers", + "beak: thin, sharp, and black", + "belly: soft, pale-red feathers", + "breast: bright red plumage", + "crown: striking red crest", + "forehead: bold red feathers", + "eyes: round and dark in color", + "legs: thin and black, with sharp claws", + "wings: long, red feathers with darker tips", + "nape: rich red plumage at the base of the neck", + "tail: elongated, dark-red feathers with a slight curve", + "throat: vivid red feathers with contrasting black border" + ], + "red crested bustard": [ + "back: reddish-brown feathers with black speckles", + "beak: slender, curved, light-colored", + "belly: creamy white with black markings", + "breast: rich tangerine hue with fluffy feathers", + "crown: red-crested plumage prominently displayed", + "forehead: vibrant red feathers transitioning to white", + "eyes: dark, round, bordered with light feathers", + "legs: slim and grayish-brown with bird claws", + "wings: mottled brown and beige with black bars", + "nape: white feathers with black streaks", + "tail: long, earth-toned feathers with horizontal bands", + "throat: bright white feathers contrasted against breast" + ], + "red crested cardinal": [ + "back: vibrant gray feathers", + "beak: short, robust, and red-orange", + "belly: white feathers with light gray streaks", + "breast: bright red plumage", + "crown: fiery red feathers with crest", + "forehead: red-orange feathers extending from beak to crown", + "eyes: small, dark, and alert", + "legs: sturdy, gray, and clawed", + "wings: gray feathers with a hint of red", + "nape: transition of red to gray plumage", + "tail: elongated gray feathers with red undertones", + "throat: brilliant red feathers meeting the breast" + ], + "red crested cotinga": [ + "back: vibrant blue feathers", + "beak: short and black", + "belly: bright red hue", + "breast: rich red plumage", + "crown: fiery red crest", + "forehead: red feathers with blue edges", + "eyes: dark, round, and watchful", + "legs: sturdy gray limbs", + "wings: striking blue feathers with red accents", + "nape: deep blue plumage", + "tail: elongated blue feathers with red tips", + "throat: radiant red region" + ], + "red crested finch": [ + "back: reddish-brown feathers", + "beak: small, pointed, silver-grey", + "belly: whitish with faint streaks", + "breast: light red with streaks", + "crown: vivid red crest", + "forehead: bright red patch", + "eyes: small, dark, round", + "legs: slim, greyish-pink", + "wings: brownish-grey with bars", + "nape: reddish-brown with streaks", + "tail: elongated, dark brown with white tips", + "throat: light red with streaks" + ], + "red crested malkoha": [ + "back: dark green with metallic sheen", + "beak: sturdy, grayish-black", + "belly: white with black streaks", + "breast: pale gray with black streaks", + "crown: striking red crest", + "forehead: smooth, dark green", + "eyes: piercing, white or pale gray", + "legs: long and powerful, dark gray", + "wings: large, greenish-black with white markings", + "nape: dark green with black streaks", + "tail: long and graduated, green with white tips", + "throat: grayish-white with black streaks" + ], + "red crested pochard": [ + "back: red-brown feathers with a slight sheen", + "beak: black and wide at the base, tapering to a point", + "belly: pale gray with white undertail coverts", + "breast: dark rufous color with a faint pattern", + "crown: rounded with a distinctive red crest", + "forehead: red crest extending to the base of the bill", + "eyes: dark and well-rounded, surrounded by red feathers", + "legs: bright orange with webbed feet", + "wings: red-brown feathers with a noticeable white speculum", + "nape: covered with smooth red-brown feathers", + "tail: short and grayish-brown, often held slightly raised", + "throat: pale gray blending into the red breast" + ], + "red crested turaco": [ + "back: vibrant green feathers", + "beak: short, red-orange and curved", + "belly: pale green and white plumage", + "breast: rich green feathers", + "crown: prominent red crest", + "forehead: red crest extending down", + "eyes: dark, encircled by blue skin", + "legs: gray and sturdy", + "wings: green with red underlining", + "nape: green feathers transitioning into red", + "tail: long, green with red tips", + "throat: light green plumage" + ], + "red crowned ant tanager": [ + "back: vibrant red feathers with black edges", + "beak: sturdy, black, slightly curved", + "belly: soft white feathers with hints of red", + "breast: bright red plumage fading to white", + "crown: bold red crest with black speckles", + "forehead: intense red contrasting with black markings", + "eyes: dark, round, and alert", + "legs: strong, black, and slender", + "wings: red with black and white bands", + "nape: red feathers transitioning to black towards the back", + "tail: long, black, and white-tipped", + "throat: brilliant red adjacent to white breast" + ], + "red crowned barbet": [ + "back: vibrant green feathers", + "beak: short and strong, curved", + "belly: warm yellow plumage", + "breast: vibrant yellow feathers", + "crown: striking red patch", + "forehead: bold red hue", + "eyes: dark and beady", + "legs: sturdy green-gray limbs", + "wings: green feathers with blue and yellow markings", + "nape: bright green feathers", + "tail: wide and short, green with blue highlights", + "throat: vivid yellow plumage" + ], + "red crowned crane": [ + "back: smooth, light grey feathers", + "beak: long, pointed, ivory white", + "belly: soft, white feathers", + "breast: white, slightly rounded", + "crown: scarlet red and feathered", + "forehead: bare, white skin", + "eyes: small, dark, attentive gaze", + "legs: tall, slender, greyish-black", + "wings: large, elegant, gently curved", + "nape: elongated, greyish-white feathers", + "tail: long, flowing, white feathers", + "throat: white, slender, curved lines" + ], + "red crowned malimbe": [ + "back: vibrant red feathers with contrasting black markings", + "beak: curved, black, and robust for extracting insects", + "belly: bright red hue, soft feathers", + "breast: fiery-red plumage", + "crown: brilliant red crest, distinctive and eye-catching", + "forehead: prominent red feathers, extending to the face", + "eyes: small, black, surrounded by red feathers", + "legs: strong, black, designed for perching and climbing", + "wings: black with red accents, meant for agile flight", + "nape: red feathers transitioning from the crown", + "tail: black with red undertail coverts, aiding in balance", + "throat: red feathers, adding to the overall vibrant coloration" + ], + "red crowned parakeet": [ + "back: vibrant green feathers", + "beak: strong, curved orange beak", + "belly: attractive greenish-blue hue", + "breast: bright green feathers blending to blue", + "crown: striking red cap", + "forehead: continuation of the red cap, meeting the beak", + "eyes: small, black, and alert", + "legs: slim, gray, and dexterous", + "wings: radiant green with blue tinges", + "nape: vivid green, connecting red crown to back", + "tail: elongated, tapered blue-green feathers", + "throat: lighter green transitioning to breast" + ], + "red crowned parrot": [ + "back: vibrant green feathers", + "beak: strong, beige curved shape", + "belly: light green with yellowish tint", + "breast: bright green plumage", + "crown: striking red patch", + "forehead: vivid red hue", + "eyes: dark brown, curious gaze", + "legs: sturdy, grayish-brown", + "wings: green and blue feathers, elongated", + "nape: rich green, connecting crown to back", + "tail: long, blue-green feathers, slight curve", + "throat: lighter green, smooth transition to breast" + ], + "red crowned woodpecker": [ + "back: vibrant black and white stripes", + "beak: sturdy, chisel-shaped, and dark-colored", + "belly: creamy white feathers", + "breast: white feathers with black speckles", + "crown: distinctive red patch on head", + "forehead: sleek black feathers", + "eyes: inquisitive, black, and circular", + "legs: sturdy gray with sharp talons", + "wings: black and white checkered pattern", + "nape: black and white striped plumage", + "tail: black feathers with white tips", + "throat: white feathers with black speckles" + ], + "red eared firetail": [ + "back: vibrant red streaks on brown", + "beak: small, pointed, beige", + "belly: pale, creamy white", + "breast: bold bright red", + "crown: streaked red-brown", + "forehead: warm red-orange", + "eyes: black with white borders", + "legs: slender, beige", + "wings: brown with red markings", + "nape: crimson-red patch", + "tail: long, brown with red highlights", + "throat: white with red streaks" + ], + "red eared fruit dove": [ + "back: vibrant green feathers", + "beak: short and curved, pale-colored", + "belly: soft white plumage", + "breast: muted pinkish-gray feathers", + "crown: deep green with red-tipped feather tufts", + "forehead: emerald green feathers", + "eyes: small and dark, encircled by a white eye-ring", + "legs: short and yellowish-brown, ending in strong claws", + "wings: colorful green and blue layered feathers", + "nape: vivid green feathers with a red patch on each side", + "tail: long, broad feathers tapering to a point, displaying shades of green, yellow, and blue", + "throat: white, contrasting with the rest of the bird's colorful plumage" + ], + "red eared parakeet": [ + "back: green feathers along the spine", + "beak: small, curved, ivory beak", + "belly: pale green with faint yellow tinge", + "breast: light green with bluish shades", + "crown: vibrant green with red ear patch", + "forehead: bright green fading to pale green near eyes", + "eyes: dark, round with white eye rings", + "legs: grayish-blue with noticeable scaly texture", + "wings: green with dark blue flight feathers", + "nape: bright green with distinct red ear markings", + "tail: long, dark blue feathers with green base", + "throat: light green blending with breast coloration" + ], + "red eared parrotfinch": [ + "back: vibrant green plumage", + "beak: small black and cone-shaped", + "belly: deep red feathers", + "breast: bright red coloring", + "crown: striking bright blue", + "forehead: deep blue feathers", + "eyes: small and black, surrounded by green", + "legs: short and dark gray", + "wings: rich green feathers", + "nape: bright green plumage", + "tail: pointed dark green feathers", + "throat: vivid red plumage" + ], + "red eyed bulbul": [ + "back: sleek, smooth feathers in shades of brown", + "beak: thin and curved, with a sharp point", + "belly: creamy pale color with soft feathers", + "breast: chestnut-brown plumage, blending into the belly", + "crown: dark, blackish color with a slight crest", + "forehead: smooth feathers transitioning from the crown", + "eyes: distinctive bright red color, encircled by a black ring", + "legs: thin and scaly, light grey or brownish hue", + "wings: brown feathers with white tips, strong flight feathers", + "nape: continuation of the crown and back feathers", + "tail: long and rounded, with black and white feathers", + "throat: hints of white or cream, precedes the chestnut breast" + ], + "red eyed dove": [ + "back: sleek grey plumage", + "beak: short, pale grey", + "belly: light greyish-brown", + "breast: rosy-pink tint", + "crown: bluish-grey feathers", + "forehead: light grey, smooth", + "eyes: red iris, white eye-ring", + "legs: reddish-pink, strong", + "wings: grey with black streaks", + "nape: rusty red-brown", + "tail: square-ended, grey with black band", + "throat: pale grey, soft" + ], + "red eyed puffback": [ + "back: sleek gray feathering", + "beak: small, sharp, black", + "belly: light gray underbelly", + "breast: soft gray plumage", + "crown: dark gray, slightly raised", + "forehead: smooth gray feathers", + "eyes: distinct red ring", + "legs: slender, blackish-brown", + "wings: long, gray with white highlights", + "nape: gray plumage, seamless transition", + "tail: fan-shaped, black and white striped", + "throat: pale gray, smooth feathers" + ], + "red faced barbet": [ + "back: vibrantly colored feathers (green, yellow, and blue", + "beak: robust, conical black beak", + "belly: vivid yellow feathers", + "breast: deep red feathers", + "crown: bright red plumage", + "forehead: intense red feathers", + "eyes: alert and bright, encircled with red feathers", + "legs: strong, grayish legs with sharp claws", + "wings: mix of green, yellow, and blue feathers", + "nape: green feathers transitioning into blue", + "tail: green and blue feathers with a slightly forked shape", + "throat: rich red feathers with a distinct contrast to the belly" + ], + "red faced cisticola": [ + "back: reddish-brown with streaks", + "beak: relatively short, pointed, and dark", + "belly: pale and finely streaked", + "breast: light with faint streaking", + "crown: rusty red with streaks", + "forehead: red-rust color blending to crown", + "eyes: round, dark-colored", + "legs: medium length, pale pinkish or yellowish", + "wings: reddish-brown with white tips on feathers", + "nape: reddish-brown with streaks", + "tail: fan-shaped, reddish-brown with dark markings", + "throat: white with fine streaks" + ], + "red faced crimsonwing": [ + "back: vibrant reddish-brown feathers", + "beak: short, sharp, and grayish-black", + "belly: light chestnut-colored underside", + "breast: rich crimson hue with feathered texture", + "crown: deep red plumage covering the top of the head", + "forehead: bright red facial coloration", + "eyes: small and beady, encircled by aptly red feathers", + "legs: slender and grayish-black scaled appendages", + "wings: reddish-brown feathers with darker flight feathers", + "nape: transition of the crown's deep red to the back's reddish-brown", + "tail: long, tapered feathers in a matching reddish-brown shade", + "throat: continuation of the crimson breast, meeting the beak" + ], + "red faced crombec": [ + "back: olive-brown feathers", + "beak: thin, slightly decurved", + "belly: pale, creamy-white undertones", + "breast: greyish-white with brown speckles", + "crown: reddish-brown with lighter edges", + "forehead: prominent red patch", + "eyes: dark with white eye-ring", + "legs: slender, pale grey", + "wings: olive-brown with faint feather markings", + "nape: reddish-brown, blending into back", + "tail: short, rounded, olive-brown", + "throat: pale greyish-white" + ], + "red faced guan": [ + "back: deep green feathers with red-tinted edges", + "beak: strong, ivory-colored, and slightly curved", + "belly: pale white-grey with fine black barring", + "breast: rich chestnut with fine black streaks", + "crown: deep red feathers fading into dark green", + "forehead: bright red with a few scattered green feathers", + "eyes: dark, alert, and surrounded by bare red skin", + "legs: strong, greyish-brown with robust scaled feet", + "wings: green with red-tinted edges and white-tipped secondaries", + "nape: reddish-green feathers transitioning to deep green", + "tail: long, green with red-tinted edges and white-tipped feathers", + "throat: red face fading into white-grey feathering" + ], + "red faced liocichla": [ + "back: vibrant olive-green feathers", + "beak: short, pointed, blackish-gray", + "belly: pale yellow underside", + "breast: bright yellow plumage", + "crown: deep red forehead, extending to the eyes", + "forehead: red feathers meeting the crown", + "eyes: small, black and beady", + "legs: light pinkish-gray, sturdy limbs", + "wings: mixture of yellow, green, and blue feathers", + "nape: olive-green, transitioning into red face", + "tail: long, blue and green feathers", + "throat: yellow feathers blending into the red face" + ], + "red faced malkoha": [ + "back: vibrant green with hints of blue", + "beak: sharp, curved, and dark gray", + "belly: soft grayish-white plumage", + "breast: pale gray chest feathers", + "crown: bright red facial area and crown", + "forehead: red, extending from beak to crown", + "eyes: dark, piercing, surrounded by red feathers", + "legs: long, grayish-blue, built for gripping branches", + "wings: green and blue with a slight iridescence", + "nape: rich green with subtle blue tones", + "tail: long, sweeping green and blue feathers", + "throat: pale gray leading down to the breast" + ], + "red faced mousebird": [ + "back: olive-brown feathers with a slight sheen", + "beak: short, strong, curved with grayish-black color", + "belly: soft grayish-white feathers", + "breast: slightly paler gray feathering", + "crown: vibrant red feathers covering the top of the head", + "forehead: continuation of red feathering from the crown", + "eyes: bright, dark, and round, surrounded by red facial feathers", + "legs: long, slender, and gray, with strong, grasping feet", + "wings: olive-brown with a greenish sheen and pale feather edging", + "nape: olive-brown feathers blending into the red crown", + "tail: long, thin, and gray, with a white tip", + "throat: whitish-gray feathers, contrasting with the red face" + ], + "red faced parrot": [ + "back: vibrant green feathers", + "beak: strong, curved black beak", + "belly: bright blue plumage", + "breast: vivid red feathers", + "crown: red feathers with a slight crest", + "forehead: red feathered face", + "eyes: round, black with a white outline", + "legs: gray scaly legs with black claws", + "wings: green and blue flight feathers", + "nape: golden yellow plumage", + "tail: long, blue and green feathers", + "throat: soft red feathers" + ], + "red faced pytilia": [ + "back: vibrant green and yellow feathers", + "beak: sharp, short, black", + "belly: rich orange plumage", + "breast: orange with red patch", + "crown: red feathers extending from forehead to nape", + "forehead: features prominent red face", + "eyes: small, dark, alert", + "legs: thin, grey, and delicate", + "wings: green and yellow feathers with black edges", + "nape: red plumage extending down the neck", + "tail: long, green and yellow feathers", + "throat: clean white feathers contrasting with red face" + ], + "red faced spinetail": [ + "back: olive-brown feathers", + "beak: short, curved, and dark", + "belly: off-white coloring", + "breast: pale and streaked", + "crown: rusty red patch", + "forehead: red feathers blending into crown", + "eyes: small and dark", + "legs: sturdy and grayish", + "wings: olive-brown with slight barring", + "nape: olive-brown feathers", + "tail: long, dark, with thin white tips", + "throat: pale with faint streaks" + ], + "red faced woodland warbler": [ + "back: olive-green feathers blending with the environment", + "beak: sharp, slender, and slightly curved", + "belly: pale yellowish hue for camouflage", + "breast: light-yellow feathering for a subtle contrast", + "crown: rusty-red shade to distinguish the species", + "forehead: bright red hue for a striking appearance", + "eyes: black and beady for keen vision", + "legs: sturdy and grey to grip branches and cling to bark", + "wings: greenish-brown with strong feathers for agile flight", + "nape: rust-colored plumage for added visual flair", + "tail: olive-brown and short for better maneuverability", + "throat: light yellow merging with the breast coloration" + ], + "red fan parrot": [ + "back: vibrant green feathered surface", + "beak: strong, curved black hook", + "belly: rich red-orange feathers", + "breast: brilliant red fan-like plumage", + "crown: emerald green feathered crest", + "forehead: green feathers transitioning to red", + "eyes: dark, alert, and expressive", + "legs: sturdy gray with sharp claws", + "wings: expansive green with blue and red accents", + "nape: smooth green flowing to red-orange", + "tail: elongated green feathers with red tips", + "throat: bright red to red-orange gradient" + ], + "red flanked bluetail": [ + "back: deep blue plumage", + "beak: petite, black, pointy", + "belly: white feathering", + "breast: rusty orange tinge", + "crown: dark blue shading", + "forehead: vivid azure blue", + "eyes: round, petite, black", + "legs: slim, dark brown", + "wings: striking blue feathers", + "nape: rich blue coloring", + "tail: vibrant blue, fanned", + "throat: reddish-orange hue" + ], + "red flanked lorikeet": [ + "back: vibrant green feathers", + "beak: short, curved orange", + "belly: bright yellow plumage", + "breast: orange-red feathers", + "crown: deep blue-green tinge", + "forehead: blue-green with slight yellow hint", + "eyes: round, dark brown", + "legs: grey, slender", + "wings: green-blue with red flanks", + "nape: blue-green with yellow touch", + "tail: long, green-blue feathers", + "throat: yellow with blue-green border" + ], + "red footed booby": [ + "back: smooth, brown feathers", + "beak: robust, pale yellow and hooked", + "belly: off-white to light brown plumage", + "breast: smooth, white feathers", + "crown: dark brown or black capping", + "forehead: rounded with brownish-black plumage", + "eyes: dark, piercing gaze", + "legs: bright red and webbed", + "wings: elongated, dark brown feathers", + "nape: brown feathers transitioning to white", + "tail: sleek, dark brown, and wedge-shaped", + "throat: white, soft feathers" + ], + "red footed falcon": [ + "back: slate gray feathered back", + "beak: sharp black curved beak", + "belly: light gray feathered underbelly", + "breast: white to light gray plumage", + "crown: immature birds: brownish-gray, mature males: blue-gray, mature females: brownish-gray", + "forehead: immature birds: brown, mature males: blue-gray, mature females: brownish-gray", + "eyes: round and piercing, with yellow-orange eyerings", + "legs: vibrant red-orange legs", + "wings: slate gray primaries with lighter gray coverts, barred in females and juveniles", + "nape: same color as the crown", + "tail: gray squared tail, with white underparts and black tips", + "throat: white to light gray plumage" + ], + "red fronted antpecker": [ + "back: olive-brown feathers with a slight sheen", + "beak: short, pointy, and black", + "belly: white with rust-colored streaks", + "breast: white with prominent reddish splotch", + "crown: olive-green with rust-red forehead", + "forehead: vibrant red patch", + "eyes: dark, beady, encircled by white", + "legs: slender, grayish-brown", + "wings: olive-green with white edges", + "nape: olive-brown, connecting to back", + "tail: elongated, olive-green with white tips", + "throat: white, contrasting with breast" + ], + "red fronted barbet": [ + "back: green and black feather pattern", + "beak: strong, slightly curved, yellowish", + "belly: greenish-yellow with black banding", + "breast: orange to red, varying intensity", + "crown: bluish-black", + "forehead: bright red patch, prominent", + "eyes: dark, surrounded by yellowish skin", + "legs: grayish, sturdy", + "wings: green, black and yellow patterns", + "nape: green with bluish-black streaks", + "tail: green and black bands, medium length", + "throat: greenish-yellow, continuous with belly color" + ], + "red fronted coot": [ + "back: sleek black feathers", + "beak: white with red frontal shield", + "belly: sooty black with faint white streaks", + "breast: dark blackish-green feathers", + "crown: black feathers with slight green sheen", + "forehead: adorned with red frontal shield", + "eyes: small, dark, and alert", + "legs: long and yellowish-green", + "wings: black with white trailing edges", + "nape: glossy black", + "tail: short and black", + "throat: smooth black feathers" + ], + "red fronted coua": [ + "back: vibrant green and blue with streaks of white", + "beak: curved, short, and black", + "belly: bluish-brown feathers with light streaks", + "breast: earthy brown with subtle lighter markings", + "crown: bright red crest with hints of green and blue", + "forehead: radiant red with short feathers", + "eyes: dark with white, slender eye-rings", + "legs: long and greyish in color", + "wings: iridescent green and blue feathers with white tips", + "nape: green and blue feathers with white streaks", + "tail: long, iridescent green with blue tips and white patterns", + "throat: muted brown with lighter streaks and markings" + ], + "red fronted lorikeet": [ + "back: vibrant green feathers covering upper body", + "beak: sturdy, curved orange-red beak", + "belly: whitish-gray plumage on lower stomach", + "breast: bright red feathers on upper chest", + "crown: red-orange plumage on top of the head", + "forehead: red feathers above the beak, between the eyes", + "eyes: round, dark eyes with a white ring around them", + "legs: short, strong grey legs with sharp claws", + "wings: green feathers with blue-tipped secondary feathers", + "nape: red-orange feathers on the back of the neck", + "tail: long, green feathers with darker tips", + "throat: red-orange plumage under the beak and along the neck" + ], + "red fronted macaw": [ + "back: vibrant green feathers", + "beak: strong, curved, blackish-grey", + "belly: light green with blue feathers", + "breast: bright orange-red", + "crown: green with a hint of red", + "forehead: vivid red patch", + "eyes: dark brown, outlined with white feathered rings", + "legs: greyish-brown with sharp claws", + "wings: green with blue-tipped feathers", + "nape: greenish-yellow with red streaks", + "tail: long, blue-green feathers", + "throat: golden-yellow with red accents" + ], + "red fronted parrotlet": [ + "back: vibrant green feathers", + "beak: short, sharp, and beige", + "belly: light green with subtle markings", + "breast: bright green plumage", + "crown: vivid red feathers", + "forehead: deep red, contrasting with eyes", + "eyes: round, black, and alert", + "legs: grayish brown, sturdy", + "wings: vibrant green with deep blue flight feathers", + "nape: soft green with slight blue tint", + "tail: long, green feathers with blue edges", + "throat: light green, smooth transition to breast" + ], + "red fronted prinia": [ + "back: light brown and slender", + "beak: thin and pointed", + "belly: white with rusty hues", + "breast: white and softly streaked", + "crown: reddish-brown with black stripes", + "forehead: reddish-brown", + "eyes: dark with white eye-ring", + "legs: long and thin", + "wings: light brown with darker bars", + "nape: reddish-brown", + "tail: long with white edges", + "throat: white and unmarked" + ], + "red fronted rosefinch": [ + "back: reddish-brown feathers with slight streaks", + "beak: short, robust, and cone-shaped", + "belly: pale white with faint streaks", + "breast: bright reddish-pink plumage", + "crown: deep red feathers", + "forehead: vibrant red plumage", + "eyes: small, dark, and beady", + "legs: thin and pale pinkish-grey", + "wings: reddish-brown with dark markings", + "nape: reddish-brown with faint streaks", + "tail: long, reddish-brown with dark bands at the tip", + "throat: bright red plumage" + ], + "red fronted tinkerbird": [ + "back: greenish upperpart with subtle golden gloss", + "beak: short, stout, and blackish", + "belly: creamy white with light brown streaks", + "breast: pale brown shading, white spots", + "crown: dull greenish-gold, sometimes with red forehead", + "forehead: bright red patch, distinguishing feature", + "eyes: dark brown, surrounded by pale eyering", + "legs: grayish-brown, short and strong", + "wings: greenish with dark tips, rounded in shape", + "nape: greenish-gold, continuous with back color", + "tail: dark green, moderately long and square-ended", + "throat: creamy white, leading into brown streaked breast" + ], + "red gartered coot": [ + "back: sleek black feathers", + "beak: sharp, white, slender", + "belly: dark grey with subtle stripes", + "breast: deep black, slightly puffed", + "crown: glossy black, smooth feathers", + "forehead: distinctive red marking", + "eyes: small, black, and expressive", + "legs: long, sturdy, greenish-yellow", + "wings: black, broad, and powerful", + "nape: black, thinly feathered", + "tail: short, black, fan-shaped", + "throat: charcoal grey, subtle curve" + ], + "red headed barbet": [ + "back: vibrant green and blue feathers", + "beak: strong, slightly curved, pale-colored", + "belly: vivid blue with black speckles", + "breast: bright red plumage", + "crown: rich red feathers with black borders", + "forehead: scarlet red feathers", + "eyes: circular, dark, with pale eye-ring", + "legs: sturdy, grayish-brown", + "wings: green and blue with black accents", + "nape: mixture of red and black feathers", + "tail: broad, blue with black barring", + "throat: brilliant yellow with black speckles" + ], + "red headed bluebill": [ + "back: vibrant blue feathers", + "beak: strong, red conical shape", + "belly: light blue with subtle white striping", + "breast: bright red plumage", + "crown: bright red covering the head", + "forehead: red feathers blending into blue", + "eyes: small, black, alert gaze", + "legs: sturdy, gray-blue with sharp claws", + "wings: blue with hints of brighter red and white", + "nape: transition of red to blue feathering", + "tail: strong blue feathers with white trim", + "throat: bright red feathers contrasting with blue plumage" + ], + "red headed bullfinch": [ + "back: reddish-brown feathers", + "beak: short, stout, and conical", + "belly: white with brown streaks", + "breast: rusty-red plumage", + "crown: vibrant red feathers", + "forehead: bright red patch", + "eyes: small, round, and black", + "legs: grayish-blue with strong feet", + "wings: brown with white wing bars", + "nape: reddish-brown merging with crown", + "tail: dark brown with white edges", + "throat: red feathers merging with breast" + ], + "red headed bunting": [ + "back: vibrant rusty orange feathers", + "beak: short, stout, and cone-shaped", + "belly: soft pale yellow hue", + "breast: bright orange with a golden undertone", + "crown: brilliant, deep red plumage", + "forehead: striking red feathers extending to the eye area", + "eyes: small, dark, and alert", + "legs: slender, wiry, and grayish-pink", + "wings: mix of warm rusty-orange and brownish-black feathers", + "nape: orange transitioning to red at the crown", + "tail: long, narrow, brownish-black feathers with orange accents", + "throat: bold, deep red plumage" + ], + "red headed cisticola": [ + "back: light brown with streaks", + "beak: thin and sharp", + "belly: soft white or cream", + "breast: buff-colored with black markings", + "crown: bright red or chestnut", + "forehead: reddish-brown hues", + "eyes: small and dark", + "legs: long and slender, beige color", + "wings: brown with rufous edging", + "nape: streaked brownish-red", + "tail: fan-shaped, dark brown with white edges", + "throat: pale and unmarked" + ], + "red headed finch": [ + "back: brownish-grey with black streaks", + "beak: sturdy, pale-colored, conical shape", + "belly: white with black streaks", + "breast: reddish-brown plumage", + "crown: deep red feathers", + "forehead: bright red patch", + "eyes: dark, round with white eyering", + "legs: strong, pale pinkish hue", + "wings: brownish-grey with white bars", + "nape: reddish-brown blending into back", + "tail: dark, forked with white outer edges", + "throat: white leading to chest" + ], + "red headed flameback": [ + "back: vibrant golden-yellow feathers", + "beak: strong, sturdy, and chisel-like", + "belly: light cream with fine streaks", + "breast: golden-yellow feathers with darker streaks", + "crown: vivid crimson red plumage", + "forehead: brilliant red coloration", + "eyes: beady black with white eye-ring", + "legs: sturdy grey with sharp claws", + "wings: golden-yellow with black barring", + "nape: intense red plumage", + "tail: black feathers with white tips", + "throat: golden-yellow with streaked markings" + ], + "red headed fody": [ + "back: vibrant green feathers covering the upper body", + "beak: short, stout, and curved, silver-gray color", + "belly: soft, pale yellow feathers extending to the lower body", + "breast: brilliant red feathers extending from the throat", + "crown: bright red feathers covering the head's top", + "forehead: vivid red feathers meeting the beak", + "eyes: small, black, and expressive with a narrow white ring around them", + "legs: slender gray legs with well-adapted claws", + "wings: green and black feathers, medium-length with a gentle curve", + "nape: transition of red from the head to green and black of the back", + "tail: medium-length, green and black feathers with a slight v-shape", + "throat: intense red feathers connecting to the breast" + ], + "red headed lovebird": [ + "back: vibrant green feathers", + "beak: strong, short, and ivory-colored", + "belly: light green with a hint of blue", + "breast: orange-red plumage", + "crown: brilliant red feathers", + "forehead: bright red plumage", + "eyes: dark, surrounded by a white eye-ring", + "legs: sturdy and grayish", + "wings: green with hints of blue and black", + "nape: red feathers transitioning to green", + "tail: long, green and blue feathers", + "throat: fiery red plumage" + ], + "red headed malimbe": [ + "back: hues of dark-red and black feathers", + "beak: short, thick, and black", + "belly: predominantly black with red markings", + "breast: dark-red feathers with black accents", + "crown: bright red plumage extending down the neck", + "forehead: vibrant red feathers meeting the beak", + "eyes: small with dark beady pupils", + "legs: long and black with strong perching claws", + "wings: black with red-tinted feathers along the edges", + "nape: the transition area from the red crown to the dark back", + "tail: long black feathers with hints of red", + "throat: continuation of the red plumage from the head and neck" + ], + "red headed manakin": [ + "back: vibrant green feathers", + "beak: small, sharp, black", + "belly: olive green with soft feathering", + "breast: bright emerald green plumage", + "crown: fiery red feathers", + "forehead: intense red patch", + "eyes: dark and round, intense gaze", + "legs: thin, gray-blue with gripping toes", + "wings: green with black-edged feathers", + "nape: green feathers transitioning to red", + "tail: olive green with rounded, black-tipped feathers", + "throat: striking emerald green coloration" + ], + "red headed myzomela": [ + "back: vibrant red feathers blending into black", + "beak: slender, curved, black", + "belly: black with a red tint", + "breast: bright red feathers", + "crown: fiery red plumage", + "forehead: deep red, smooth feathers", + "eyes: small, black, beady", + "legs: thin, twig-like black", + "wings: black feathers with a red edge", + "nape: striking red hue", + "tail: black, slightly elongated feathers", + "throat: brilliant red plumage" + ], + "red headed quelea": [ + "back: dark brown with fine white streaks", + "beak: sharp, conical, pale beige", + "belly: creamy white", + "breast: light brown with white speckles", + "crown: bright red-orange", + "forehead: red-orange, blending into crown", + "eyes: round and black, surrounded by red-orange", + "legs: thin, beige-tan", + "wings: brown with hints of reddish-black and white tips", + "nape: dark brown, fine white streaks", + "tail: brown with white edges", + "throat: light beige-brown" + ], + "red headed tanager": [ + "back: vibrant green feathers", + "beak: sharp, black, and pointed", + "belly: yellowish-green hues", + "breast: rich red-orange plumage", + "crown: bold, fiery red", + "forehead: crimson feathers", + "eyes: small, black, and alert", + "legs: thin and grayish-blue", + "wings: green with contrasting black edges", + "nape: vivid red-orange feathers", + "tail: green with black tips", + "throat: brilliant red-orange fluff" + ], + "red headed trogon": [ + "back: bright green upper body", + "beak: short and stout, blackish upper mandible, pale yellow lower mandible", + "belly: white lower abdomen", + "breast: bright red chest", + "crown: deep red head and crown", + "forehead: intense red coloring", + "eyes: dark, relatively large, encircled by pale eyering", + "legs: short, sturdy, and pale yellow", + "wings: green upper wings, barred with black", + "nape: transitioning from red to green", + "tail: long, dark green with white tail tips", + "throat: deep red down to breast" + ], + "red headed vulture": [ + "back: dark black feathers", + "beak: curved, sharp, silver-tipped", + "belly: blackish-gray plumage", + "breast: black, with silver-white streaks", + "crown: bright red, bald head", + "forehead: wrinkled red skin", + "eyes: dark, beady, surrounded by red skin", + "legs: powerful, grayish-black", + "wings: broad, black feathers with silver-white linings", + "nape: black, with white feathered collar-like pattern", + "tail: long, black feathers with subtle white linings", + "throat: red-skinned, with black feathers near the base" + ], + "red headed weaver": [ + "back: vibrant green feathers", + "beak: strong, cone-shaped, silver-black", + "belly: light cream and yellowish hue", + "breast: bright yellow plumage", + "crown: brilliant red feathers", + "forehead: striking red coloration", + "eyes: dark and round with a white eye-ring", + "legs: slender, grayish-brown", + "wings: green and yellow with black tips", + "nape: red feathers blending with green upperparts", + "tail: long, greenish-yellow with black barring", + "throat: yellow with faint streaks" + ], + "red hooded tanager": [ + "back: vibrant red with black streaks", + "beak: short and conical, black", + "belly: pale red, slightly lighter than back", + "breast: bright red, blending into the belly", + "crown: deep red, almost maroon, feathers raised", + "forehead: slightly lighter red, leading into the crown", + "eyes: small and black, piercing gaze", + "legs: short and black, strong and agile", + "wings: black with red highlights, impressive span", + "nape: bright red, contrasting with darker crown", + "tail: long and black with red under-feathers", + "throat: rich red, matching the breast and belly" + ], + "red keeled flowerpecker": [ + "back: vibrant green with a slight sheen", + "beak: short, curved, and black", + "belly: light gray with reddish tinges", + "breast: dark gray with crimson streaks", + "crown: shiny green with a rounded crest", + "forehead: bright green, blending with the crown", + "eyes: small, round, and black", + "legs: thin and grayish-black", + "wings: green and black with blue edges", + "nape: rich green transitioning from the crown", + "tail: short and black with blue-green iridescence", + "throat: light gray with a hint of red" + ], + "red kneed dotterel": [ + "back: patterned with brown and white feathers", + "beak: short and sharp, black towards the tip and yellow at the base", + "belly: white with dark streaks along the sides", + "breast: light brown with white speckles", + "crown: dark brown with a thin white stripe", + "forehead: white patch extending above the eye", + "eyes: small, dark, and bright", + "legs: long and red with distinct 'knees", + "wings: downy brown feathers with thin white stripes", + "nape: dark brown with a white collar", + "tail: short, with alternating brown and white feathers", + "throat: white, often with some dark streaks" + ], + "red knobbed coot": [ + "back: black with a slight green sheen", + "beak: white with a reddish or rusty knob at the base", + "belly: black feathers", + "breast: black plumage with slight green sheen", + "crown: black with smooth feathers", + "forehead: adorned with a red knob", + "eyes: small and reddish-brown", + "legs: greenish-grey with large lobed feet", + "wings: black with white secondary feathers", + "nape: black with smooth feathers", + "tail: short and black", + "throat: black with slight green sheen" + ], + "red knobbed imperial pigeon": [ + "back: dark grey feathers with subtle green sheen", + "beak: short and powerful, light grey color", + "belly: pale grey, blending with breast color", + "breast: light grey with a slight pinkish hue", + "crown: dark grey feathers, hint of purple iridescence", + "forehead: dark grey, merging with crown color", + "eyes: circular and black, surrounded by thin grey eye-ring", + "legs: short and stout, reddish-brown with grey scales", + "wings: dark grey with green shine, broad and rounded", + "nape: dark grey, continuous with crown color", + "tail: long and dark grey, slightly lighter towards the tip", + "throat: light grey, same shade as belly and breast" + ], + "red legged brushturkey": [ + "back: dark brown feathers with black streaks", + "beak: strong, dark-colored and slightly curved", + "belly: pale brown feathers with black patterns", + "breast: rufous-colored with dark feather edges", + "crown: featherless, deep red and slightly shiny", + "forehead: small, with red skin and sparse feathers", + "eyes: dark and alert, with a bold yellow ring", + "legs: long, thick, and bright red in color", + "wings: dark brown with lighter brown patterns and white streaks", + "nape: dark brown feathers with black streaks, almost matching back", + "tail: long and fan-shaped, with alternating dark and pale brown feathers", + "throat: bright red or pink in color, with a fleshy wattle" + ], + "red legged cormorant": [ + "back: sleek, grayish-brown feathers", + "beak: hooked, yellow-orange", + "belly: pale white-gray underparts", + "breast: grayish-white plumage", + "crown: dark brown feathers", + "forehead: pale, yellow skin patch", + "eyes: stunning turquoise blue", + "legs: vivid red-orange", + "wings: long, gray-brown with white streaks", + "nape: thick, dark brown feathers", + "tail: short, stiff, and gray-brown", + "throat: yellow-white pouch" + ], + "red legged crake": [ + "back: earthy brown with subtle streaks", + "beak: short, sharp, pale yellowish", + "belly: warm cinnamon-brown", + "breast: reddish-brown with faint markings", + "crown: dark brown, slightly crested", + "forehead: brown, fading to gray towards beak", + "eyes: small, dark and circular", + "legs: long, bright red", + "wings: brown with faint white streaks", + "nape: dark brown, connecting to the back", + "tail: short, brown with faint barring", + "throat: pale gray-brown, unmarked" + ], + "red legged partridge": [ + "back: rusty-brown with dark markings", + "beak: strong, short, and pale", + "belly: light grey with brown patches", + "breast: grey with orange-brown streaks", + "crown: grey and chestnut-colored", + "forehead: buff-white", + "eyes: dark brown with a red eye-ring", + "legs: vibrant red", + "wings: rounded with brown and grey patterns", + "nape: pale grey", + "tail: long and wedge-shaped, brown with black band", + "throat: whitish with black border" + ], + "red legged seriema": [ + "back: reddish-brown with black speckles", + "beak: long, hooked, and greyish", + "belly: beige with black striping", + "breast: pale buff with black spots", + "crown: feathery crest, greyish-brown", + "forehead: greyish-brown, transitioning into the crown", + "eyes: bright, piercing yellow", + "legs: striking, long red legs", + "wings: reddish-brown with black bars and white tips", + "nape: greyish-brown, links with the crown", + "tail: long, broad, and banded in black and white", + "throat: pale buff, with fine black spots" + ], + "red legged thrush": [ + "back: vibrant blue feathers with dark shading", + "beak: strong and slightly curved, black in color", + "belly: white or light gray with a hint of blue", + "breast: deep slate-blue with subtle streaks", + "crown: dark blue with contrasting lighter shade", + "forehead: smooth and flat, transition from dark to light blue", + "eyes: black with a white ring for contrast", + "legs: bright red, strong and slender", + "wings: dark blue feathers with black tips", + "nape: blue feathers leading into a lighter shade at the back", + "tail: long, dark blue feathers with black tips and white outer edges", + "throat: white, sometimes tinged with light gray" + ], + "red legged tinamou": [ + "back: dark brown with faint barring", + "beak: short and curved, blackish color", + "belly: pale buff with blackish markings", + "breast: cinnamon-rufous with dark bars", + "crown: dark brown with reddish tinge", + "forehead: pale grayish-brown", + "eyes: dark brown/black with a small white ring", + "legs: bright red-orange", + "wings: brown with a reddish hue and black barring", + "nape: grayish-brown with reddish shade", + "tail: short and rounded, reddish-brown with black bars", + "throat: pale gray with fine dark streaks" + ], + "red lored parrot": [ + "back: vibrant green feathers", + "beak: strong, curved black beak", + "belly: light green, slightly yellowish feathers", + "breast: brilliant green plumage", + "crown: bright red feathers with hints of blue", + "forehead: vivid red extending to eye area", + "eyes: dark, expressive with white eye-ring", + "legs: sturdy, grayish-brown scaly legs", + "wings: rich green with blue-tipped flight feathers", + "nape: green feathers with blue-speckled edges", + "tail: long, blue and green feathers with red base", + "throat: yellow-green feathered area" + ], + "red lored whistler": [ + "back: rusty-brown", + "beak: sharp, thin, and black", + "belly: pale white", + "breast: reddish-orange", + "crown: grayish-blue", + "forehead: bright red", + "eyes: dark with white eyering", + "legs: slender, gray", + "wings: short, brown patterned", + "nape: gray-blue transition to brown", + "tail: brown with dark bands", + "throat: white with reddish patch" + ], + "red mantled rosefinch": [ + "back: vibrant reddish-pink feathers", + "beak: short, pointed, and conical", + "belly: light gray blending into the pinkish mantel", + "breast: bright reddish-pink plumage", + "crown: striking red feathers", + "forehead: continuation of reddish-pink crown", + "eyes: small, alert, and black", + "legs: sturdy, gray with sharp claws", + "wings: dull brownish-gray with streaks of pink", + "nape: reddish-pink fading into gray plumage", + "tail: long, grayish-brown with a hint of red", + "throat: vibrant reddish-pink, similar to breast" + ], + "red masked parakeet": [ + "back: vibrant green feathers", + "beak: strong, beige curved shape", + "belly: pale green with tinges of yellow", + "breast: rich green mixed with yellow", + "crown: striking red plumage", + "forehead: vivid red feathers", + "eyes: black with white eye-ring", + "legs: grayish-blue with scaly texture", + "wings: bright green with blue tips", + "nape: reddish-orange transition to green", + "tail: long, green with blue edges", + "throat: soft green blending to yellow" + ], + "red naped bushshrike": [ + "back: vibrant green feathers", + "beak: sharp, strong black beak", + "belly: pale creamy-white feathers", + "breast: bright red-orange patch", + "crown: bright green with a slight crest", + "forehead: vivid green feathers", + "eyes: dark and alert with a narrow white eye ring", + "legs: sturdy, grayish legs", + "wings: green with black and white tips", + "nape: striking red patch", + "tail: long, green with black and white markings", + "throat: creamy-white feathers" + ], + "red naped fruit dove": [ + "back: vibrant green feathers", + "beak: short and curved, grayish-blue color", + "belly: pale gray with soft yellow undertones", + "breast: orange-yellow with fine green iridescence", + "crown: olive-green fading to a lavender-gray", + "forehead: deep red patch above eyes", + "eyes: small, dark with a narrow gray eyering", + "legs: short and sturdy, reddish-brown hue", + "wings: shimmering green with pale yellow edges", + "nape: bright red bordered by iridescent green", + "tail: green central feathers, yellow-tipped outer feathers", + "throat: pale gray contrasting with bold breast color" + ], + "red naped ibis": [ + "back: dark iridescent black with greenish sheen", + "beak: long, curved, dusky gray", + "belly: deep black blending with dark brown", + "breast: dark brown with faint black border", + "crown: black and shiny with reddish nape patch", + "forehead: dark and glossy black", + "eyes: deep black with light gray surrounds", + "legs: long, slender, dark gray", + "wings: glossy black with hints of greenish and purple sheen", + "nape: distinct red patch amidst glossy black feathers", + "tail: elongated black feathers with slight greenish gloss", + "throat: dark grayish-brown with faint black streaks" + ], + "red necked aracari": [ + "back: vibrant green feathers", + "beak: large, curved, and multicolored", + "belly: yellow-orange with black markings", + "breast: bright yellow with black streaks", + "crown: olive-green fading into red", + "forehead: red band above the eyes", + "eyes: large, dark, and expressive", + "legs: short, grey, with strong claws", + "wings: striking emerald green", + "nape: red, extending to the neck", + "tail: elongated and colorful feathers", + "throat: vibrant red plumage" + ], + "red necked avocet": [ + "back: sleek, greyish-brown feathers", + "beak: long, upward-curved, black tip", + "belly: snowy white plumage", + "breast: white feathers transitioning to greyish-brown", + "crown: smooth greyish-brown cap", + "forehead: white with greyish-brown line", + "eyes: small black beads with white surrounding", + "legs: slender blue-grey, elongated limbs", + "wings: broad and pointed, greyish-brown with white streaks", + "nape: elegant curve from the back of the head to the neck", + "tail: short and pointy with greyish-brown and white feathers", + "throat: crisp white plumage extending to the chin" + ], + "red necked buzzard": [ + "back: brownish-red feathers", + "beak: sharp, hooked, yellowish", + "belly: white and grayish plumage", + "breast: white with dark streaks", + "crown: reddish-brown feathers", + "forehead: white with speckled brown", + "eyes: bright yellow, piercing gaze", + "legs: strong, yellow with sharp talons", + "wings: brownish-red with dark tips", + "nape: rich red, transitioning to brown on back", + "tail: long, reddish-brown with dark bands", + "throat: white with dark streaks" + ], + "red necked crake": [ + "back: olive-brown feathers", + "beak: strong, yellowish-brown", + "belly: pale gray with dark barring", + "breast: rufous-orange hue", + "crown: dull chestnut-brown", + "forehead: rich brown with a buff stripe", + "eyes: bold, dark brown", + "legs: sturdy, reddish-orange", + "wings: olive-brown with white markings", + "nape: reddish-brown", + "tail: dark brown with white streaks", + "throat: pale gray with dark spots" + ], + "red necked falcon": [ + "back: slate-grey with light feather edges", + "beak: short, strong, curved, and dark grey", + "belly: white with pale grey streaks", + "breast: white with greyish streaks", + "crown: slate-grey with a slightly paler forehead", + "forehead: pale grey blending into the crown", + "eyes: dark brown with yellow eye-ring", + "legs: yellow with sharp, black talons", + "wings: long, pointed, slate-grey, and dark-tipped", + "nape: white, bordered by a red neck band", + "tail: grey with white tip and black subterminal band", + "throat: white with fine grey streaks" + ], + "red necked nightjar": [ + "back: earthy brown with intricate patterns", + "beak: short, slightly hooked, and dark", + "belly: pale buff with brown streaks", + "breast: mixed brown with light spotting", + "crown: brownish-grey with fine markings", + "forehead: pale greyish-brown with a faint streak", + "eyes: large, dark, and suited for night vision", + "legs: short, feathered, and well-camouflaged", + "wings: long, pointed, and beautifully patterned", + "nape: reddish-brown with distinct barring", + "tail: moderately long and dark, with subtle banding", + "throat: light buff with thin brown streaks" + ], + "red necked parrot": [ + "back: vibrant green plumage", + "beak: strong, hooked, and beige", + "belly: pale green feathers with hints of blue", + "breast: bright green fading to yellow-green", + "crown: brilliant blue plumage", + "forehead: striking red-orange feathers", + "eyes: dark, rounded, surrounded by white eye-ring", + "legs: grayish-black with strong claws", + "wings: green with blue and yellow accents", + "nape: distinctive red neck band", + "tail: long, green and blue feathers", + "throat: yellow-green feathers blending into breast" + ], + "red necked spurfowl": [ + "back: reddish-brown with intricate black patterns", + "beak: short, strong, and light grey", + "belly: buff white with black markings", + "breast: rich chestnut color with black speckling", + "crown: greyish-brown with fine black streaks", + "forehead: distinctive red patch above the beak", + "eyes: dark brown with a thin white eye-ring", + "legs: strong, scaled, greyish-brown with long spurs", + "wings: brown with white streaks, slightly rounded", + "nape: greyish-brown, lighter than the back", + "tail: dark brown with prominent white bands", + "throat: pale grey with fine black streaks" + ], + "red necked stint": [ + "back: grayish-brown with black speckles", + "beak: short, straight, black", + "belly: white with light gray spots", + "breast: light gray and slightly speckled", + "crown: reddish-brown with black streaks", + "forehead: grayish-white with reddish hue", + "eyes: small, black, surrounded by white or light gray feathers", + "legs: yellowish-green to dark olive", + "wings: grayish-brown with lighter edges", + "nape: reddish-brown with black streaks", + "tail: short, grayish-brown with black markings", + "throat: white with light gray speckles" + ], + "red necked tanager": [ + "back: vibrant green feathers", + "beak: short and black", + "belly: golden-yellow hue", + "breast: brilliant turquoise-blue", + "crown: emerald green top", + "forehead: rich green plumage", + "eyes: striking black eyedrops", + "legs: strong, dark-colored", + "wings: multicolored blue and green", + "nape: deep red patch on the neck", + "tail: long, iridescent green-blue feathers", + "throat: vibrant turquoise-blue color" + ], + "red necked woodpecker": [ + "back: vibrant red hue with black stripes", + "beak: long, pointed, and chisel-like", + "belly: soft white with black spots", + "breast: mostly white with black streaks", + "crown: fiery red with black border", + "forehead: sleek white with black markings", + "eyes: beady with a piercing gaze", + "legs: stout and gray with sharp claws", + "wings: black with white patches and streaks", + "nape: red-concentrated area at back of neck", + "tail: black and sturdy with inlaid red and white feathers", + "throat: white with intricate black stripes" + ], + "red pate cisticola": [ + "back: light brown with black streaks", + "beak: short and pointy, pale in color", + "belly: white with brownish tinge", + "breast: ashy-greyish brown", + "crown: deep red to chestnut color", + "forehead: red blended with a lighter brown", + "eyes: small, dark, and alert", + "legs: long, slender, and pale gray", + "wings: rounded, with brown and black patterns", + "nape: brown with black streaks", + "tail: long, narrow, and brown with dark markings", + "throat: pale grayish-white" + ], + "red ruffed fruitcrow": [ + "back: smooth, deep red feathers", + "beak: large, sharply curved, black", + "belly: red plumage, soft and fluffy", + "breast: vibrant red, dense feathers", + "crown: striking red crest, pronounced", + "forehead: smooth red feathers", + "eyes: dark brown, intelligent gaze", + "legs: strong, black, scaly", + "wings: wide-spanning, red with darker tips", + "nape: red, sloping down to back", + "tail: long, red, and broad", + "throat: red feathers, slightly lighter than surrounding plumage" + ], + "red rumped bush tyrant": [ + "back: vibrant red feathers", + "beak: short, sharp, black", + "belly: light grayish-white", + "breast: grayish-white with subtle streaks", + "crown: olive-green with touches of red", + "forehead: prominent, olive-green", + "eyes: small, black, intense gaze", + "legs: long, slender, gray", + "wings: olive-green with red highlights", + "nape: streaks of red over an olive-green shade", + "tail: elongated, red-tipped feathers", + "throat: soft grayish-white" + ], + "red rumped cacique": [ + "back: striking black plumage", + "beak: sturdy and slightly curved", + "belly: rich yellow underparts", + "breast: vibrant yellow feathers", + "crown: glossy black plumage", + "forehead: smooth black feathers", + "eyes: dark and expressive", + "legs: sturdy and dark-colored", + "wings: broad, black, and powerful", + "nape: black feathered with a slight gloss", + "tail: long and black with a red rump patch", + "throat: yellow and prominent" + ], + "red rumped parrot": [ + "back: vibrant green feathers", + "beak: short, hooked, pale gray", + "belly: light green or yellow", + "breast: shades of yellow or green", + "crown: deep green or blue", + "forehead: bright green or blue", + "eyes: dark brown with white eye-ring", + "legs: strong, grayish", + "wings: vivid green with blue highlights", + "nape: deep green, blending into red rump", + "tail: long, green with red or yellow undertail coverts", + "throat: pale green or yellow" + ], + "red rumped swallow": [ + "back: brownish-gray feathers with a slight sheen", + "beak: small, black, and slightly curved", + "belly: light cream to beige colored feathers", + "breast: reddish-brown plumage, pronounced in males", + "crown: dark gray with brownish tint", + "forehead: grayish-brown, blending into crown", + "eyes: small and dark, with white eyering", + "legs: short and black, with strong feet for perching", + "wings: brownish-gray with blackish flight feathers", + "nape: reddish-brown, connecting to the rump", + "tail: long and forked, with dark gray feathers", + "throat: pale gray, contrast with reddish-brown breast" + ], + "red rumped tinkerbird": [ + "back: olive-green coloration and smooth feathers", + "beak: short, sturdy, and sharply pointed, black or dark grey", + "belly: off-white or pale yellow with occasional speckles", + "breast: brighter yellow with sparse spotting, blending into the belly", + "crown: deep olive-green, well-defined feathers", + "forehead: vibrant yellow, distinguishes the red-rumped tinkerbird from other tinkerbird species", + "eyes: dark and small, surrounded by a narrow, pale eye ring", + "legs: dark grey, slender but strong", + "wings: olive-green, short, and rounded, with distinctive barring on the flight feathers", + "nape: bright red patch, giving the bird its name", + "tail: olive green with subtle black barring, slightly forked for maneuverability in flight", + "throat: pale yellow, blending into the breast and belly coloration" + ], + "red rumped wheatear": [ + "back: reddish-brown, streaked feathers", + "beak: short, curved, black", + "belly: pale white, speckled", + "breast: whitish, faint streaks", + "crown: dark brown, slightly crested", + "forehead: brown, smooth feathers", + "eyes: dark, round, expressive", + "legs: slender, grey-black", + "wings: long, reddish-brown, black tips", + "nape: dark brown, sleek feathers", + "tail: wedge-shaped, dark with white edges", + "throat: white, unmarked feathers" + ], + "red rumped woodpecker": [ + "back: patterned with black and white stripes", + "beak: long, chisel-like, and sturdy", + "belly: creamy-white, lightly streaked with black", + "breast: bright red or pale red depending on the gender", + "crown: black with a bright red patch (male) or duller red (female", + "forehead: white with subtle black markings", + "eyes: large and alert, surrounded by white feathers", + "legs: strong and short, adapted for climbing trees", + "wings: black with white spots or barring", + "nape: black or blackish-brown, sometimes with a red streak", + "tail: stiff and wedge-shaped, used for support while perching", + "throat: white or pale gray with light black streaks" + ], + "red shouldered blackbird": [ + "back: sleek black feathers", + "beak: sharp, pointed, dark grey", + "belly: smooth black plumage", + "breast: glossy black with reddish patch", + "crown: shiny black feathers", + "forehead: smooth, black plumage", + "eyes: bright yellow, sharp gaze", + "legs: strong, dark grey, scaly", + "wings: black with red shoulders, outstretched", + "nape: midnight black, smooth feathers", + "tail: long, black, fan-shaped", + "throat: dark, glossy black" + ], + "red shouldered cuckooshrike": [ + "back: olive-green with distinctive patterns", + "beak: hooked, black and sharp", + "belly: pale grey with a slightly creamy hue", + "breast: light grey with occasional barring", + "crown: slate-grey and well-defined", + "forehead: smooth, dark grey transitioning into crown", + "eyes: alert, dark with a prominent white eye-ring", + "legs: sturdy, black with sharp claws", + "wings: olive-green with bold, contrasting black markings", + "nape: fine grey, blending with crown and back", + "tail: long, dark grey with white tips on outer feathers", + "throat: soft, light grey extending to the breast" + ], + "red shouldered macaw": [ + "back: vibrant green feathered back", + "beak: strong, curved black beak", + "belly: light greenish yellow feathers on the lower abdomen", + "breast: predominantly green with hints of blue and red feathers", + "crown: bright green feathers with a slight blue tint", + "forehead: vivid blue feathers above the eyes", + "eyes: dark, round eyes with a white eye ring", + "legs: sturdy gray legs with sharp, black claws", + "wings: blue and green with red shoulder patches and yellow accents", + "nape: green feathers transitioning into blue on the back of the neck", + "tail: long blue and green feathers with yellow and red highlights", + "throat: green-to-yellow gradient in the feather coloration" + ], + "red shouldered spinetail": [ + "back: olive-brown with reddish streaks", + "beak: short, straight, and sharp", + "belly: creamy white with mottled brown", + "breast: buff-colored with dark brown spots", + "crown: reddish-brown with a faint crest", + "forehead: olive-brown with a reddish patch", + "eyes: dark brown with a pale eye-ring", + "legs: long, slender, and grayish-blue", + "wings: olive-brown with red shoulder patches", + "nape: olive-brown with a reddish tinge", + "tail: long and narrow with reddish-brown feathers", + "throat: creamy white with faint brown streaks" + ], + "red shouldered tanager": [ + "back: vibrant green feathers", + "beak: short, sharp, black", + "belly: pale yellow hue", + "breast: bright red-orange patch", + "crown: deep green with streaks", + "forehead: sleek, green-black gradient", + "eyes: small, round, dark", + "legs: sturdy, grayish-brown", + "wings: bold green with black edges", + "nape: rich, forest green", + "tail: green-black, fanlike shape", + "throat: golden yellow tone" + ], + "red shouldered vanga": [ + "back: vibrant red-orange plumage", + "beak: strong, hooked, dark grey", + "belly: soft white feathers", + "breast: bright red-orange plumage", + "crown: sleek, black feathers", + "forehead: black and white streaks", + "eyes: beady, black, alert", + "legs: long, sturdy, grey", + "wings: black with red-orange accents", + "nape: black with white streaks", + "tail: long, black with red-orange tips", + "throat: white with black streaks" + ], + "red spectacled parrot": [ + "back: vibrant green, covering the bird's body", + "beak: strong, hooked, deep coral hue", + "belly: vivid green with slight yellow tinges", + "breast: bright green, fading to grayish-white", + "crown: deep red, spreading to forehead", + "forehead: bright red merging with the crown", + "eyes: round, dark, encircled by white eye-ring", + "legs: sturdy, gray, with sharp claws", + "wings: lush green, red wingtips, prominent in flight", + "nape: green, connecting the crown to the back", + "tail: long, green, with hints of blue and red", + "throat: grayish-white, fading into the breast area" + ], + "red stained woodpecker": [ + "back: vibrant red feathers with black streaks", + "beak: strong, chisel-like, and black", + "belly: creamy white with black spots", + "breast: white with black horizontal stripes", + "crown: brilliant red crest", + "forehead: red feathers fading into black", + "eyes: round, dark, and alert", + "legs: sturdy and grayish-brown", + "wings: black with white spots and red accents", + "nape: red feathers transitioning to black", + "tail: long, black, and white-barred with red-tipped central feathers", + "throat: white with black lines and red undertones" + ], + "red tailed ant thrush": [ + "back: reddish-brown feathers", + "beak: short, slightly curved, black", + "belly: pale beige with black spots", + "breast: orange-red with black streaks", + "crown: reddish-brown with a slight crest", + "forehead: reddish-brown feathers", + "eyes: small, black, surrounded by dull white eyering", + "legs: long, slender, grayish-blue", + "wings: reddish-brown with black barring", + "nape: reddish-brown feathers", + "tail: long, reddish-brown with black bands", + "throat: pale beige with black streaks" + ], + "red tailed black cockatoo": [ + "back: dark black feathers with a subtle sheen", + "beak: large and curved, deep grey color", + "belly: solid black plumage with a smooth texture", + "breast: jet black feathers with a hint of gloss", + "crown: velvety black with a slight crest", + "forehead: dense black feathers, slightly raised", + "eyes: dark brown, bordered by a subtle grey eye-ring", + "legs: sturdy and dark grey with strong claws", + "wings: expansive black feathers with bright red patches on lower tail coverts", + "nape: glossy black with smooth feathering", + "tail: elongated, black feathers lined with red underneath", + "throat: deep black with a sleek appearance" + ], + "red tailed bristlebill": [ + "back: vibrant green feathers", + "beak: sturdy black bill", + "belly: olive green with hints of yellow", + "breast: bright green blending to yellowish", + "crown: deep blue headcap", + "forehead: blue feathers continuing from crown", + "eyes: dark with pale eye-ring", + "legs: slate gray with strong claws", + "wings: green with blue accents", + "nape: green base, blue upper", + "tail: red bristle-like feathers", + "throat: pale yellow-green" + ], + "red tailed comet": [ + "back: vibrant green feathers", + "beak: long, slender, and slightly curved", + "belly: iridescent green shading", + "breast: shimmering green plumage", + "crown: glossy green head feathers", + "forehead: emerald green with a slight sheen", + "eyes: dark, round, and piercing", + "legs: strong, grayish-purple limbs", + "wings: green and elongated with white bars", + "nape: iridescent green, transitioning to the back", + "tail: strikingly long, red, and streamer-like", + "throat: glimmering green and smoothly contoured" + ], + "red tailed greenbul": [ + "back: vibrant green with slight yellow undertones", + "beak: short and curved, pale beige color", + "belly: light green with subtle yellow streaks", + "breast: rich green with yellowish hues", + "crown: deep green with a hint of blue", + "forehead: bright green, slightly curved", + "eyes: round and dark, surrounded by green feathers", + "legs: slender and grayish brown", + "wings: green with brown edges, long and broad", + "nape: yellowish-green, smooth transition from crown", + "tail: red with elongated black feathers", + "throat: light green with faint yellow markings" + ], + "red tailed laughingthrush": [ + "back: rusty-brown feathers", + "beak: short, curved black beak", + "belly: pale off-white underbelly", + "breast: reddish-brown chest feathers", + "crown: dark rusty-brown head coloring", + "forehead: matching rusty-brown color", + "eyes: small, dark, and alert", + "legs: dark, sturdy, and feather-free", + "wings: reddish-brown with darker edges", + "nape: deep brown feathering", + "tail: long, red graduated tail feathers", + "throat: pale throat patch" + ], + "red tailed minla": [ + "back: vibrant olive-green feathers", + "beak: sharp, curved black beak", + "belly: soft, pale yellow plumage", + "breast: bright yellow feathering", + "crown: striking red-orange crest", + "forehead: vivid red-orange markings", + "eyes: round, dark black eyes", + "legs: strong, gray-brown legs", + "wings: bold, contrasting colors of green, red, and black", + "nape: reddish-orange patch near the neck", + "tail: elongated reddish-brown feathers with black tips", + "throat: pale yellow with a hint of red-orange coloration" + ], + "red tailed newtonia": [ + "back: vibrant reddish-brown feathers", + "beak: small, thin, and slightly curved", + "belly: creamy white with delicate streaks", + "breast: light russet with fine markings", + "crown: rusty red plumage with streaks", + "forehead: rufous with subtle striping", + "eyes: small, black, and alert", + "legs: slender and delicate, grayish-yellow", + "wings: reddish-brown with black bars", + "nape: rustic tinges and faint streaks", + "tail: striking red plumes with black banding", + "throat: pale whitish-cream with light streaks" + ], + "red tailed parrot": [ + "back: vibrant green feathers covering the upper body", + "beak: strong, curved, light-colored beak for cracking seeds", + "belly: bright green feathers on the lower abdomen area", + "breast: rich green plumage covering the chest area", + "crown: brilliantly hued green feathers on the top of the head", + "forehead: slightly lighter green feathers on the front of the head", + "eyes: dark, round eyes surrounded by a white eye-ring", + "legs: sturdy, gray legs with zygodactyl feet", + "wings: multicolored feathers of green, red, and blue on the upper layer", + "nape: deep green feathers connecting the head to the back", + "tail: long, red tail feathers with a splash of blue at the tip", + "throat: lighter green feathers transitioning from the breast to the head" + ], + "red tailed shrike": [ + "back: sleek gray feathers", + "beak: sharp, hooked black beak", + "belly: soft white plumage", + "breast: white with subtle gray markings", + "crown: dark gray with slight hint of brown", + "forehead: smooth grayish-brown", + "eyes: piercing black orbs", + "legs: slender, pale pinkish-gray", + "wings: dark gray with white and black bars", + "nape: pale gray with a slight brown tinge", + "tail: vibrant reddish-brown with black stripes", + "throat: clean white, lightly speckled with gray" + ], + "red tailed tropicbird": [ + "back: white and sleek with scattered black markings", + "beak: bright red-orange, strong and pointed", + "belly: soft white feathers with a rounded shape", + "breast: white and slightly puffed out", + "crown: smooth white feathers, uninterrupted color", + "forehead: clean white, gently sloping towards the beak", + "eyes: small and dark with a sharp gaze", + "legs: short, yellow-orange with slender dark claws", + "wings: white with elongated black-tipped feathers", + "nape: solid white, blending into the back and crown", + "tail: two long, thin, red tail streamers extending gracefully", + "throat: white with delicate plumage meeting the breast" + ], + "red tailed vanga": [ + "back: vibrant blue feathers with a slight sheen", + "beak: sharp, hooked, black beak", + "belly: pale white with light blue undertones", + "breast: sky blue with darker feathery accents", + "crown: deep blue crest, prominent and pointed", + "forehead: bright blue, smoothly transitions into the crown", + "eyes: piercing, black, and almond-shaped", + "legs: sturdy, grayish-brown with sharp claws", + "wings: elongated, blue and black feathers with hints of white", + "nape: dark blue shading, connects to the crown", + "tail: long, red streamer-like feathers with a black streak", + "throat: light blue with white accents, stands out against the breast" + ], + "red thighed sparrowhawk": [ + "back: reddish-brown feathers", + "beak: sharp, hooked, black", + "belly: white with reddish-orange streaks", + "breast: white with reddish-orange streaks", + "crown: reddish-brown feathers", + "forehead: reddish-brown plumage", + "eyes: piercing yellow", + "legs: vibrant red thighs, yellow talons", + "wings: long, rounded, reddish-brown", + "nape: reddish-brown feathers", + "tail: brown with white bands", + "throat: white with thin streaks" + ], + "red throated alethe": [ + "back: brownish upperparts, providing camouflage", + "beak: small, sharp, and black for capturing insects", + "belly: white with light brown undertone", + "breast: light brown with a subtle reddish hue", + "crown: smooth brown feathers covering the top of the head", + "forehead: slightly paler brown than the crown", + "eyes: black and round, surrounded by a pale eye-ring", + "legs: strong, greyish-brown for perching and hopping", + "wings: brown with visible flight feathers", + "nape: brown, connecting the crown to the back", + "tail: brown, square-ended and fairly long for balance", + "throat: distinctive bright red patch, mainly in males" + ], + "red throated ant tanager": [ + "back: vibrant reddish-orange plumage", + "beak: short, stout, and black", + "belly: soft white with faint streaks", + "breast: bright red-orange feathers", + "crown: brilliant red patch", + "forehead: mixture of red and orange hues", + "eyes: dark, beady, and well-protected", + "legs: slender and black", + "wings: reddish with black and white patterns", + "nape: red to orange gradient", + "tail: long, fanned, black and red feathers", + "throat: vivid red plumage" + ], + "red throated barbet": [ + "back: vibrant green with black streaks", + "beak: short, stout, and pale ivory", + "belly: moss green fading to yellow", + "breast: turquoise-blue with black markings", + "crown: deep blue with black highlights", + "forehead: bright red patch", + "eyes: black and bead-like, encircled with pale blue", + "legs: grayish-blue, strong and sturdy", + "wings: greenish-blue with black patterns", + "nape: blue with green and black streaks", + "tail: dark blue-green with a broad black band and white tips", + "throat: brilliant red and bare (no feathers" + ], + "red throated bee eater": [ + "back: vibrant green feathers", + "beak: long, thin, curved black beak", + "belly: mixture of yellow and green feathers", + "breast: soft green-blue plumage", + "crown: bright blue-green feathers", + "forehead: bluish-black feathers", + "eyes: dark with white outline", + "legs: grayish-blue slender legs", + "wings: green-blue with black tips", + "nape: golden yellow feathers", + "tail: black pointed feathers edged in blue", + "throat: bright red throat patch" + ], + "red throated caracara": [ + "back: black feathers with white edges", + "beak: strong, hooked, blackish-brown", + "belly: white with grayish-golden bars", + "breast: white with dark streaks or spots", + "crown: blackish-brown", + "forehead: red bare skin patch", + "eyes: dark brown with red eye-ring", + "legs: long, strong, blue-gray", + "wings: broad, black with white bars", + "nape: blackish-brown", + "tail: long, blackish-brown with white band", + "throat: red bare skin patch" + ], + "red throated parrotfinch": [ + "back: vibrant green feathers", + "beak: short, strong, orange-red", + "belly: light green, fading to white", + "breast: brilliant red", + "crown: bright green, sleek feathers", + "forehead: intense red plumage", + "eyes: small, black, alert", + "legs: sturdy, light gray-blue", + "wings: rich green with blue highlights", + "nape: green with slight red tint", + "tail: long, green-blue feathers", + "throat: striking red patch" + ], + "red throated piping guan": [ + "back: dark black feathers with glossy sheen", + "beak: sharp, curved, pale ivory", + "belly: sleek black feathered underbelly", + "breast: sturdy black plumage with bluish tint", + "crown: smooth dark crest with blue highlights", + "forehead: deep red throat patch extending upwards", + "eyes: large, bright, and alert, surrounded by red facial skin", + "legs: long and slender with sharp claws", + "wings: strong black feathers with dark blue-green iridescence", + "nape: black feathered neck with slight curve", + "tail: long and rounded with banded black and white feathers", + "throat: striking red patch accentuating the neck" + ], + "red throated pipit": [ + "back: olive-brown with dark streaks", + "beak: small, dark, and pointed", + "belly: whitish with brown streaks", + "breast: beige with streaks", + "crown: brown with streaks and a reddish patch", + "forehead: reddish-brown striped", + "eyes: dark and alert", + "legs: pinkish-brown and slender", + "wings: brown with dark streaks and white feather edges", + "nape: olive-brown with streaks", + "tail: brown with white outer feathers", + "throat: bright red patch" + ], + "red throated sunbird": [ + "back: vibrant green feathers", + "beak: elongated, curved, black-tipped", + "belly: light yellow, fluffy feathers", + "breast: radiant orange plumage", + "crown: iridescent blue-green cap", + "forehead: metallic blue sheen", + "eyes: small, dark, and alert", + "legs: slender and dark-colored", + "wings: green with blue tinges, medium size", + "nape: shimmering green and blue feathers", + "tail: elongated, dark, with two central feathers", + "throat: striking red patch" + ], + "red throated swallow": [ + "back: sleek dark plumage", + "beak: small sharp and dark", + "belly: white soft feathering", + "breast: white with slight gray streaks", + "crown: dark feathers with a slight sheen", + "forehead: black plumage, smooth", + "eyes: clear black eye with white ring", + "legs: long and slender with dark scales", + "wings: dark and glossy with pointed feathers", + "nape: dark feathers with lighter streaks", + "tail: forked with white patches", + "throat: vibrant red patch" + ], + "red throated thrush": [ + "back: dark brown with pale streaks", + "beak: slender and dark-colored", + "belly: white with dark spotting", + "breast: pale buff-orange", + "crown: dark brown with pale markings", + "forehead: slightly lighter brown than crown", + "eyes: dark with pale eyebrow stripe", + "legs: long and slender, dark-colored", + "wings: dark brown with white markings", + "nape: brown with lighter streaks", + "tail: dark brown with white outer feathers", + "throat: vibrant red patch" + ], + "red throated tit": [ + "back: grayish-brown feathers", + "beak: short, sharp, black", + "belly: white with gray streaks", + "breast: gray with reddish patch", + "crown: black with white stripes", + "forehead: black and white streaks", + "eyes: dark, surrounded by white", + "legs: thin, dark gray", + "wings: grayish-brown with white markings", + "nape: black with white stripes", + "tail: long, dark gray edged with white", + "throat: vibrant red patch" + ], + "red tufted sunbird": [ + "back: vibrant green with a slight shine", + "beak: slender and elongated, black in color", + "belly: bright yellow with hints of orange", + "breast: brilliant yellow with orange streaks", + "crown: fiery red tufts on the head", + "forehead: radiant red feathers above the eyes", + "eyes: small and black, sharp gaze", + "legs: slim and dark gray, built for perching", + "wings: iridescent green with hints of blue", + "nape: lush green feathers covering the neck", + "tail: elongated green-blue feathers with white tips", + "throat: intense yellow with a touch of orange" + ], + "red vented barbet": [ + "back: greenish-yellow with black streaks", + "beak: thick and slightly curved, with hues of black and grey", + "belly: predominantly yellow with subtle green accents", + "breast: pale-yellow with black streaks, blending into the belly", + "crown: greenish-yellow, often blending with the rest of the head", + "forehead: characterized by red and dark blue stripe, just above the beak", + "eyes: small, dark, and almost hidden among the colorful head", + "legs: short and robust, greyish in color", + "wings: vibrant green with black streaks near the tips", + "nape: pale greenish-yellow, transitioning into the colorful head pattern", + "tail: green with black barring, forming a fan shape when spread", + "throat: bright turquoise-blue, connecting the breast and head patterns" + ], + "red vented bulbul": [ + "back: olive-green with black streaks", + "beak: slim, black, slightly curved", + "belly: off-white with red undertail coverts", + "breast: pale brown with blackish streaks", + "crown: black with crest-like protrusion", + "forehead: black, extending to crest", + "eyes: dark brown with white eye-ring", + "legs: dark gray, thin and strong", + "wings: brownish-black, medium length", + "nape: gray-brown, extending to back", + "tail: long, brown with white tips", + "throat: whitish-gray, fading to breast" + ], + "red vented malimbe": [ + "back: black feathers with slight green sheen", + "beak: short, strong, and conical, grayish color", + "belly: bright red patch on the lower abdomen", + "breast: deep black with subtle green shimmer", + "crown: glossy black, rounded head", + "forehead: black with small red patch above the beak", + "eyes: dark with white eye-ring", + "legs: dark gray, sturdy, and long", + "wings: black feathers tinged with green and red at the tips", + "nape: black, seamlessly blending with the crown", + "tail: long, black feathers with slight green iridescence", + "throat: black feathers transitioning into the red belly patch" + ], + "red wattled lapwing": [ + "back: vibrant green feathers", + "beak: sharp, black, curved", + "belly: soft white plumage", + "breast: iridescent purple-blue", + "crown: golden crest with wispy plumes", + "forehead: bright orange streak", + "eyes: dark and lively with white rings", + "legs: slender, gray, well-camouflaged", + "wings: patterned green and black, fast-moving", + "nape: striking golden-yellow collar", + "tail: thin, elongated, two-tone feathers", + "throat: brilliant blue, contrasting" + ], + "red whiskered bulbul": [ + "back: dark brown feathers", + "beak: short, curved, black", + "belly: grayish-white with black streaks", + "breast: brownish-gray with slight reddish tint", + "crown: black with red spot behind the eyes", + "forehead: black and short crest", + "eyes: black, bright and alert", + "legs: slender, gray with sharp claws", + "wings: brown and black feathers with white tips", + "nape: brownish black with slight red tint", + "tail: long, black with white tips", + "throat: white with dark streaks" + ], + "red winged fairywren": [ + "back: dark blue feathers", + "beak: thin, pointed black beak", + "belly: light grey plumage", + "breast: vibrant red patch", + "crown: dark blue head feathers", + "forehead: blue-black feathered brow", + "eyes: small, black, round eyes", + "legs: thin, dark grey legs", + "wings: dark blue with red accents", + "nape: blue-black neck feathers", + "tail: long, dark blue plumes", + "throat: blue-grey feathered throat" + ], + "red winged francolin": [ + "back: reddish-brown with distinctive black barring", + "beak: short, curved, and light-colored", + "belly: pale with fine black markings", + "breast: grayish-brown with black spots and streaks", + "crown: dark reddish-brown with black streaks", + "forehead: slightly lighter reddish-brown", + "eyes: dark brown and beady", + "legs: sturdy, reddish-orange", + "wings: reddish-brown with striking red panels and black bars", + "nape: darker reddish-brown with black streaks", + "tail: long and dark with a touch of red and thin white streaks", + "throat: pale, blending into the breast coloration" + ], + "red winged gray warbler": [ + "back: light gray and white streaks", + "beak: small and pointed", + "belly: pale grayish-white", + "breast: light gray with red patch", + "crown: dark gray with slight crest", + "forehead: light gray feathering", + "eyes: small, black, and alert", + "legs: thin and strong, grayish-brown", + "wings: gray with red and white stripes", + "nape: light gray with a soft transition", + "tail: pale gray with red markings", + "throat: white with light gray streaks" + ], + "red winged lark": [ + "back: golden-brown with dark streaks", + "beak: sharp, pointed, and grayish", + "belly: creamy white with faint streaks", + "breast: pale buff with dark streaks", + "crown: golden-brown with faint streaks", + "forehead: pale grayish-brown", + "eyes: dark and round with white eye-ring", + "legs: long and slender, grayish-brown", + "wings: black with bold red patches", + "nape: golden-brown with dark streaks", + "tail: dark brown with white outer feathers", + "throat: pale grayish-brown with streaks" + ], + "red winged laughingthrush": [ + "back: reddish-brown feathers", + "beak: short, curved, black beak", + "belly: buff-colored underside", + "breast: reddish-brown with dark streaks", + "crown: dark brownish head", + "forehead: smooth black to dark brown feathers", + "eyes: large, dark brown, expressive", + "legs: strong, featherless, gray to black", + "wings: reddish-brown with bright red patches", + "nape: dark brownish neck feathers", + "tail: long, reddish-brown tipped with black", + "throat: buff-colored with dark streaks" + ], + "red winged parrot": [ + "back: vibrant green feather coverage", + "beak: strong, curved, light-colored", + "belly: lime green with hints of yellow", + "breast: bright red-orange plumage", + "crown: rich teal-blue", + "forehead: vivid teal-blue feathers", + "eyes: expressive, dark and surrounded by green", + "legs: sturdy, grayish-blue, scaly", + "wings: green with striking red highlights", + "nape: green transitioning to teal-blue", + "tail: long, green feathers with blue tips", + "throat: bright green with yellow hues" + ], + "red winged prinia": [ + "back: olive-brown feathers with subtle streaks", + "beak: short, slender, pointed, and black", + "belly: soft, pale-yellow with minimal markings", + "breast: warm, light-brown with thin streaks", + "crown: olive-brown with possible reddish hues", + "forehead: smooth, olive-brown blending with crown", + "eyes: dark, round, with a white eyering", + "legs: slender, medium-length, and pale pink", + "wings: olive-brown with distinctive red patches", + "nape: olive-brown, consistent with back and crown", + "tail: long, slender, olive-brown, and slightly forked", + "throat: plain, light-yellow without streaks" + ], + "red winged pytilia": [ + "back: vibrant green feathers", + "beak: small, sharp, white with black tip", + "belly: pale yellow and green hues", + "breast: yellowish-green with black spotting", + "crown: bright red with subtle green streaks", + "forehead: emerald green and shiny", + "eyes: round, dark with thin white eye-ring", + "legs: slender, gray-brown, with sharp claws", + "wings: red with black and green edges", + "nape: red and green gradient with black spots", + "tail: mostly red with green and black patterns", + "throat: bright yellow with delicate black markings" + ], + "red winged starling": [ + "back: sleek black feathers", + "beak: sharp, pointed yellow-orange", + "belly: glossy black plumage", + "breast: smooth black feathers", + "crown: deep black with a slight sheen", + "forehead: black and glossy", + "eyes: dark and round with a keen glance", + "legs: strong, dark gray with sharp talons", + "wings: black with striking red patches", + "nape: glossy black with a slight curve", + "tail: long, black, and fan-shaped", + "throat: shiny black feathers" + ], + "red winged tinamou": [ + "back: reddish-brown with fine black barring", + "beak: short, slightly curved, grayish-brown", + "belly: beige with blackish spots", + "breast: rufous with vertical white barring", + "crown: dark reddish-brown", + "forehead: slightly paler reddish-brown", + "eyes: dark with pale bluish-white eye-ring", + "legs: greyish blue with scaled appearance", + "wings: greenish-black with white spots, prominent red patches on shoulders", + "nape: dark reddish-brown", + "tail: short, blackish-green with white spots", + "throat: light beige with pale black streaks" + ], + "red winged wood rail": [ + "back: iridescent greenish-black", + "beak: sharp and slightly curved", + "belly: creamy white with brown spots", + "breast: rufous-orange with dark streaks", + "crown: black with reddish streaks", + "forehead: red and black plumage", + "eyes: dark and round", + "legs: sturdy and yellowish-green", + "wings: black with vibrant red patches", + "nape: black with greenish sheen", + "tail: black with white-tipped feathers", + "throat: white with fine black streaks" + ], + "reddish hermit": [ + "back: reddish-brown plumage", + "beak: long, curved shape", + "belly: pale, buff color", + "breast: light reddish-orange tone", + "crown: dark brown feathers", + "forehead: blend of brown and reddish hues", + "eyes: small and black", + "legs: slender and brownish-gray", + "wings: reddish-brown with white tips on flight feathers", + "nape: warm, reddish-brown coloring", + "tail: elongated, white-tipped feathers", + "throat: pale buff with brown streaks" + ], + "reddish scops owl": [ + "back: reddish-brown with dark streaks", + "beak: short, sharp, dark gray", + "belly: pale brown with dark spotting", + "breast: rufous-toned with dark lines", + "crown: reddish-brown with dark markings", + "forehead: light brown with dark streaks", + "eyes: large, bright yellow", + "legs: feathered, pale brown", + "wings: reddish-brown with dark barring", + "nape: rufous-colored with dark markings", + "tail: long, reddish-brown, dark bands", + "throat: pale buff with fine streaks" + ], + "reddish winged bare eye": [ + "back: warm reddish-brown feathers", + "beak: short, curved, pale gray", + "belly: light creamy-white with slight rufous tint", + "breast: reddish-orange with streaks of brown", + "crown: reddish-brown with light streaks", + "forehead: grayish-brown with a slight reddish tint", + "eyes: prominent, surrounded by bare skin, deep red color", + "legs: strong, grayish-blue", + "wings: reddish-brown with darker primary feathers and lighter secondary feathers", + "nape: light tawny-orange with darker stripes", + "tail: reddish-brown with dark feather tips", + "throat: whitish with a hint of rufous color" + ], + "redthroat": [ + "back: sleek, reddish-brown feathers", + "beak: small, sharp, and black", + "belly: creamy white with light spotting", + "breast: vibrant red-orange patch", + "crown: smooth, grayish-brown plumage", + "forehead: pale gray plumage with slight streaks", + "eyes: round, black, and expressive", + "legs: slender, gray, and strong", + "wings: brown with faint black bars", + "nape: grayish-brown with a slight reddish tint", + "tail: long and forked, with brown feathers", + "throat: intense red coloration, eye-catching" + ], + "redwing": [ + "back: dark brown with slight reddish tinge", + "beak: thin and pointy, dark gray", + "belly: off-white with dark flecks", + "breast: creamy white with rusty reddish stripes", + "crown: warm dark brown", + "forehead: cream and dark brown", + "eyes: small, black, and lively", + "legs: slender and grayish-brown", + "wings: dark brown with distinctive red patch", + "nape: brown with slightly lighter streaks", + "tail: dark brown with white edges", + "throat: cream-colored with brown streaks" + ], + "reed bunting": [ + "back: brownish-black with subtle streaks", + "beak: conical and dark-colored", + "belly: off-white with some brown speckles", + "breast: buff or dull white, lightly streaked", + "crown: black or dark brown with lighter edges", + "forehead: black in males, brown in females", + "eyes: small and dark, surrounded by a pale eye-ring", + "legs: sturdy and long, pinkish-brown", + "wings: brown with dark streaks and white-bordered feathers", + "nape: brownish and streaked, contrasts with crown", + "tail: dark brown with white outer edges, moderately long", + "throat: black in males, pale in females" + ], + "reed parrotbill": [ + "back: olive-brown with subtle streaks", + "beak: long, curved, and black", + "belly: pale buff or whitish", + "breast: light gray with faint streaks", + "crown: rusty red or chestnut", + "forehead: gray with a hint of red", + "eyes: dark with a pale eyering", + "legs: gray and slender", + "wings: olive-brown with faint bars", + "nape: light gray with thin streaks", + "tail: long and dark with white outer feathers", + "throat: whitish or pale grey" + ], + "reeves pheasant": [ + "back: golden-brown with streaks of black and white", + "beak: strong, grayish-black, curved tip", + "belly: whitish-gray with black bars", + "breast: rust-orange with iridescent hues, fine black barring", + "crown: glossy black, crest-like", + "forehead: metallic blue-green shade", + "eyes: dark brown, sharp gaze", + "legs: long, reddish-gray with sharp claws", + "wings: multi-colored, patterns of brown, black, white, and gold", + "nape: long, golden-yellow feathers forming cape-like collar", + "tail: extremely long, brown with black bars and cream speckles", + "throat: grayish-white, blends with breast coloring" + ], + "regal sunbird": [ + "back: iridescent green-blue plumage", + "beak: slender, curved, black", + "belly: bright yellow underside", + "breast: vivid orange-yellow", + "crown: shimmering metallic-green", + "forehead: shining green-blue", + "eyes: small, dark, alert", + "legs: slender, grayish-blue", + "wings: black with colorful edges", + "nape: vibrant green-blue feathers", + "tail: long, slender, with swallow-like tips", + "throat: glowing orange-yellow" + ], + "regent honeyeater": [ + "back: dark grey with yellow markings", + "beak: black, curved shape", + "belly: white with dark grey and yellow streaks", + "breast: grey with flecks of yellow", + "crown: black with a white stripe", + "forehead: dark grey with yellow spots", + "eyes: black, surrounded by yellow feathers", + "legs: dark grey, sturdy", + "wings: long and pointed, grey-black with yellow patches", + "nape: dark grey with yellow highlights", + "tail: long and tapered, grey-black with yellow tips", + "throat: white with black streaks" + ], + "regent parrot": [ + "back: vibrant green feathers", + "beak: pale yellow, curved tip", + "belly: pale greenish-yellow plumage", + "breast: bluish-green feathers", + "crown: teal feathers with a slight crest", + "forehead: bright orange patch", + "eyes: dark brown with white eye-ring", + "legs: grayish-blue, strong", + "wings: bright green with blue edges", + "nape: greenish-blue transition from crown", + "tail: long, green with blue tips", + "throat: pale green, blends to breast" + ], + "regent whistler": [ + "back: olive-green with subtle streaks", + "beak: slender and slightly curved", + "belly: pale, yellowish-white", + "breast: yellow with black crescent", + "crown: olive-green fading to black", + "forehead: black with small white markings", + "eyes: dark, surrounded by white eyering", + "legs: grayish-blue", + "wings: dark with white streaks", + "nape: olive-green with black markings", + "tail: long with white tips on outer feathers", + "throat: bright yellow and black" + ], + "reichard seedeater": [ + "back: olive-green feathers", + "beak: stout and conical", + "belly: pale yellow undertone", + "breast: olive-green, transitioning to yellow", + "crown: black with blue iridescence", + "forehead: black, extending to the eyes", + "eyes: dark brown with thin white eyering", + "legs: greyish-blue, sturdy", + "wings: olive-green feathers with black edges", + "nape: black, flowing into olive-green", + "tail: black, forked with white edges", + "throat: bright yellow patch" + ], + "reichenbach sunbird": [ + "back: iridescent green with blue and purple shades", + "beak: long, slender, and curved for nectar feeding", + "belly: pale yellow with streaks of green", + "breast: bright orange or red with shimmering highlights", + "crown: glossy metallic green, sometimes with a touch of blue", + "forehead: shining green transitioning to the crown", + "eyes: small, dark, with a focused gaze", + "legs: thin, gray or brown, adapted for perching", + "wings: short and rounded, vibrant green or blue with darker tips", + "nape: vivid green, blending with the iridescent back", + "tail: elongated central feathers, green or blue with flashes of purple", + "throat: brilliant metallic green to match the breast" + ], + "reichenow firefinch": [ + "back: olive-green with minimal streaks", + "beak: bright coral-red, short, cone-shaped", + "belly: pale whitish-yellow with tinges of pink", + "breast: rosy pink blending into the belly", + "crown: olive-green with slight streaks", + "forehead: bright red patch above beak", + "eyes: brownish-black with thin pale eye-ring", + "legs: pinkish-grey, slender, medium length", + "wings: olive-green with darker flight feathers", + "nape: olive-brown, streaked with pale feather edges", + "tail: dark brown central feathers, white outer feathers with red tips", + "throat: vibrant rosy-pink blending into the breast" + ], + "reichenow seedeater": [ + "back: olive-green with subtle streaks", + "beak: short, conical, and silver-gray", + "belly: white to pale buff", + "breast: yellowish-brown with fine streaks", + "crown: olive-green with dark markings", + "forehead: olive-green and slightly lighter than crown", + "eyes: black with white eye-ring", + "legs: pale pink to grayish-pink", + "wings: dark brown with olive-green edges on feathers", + "nape: olive-green and slightly darker than crown", + "tail: dark brown with subtle olive-green undertones", + "throat: pale yellow-brown with faint streaks" + ], + "reichenow woodpecker": [ + "back: black and white horizontal stripes", + "beak: long, chisel-shaped, and black", + "belly: white with fine black spots", + "breast: white with black speckles", + "crown: red for males, black for females", + "forehead: black with white spots", + "eyes: dark brown, surrounded by black", + "legs: grey, sturdy, and well-scaling", + "wings: black and white horizontal stripes", + "nape: black with white bars", + "tail: black with white outer feathers", + "throat: white with black speckles" + ], + "reischek parakeet": [ + "back: bright green with subtle bluish tone", + "beak: strong, silver-grey curved beak", + "belly: vibrant green", + "breast: pale blue mixed with green", + "crown: bold crimson red", + "forehead: vivid orange-red", + "eyes: dark brown with white eyerings", + "legs: light grey with sharp claws", + "wings: brilliant green, blue at the bend", + "nape: orange-red transitioning to green", + "tail: long and green with blue edges", + "throat: light green fading to blue" + ], + "reiser tyrannulet": [ + "back: small, olive-green feathers", + "beak: thin, slightly curved, black", + "belly: pale yellowish-white plumage", + "breast: white with light olive streaks", + "crown: grayish, streaked with black", + "forehead: grayish-white", + "eyes: black, encircled with pale eyering", + "legs: slender, grayish-brown", + "wings: olive-green with light brown bars", + "nape: grayish-green with faint streaks", + "tail: black, narrowly tipped with white", + "throat: white, slightly streaked" + ], + "relict gull": [ + "back: light grey feathers with subtle white streaks", + "beak: thin, slightly curved, and black with red tip", + "belly: crisp white plumage for smooth flight", + "breast: white and faintly speckled feathers", + "crown: distinguished dark grey with a sleek appearance", + "forehead: smooth grey feathers transitioning to black around the eyes", + "eyes: bright white rings surrounding dark, alert pupils", + "legs: sturdy and slender, with black coloration and webbed feet", + "wings: grey and white feathers with black-tipped primary feathers", + "nape: smooth grey feathers, seamlessly connected to the back", + "tail: white feathers with prominent black edges", + "throat: clean white feathers connecting to the breast area" + ], + "rennell fantail": [ + "back: olive-green with brownish touch", + "beak: small, thin, blackish", + "belly: yellowish-white with gray tones", + "breast: grayish-white, with faint horizontal streaks", + "crown: brownish-gray, slightly paler at the sides", + "forehead: pale gray-brown, fading to a lighter shade", + "eyes: dark with a pale gray eye-ring", + "legs: slender, pale pinkish-brown", + "wings: brownish-gray with black-tipped feathers", + "nape: brownish-gray, merging with back", + "tail: long, blackish, with white edges and tips", + "throat: pale grayish-white, finely streaked" + ], + "rennell gerygone": [ + "back: olive-brown feathers", + "beak: short, pointed, and pale", + "belly: light cream-colored", + "breast: off-white with a yellow hue", + "crown: olive-brown with a slight crest", + "forehead: small and slightly buff-colored", + "eyes: beady, black, with buff-white eye rings", + "legs: slender, grayish-pink limbs", + "wings: olive-brown and rounded, with faint wing-bars", + "nape: olive-brown color continuing from the back", + "tail: short, with olive-brown feathers and white-tipped edges", + "throat: light cream, contrasting with the breast's yellow hue" + ], + "rennell shrikebill": [ + "back: blue-gray feathers covering the upper back", + "beak: strong, hooked black beak for catching insects", + "belly: white to pale gray plumage on the lower abdomen", + "breast: white to pale gray feathers on the upper chest", + "crown: blue-gray feathers on the head's top", + "forehead: blue-gray plumage at the front of the head", + "eyes: small, round, dark eyes outlined with thin white eye-ring", + "legs: strong, pale gray legs with sharp claws", + "wings: blue-gray feathers with black bars on primary feathers", + "nape: blue-gray feathers on the back of the neck", + "tail: long blue-gray feathers with black tips", + "throat: white to pale gray plumage near the beak" + ], + "rennell starling": [ + "back: olive-green feathers with metallic sheen", + "beak: relatively short and blackish", + "belly: pale grayish-white plumage", + "breast: grayish-white with dark speckles", + "crown: slightly raised with greenish-glossy feathers", + "forehead: dark green, transitioning from crown", + "eyes: black with thin white eye-ring", + "legs: blue-gray with strong, sharp claws", + "wings: long and dark olive-green with white markings", + "nape: green iridescence, connecting crown to back", + "tail: dark olive-green with slight blue sheen, fan-shaped", + "throat: grayish-white, blending into breast" + ], + "rennell whistler": [ + "back: olive-brown plumage", + "beak: short and hooked, black", + "belly: white with black streaks", + "breast: white with black streaks", + "crown: pale-gray feathers", + "forehead: pale-gray with slight yellow tint", + "eyes: dark brown, surrounded by white eyerings", + "legs: strong, gray with scaly texture", + "wings: olive-brown with black and white markings", + "nape: pale-gray feathers meeting the olive-brown back", + "tail: long and olive-brown, white tips on external feathers", + "throat: white with black streaks" + ], + "rennell white eye": [ + "back: olive-green feathered area", + "beak: petite and slightly hooked", + "belly: pale with faint gray markings", + "breast: light grayish-white plumage", + "crown: soft greenish-gray feathers", + "forehead: slightly lighter grayish-green", + "eyes: white, encircled by pale ring", + "legs: pale gray, slender, and medium-length", + "wings: olive-green with faint brownish tinge", + "nape: greenish-gray feathers", + "tail: olive color with slight brown edges", + "throat: light gray with white feather detailing" + ], + "resplendent quetzal": [ + "back: radiant green feathers", + "beak: black, medium-sized, sharp", + "belly: bright red plumage", + "breast: vibrant crimson feathers", + "crown: shimmering green cap", + "forehead: iridescent emerald green", + "eyes: beady, black, and observant", + "legs: fairly short, grayish-black", + "wings: striking green, long and broad", + "nape: reflective green, elongating to tail", + "tail: extended green feathers, flowing streamers", + "throat: plumage transitioning from green to red" + ], + "restinga antwren": [ + "back: olive-brown with subtle dark streaks", + "beak: short, thin, and black", + "belly: pale yellow with subtle brown tinges", + "breast: light greyish-yellow with sparse brown streaks", + "crown: dark grey and uniform", + "forehead: lighter grey than the crown, slightly blending with the eye-ring", + "eyes: dark, surrounded by a thin, white eye-ring", + "legs: blackish-grey, thin and moderately long", + "wings: olive-brown with faint dark bars", + "nape: grey with fine, dark streaks", + "tail: olive-brown, long and rounded", + "throat: light grey, blending into the breast color" + ], + "restinga tyrannulet": [ + "back: olive-green feathers", + "beak: short, sharp, and pale gray", + "belly: pale yellow with lighter undertones", + "breast: yellowish-white plumage", + "crown: grayish-olive head with distinctive crest", + "forehead: pale gray with light feather markings", + "eyes: round, dark, and alert", + "legs: slim and grayish-brown", + "wings: olive-green with faint white barring", + "nape: grayish-olive feathers blending into crown", + "tail: long, narrow, pale-edged feathers", + "throat: white with faint gray markings" + ], + "restless flycatcher": [ + "back: dark gray feathers", + "beak: strong, black, and hooked", + "belly: lighter gray plumage", + "breast: dark gray with slight streaking", + "crown: dark gray feathers, slightly raised", + "forehead: smooth gray feathers, merging with crown", + "eyes: alert, dark, and circular with a white ring outline", + "legs: slender, black, and strong", + "wings: long, gray feathered, with white bars", + "nape: dark gray feathers transitioning from crown", + "tail: dark gray feathers with white lateral edges", + "throat: white feathers contrasting with gray breast" + ], + "retz helmetshrike": [ + "back: light grayish color with a smooth texture", + "beak: sharp and slender with a slight hook at the tip", + "belly: creamy white, accented by grayish feather undertones", + "breast: light gray blending into the white belly", + "crown: dark gray with a slightly raised crest", + "forehead: smooth and light gray, blending into the dark crown", + "eyes: large, round, and black with a white encircling eye-ring", + "legs: dark gray, sturdy with sharp claws for perching", + "wings: gray with contrasting bold white wing bars", + "nape: light gray smoothly transitioning to darker gray feathers", + "tail: elongated dark gray feathers with black, narrow tips", + "throat: white, contrasted by the light gray breast and dark beak" + ], + "reunion bulbul": [ + "back: olive green with a faint sheen", + "beak: thin, dark, slightly curved", + "belly: pale white with hints of buff", + "breast: light brown with subtle streaks", + "crown: black with a small crest", + "forehead: black with slight gloss", + "eyes: dark with pale surrounding feathers", + "legs: strong brownish-gray", + "wings: olive green with blackish edges", + "nape: olive green, blending with the back", + "tail: long and rounded, white-tipped feathers", + "throat: pale white with light streaking" + ], + "reunion cuckooshrike": [ + "back: grayish upper plumage", + "beak: slender, slightly hooked", + "belly: off-white and lightly streaked", + "breast: pale gray with faint streaks", + "crown: smooth grayish head", + "forehead: slightly paler gray", + "eyes: small, dark with slight eye-ring", + "legs: slender grayish-brown", + "wings: grayish-black with white markings", + "nape: matching grayish tone", + "tail: long, blackish with white outer feathers", + "throat: light gray with subtle streaks" + ], + "reunion gray white eye": [ + "back: light gray feathers with subtle streaks", + "beak: sharp and slender, blackish hue", + "belly: soft white and gray plumage", + "breast: pale gray feathers, smooth texture", + "crown: grayish-white with subtle streaks", + "forehead: light gray and white, blending into crown", + "eyes: distinctive gray-white ring surrounding a dark eye", + "legs: slim black legs with sharp claws", + "wings: light gray with faint black markings, well-defined shape", + "nape: delicate gray-to-white gradient, extending to back", + "tail: elongated, gray feathers with slight white edges", + "throat: white feathers blending into the gray breast" + ], + "reunion stonechat": [ + "back: brownish-black with white speckles", + "beak: short, stout, black", + "belly: creamy-white with light streaks", + "breast: reddish-orange with darker spots", + "crown: black with white speckles", + "forehead: black with slight white speckling", + "eyes: dark brown with faint white outlines", + "legs: thin, black, and long", + "wings: dark with white patches on the upper part", + "nape: black and white speckled", + "tail: black with white outer feathers", + "throat: reddish-orange with dark spots" + ], + "reunion white eye": [ + "back: sleek, grayish-green feathers", + "beak: petite, black, and pointed", + "belly: soft, pale gray plumage", + "breast: light gray with faint yellow tint", + "crown: olive-green head feathers", + "forehead: smooth, grayish-green transition to face", + "eyes: distinct white eye-ring, dark pupils", + "legs: slender, grayish-blue with sharp claws", + "wings: greenish-gray, long, strong-fliers", + "nape: olive-green, continuation from crown", + "tail: narrow, streamer-like, greenish-gray feathers", + "throat: subtle yellow hue, grayish-white blend" + ], + "rhinoceros hornbill": [ + "back: striking black feathers", + "beak: large, curved yellow-orange bill with a prominent casque", + "belly: contrasting white feathers", + "breast: thick white plumage", + "crown: black feathered head with small casque", + "forehead: black feathers with a striking casque", + "eyes: piercing yellow-orange with a dark eyelid", + "legs: strong, gray scaled legs", + "wings: massive black wings with white edges", + "nape: black feathered neck blending into the casque", + "tail: long, white feathers with black banding", + "throat: smooth white feathers with a blue-colored gular pouch" + ], + "ribbon tailed astrapia": [ + "back: iridescent green with hints of blue", + "beak: short, curved, and black", + "belly: velvety black merging into plumage", + "breast: glistening turquoise-green feathers", + "crown: shiny greenish-blue with slight crest", + "forehead: bright metallic green", + "eyes: dark and beady, surrounded by black feathers", + "legs: long, slender and black", + "wings: deep blue-green with elongated inner feathers", + "nape: shimmering green with a blue sheen", + "tail: extended white ribbon-like plumes flowing down", + "throat: dark, velvety black plumage" + ], + "ribbon tailed drongo": [ + "back: sleek black with iridescent blue sheen", + "beak: strong, black, slightly hooked", + "belly: glossy deep black", + "breast: shiny black with hints of blue", + "crown: black and smooth, shimmering", + "forehead: glossy black with blue tinges", + "eyes: dark, penetrating gaze", + "legs: sturdy black with sharp claws", + "wings: elongated, black with blue hues", + "nape: smooth black, shiny feathers", + "tail: long, black ribbons streaming behind", + "throat: gleaming black with slight shimmer" + ], + "richard pipit": [ + "back: olive-brown with subtle streaks", + "beak: slender and dark-colored", + "belly: white with dark streaks", + "breast: buff-colored with dark streaks", + "crown: brown with a central stripe", + "forehead: pale eyebrow stripe", + "eyes: dark with a white eyering", + "legs: long and pinkish-brown", + "wings: brown with pale edges", + "nape: olive-brown", + "tail: long and dark with white outer feathers", + "throat: white with dark streaks" + ], + "ridgetop swiftlet": [ + "back: sleek and aerodynamic", + "beak: short and pointed", + "belly: light-colored and slightly round", + "breast: smooth and slightly puffed", + "crown: narrow and darker colored", + "forehead: small and slightly curved", + "eyes: round and alert", + "legs: thin and strong", + "wings: long and tapered", + "nape: medium length and curved", + "tail: forked and agile", + "throat: delicate and narrow" + ], + "ridgway hawk": [ + "back: dark brown, dense feathers", + "beak: black, sharp, curved, formidable", + "belly: pale white, subtle brown stripes", + "breast: light brown, slight speckling", + "crown: dark brown, raised crest", + "forehead: smooth, white and brown blending", + "eyes: yellow-orange, piercing gaze", + "legs: yellow, short, powerful", + "wings: dark brown, long, broad, white barring", + "nape: rich brown, smooth feathers", + "tail: long, straight, horizontal, dark brown, light bands", + "throat: light brown, some speckling" + ], + "ridgway rail": [ + "back: dark olive-brown with thin white streaks", + "beak: long, straight and slender with a dusky color", + "belly: light gray-brown with dusky barring", + "breast: reddish-brown with gray flanks", + "crown: dark brown blended with ash gray", + "forehead: slightly lighter brown than crown", + "eyes: small, black, and beady", + "legs: relatively long and orangish", + "wings: short, rounded, and patterned with stripes", + "nape: dark, olive-brown with a slight reddish tint", + "tail: short, slightly upturned, with a dark gray-black color", + "throat: white with faint gray spotting" + ], + "rifleman": [ + "back: sleek greenish-blue feathers", + "beak: sharp, pointed, and black", + "belly: pale gray with subtle green tint", + "breast: light grayish-white plume", + "crown: vibrant blue-green iridescence", + "forehead: tiny gray feathers meeting beak", + "eyes: small, dark, and alert", + "legs: delicate, black, and long", + "wings: blue-green with dark flight feathers", + "nape: shining green-blue plumage", + "tail: elongated, blue-green feathers with black markings", + "throat: grayish-white with green tinges" + ], + "rimitara reed warbler": [ + "back: olive-green with subtle streaks", + "beak: slender and slightly curved", + "belly: pale yellow with light streaks", + "breast: golden-yellow with faint streaks", + "crown: olive-green with narrow streaks", + "forehead: light olive-green, blending into crown", + "eyes: dark with white eye-ring", + "legs: long and slender, pale pinkish-brown", + "wings: olive-green with darker edges", + "nape: olive-green, continuous with crown", + "tail: long and tapered, olive-green with dark brown tips", + "throat: bright golden-yellow, unmarked" + ], + "ring ouzel": [ + "back: dark plumage with subtle scaling", + "beak: short and pointed, dark color", + "belly: white with dark scaly plumage", + "breast: white crescent-shaped band", + "crown: blackish-scaly feathers", + "forehead: dark feathered with slight scaling", + "eyes: small with dark irises and thin eye-ring", + "legs: strong and sturdy, dark color", + "wings: blackish with white edges on flight feathers", + "nape: dark with scaly feathering", + "tail: blackish with white outer feathers", + "throat: black with slight scaling" + ], + "ring necked dove": [ + "back: light greyish-brown feathers with a smooth texture", + "beak: short, slender, and slightly curved, pale gray in color", + "belly: pale, creamy-greyish feathers with a slight shine", + "breast: soft, pinkish-grey feathers blending with the belly", + "crown: a subtle purplish-pink hue atop the head", + "forehead: smooth, light gray feathers transitioning into the crown", + "eyes: dark, round, and expressive with a white eye-ring", + "legs: short and sturdy, light pinkish-gray in color", + "wings: greyish-brown with black flight feathers, folded neatly at rest", + "nape: distinctive black collar-like mark, bordered with white on a pale, grayish-brown background", + "tail: long, greyish-brown feathers with black tips and a square shape", + "throat: soft, light grey feathers, paler than the breast and belly" + ], + "ring necked francolin": [ + "back: brown and black feathers with white speckles", + "beak: short, gray color, and hook-shaped tip", + "belly: white feathers with black and brown stripes", + "breast: reddish-brown with fine black barring", + "crown: dark gray with brownish tint", + "forehead: white stripe separating the crown and eyes", + "eyes: black bead-like eyes with orange orbital skin", + "legs: sturdy, grayish-brown", + "wings: broad, brown, and black feathers with a white edge", + "nape: gray-brown with white speckles", + "tail: short, brown feathers with black stripes", + "throat: white and unmarked" + ], + "ring tailed pigeon": [ + "back: smooth, grayish-brown feathers", + "beak: short, curved, beige-colored", + "belly: light grey, soft-feathered", + "breast: pale gray, slightly puffed", + "crown: round, grey head feathers", + "forehead: lighter grey, accentuated curve", + "eyes: round, black-eyed, encircled in white", + "legs: scaly, reddish-pink", + "wings: fanned, dark-tipped flight feathers", + "nape: grey, necklace-like markings", + "tail: long, distinctive white-bordered black feathers", + "throat: lighter grey, seamlessly blending into breast" + ], + "ringed antpipit": [ + "back: olive-brown with subtle black barring", + "beak: short, black, and slightly hooked", + "belly: pale gray with light yellow undertones", + "breast: grayish-white", + "crown: dark brown with faint white streaks", + "forehead: brownish-gray", + "eyes: small, dark black, surrounded by a white eyering", + "legs: long, thin, and pale pink", + "wings: olive-brown with faint black barring", + "nape: dark brown with white streaking", + "tail: long, olive-brown with black barring and white tips", + "throat: grayish-white" + ], + "ringed storm petrel": [ + "back: sleek, dark grey feathers", + "beak: short, sharp, and black", + "belly: white with grey streaks", + "breast: light grey, blending into belly", + "crown: smooth, dark grey feathers", + "forehead: slightly lighter grey than crown", + "eyes: small, dark, and alert", + "legs: relatively long, dark, and slender", + "wings: long, pointed, with dark grey feathers", + "nape: dark grey, connects smoothly with crown", + "tail: forked, with dark grey feathers", + "throat: white with light grey streaks" + ], + "ringed teal": [ + "back: patchwork of brown and cream feathers", + "beak: blue-gray with dark tip", + "belly: creamy white with dark spots", + "breast: chestnut brown with black and white speckles", + "crown: dark with iridescent green", + "forehead: white patch extending from beak", + "eyes: dark, outlined with white", + "legs: orange-yellow, webbed feet", + "wings: blue and green iridescence with white stripes", + "nape: iridescent green fading to brown", + "tail: brown feathers with white markings", + "throat: chestnut brown with white fine lines" + ], + "ringed warbling finch": [ + "back: olive-green and streaked", + "beak: short and cone-shaped", + "belly: pale and lightly speckled", + "breast: pale yellow with fine streaks", + "crown: blue-gray with defined lines", + "forehead: bright and smooth", + "eyes: dark, expressive with thin eye-ring", + "legs: slender and pinkish-brown", + "wings: black with white edges and bands", + "nape: grayish-blue with streaks", + "tail: black, forked with white outer tips", + "throat: white with thin dark streaks" + ], + "ringed woodpecker": [ + "back: black and white barred pattern", + "beak: strong, chisel-like", + "belly: pale, off-white shade", + "breast: white with a touch of red", + "crown: vibrant red crest", + "forehead: red or black depending on sex", + "eyes: small, black beads", + "legs: strong, grayish spindles", + "wings: black with white spots", + "nape: black with white striped accents", + "tail: black and white with sharp central feathers", + "throat: white, may show red streaks" + ], + "rinjani scops owl": [ + "back: mottled brown feathers", + "beak: short, hooked, and dark-colored", + "belly: light beige with brownish streaks", + "breast: pale brown with darker brown markings", + "crown: evenly-spotted brown with paler feather edges", + "forehead: white streaks on brown base", + "eyes: large, vibrant yellow discs", + "legs: feathered, light brown with dark streaks", + "wings: elongated, mottled brown with white spots", + "nape: inconspicuous brown feathers", + "tail: medium-sized, brown with faint white bands", + "throat: buffy-white with fine brown streaks" + ], + "rio branco antbird": [ + "back: olive-brown with light streaks", + "beak: long, thin, and black", + "belly: creamy white with buff sides", + "breast: whitish with faint brown streaks", + "crown: grayish-brown with some streaks", + "forehead: slightly paler gray-brown", + "eyes: dark brown with a thin white eye-ring", + "legs: strong, pale pinkish-grey", + "wings: brownish with lighter wing-bars", + "nape: olive-brown with streaks", + "tail: long, brownish with white tips", + "throat: white with fine brown streaks" + ], + "rio de janeiro antbird": [ + "back: dark brown with fine white streaks", + "beak: short, black, and hooked", + "belly: pale buff with faint streaks", + "breast: dark gray with white streaks", + "crown: black with a slight crest", + "forehead: light gray, blending into the crown", + "eyes: round, black, and alert", + "legs: thin, gray, and strong", + "wings: brown with black barring and white edgings", + "nape: dark gray with thin, white streaks", + "tail: long, russet brown with black barring and white tips", + "throat: light gray with faint, white streaks" + ], + "rio madeira stipplethroat": [ + "back: beige with dark streaks", + "beak: slightly curved, yellowish-brown", + "belly: off-white with subtle speckles", + "breast: pale with thin, dark streaks", + "crown: reddish-brown, spiky plumage", + "forehead: lighter brown than crown", + "eyes: small, dark, with white eye-ring", + "legs: sturdy, greyish-yellow", + "wings: beige with dark feather edges", + "nape: reddish-brown, slightly darker than crown", + "tail: beige with distinct dark banding", + "throat: off-white, heavily stippled with dark spots" + ], + "rio orinoco spinetail": [ + "back: brownish-grey, streaked plumage", + "beak: slender, black, slightly curved", + "belly: buff-gray with light streaks", + "breast: grayish-brown with faint streaking", + "crown: rufous with black streaks", + "forehead: rufous, narrow band", + "eyes: dark brown, beady", + "legs: long, pinkish-gray", + "wings: brownish-grey with rufous edges", + "nape: rufous with black streaks", + "tail: long, rufous, and slightly graduated", + "throat: light gray with fine streaks" + ], + "rio suno antwren": [ + "back: olive-green with dark feather edges", + "beak: slender, dark gray, slightly curved", + "belly: pale yellow with dark sides and flanks", + "breast: yellowish-white with grayish streaks", + "crown: black with a sky-blue crest", + "forehead: sky-blue patch above beak", + "eyes: dark, surrounded by black feathers", + "legs: grayish-brown with strong, slender feet", + "wings: olive-green with black-barred feathers", + "nape: vibrant sky-blue with a black border", + "tail: long, dark gray with white feather tips", + "throat: white with black streaks" + ], + "riparian antbird": [ + "back: olive-brown feathers covering bird's upper body", + "beak: thin, pointed, curved black beak for insect-catching", + "belly: whitish-gray feathers for smooth underside", + "breast: chestnut-colored plumage accenting its chest", + "crown: darker olive-brown feathers on top of the head", + "forehead: blending of olive-brown and chestnut feathers", + "eyes: medium-sized, round, and black, alert for insects", + "legs: sturdy, gray legs to perch and hop on branches", + "wings: rounded, olive-brown wings for short flights", + "nape: olive-brown feathers transitioning from head to back", + "tail: lengthy tail with olive-brown feathers for balance", + "throat: distinctive white throat patch for species recognition" + ], + "riparian parrotlet": [ + "back: vibrant green feathers", + "beak: short, curved, light beige", + "belly: pale green under-feathers", + "breast: bright green plumage", + "crown: blue-green head feathers", + "forehead: light blue feathers above beak", + "eyes: dark brown with white eye-ring", + "legs: light gray with scaly texture", + "wings: green and blue feathers with yellow-tinted tips", + "nape: green feathers transitioning to blue", + "tail: long green and blue feathers with yellow accents", + "throat: bright green feathers with a subtle yellow hue" + ], + "river lapwing": [ + "back: dark grey plumage with a slight metallic sheen", + "beak: black, slender, and slightly curved", + "belly: whitish-grey feathers", + "breast: light grey plumage with a thin black band", + "crown: black with a white forehead patch", + "forehead: white, narrow band extending from beak base", + "eyes: bright red with dark eye rings", + "legs: long, slender, and yellowish", + "wings: dark grey with a striking white patch", + "nape: black feathers transitioning to grey on back", + "tail: black with white outer feathers", + "throat: white, contrasting with dark head" + ], + "river prinia": [ + "back: light brown with faint streaks", + "beak: thin, pointed, and black", + "belly: pale, cream-colored", + "breast: buffy with faint streaks", + "crown: reddish-brown, faintly streaked", + "forehead: light and smooth", + "eyes: small, black, and alert", + "legs: long, slender, and pinkish-brown", + "wings: light brown with white and black markings", + "nape: reddish-brown, blending with crown", + "tail: long, narrow, and black with white edges", + "throat: white, contrasting with breast" + ], + "river tern": [ + "back: sleek, grayish body", + "beak: sharp, pointed, yellow-orange tip", + "belly: white, smooth plumage", + "breast: light-gray feathers, streamlined", + "crown: black cap, contrasting with white plumage", + "forehead: white feathers, meeting black cap", + "eyes: round, black, inquisitive expression", + "legs: slender, orange-red, webbed feet", + "wings: long, pointed, powerful flight", + "nape: grayish-white, blending into white throat", + "tail: forked, grayish-white, aiding in agile movement", + "throat: white, smooth, continued from belly" + ], + "river tyrannulet": [ + "back: pale olive-green color", + "beak: short, thin, pointed", + "belly: white with a tinge of yellow", + "breast: light grayish-yellow", + "crown: grayish-olive, slightly peaked", + "forehead: narrow white eyebrow stripe", + "eyes: dark brown with white eyering", + "legs: slender, black", + "wings: dark gray, edged in olive-green", + "nape: grayish-olive, like the crown", + "tail: dark gray, long and forked", + "throat: white, blending into grayish-yellow breast" + ], + "river warbler": [ + "back: olive-green feathers with faint streaks", + "beak: slender and pointy, dark brown", + "belly: pale yellowish-white with dark streaks", + "breast: light brown with dark spots and streaks", + "crown: olive-green with faint streaks", + "forehead: olive-green, merging with crown", + "eyes: small, dark brown", + "legs: pale pinkish-brown", + "wings: olive-green with blackish-brown flight feathers", + "nape: olive-green, blending with back", + "tail: medium-length, olive-green with blackish-brown tips", + "throat: pale yellowish-white, unmarked" + ], + "riverbank warbler": [ + "back: olive-green and streaked", + "beak: slender and pointed", + "belly: pale yellowish-white", + "breast: yellow with faint streaks", + "crown: grayish-olive", + "forehead: lighter grayish-olive", + "eyes: dark with white eye-ring", + "legs: long and slender", + "wings: olive-brown with faint wing bars", + "nape: grayish-olive", + "tail: short with white outer feathers", + "throat: bright yellow" + ], + "riverside tyrant": [ + "back: sleek, charcoal-grey feathers", + "beak: sharp, curved, black hook", + "belly: creamy-white, smooth plumage", + "breast: muted, earthy-toned feathers", + "crown: tufted crest, dark grey hue", + "forehead: narrow, sloping profile", + "eyes: piercing, amber orbs", + "legs: slender, sturdy branches", + "wings: compact, powerful flappers", + "nape: subtly curved, transitioning plumage", + "tail: elongated, fan-like feathers", + "throat: pale, unassuming underside" + ], + "riverside wren": [ + "back: olive-brown feathers with darker streaks", + "beak: thin, curved, and elongated bill", + "belly: whitish-grey with light brown spots", + "breast: creamy-tan with faint brown streaks", + "crown: rufous or chestnut color with small greyish spots", + "forehead: pale greyish-white meeting rufous crown", + "eyes: dark, round, and expressive", + "legs: long and slender with sharp, light-colored claws", + "wings: short with olive-brown and dark-brown markings", + "nape: rufous color blending into olive-brown back", + "tail: narrow, dark brown with white and buffy edges", + "throat: creamy-white with light-grey flecks" + ], + "rivoli hummingbird": [ + "back: vibrant green with glossy sheen", + "beak: long, slender, and straight", + "belly: light grayish-white", + "breast: iridescent green-blue", + "crown: metallic purple with a red crest", + "forehead: shining violet-blue", + "eyes: round, black, and beady", + "legs: short and thin with small feet", + "wings: elongated and curved, green-blue hue", + "nape: shimmering green-blue", + "tail: forked with iridescent blue-green feathers", + "throat: bright turquoise sapphire throat patch" + ], + "roadside hawk": [ + "back: brownish-grey feathers with dark streaks", + "beak: curved and sharp, blackish-grey", + "belly: light grey with fine dark bars", + "breast: pale grey with dark streaks", + "crown: dark grey with dense black mottling", + "forehead: light grey with faint dark markings", + "eyes: piercing yellow or orange", + "legs: sturdy yellow with black talons", + "wings: broad, rounded, with dark tips and brown-grey plumage", + "nape: grey with dark streaks", + "tail: dark grey with light and dark bands", + "throat: pale grey with dark streaks" + ], + "roberts warbler": [ + "back: olive-green feathers", + "beak: thin, pointy, black", + "belly: yellowish white plumage", + "breast: golden yellow feathers", + "crown: olive-green with black streaks", + "forehead: golden yellow patch", + "eyes: black, round, small", + "legs: dark grey, slender", + "wings: olive-green, black bars, white patches", + "nape: olive-green with black streaks", + "tail: dark grey, white-edged feathers", + "throat: golden yellow plumage" + ], + "robin accentor": [ + "back: warm rusty-brown with subtle streaks", + "beak: short, thin, dark grey", + "belly: white with rich reddish-brown streaks", + "breast: reddish-brown with fine streaks", + "crown: blue-grey with faint streaks", + "forehead: blue-grey", + "eyes: black with thin pale eyering", + "legs: orange-pink, medium length", + "wings: warm, rusty-brown with dark streaks", + "nape: blue-grey with streaks", + "tail: dark brown with visible white outer corners", + "throat: white with light streaks" + ], + "robust woodpecker": [ + "back: heavily streaked, dark brown feathers", + "beak: long, chisel-like, and black", + "belly: mottled white and light brown", + "breast: buff-colored, without markings", + "crown: red or scarlet crest", + "forehead: red patch separated by black bands", + "eyes: round, dark, and expressive", + "legs: gray and sturdy with sharp claws", + "wings: checkered black and white pattern", + "nape: black with a white patch on each side", + "tail: black and white barred, stiff feathers for support", + "throat: mottled gray and white, with a dark stripe on each side" + ], + "rock bunting": [ + "back: patterned with dark streaks on olive-brown feathers", + "beak: small, stout, and conical with grayish-black color", + "belly: pale grayish-white with some streaking", + "breast: light brown or reddish-brown with streaks", + "crown: brownish-black or dark gray with white streaks", + "forehead: dark, blending into the crown", + "eyes: dark, surrounded by a white eye-ring", + "legs: strong, grayish-blue or blackish", + "wings: dark brown with white wing-bars", + "nape: brownish-gray with streaks", + "tail: short and dark, with white bars on outer feathers", + "throat: pale grayish-white, blending with the breast" + ], + "rock bush quail": [ + "back: earthy brown feathers with black markings", + "beak: small and stout, light greyish-brown", + "belly: creamy white with black speckles", + "breast: grayish with slight brown hue", + "crown: rufous-brown with dark streaks", + "forehead: lighter rufous shade, meeting the crown", + "eyes: dark brown with discreet surrounding plumage", + "legs: thin, greyish-brown scaly legs ending in sharp claws", + "wings: brownish-grey with black barring and white spots", + "nape: rufous-brown with dark streaks, connecting crown to back", + "tail: earthy brown shades with black and white barring", + "throat: pale with minimal markings" + ], + "rock eagle owl": [ + "back: grayish-brown with horizontal barring", + "beak: strong, black, and sharply curved", + "belly: dark vertical stripes on pale background", + "breast: white with bold brown streaks", + "crown: rounded, grayish-brown with faint streaks", + "forehead: pale with dark brown streaks", + "eyes: expressive, large, and bright orange", + "legs: strong, feathered, and well-hidden", + "wings: wide, long, with dark brown barring", + "nape: grayish-brown with faint streaks", + "tail: dark brown with horizontal barring", + "throat: white with brown horizontal streaks" + ], + "rock earthcreeper": [ + "back: brownish-gray with thin streaks", + "beak: long, slender, and slightly curved", + "belly: pale-gray with light streaks", + "breast: off-white with brown speckles", + "crown: dark brown with a defined crest", + "forehead: pale-gray with fine streaks", + "eyes: dark, small, and well-rounded", + "legs: strong, scaly, and olive-brown", + "wings: rufous-brown with a prominent white patch", + "nape: dark-brown with light streaking", + "tail: long and narrow with alternating brown and white bands", + "throat: white with a subtle pattern of streaks" + ], + "rock firefinch": [ + "back: reddish-brown feathers with dark streaks", + "beak: short, stout, and silver-grey", + "belly: pale grey with subtle streaks", + "breast: vibrant red plumage", + "crown: dark grey with slight red tinge", + "forehead: bright red patch above the beak", + "eyes: dark, round, and alert", + "legs: sturdy and greyish-pink", + "wings: reddish-brown with dark streaks and white patches", + "nape: grey with a hint of red", + "tail: long and reddish-brown with white tips", + "throat: bright red plumage fading to grey at the sides" + ], + "rock kestrel": [ + "back: brownish-gray with dark streaks", + "beak: sharp, curved, black", + "belly: creamy-white with dark brown spots", + "breast: whitish with vertical black streaks", + "crown: grayish-brown with dark streaks", + "forehead: gray-brown with dark streaks", + "eyes: large, dark, and piercing", + "legs: yellowish with sharp black talons", + "wings: long, pointed, and grayish-brown with black spotting", + "nape: brownish-gray with dark streaks", + "tail: grayish-brown with dark bands", + "throat: light cream with faint black streaks" + ], + "rock martin": [ + "back: grayish-brown feathers", + "beak: small, black, pointed", + "belly: whitish-gray underside", + "breast: pale grayish-brown plumage", + "crown: dark gray feathers", + "forehead: slightly lighter gray patch", + "eyes: small, black, round", + "legs: short, dark gray", + "wings: long, pointed, gray-brown", + "nape: grayish-brown feathers", + "tail: short, square-ended, grayish-brown", + "throat: pale grayish-white feathers" + ], + "rock parrot": [ + "back: greenish-blue feathers", + "beak: short and chunky, light grey", + "belly: pale turquoise coloring", + "breast: soft yellow plumage", + "crown: bright green gradient", + "forehead: striking emerald hue", + "eyes: shiny black with white eye-ring", + "legs: grey, slender limbs with short claws", + "wings: predominantly green with black flight feathers", + "nape: subtle green tint", + "tail: long and slender, black with teal edges", + "throat: pale yellow feathers" + ], + "rock partridge": [ + "back: brownish-gray with intricate patterns", + "beak: short and strong, light-colored", + "belly: white to light gray with dark barring", + "breast: reddish-orange with black and white bands", + "crown: reddish-brown with speckled patterns", + "forehead: lighter reddish-brown with fine streaks", + "eyes: bright, dark, and expressive", + "legs: sturdy and featherless, reddish-orange", + "wings: grayish-brown with black and white speckles", + "nape: reddish-brown with darker streaks", + "tail: long, fan-shaped with dark bars and a white tip", + "throat: white with black border" + ], + "rock pipit": [ + "back: brownish-grey with darker streaks", + "beak: slender and narrow, brownish-black", + "belly: off-white with brown speckles", + "breast: pale beige with dark brown streaks", + "crown: brownish-grey with fine black streaks", + "forehead: similar to crown, brownish-grey with streaks", + "eyes: dark black with noticeable pale eye-ring", + "legs: pinkish with long, thin toes", + "wings: brownish-grey with darker feather edges", + "nape: brownish-grey with dark streaks, similar to crown", + "tail: dark brownish-grey with white outer tail feathers", + "throat: whitish with distinct dark streaks" + ], + "rock pratincole": [ + "back: slate gray with contrasting white streaks", + "beak: short and sharp, black in color", + "belly: light gray or beige, sometimes with light streaks", + "breast: pale gray with darker gray streaks", + "crown: gray-brown with subtle white streaks", + "forehead: white, blending to gray on the crown", + "eyes: dark brown, surrounded by white feathering", + "legs: long and slender, pale yellow or pinkish", + "wings: pointed, gray-brown with white patches and tips", + "nape: gray-brown, blending into back's coloration", + "tail: forked and long, dark brown with white outer feathers", + "throat: white, contrasting with breast and belly colors" + ], + "rock sparrow": [ + "back: grayish-brown with streaks", + "beak: sturdy, conical-shaped, dark", + "belly: pale, buff-colored", + "breast: pale gray with darker markings", + "crown: chestnut brown with dark streaks", + "forehead: yellow patch above the beak", + "eyes: small, dark, alert", + "legs: long, skinny, pale pinkish", + "wings: rounded, brown with white wingbars", + "nape: grayish-brown with streaks", + "tail: squared-off, dark brown with white edges", + "throat: white with a black bib" + ], + "rock tapaculo": [ + "back: dark grey feathers with subtle patterns", + "beak: sturdy and slightly curved, blackish color", + "belly: slate grey with lighter undertones", + "breast: greyish with subtle dark barring", + "crown: dark grey with slight pattern", + "forehead: lighter grey, blending into the crown", + "eyes: small with a blackish color", + "legs: strong, feathered with grey color", + "wings: short, dark grey with faint patterns", + "nape: dark grey with slight blending towards the back", + "tail: short, dark grey with indistinct patterns", + "throat: lighter grey, contrast to the breast" + ], + "rock loving cisticola": [ + "back: earthy brown with faint streaks", + "beak: slender and pointed in pale color", + "belly: light cream or buff hue", + "breast: subtly mottled with shades of brown", + "crown: streaked pattern of dark brown and beige", + "forehead: buffy-brown with delicate markings", + "eyes: small and dark with a lively glint", + "legs: slim, long, and light-colored", + "wings: brown with faint barring and a slight rufous tint", + "nape: brownish-gray with subtle streaks", + "tail: brown, short, and fan-shaped with thin bands", + "throat: creamy-white with a clean appearance" + ], + "rockrunner": [ + "back: brownish-grey with white speckling", + "beak: short, dark, and slightly curved", + "belly: off-white with buff or pale grey tones", + "breast: streaked with dark grey and white markings", + "crown: reddish-brown with white highlights", + "forehead: white and black striping", + "eyes: dark, with thin white eye-ring", + "legs: pale pinkish-grey and relatively long", + "wings: dark grey with white spots and brownish edging", + "nape: reddish-brown with white speckles", + "tail: elongated with dark grey and white barring", + "throat: pale with light streaking" + ], + "rockwarbler": [ + "back: slate-gray feathered back", + "beak: sharp, straight, and dark-colored bill", + "belly: light gray underparts", + "breast: soft gray with minimal streaks", + "crown: darker gray with a rounded shape", + "forehead: smooth and light gray", + "eyes: dark, bead-like eyes", + "legs: strong, dark-colored legs", + "wings: blackish-gray with white patches", + "nape: medium gray with a slight curve", + "tail: dark gray with white-tipped outer feathers", + "throat: clean and light gray" + ], + "rodrigues fody": [ + "back: yellowish-green feathers", + "beak: short, curved, black beak", + "belly: soft, pale yellow underside", + "breast: vibrant orange-yellow chest", + "crown: richly colored yellowish-green head", + "forehead: yellow feathers meeting the beak", + "eyes: small, black, and round", + "legs: slim, strong, grayish-blue", + "wings: greenish-yellow with black trim feathers", + "nape: smooth transition from crown to back", + "tail: medium-length, dark feathers with a yellowish tint", + "throat: bright yellow plumage extending from beak to breast" + ], + "rodrigues warbler": [ + "back: olive-brown with subtle streaks", + "beak: thin, pointed, and black", + "belly: creamy-white with faint brown spots", + "breast: pale gray with brown streaks", + "crown: grayish-brown with lighter streaks", + "forehead: grayish-white with faint markings", + "eyes: dark brown with a white eyering", + "legs: slim and black", + "wings: olive-brown with darker streaks", + "nape: grayish-brown with lighter streaks", + "tail: long, olive-brown with white edges", + "throat: pale gray with faint brown spots" + ], + "roll partridge": [ + "back: brownish-gray with faint markings", + "beak: short and stout, grayish-brown", + "belly: creamy-white with dark bands", + "breast: reddish-brown with wavy lines", + "crown: rusty-brown with lighter streaks", + "forehead: pale gray-brown", + "eyes: dark brown with a pale eyering", + "legs: grayish-pink with strong feet", + "wings: dark brown with bold white bars", + "nape: rusty-brown with lighter streaks", + "tail: long and wedge-shaped, dark brown with pale tips", + "throat: pale gray-brown with dark streaks" + ], + "romblon boobook": [ + "back: brownish feathers with white spots", + "beak: short, sharp, blackish-gray", + "belly: light beige with brown streaks", + "breast: pale brown with white markings", + "crown: dark brown with white spots", + "forehead: lighter brown with white tips", + "eyes: large, round, yellowish-orange", + "legs: feathered, grayish-brown", + "wings: brown with white bars and spots", + "nape: dark brown with white broken bars", + "tail: long, brown with white bands", + "throat: pale beige with faint brown streaks" + ], + "rondonia bushbird": [ + "back: olive-brown with streaks", + "beak: short, sharp, black", + "belly: off-white with light streaks", + "breast: yellowish-brown with streak patterns", + "crown: grayish-blue with streaks", + "forehead: light gray or white", + "eyes: dark with white eye-ring", + "legs: sturdy, grayish-brown", + "wings: olive-brown with patterns of tawny and buff", + "nape: grayish-blue with streaks", + "tail: long, olive-brown with white tips", + "throat: white or light gray" + ], + "rondonia warbling antbird": [ + "back: olive-brown plumage", + "beak: small and pointed, black", + "belly: light gray feathers", + "breast: grayish-white plumage", + "crown: rufous-brown with streaks", + "forehead: slightly paler rufous-brown", + "eyes: dark with pale eye-ring", + "legs: long and slender, grayish-brown", + "wings: olive-brown with faint wing bars", + "nape: rufous-brown streaked", + "tail: long and tapered, olive-brown", + "throat: grayish-white, slightly paler than breast" + ], + "roraiman antbird": [ + "back: olive-brown with light streaks", + "beak: sturdy, black, and slightly hooked", + "belly: white with grayish-brown shades", + "breast: grayish-brown with pale streaks", + "crown: dark gray with faint streaks", + "forehead: slightly lighter grayish-brown", + "eyes: large, brown, and alert", + "legs: sturdy, pale pinkish-gray", + "wings: olive-brown with pale feathery bars", + "nape: grayish-brown blending into the crown", + "tail: elongated, olive-brown with light feather tips", + "throat: whitish-gray with pale brown streaks" + ], + "roraiman antwren": [ + "back: olive brown color with light streaks", + "beak: thin, straight, and black", + "belly: whitish with faint gray barring", + "breast: grayish white with faint bars", + "crown: dark gray with a black cap", + "forehead: pale gray blending into the crown", + "eyes: dark brown with a faint eye ring", + "legs: grayish-blue and slender", + "wings: brownish-black with white wing bars", + "nape: olive brown blending into the back", + "tail: long and dark with white tips on outer feathers", + "throat: pale gray fading into the breast" + ], + "roraiman barbtail": [ + "back: olive-brown with slight streaks", + "beak: short, pointed, dark grey", + "belly: light buff color, spotted with black", + "breast: pale greyish-brown with dark spots", + "crown: olive-brown, slightly darker than back", + "forehead: slightly paler olive hue", + "eyes: black, large, surrounded by thin white eye-ring", + "legs: dark grey, sturdy, short", + "wings: olive-brown, black-tipped flight feathers", + "nape: olive-brown, continuous with back", + "tail: olive-brown, long, barred with grey and black", + "throat: pale buff, spotted with black" + ], + "roraiman flycatcher": [ + "back: grayish-brown plumage", + "beak: black, slender, and slightly hooked", + "belly: pale yellowish color", + "breast: light gray merging with yellow", + "crown: gray with a slight crest", + "forehead: gray, slightly paler than the crown", + "eyes: dark with white eyering", + "legs: black and sturdy", + "wings: grayish-brown with faint wingbars", + "nape: gray coloration", + "tail: blackish with white outer feathers", + "throat: white or light gray" + ], + "roraiman nightjar": [ + "back: reddish-brown with black streaks", + "beak: short, wide, and black", + "belly: pale buff with black barring", + "breast: rufous-brown with fine, dark barring", + "crown: mottled reddish-brown with pale spots", + "forehead: buff with dark streaks", + "eyes: large, round, and dark", + "legs: short and pale in color", + "wings: long, reddish-brown with dark barring and white spots", + "nape: rufous-brown with fine, dark barring", + "tail: reddish-brown with white outer feathers and dark barring", + "throat: pale buff with fine, dark streaks" + ], + "rose robin": [ + "back: reddish-brown plumage", + "beak: small, pointed, pale-gray", + "belly: off-white to faint yellow", + "breast: vibrant pinkish-red", + "crown: grayish-brown with a slightly paler shade", + "forehead: grayish-brown, blending with the crown", + "eyes: small, dark, and alert", + "legs: slender, pale gray", + "wings: reddish-brown with a slight tinge of pink", + "nape: grayish-brown, continuing color from crown", + "tail: long, reddish-brown with white outer tips", + "throat: pinkish-red, matching the breast color" + ], + "rose bellied bunting": [ + "back: vibrant green feathers", + "beak: sharp, dark gray", + "belly: rosy pink hue", + "breast: deep pink with green edges", + "crown: shimmering green", + "forehead: iridescent green", + "eyes: dark with white eye-ring", + "legs: dark gray", + "wings: green with contrasting black and white", + "nape: rich green feathers", + "tail: green with black tips", + "throat: intense pink color" + ], + "rose breasted chat": [ + "back: sleek grey feathers", + "beak: petite, pointed, and black", + "belly: white with delicate pinkish hues", + "breast: vibrant rose-red splash", + "crown: smooth greyish-blue plumage", + "forehead: sharp contrast between grey and rose", + "eyes: small, dark, and curious", + "legs: thin, black, and sturdy", + "wings: grey with intricate white markings", + "nape: continuous greyish-blue from crown", + "tail: greyish-blue feathers, with white tips", + "throat: demarcated rose-red from chest" + ], + "rose collared piha": [ + "back: light greenish-blue plumage", + "beak: short and black", + "belly: pale grayish-white", + "breast: lavender-gray", + "crown: tinged with greenish-blue", + "forehead: pale bluish-green", + "eyes: dark brown with pale eye ring", + "legs: black and strong", + "wings: greenish-blue with black tips", + "nape: pale greenish-blue", + "tail: long, greenish-blue with black tips", + "throat: lavender-gray with a rosy blush" + ], + "rose crowned fruit dove": [ + "back: vibrant green with pale yellow highlights", + "beak: short, curved, and dark gray", + "belly: light blue with yellow streaks", + "breast: deep purple-blue with yellow accents", + "crown: striking pinkish-red circular patch", + "forehead: deep purple-blue merging with the crown", + "eyes: dark with a thin gray eye-ring", + "legs: slender, grayish-blue with strong claws", + "wings: green with hints of yellow and blue feathers", + "nape: green with a transition to purple-blue on the neck", + "tail: elongated, green with blue and yellow feathers", + "throat: green, gradually blending into the breast color" + ], + "rose faced parrot": [ + "back: vibrant green feathers", + "beak: strong, curved, grayish-black", + "belly: light green with a yellow gradient", + "breast: rosy-pink feathers", + "crown: bright green plumage", + "forehead: rosy-pink patch", + "eyes: dark, with a white eye-ring", + "legs: gray, with feet adapted for gripping", + "wings: green and blue, with black accents", + "nape: green feathers transitioning to pink", + "tail: long and tapered, with green and blue feathers", + "throat: rosy-pink plumage" + ], + "rose fronted parakeet": [ + "back: vibrant green feathers", + "beak: short, hooked, and pale-orange", + "belly: light-green plumage", + "breast: blushing rose-colored feathers", + "crown: radiant green crest", + "forehead: rose-pink patch above beak", + "eyes: dark, round, and expressive", + "legs: slim and grayish", + "wings: green transitioning to blue at tips", + "nape: green feathers fading to blue", + "tail: long, slender, and blue-tipped", + "throat: green with hints of rose color" + ], + "rose headed parakeet": [ + "back: vibrant green feathers", + "beak: short and hooked, pinkish-red hue", + "belly: soft, pale green feathers", + "breast: deep rose-colored plumage", + "crown: striking rose-pink feathers", + "forehead: pinkish feathers meeting green hues", + "eyes: round and dark, lined with pale feathers", + "legs: slender, light gray limbs", + "wings: bright green, long, and powerful", + "nape: greenish feathers blending into the rose color", + "tail: long, tapering green feathers with hints of blue", + "throat: pale green feathers transitioning to rose-colored chest" + ], + "rose ringed parakeet": [ + "back: vibrant green feathers", + "beak: red, hooked shape", + "belly: pale yellowish-green", + "breast: greenish-yellow feathers", + "crown: deep green, slightly raised", + "forehead: black ring covering the base", + "eyes: dark, round with white rings", + "legs: greyish, two-toed on each foot", + "wings: green, folded on sides", + "nape: black and pink rings around the neck", + "tail: long, slender, green feathers", + "throat: pale yellow, narrow feathers" + ], + "rose throated becard": [ + "back: olive green feathers", + "beak: short, stout, tapered", + "belly: pale yellow plumage", + "breast: bright rose-colored patch", + "crown: gray or olive head feathers", + "forehead: smooth, grayish-brown", + "eyes: dark, round, alert", + "legs: slender, grayish", + "wings: olive green, long, pointed", + "nape: olive green with grayish tones", + "tail: fan-shaped, olive green", + "throat: rose-colored on male, gray on female" + ], + "rose throated tanager": [ + "back: vibrant green feathers", + "beak: sharp, pointed, black", + "belly: bright yellow underbelly", + "breast: rosy pink chest feathers", + "crown: vivid green plumage", + "forehead: small, defined green feathers", + "eyes: dark with thin, white eye ring", + "legs: slender, greyish-blue", + "wings: green with black secondary feathers", + "nape: greenish-yellow transition from crown to back", + "tail: long, slightly forked, black and green feathers", + "throat: distinct rose-colored patch" + ], + "ross gull": [ + "back: greyish-white plumage", + "beak: small, sharp, dark-colored", + "belly: white feathers", + "breast: rosy-pink hue", + "crown: pale grey head cap", + "forehead: light grey feathers", + "eyes: small, dark, and alert", + "legs: red and short", + "wings: black-tipped primary feathers", + "nape: white-feathered neck", + "tail: notched, triangular tail feathers", + "throat: white, blending to pink breast" + ], + "ross turaco": [ + "back: iridescent, green-blue feathers", + "beak: red curved bill with yellow tip", + "belly: white with light feathering", + "breast: glossy violet hue", + "crown: red, elongated, feathery crest", + "forehead: green coloration blending to blue", + "eyes: large, round, dark brown orbs", + "legs: strong, gray with zygodactyl feet", + "wings: long, green-blue with prominent red flight feathers", + "nape: red and blue-green feathers transition", + "tail: green-blue feathers with tipped red edges", + "throat: blue-green with lighter shading towards the beak" + ], + "rosy bee eater": [ + "back: vibrant green feathers", + "beak: long, slender, and black", + "belly: rich yellow plumage", + "breast: bright pinkish hue", + "crown: iridescent green cap", + "forehead: emerald green plumage", + "eyes: jet-black with a circular white outline", + "legs: delicate, black, and slender", + "wings: green and pink, elongated feathers", + "nape: deep green with a hint of pink", + "tail: long, forked, with green and pink feathers", + "throat: soft pink with a subtle yellow undertone" + ], + "rosy minivet": [ + "back: vibrant greenish-yellow", + "beak: thin and sharp, dark gray", + "belly: pale yellowish-white", + "breast: bright orange-red", + "crown: deep black", + "forehead: striking black", + "eyes: dark, with a thin black eye-ring", + "legs: grayish-blue", + "wings: black with white patches", + "nape: intense black", + "tail: long and black, with white edges", + "throat: brilliant orange-red" + ], + "rosy pipit": [ + "back: mottled brown and gray feathers", + "beak: thin, pointed and sharp", + "belly: pale pinkish-white plumage", + "breast: rosy-pink feathering", + "crown: streaked brown with a white stripe", + "forehead: white stripe above the eye", + "eyes: small, dark, and round", + "legs: long, thin, and pale pink", + "wings: medium length, brown with white and buff edges", + "nape: light gray-brown with streaking", + "tail: dark brown with white edges", + "throat: pale white with a hint of rosy-pink" + ], + "rosy starling": [ + "back: iridescent purplish-black feathers", + "beak: yellow, sharp and slightly curved", + "belly: light pinkish feathers", + "breast: vibrant rose-colored plumage", + "crown: glossy black feathers with elongated crest", + "forehead: black feathers with a slight sheen", + "eyes: dark, alert and expressive", + "legs: strong, bluish-gray with sharp claws", + "wings: iridescent purplish-black with broad pale stripe", + "nape: glossy black feathers that contrast with the pink breast", + "tail: long, black, and slightly forked", + "throat: smooth pinkish-black transition from the breast" + ], + "rosy thrush tanager": [ + "back: olive green feathers covering the upper body", + "beak: sharp, slender, grayish-black", + "belly: bright red-orange coloration", + "breast: vibrant rosy-red plumage", + "crown: olive green feathers on top of head", + "forehead: pale yellowish line above eyes", + "eyes: dark brown with pale yellow eye-ring", + "legs: gray with sharp claws for perching", + "wings: olive green with red highlights", + "nape: olive green feathers at the back of the neck", + "tail: long, reddish-brown with black tips", + "throat: striking bright red feathers" + ], + "rosy billed pochard": [ + "back: dark grey to black feathers, often with a subtle sheen", + "beak: striking rosy red with a small white band near the tip", + "belly: creamy white to pale grey feathers, well-rounded", + "breast: rich reddish-brown, smooth contour with slightly darker edging", + "crown: dark grey to black, rounded shape, extends to the nape", + "forehead: smooth transition from crown to beak, dark grey to black", + "eyes: dark brown, almond-shaped, with a bright white eye-ring", + "legs: strong grey-orange, slightly webbed feet for efficient swimming", + "wings: dark grey to black primaries, white secondaries, folded at rest", + "nape: continuation of dark grey to black crown, smooth feathers", + "tail: short, dark grey to black, slightly rounded and fanned out", + "throat: transition from reddish-brown breast to creamy white belly" + ], + "rosy patched bushshrike": [ + "back: olive green with a reddish patch", + "beak: curved, black and hooked", + "belly: pale yellow with faint streaks", + "breast: yellow-orange with prominent patches", + "crown: grayish-brown, slightly raised", + "forehead: grayish-brown with a greenish-black mask", + "eyes: dark brown surrounded by a narrow white ring", + "legs: long, grayish-brown with sharp talons", + "wings: olive green with slight reddish-brown edges", + "nape: grayish-brown, blending into the back", + "tail: long, reddish-brown with black bars", + "throat: pale yellow with faint streaks" + ], + "rosy throated longclaw": [ + "back: olive-brown and streaked", + "beak: long, slender, and black", + "belly: pale white with hints of yellow", + "breast: yellow, fading into the white belly", + "crown: olive-brown with a reddish patch", + "forehead: predominantly olive-brown", + "eyes: black with a white eye-ring", + "legs: long, slender, and grey", + "wings: olive-brown with white wingbars", + "nape: olive-brown and streaked", + "tail: dark brown with white outer edges", + "throat: bright rosy-pink coloration" + ], + "rota white eye": [ + "back: olive-green feathers", + "beak: short, black, pointed", + "belly: pale grey-white plumage", + "breast: light grayish-white feathers", + "crown: green with a silvery sheen", + "forehead: vibrant green patch", + "eyes: prominent white eye-ring", + "legs: light grayish-brown", + "wings: olive-green with darker flight feathers", + "nape: smooth green transition to back", + "tail: olive-green, medium length, slightly forked", + "throat: white with gray tinges" + ], + "rote boobook": [ + "back: reddish-brown with white spots", + "beak: powerful, dark grey, hooked tip", + "belly: light rufous, barred with white", + "breast: same as belly, light rufous barred with white", + "crown: reddish-brown, white streaks", + "forehead: feathery, white eyebrows", + "eyes: large, yellow with dark pupils", + "legs: strong, greyish-yellow", + "wings: reddish-brown, barred white, rounded", + "nape: reddish-brown, streaked with white", + "tail: long, reddish-brown, white bands", + "throat: light rufous, barred with white" + ], + "rote leaf warbler": [ + "back: light greenish-yellow feathers", + "beak: small and pointed, blackish-brown", + "belly: pale white-yellow with light streaks", + "breast: soft yellow with indistinct streaks", + "crown: bright yellow-green, slightly darker than back", + "forehead: lighter shade of yellow-green", + "eyes: small and round, dark with white eyering", + "legs: slender, pale pinkish-orange", + "wings: greenish-yellow with dark markings", + "nape: yellowish-green, similar to back", + "tail: olive-green with white-yellow outer edges", + "throat: bright yellow, unmarked" + ], + "rote myzomela": [ + "back: bright red upper body", + "beak: small, pointed, black", + "belly: yellowish-orange underside", + "breast: vibrant red", + "crown: deep red, slightly darker than back", + "forehead: brilliant red", + "eyes: round, black, beady", + "legs: dark grey, slender", + "wings: small, black with streaks of red", + "nape: red, blending with crown and back", + "tail: short, black with streaks of red", + "throat: stunning red, like breast" + ], + "rothschild swift": [ + "back: sleek, dark feathers", + "beak: slender, curved black bill", + "belly: light cream plumage", + "breast: ruffled, creamy feathers", + "crown: deep charcoal crown feathers", + "forehead: smooth, dark-gray plumage", + "eyes: small, black, piercing gaze", + "legs: thin, black, agile limbs", + "wings: long, dark, pointed feathers", + "nape: dark-gray, smooth plumage", + "tail: tapered, dark-gray feathers", + "throat: soft, creamy-white feathering" + ], + "rouget rail": [ + "back: dark brown with faint streaks", + "beak: short and stout, pale pinkish-brown", + "belly: warm buff with faint barring", + "breast: light brown with dark streaks", + "crown: deep brown with fine streaks", + "forehead: pale brown with a white stripe", + "eyes: small, bead-like, dark brown", + "legs: slender, greenish-yellow", + "wings: short, rounded, dark brown with white spots", + "nape: rich brown with fine streaking", + "tail: short, deep brown with faint bars", + "throat: pale buff with dark speckles" + ], + "rough legged tyrannulet": [ + "back: olive-green with slight streaks", + "beak: small, sharp, and black", + "belly: pale yellowish-white", + "breast: olive-gray with subtle streaks", + "crown: dark grayish-brown", + "forehead: pale, with subtle eye-ring", + "eyes: black with faint white eye-ring", + "legs: pale, slender, and long", + "wings: dark brown with pale markings", + "nape: olive-brown with faint streaks", + "tail: long, black with white outer edges", + "throat: white with faint grayish markings" + ], + "round tailed manakin": [ + "back: vibrant green feathers", + "beak: small, black, and curved", + "belly: whitish-gray underside", + "breast: bright red patch", + "crown: green with a slightly raised crest", + "forehead: smooth green feathers", + "eyes: dark, round, and alert", + "legs: thin, grayish-brown", + "wings: green with strong, curved feathers", + "nape: green feathers meeting the red breast", + "tail: rounded, short, with green and white feathers", + "throat: bright red extending to the breast" + ], + "roviana rail": [ + "back: earthy brown feathers", + "beak: slim, sharp, and orange-tinted", + "belly: lighter brown with streaks", + "breast: tawny with fine dark stripes", + "crown: rich brown with pale streaks", + "forehead: lighter brown blending into crown", + "eyes: bright, inquisitive black orbs", + "legs: sturdy, long, and dark-colored", + "wings: brown with flowing feathers", + "nape: smooth interplay of brown hues", + "tail: elongated, dark brown with white tips", + "throat: pale beige with delicate markings" + ], + "royal albatross": [ + "back: smooth, elongated curve", + "beak: long, hook-tipped", + "belly: white, rounded", + "breast: broad, white-feathered", + "crown: white, gently sloping", + "forehead: white, slightly domed", + "eyes: dark, encircled with black", + "legs: strong, flexible limbs", + "wings: expansive, slender, tapering", + "nape: white, smooth curve", + "tail: short, fan-shaped", + "throat: white, subtly defined" + ], + "royal cinclodes": [ + "back: dark brown feathers with pale streaks", + "beak: strong, medium-sized, black", + "belly: whitish-brown with fine dark barring", + "breast: rufous brown, mixed with white and pale streaks", + "crown: dark brown with pale streaks", + "forehead: dark brown, slightly paler at top", + "eyes: dark brown with pale eye-ring", + "legs: sturdy, grayish legs", + "wings: dark brown, pointed with noticeable white bars", + "nape: dark brown with some pale streaks", + "tail: long, dark brown with white tips", + "throat: white, mixed with rufous-brown and fine dark barring" + ], + "royal parrotfinch": [ + "back: vibrant green feathers", + "beak: strong, orange-colored", + "belly: bright blue plumage", + "breast: vivid red feathers", + "crown: striking turquoise crest", + "forehead: bold red coloration", + "eyes: small, round with a dark iris", + "legs: slender, grayish legs", + "wings: rich green feathers with darker edges", + "nape: transition between turquoise and green feathers", + "tail: long, greenish-blue with a black tip", + "throat: brilliant red feathers" + ], + "royal penguin": [ + "back: black and sleek with a slight sheen", + "beak: long, pointy, and orange-yellow", + "belly: white and streamlined", + "breast: white feathers with a slight curve", + "crown: black with slight tuft on the head", + "forehead: black and smooth", + "eyes: dark and round with a keen gaze", + "legs: strong and featherless with orange-yellow webbed feet", + "wings: black, short and narrow, adapted for swimming", + "nape: black with a distinct demarcation from the white throat", + "tail: black, short, and slightly fan-shaped", + "throat: sharply defined white feathers" + ], + "royal spoonbill": [ + "back: sleek and smooth white feathers", + "beak: elongated, flat, spatulate-shaped", + "belly: white, soft and rounded feathers", + "breast: white and puffy plumage", + "crown: white feathers with contrasting black crest in breeding season", + "forehead: white, smooth feathered area above bill", + "eyes: small and dark, surrounded by white feathers", + "legs: long and slender with black coloring", + "wings: large, white and curved with black tips", + "nape: white feathers connecting back of head to back", + "tail: short and rounded with white feathers", + "throat: white and smooth plumage" + ], + "royal sunangel": [ + "back: vibrant violet-blue feathers", + "beak: thin, pointed black beak", + "belly: bright yellow plumage", + "breast: rich violet-blue covering", + "crown: deep blue-metallic sheen", + "forehead: iridescent violet-blue hue", + "eyes: small, dark, and inquisitive", + "legs: slender, delicate gray legs", + "wings: elongated, violet-blue with black edges", + "nape: striking metallic blue coloration", + "tail: long, forked, and iridescent blue-black", + "throat: vivid gold-yellow with blue streaks" + ], + "rubeho akalat": [ + "back: olive-brown with dark streaks", + "beak: short, curved, dark gray", + "belly: pale gray with dark markings", + "breast: grayish-white, streaked", + "crown: reddish-brown with black streaks", + "forehead: olive-brown, blending into crown", + "eyes: dark, surrounded by pale eyering", + "legs: grayish, medium length", + "wings: olive-brown, black tips and edging", + "nape: olive-brown, blending into back", + "tail: dark brown with faint bars", + "throat: whitish with dark streaks" + ], + "ruby cheeked sunbird": [ + "back: vibrant green and shimmering", + "beak: long and curved for nectar feeding", + "belly: pale yellow with faint streaks", + "breast: rich golden-yellow with ruby cheeks", + "crown: iridescent green with blue highlights", + "forehead: gleaming metallic green", + "eyes: small, round, and dark", + "legs: slender and grayish-brown", + "wings: glossy green with dark flight feathers", + "nape: bright green with iridescent sheen", + "tail: emerald green and forked", + "throat: radiant golden-yellow with ruby patch" + ], + "ruby crowned tanager": [ + "back: vibrant green feathers", + "beak: short and sharp, black", + "belly: yellowish-green hue", + "breast: bright yellow plumage", + "crown: striking red patch", + "forehead: green feathers transitioning to red towards crown", + "eyes: small and black, encircled by green feathers", + "legs: slender and dark gray", + "wings: green with black edges and subtle yellow highlights", + "nape: green feathers blending into red crown", + "tail: long and green with black tips", + "throat: vibrant yellow feathers" + ], + "ruby throated bulbul": [ + "back: olive-green to brown with faint streaks", + "beak: short, curved, slender, and black", + "belly: pale yellow to white", + "breast: reddish-orange to bright crimson", + "crown: black or dark brown with a slight crest", + "forehead: black or dark brown with a defined boundary", + "eyes: dark brown with a small white eye-ring", + "legs: slender, grayish-brown", + "wings: olive-green to brown with white-tipped feathers", + "nape: olive-green to brown with faint streaks", + "tail: long, olive-green to brown with white tips", + "throat: white or pale yellowish with a red patch" + ], + "ruby throated myzomela": [ + "back: vibrant red feathers", + "beak: short and thin black beak", + "belly: pale, light-colored feathers", + "breast: bright red plumage", + "crown: deep red with black tips", + "forehead: intense red feathers", + "eyes: small and round, dark-brown color", + "legs: short and delicate, dark-colored", + "wings: dark, blackish-brown feathers", + "nape: rich red with black-tipped feathers", + "tail: tapered and elongated, blackish-brown", + "throat: bright red coloration" + ], + "ruby topaz hummingbird": [ + "back: iridescent green and golden plumage", + "beak: long, slender, and slightly curved", + "belly: whitish-gray with light green shimmer", + "breast: vibrant fiery orange-red feathers", + "crown: bright ruby red with a metallic shine", + "forehead: gleaming gold and green hues", + "eyes: small, dark, and alert", + "legs: short and delicate with tiny claws", + "wings: rapid, blur of iridescent green", + "nape: golden green with a glossy sheen", + "tail: forked with dark bronze-green feathers", + "throat: glistening golden orange-red patch" + ], + "rudd apalis": [ + "back: olive-green feathers providing camouflage", + "beak: short, sharp, and slender for insect-catching", + "belly: pale yellow underside for blending in surroundings", + "breast: vibrant yellow plumage attracting mates", + "crown: distinct rufous cap, a signature feature", + "forehead: rufous stripe contrasted against white eyeline", + "eyes: small, dark, and inquisitive for spotting prey", + "legs: slender and long for perching on branches", + "wings: dark brownish edges with olive-green base for agile flight", + "nape: olive-green feathers transitioning to rufous crown", + "tail: dark brown with white outer feather edges for improved aerial maneuverability", + "throat: pale yellow, complementing the breast feathers" + ], + "rudd lark": [ + "back: soft brown feathering with subtle streaks", + "beak: slender, slightly curved, pale yellow", + "belly: light buff or cream color with faint streaking", + "breast: warm brown hue with small, dark spots", + "crown: rich chestnut streaked with black lines", + "forehead: pale buff color blending into the crown", + "eyes: black, small, surrounded by faint eye-ring", + "legs: thin, medium length, pale orange or pinkish", + "wings: dark brown with lighter feather edges, white primary tips", + "nape: buff with blackish-brown streaks, flowing into the back", + "tail: dark brown with white outer feather edges, slightly forked", + "throat: pale, soft buff color, unmarked" + ], + "ruddy crake": [ + "back: reddish-brown with darker streaks", + "beak: short and conical, pale yellow", + "belly: greyish-white with faint barring", + "breast: rufous with greyish-white barring", + "crown: dark brown", + "forehead: brownish-red", + "eyes: dark and beady", + "legs: long and yellowish-grey", + "wings: rusty brown with dark primary feathers", + "nape: reddish-brown", + "tail: short and dark brown", + "throat: whitish with faint barring" + ], + "ruddy cuckoo dove": [ + "back: brownish-gray feathers", + "beak: short and stout, dark gray", + "belly: pale gray with light pink hues", + "breast: rosy-pinkish gray", + "crown: smooth, grayish-brown feathers", + "forehead: light gray feathers transitioning to brown", + "eyes: small and black, surrounded by white feathered eye-ring", + "legs: short and light gray with sturdy claws", + "wings: long, brownish-gray with black flight feathers", + "nape: grayish-brown, becoming pinkish-gray towards the front", + "tail: long and tapered, brownish-gray with darker tips", + "throat: pale gray, transitioning to rosy-pink on breast" + ], + "ruddy foliage gleaner": [ + "back: reddish-brown with subtle streaks", + "beak: slender, slightly curved, black", + "belly: pale buff with fine barring", + "breast: warm buff with faint streaks", + "crown: rufous with fine black streaks", + "forehead: similar to the crown, rufous with fine black streaks", + "eyes: large, dark, and prominent", + "legs: strong, grayish", + "wings: reddish-brown, primary feathers with dark bars", + "nape: rufous with fine black streaks", + "tail: long, rufous with black barring", + "throat: whitish-buff, unmarked" + ], + "ruddy ground dove": [ + "back: ruddy brown and uniformly colored", + "beak: short and sharp, pale grayish color", + "belly: pale buff with some grayish tones", + "breast: pinkish-red, blending into gray on the sides", + "crown: pinkish-brown and smooth", + "forehead: pale gray, gradually blending into the crown", + "eyes: dark brown and relatively small", + "legs: reddish pink, thin and long", + "wings: ruddy brown with black spots on coverts", + "nape: pinkish-brown, slightly darker than crown", + "tail: ruddy brown with black and gray outer feathers", + "throat: pale gray, contrasting with breast" + ], + "ruddy kingfisher": [ + "back: vibrant rusty-red plumage", + "beak: long, stout, and red", + "belly: rich ruddy-orange hue", + "breast: deep chestnut-red feathers", + "crown: bold orangish-red crest", + "forehead: striking red-orange coloring", + "eyes: dark, with white eye-ring", + "legs: sturdy, coral-red", + "wings: vibrant ruddy hue, slightly brownish flight feathers", + "nape: bright, reddish-orange", + "tail: long, reddish-brown with slight green sheen", + "throat: slightly paler red with a gentle gradation" + ], + "ruddy pigeon": [ + "back: reddish-brown with streaks of dark grey", + "beak: short, black, and slightly curved", + "belly: pale grey with a pale pink hue", + "breast: reddish-brown with dark spots", + "crown: dark brown with reddish hints", + "forehead: pale greyish-pink", + "eyes: black and round, surrounded by a white eye-ring", + "legs: short, robust, and red", + "wings: long, broad, with dark reddish-brown feathers", + "nape: dark brown, slightly iridescent", + "tail: dark brown and fan-shaped, with lighter edges", + "throat: soft, gradient grey with a pinkish hue" + ], + "ruddy quail dove": [ + "back: rusty brown with subtle patterns", + "beak: short, dark, slightly curved", + "belly: creamy white with a hint of peach", + "breast: rusty reddish-brown fading to white", + "crown: compact, reddish-brown feathers", + "forehead: pale, creamy brown", + "eyes: dark with pale eye-ring", + "legs: slender, reddish-brown", + "wings: brown with blackish spots and buff edges", + "nape: reddish-brown with fine, black streaks", + "tail: long, brownish-grey with white outer feathers", + "throat: white, blending into the breast color" + ], + "ruddy spinetail": [ + "back: reddish-brown with dark streaks", + "beak: short, strong, dark-colored", + "belly: light brown with faint streaks", + "breast: rusty brown, mottled texture", + "crown: rufous-brown, sparse streaks", + "forehead: brown with slight reddish hue", + "eyes: small, dark, alert expression", + "legs: long, slender, dark-colored", + "wings: brownish, darker tips, rounded shape", + "nape: reddish tone, transitioning from crown", + "tail: short, stubby, dark brown with rufous edges", + "throat: light brown, some streaking, contrasts with breast" + ], + "ruddy tody flycatcher": [ + "back: olive-brown coloration", + "beak: short and black, upward curved", + "belly: pale yellow underparts", + "breast: light lemon-yellow chest", + "crown: rufous-red head feathers", + "forehead: bright red-orange", + "eyes: dark, piercing gaze", + "legs: black, slender limbs", + "wings: olive-green with white edgings", + "nape: russet-toned neck plumage", + "tail: dark brown with white accents", + "throat: subtle yellowish hue" + ], + "ruddy treerunner": [ + "back: rusty-brown with subtle streaks", + "beak: sharp, slender, and slightly curved", + "belly: pale whitish-gray", + "breast: warm tawny-brown", + "crown: ruddy-brown with black flecks", + "forehead: smooth ruddy-brown", + "eyes: small, dark, and alert", + "legs: sturdy and grayish-brown", + "wings: ruddy-brown with white wing bars", + "nape: rusty-brown with black streaks", + "tail: moderately long and rufous-colored", + "throat: whitish-gray with delicate streaks" + ], + "ruddy woodcreeper": [ + "back: reddish-brown with fine streaks", + "beak: long, slender, and slightly curved", + "belly: pale buff with faint streaking", + "breast: light cinnamon color with darker streaks", + "crown: rich rufous with fine streaks", + "forehead: rufous with dark streaks", + "eyes: dark brown with pale eyering", + "legs: sturdy, grayish-brown", + "wings: rufous-brown with barring and white tips", + "nape: cinnamon-rufous with faint streaks", + "tail: long, rufous with thin dark bands", + "throat: pale buff, unmarked" + ], + "ruddy breasted crake": [ + "back: brownish-black with faint barring", + "beak: greenish-gray with dark tip", + "belly: white with black streaks", + "breast: ruddy chestnut color", + "crown: dark brown, slightly streaked", + "forehead: pale brownish-gray", + "eyes: reddish-brown with white eye-ring", + "legs: greenish-gray with long toes", + "wings: dark brown with white spots", + "nape: dark brown, streaked with pale markings", + "tail: dark brown, short, and slightly barred", + "throat: white, contrasting with breast" + ], + "ruddy breasted seedeater": [ + "back: brownish-gray with fine streaks", + "beak: short, conical, and silver-gray", + "belly: ruddy-reddish hue", + "breast: ruddy-reddish hue merging into white", + "crown: brownish-gray with streaks", + "forehead: brownish-gray with streaks", + "eyes: dark with thin pale eyering", + "legs: light pink to grayish", + "wings: brownish-gray with pale edges on feathers", + "nape: brown with subtle streaks", + "tail: long, brownish-gray with pale edges", + "throat: whitish with faint streaks" + ], + "ruddy capped nightingale thrush": [ + "back: olive-brown feathers", + "beak: short and straight, yellow-orange", + "belly: white with faint gray streaks", + "breast: grayish-white hue", + "crown: deep ruddy-red coloring", + "forehead: slight ruddy-red tint", + "eyes: dark, beady eyes", + "legs: long and slender, yellow-orange", + "wings: olive-brown with visible bars", + "nape: olive-brown with ruddy-red highlights", + "tail: olive-brown with reddish tips", + "throat: grayish-white and smooth" + ], + "ruddy headed goose": [ + "back: reddish-brown and black feather patterns", + "beak: short, stubby, and light orange", + "belly: white with black speckles", + "breast: pale grayish-buff tones", + "crown: rusty red with a white eye patch", + "forehead: rich ruddy-reddish hue", + "eyes: small, dark, and beady", + "legs: short, robust, and orange", + "wings: brown with dark bars and white tips", + "nape: ruddy red blending into grayish-white", + "tail: black feathers with white edges", + "throat: pale, slightly grayish-white color" + ], + "ruddy tailed flycatcher": [ + "back: reddish-brown with streaks", + "beak: short, black, and hooked", + "belly: pale yellowish-white", + "breast: light brown with faint streaks", + "crown: rusty red with black stripes", + "forehead: smooth and unmarked", + "eyes: dark with conspicuous white eye-ring", + "legs: thin and grayish-black", + "wings: dark brown with white wing-bars", + "nape: reddish-brown with streaks", + "tail: ruddy red with black band near the tip", + "throat: pale yellowish-white" + ], + "rufescent antshrike": [ + "back: brownish-grey upperparts", + "beak: short, sharp and hooked", + "belly: pale grey or white", + "breast: reddish-brown", + "crown: streaked greyish-brown", + "forehead: slightly lighter brown than the crown", + "eyes: black beady eyes", + "legs: strong, greyish-brown", + "wings: barred with brown and white", + "nape: light greyish-brown", + "tail: long, reddish-brown", + "throat: pale grey or white with slight streaks" + ], + "rufescent flycatcher": [ + "back: olive-brown with slightly darker streaks", + "beak: short, hooked, and dark grayish", + "belly: pale and creamy with light rufous wash", + "breast: delicate rufous to cinnamon hue", + "crown: olive-brown with a faint crest", + "forehead: grayish-olive with subtle feathering", + "eyes: round and dark with a white eye-ring", + "legs: slim and grayish-pink", + "wings: olive-brown with two pale wing bars", + "nape: olive-brown, blending into the crown", + "tail: olive-brown with pale edges and a forked appearance", + "throat: pale and creamy, contrasting the breast" + ], + "rufescent imperial pigeon": [ + "back: dark chestnut-brown feathers", + "beak: short, grayish-black robust bill", + "belly: pale grayish-white underparts", + "breast: rich rufous-brown plumage", + "crown: smooth chestnut-brown feathers", + "forehead: slightly paler brown plumage", + "eyes: small, dark brown with pale gray eye-ring", + "legs: sturdy yellow-orange legs and feet", + "wings: dark chestnut-brown with thin gray-white wing-bar", + "nape: rich chestnut-brown merging with crown", + "tail: broad, dark chestnut-brown with gray-white tips", + "throat: pale gray, transitioning to breast color" + ], + "rufescent prinia": [ + "back: olive-brown with faint streaks", + "beak: thin, pointed, and slightly curved", + "belly: whitish with rufous or reddish tinge", + "breast: warm buff or light rufous", + "crown: rufous-brown with distinct pale central stripe", + "forehead: rufous-brown merging with the crown", + "eyes: dark with a faint pale eyering", + "legs: long, slender, and pale pinkish-brown", + "wings: olive-brown with rufous edges on flight feathers", + "nape: rufescent-brown with a pale central streak", + "tail: long, graduated, and rufescent-brown", + "throat: whitish or pale buff" + ], + "rufescent screech owl": [ + "back: reddish-brown with faint black markings", + "beak: sharp, curved, and greyish", + "belly: light, reddish-brown with horizontal dark streaks", + "breast: pale brown with black and reddish markings", + "crown: reddish-brown with fine black streaks", + "forehead: tawny with black speckles", + "eyes: large, round, and yellow", + "legs: feathered with pale brown and dark bars", + "wings: reddish-brown with black barring and white spots", + "nape: reddish-brown with fine black streaks", + "tail: broad, reddish-brown with blackish bands", + "throat: pale with fine, dark streaks" + ], + "rufescent tiger heron": [ + "back: reddish-brown with black streaks", + "beak: long, straight, and yellowish-green", + "belly: whitish with rufous-colored barring", + "breast: white with wide rufous-brown streaks", + "crown: dark gray contrasted with pale rufous", + "forehead: pale rufous coloration", + "eyes: bright yellow with a dark pupil", + "legs: long and yellowish-green", + "wings: rufous with black streaks, and white upper-wing patches", + "nape: pale rufous color", + "tail: boldly barred with black and rufous", + "throat: white with rufous streaks" + ], + "rufescent white eye": [ + "back: reddish-brown feathers", + "beak: small, thin, black", + "belly: pale grey-white", + "breast: light reddish-brown", + "crown: reddish-brown with white ring", + "forehead: bright white patch", + "eyes: white eye-ring, black pupils", + "legs: slender, light brown", + "wings: reddish-brown with white-tipped feathers", + "nape: reddish-brown with light streaks", + "tail: long, reddish-brown with white edges", + "throat: pale grey-white" + ], + "rufous babbler": [ + "back: brownish-orange feathers", + "beak: slightly curved, dark grey", + "belly: buffy-cream and pale orange plumage", + "breast: rufous-brown with subtle streaks", + "crown: rich rufous-orange color", + "forehead: slightly paler rufous-orange", + "eyes: dark, beady with faint eyestripe", + "legs: long, greyish-brown", + "wings: warm brown with rufous-edged feathers", + "nape: rufous-brown plumage", + "tail: long, dark brown with rufous tips", + "throat: pale, buffy-cream with brown streaks" + ], + "rufous bristlebird": [ + "back: brownish-olive feathers", + "beak: long, slender, and curved", + "belly: pale brown with subtle markings", + "breast: light rufous color with dark streaks", + "crown: slightly darker brown than back", + "forehead: paler brown with lighter streaks", + "eyes: dark and moderately large", + "legs: long, pale pinkish-grey", + "wings: brownish-olive with darker edges", + "nape: same color as back, brownish-olive", + "tail: long with broad, brown feathers", + "throat: pale rufous with fine, dark streaks" + ], + "rufous cacholote": [ + "back: reddish-brown feathers", + "beak: short and stout", + "belly: pale tawny color", + "breast: cinnamon-colored plumage", + "crown: distinctive rufous crest", + "forehead: rusty-orange feathers", + "eyes: black with white eye-ring", + "legs: slender and grayish", + "wings: reddish-brown with slight barring", + "nape: warm rufous hue", + "tail: long and dark brown", + "throat: pale tawny with streaks" + ], + "rufous casiornis": [ + "back: reddish-brown feathers", + "beak: short, stout, black", + "belly: pale brownish-grey", + "breast: light rufous color", + "crown: reddish-brown with a slight crest", + "forehead: greyish-brown", + "eyes: dark, medium-sized, surrounded by grey feathers", + "legs: long, slender, reddish-brown", + "wings: reddish-brown with faint patterns", + "nape: rufous brown with lighter streaks", + "tail: long, reddish-brown with dark bands", + "throat: pale grey with faint streaks" + ], + "rufous chatterer": [ + "back: reddish-brown feathers covering dorsal side", + "beak: short, slightly curved, blackish-gray", + "belly: off-white to pale-gray with slight brown speckling", + "breast: orange-brown with soft feather texture", + "crown: reddish-brown with darker streaks", + "forehead: smooth, reddish-brown feathers", + "eyes: dark, round, and alert with white eye-ring", + "legs: blackish with strong, scaly texture", + "wings: reddish-brown feathers with blackish tips", + "nape: reddish-brown with slight streaking", + "tail: fan-shaped, reddish-brown feathers with blackish banding", + "throat: pale grayish-white with fine brown streaking" + ], + "rufous cisticola": [ + "back: reddish-brown with streaks", + "beak: small, thin, and dark-colored", + "belly: creamy-white to pale buff", + "breast: light brown or beige with spotting", + "crown: rufous-orange and streaked", + "forehead: light reddish-brown", + "eyes: dark, small, contrast against plumage", + "legs: slender, grayish-pink hue", + "wings: brown with rufous edges", + "nape: rufous-brown with streaks", + "tail: short, broad, with reddish-brown tips", + "throat: pale buff or white with light streaks" + ], + "rufous coucal": [ + "back: reddish-brown with dark streaks", + "beak: strong, slightly curved, blackish", + "belly: buffy-white with subtle markings", + "breast: reddish-brown with dark streaks", + "crown: dark brown with rufous edges", + "forehead: pale brown, slightly streaked", + "eyes: dark brown, encircled with pale feathering", + "legs: long, slender, grayish", + "wings: rufous brown with darker flight feathers", + "nape: reddish-brown with dark streaks", + "tail: long, rufous brown with dark central feathers", + "throat: buffy-white, faintly streaked" + ], + "rufous crab hawk": [ + "back: reddish-brown feathers with dark streaks", + "beak: strong, hooked, black tip", + "belly: light buff with dark spots", + "breast: white with reddish-brown streaks", + "crown: reddish-brown with lighter streaks", + "forehead: pale reddish-brown", + "eyes: large, dark brown, sharp gaze", + "legs: yellow, long, powerful", + "wings: long, reddish-brown with black and white bands", + "nape: pale buff with reddish-brown streaks", + "tail: broad, white with dark bands", + "throat: white, well-defined" + ], + "rufous fantail": [ + "back: reddish-brown feathers", + "beak: small, thin, and pointed", + "belly: pale cream, graduating to a rusty color", + "breast: orange-rufous plumage", + "crown: rich rufous, almost cinnamon color", + "forehead: marked with distinct white eyebrows", + "eyes: round, dark, and expressive", + "legs: slender, bluish-gray, and slightly elongated", + "wings: dark brown with broad rufous edges", + "nape: strong rufous, blending with the back", + "tail: broad, long, and fan-shaped with black and white tips", + "throat: pale white with a hint of rufous" + ], + "rufous fieldwren": [ + "back: streaked brown feathers", + "beak: short, sharp, and black", + "belly: warm brown and rufous hue", + "breast: rufous-colored with fine brown streaks", + "crown: reddish-brown with faint streaks", + "forehead: rufous and streaked with black", + "eyes: round and dark with white eye-ring", + "legs: strong, slender, and gray", + "wings: brown with rufous edging", + "nape: reddish-brown with faint streaks", + "tail: long and brown with rufous outer feathers", + "throat: pale white with fine brown streaks" + ], + "rufous fishing owl": [ + "back: warm brown with black bars", + "beak: dark gray and strong", + "belly: off-white with reddish-brown streaks", + "breast: light rufous with black bars", + "crown: dark brown and slightly rounded", + "forehead: reddish-brown with black markings", + "eyes: large and dark brown", + "legs: powerful and feathered", + "wings: broad with rounded tips, brown and barred", + "nape: rufous-brown with black bars", + "tail: brown with black bands and rufous tip", + "throat: whitish with fine rufous streaks" + ], + "rufous flycatcher thrush": [ + "back: reddish-brown feathers covering the upper part", + "beak: short, curved, and strong for catching insects", + "belly: pale buffy-white, blending smoothly with breast coloration", + "breast: vibrant reddish-orange, setting it apart from surroundings", + "crown: dark brown streaks, giving a slightly plumed appearance", + "forehead: warm reddish-brown, matching the back color", + "eyes: dark and alert, surrounded by lighter rings of feathers", + "legs: thin and delicate, yet strong for perching and hopping", + "wings: reddish-brown with white wing bars, allowing agile flight", + "nape: continuation of the reddish-brown back feathers", + "tail: relatively long with white outer tail feathers and reddish-brown central feathers", + "throat: light buffy-white, creating contrast with the bold breast color" + ], + "rufous gnateater": [ + "back: rusty-brown with dark streaks", + "beak: short, straight, and black", + "belly: pale grayish-white", + "breast: cinnamon-rufous with dark spots", + "crown: rufous-brown with faint streaks", + "forehead: rufous with fine dark streaks", + "eyes: large, dark brown, encircled by a pale gray eye-ring", + "legs: long, slender, grayish-brown", + "wings: rufous brown with dark streaks and conspicuous white wingbar", + "nape: rufous-brown with faint dark streaks", + "tail: long, broad, rufous with dark barring on the outer feathers", + "throat: pale grayish-white with fine dark streaks" + ], + "rufous grasswren": [ + "back: reddish-brown with fine streaks", + "beak: short and pointed", + "belly: creamy white with brown streaks", + "breast: light brown with fine streaking", + "crown: reddish-brown with fine streaks", + "forehead: pale with fine streaks", + "eyes: small and dark", + "legs: slender and grayish-brown", + "wings: reddish-brown with dark bars", + "nape: reddish-brown with fine streaks", + "tail: long and brown with faint barring", + "throat: creamy white with light streaks" + ], + "rufous hornbill": [ + "back: reddish-brown feathers", + "beak: large, curved, and yellowish-white", + "belly: dark colored with fine white streaks", + "breast: black and white banding", + "crown: black feathers with a hint of green sheen", + "forehead: adorned with a large, yellow casque", + "eyes: dark and surrounded by bare, blue skin", + "legs: sturdy and dark gray", + "wings: black with a white stripe and reddish-brown coverts", + "nape: transitioning from black to reddish-brown feathers", + "tail: long, black feathers with white tips", + "throat: black feathers with blue skin at base" + ], + "rufous hornero": [ + "back: reddish-brown upper back feathers", + "beak: short, slightly curved, and pale colored", + "belly: light brownish-grey underparts", + "breast: warm brownish-grey chest feathers", + "crown: rufous-colored head feathers", + "forehead: smooth, brownish-grey feathers", + "eyes: dark beady eyes with faint white circles", + "legs: long, delicate, and greyish in color", + "wings: reddish-brown with black markings", + "nape: brown feathers transitioning to reddish-brown", + "tail: square, reddish-brown with darker banding", + "throat: lighter greyish-brown throat feathers" + ], + "rufous limestone babbler": [ + "back: reddish-brown feathers", + "beak: short, sturdy, and slightly hooked", + "belly: pale buff with light streaks", + "breast: warm rufous coloration", + "crown: dark rufous with fine streaks", + "forehead: pale rufous with streaks", + "eyes: dark and beady with white eye-ring", + "legs: long and slender, grayish-brown", + "wings: rufous with black flight feathers and light barring", + "nape: dark rufous, finely streaked", + "tail: long and slim, rufous-brown with black bars", + "throat: pale buff with dark streaking" + ], + "rufous motmot": [ + "back: olive green and brown shades", + "beak: long, straight, and black", + "belly: rufous orange fading to yellow", + "breast: bright blue with dark green streaks", + "crown: turquoise with black cap", + "forehead: deep green fading to turquoise", + "eyes: dark with a white ring around", + "legs: short and gray", + "wings: green and blue with black bars", + "nape: olive-green merging with the crown", + "tail: long with rufous, blue, and turquoise tipped feathers; racket-shaped", + "throat: bright blue with dark green streaks" + ], + "rufous mourner": [ + "back: reddish-brown with subtle streaks", + "beak: dark, medium-sized, slightly curved", + "belly: pale, buff-colored with faint markings", + "breast: light rufous with streaks and spots", + "crown: dull reddish-brown with lightly streaked pattern", + "forehead: slightly paler rufous-brown", + "eyes: dark with inconspicuous eye-ring", + "legs: dark, slender, and fairly short", + "wings: rufous-brown with faint barring on flight feathers", + "nape: reddish-brown, blending with crown and back", + "tail: long, rufous-brown with indistinct bars", + "throat: pale buff with delicate streaks" + ], + "rufous nightjar": [ + "back: rusty brown with intricate patterns", + "beak: short, black, and hooked", + "belly: pale with brown bars", + "breast: rusty brown fading to white, mottled appearance", + "crown: slightly-raised, brown with fine patterns", + "forehead: pale brown with subtle markings", + "eyes: large, black, and round", + "legs: long, grayish with well-defined joints", + "wings: elongated and pointed, brown with intricate patterns", + "nape: brown with fine patterns, connecting crown and back", + "tail: fan-shaped, brown with white and black bands", + "throat: white with faint brownish spots" + ], + "rufous owl": [ + "back: reddish-brown feathers with black edges", + "beak: sharp, curved, black hooked bill", + "belly: pale cream with brown spotting", + "breast: chestnut-brown with white streaks", + "crown: deep chestnut with black streaking", + "forehead: reddish with black markings", + "eyes: piercing yellow eyes with black pupils", + "legs: strong, yellow legs with sharp talons", + "wings: reddish-brown with black bars and white spots", + "nape: brownish-red with black streaks", + "tail: long, reddish-brown with black bands", + "throat: light cream with small brown spots" + ], + "rufous paradise flycatcher": [ + "back: rich rufous color with smooth feathers", + "beak: short and sharp, black color", + "belly: creamy white with light rufous streaks", + "breast: white blending into rufous towards the back", + "crown: rufous with a slight crest", + "forehead: white transitioning into rufous color", + "eyes: dark brown, alert and bright", + "legs: thin and dark with strong feet for perching", + "wings: rufous with intricate black patterns", + "nape: rufous with fine white streaks", + "tail: elongated, rufous with white tips and black banding", + "throat: white with fine rufous streaks" + ], + "rufous piculet": [ + "back: reddish-brown feathers with fine streaks", + "beak: small, stout, and sharp", + "belly: creamy white with brown streaks", + "breast: pale brown with white mottling", + "crown: rufous-brown with white speckles", + "forehead: reddish-brown with faint streaks", + "eyes: dark with prominent white eyering", + "legs: short with grayish-blue hue", + "wings: rufous and brown, barred with white spots", + "nape: rufous-brown with white streaks", + "tail: short, brown with black and white bands", + "throat: creamy-white with fine streaking" + ], + "rufous piha": [ + "back: reddish-brown feathers", + "beak: short, slightly curved, pale yellow", + "belly: light cinnamon-colored", + "breast: rich reddish-brown", + "crown: slightly darker reddish-brown feathers", + "forehead: smooth, reddish-brown", + "eyes: small, dark brown", + "legs: strong, pale yellow", + "wings: reddish-brown with some lighter markings", + "nape: reddish-brown, blending into the crown", + "tail: long, reddish-brown with lighter tips", + "throat: lighter cinnamon-colored" + ], + "rufous potoo": [ + "back: light brown with black spots", + "beak: black, short, and slightly hooked", + "belly: pale beige with dark streaks", + "breast: light brown with black spots", + "crown: reddish-brown with dark fine streaks", + "forehead: pale beige with fine streaks", + "eyes: large and dark brown", + "legs: gray-brown with long toes", + "wings: mottled brown with black and white markings", + "nape: light brown with dark streaks", + "tail: brown with black and white bands", + "throat: pale beige with fine dark streaks" + ], + "rufous sabrewing": [ + "back: rich green, iridescent feathers", + "beak: long, slender, downward curved", + "belly: light golden brown", + "breast: vibrant rufous hue", + "crown: shiny green, medium shape", + "forehead: brilliant metallic green", + "eyes: small, dark, alert expression", + "legs: short, powerful, dark grey", + "wings: elongated, curved, narrow feathers", + "nape: iridescent green accent", + "tail: long, broad, rufous-colored feathers", + "throat: white, contrast with rufous breast" + ], + "rufous scrub bird": [ + "back: brownish-red with fine dark streaks", + "beak: short and stout, with a slightly curved upper beak", + "belly: creamy-white, fading to a paler color towards the vent", + "breast: solid rufous color with fine, dark streaks", + "crown: dark rufous-brown with fine, black streaks", + "forehead: dark rufous-brown, blending into the crown", + "eyes: dark brown, surrounded by a faint pale eye-ring", + "legs: long and slender, with pale-colored scales", + "wings: brownish-red with darker edges, blending into the back", + "nape: rufous-brown, transitioning smoothly into the crown", + "tail: long and narrow, with a dark brown central feather and rufous outer feathers", + "throat: whitish, blending into the creamy-white of the belly" + ], + "rufous shrikethrush": [ + "back: rusty brown feathers", + "beak: strong, hooked, grayish-black", + "belly: creamy white with dense rufous flecks", + "breast: rufous-orange with defined scalloping", + "crown: warm brown with faint streaks", + "forehead: slightly paler brown, blending into crown", + "eyes: dark beady, surrounded by a faint white-ring", + "legs: strong, medium-length, grayish-brown", + "wings: rufous-brown with distinct white bars", + "nape: warm reddish-brown, connecting to the crown", + "tail: long, rufous-brown with subtle white edging", + "throat: creamy white with light rufous streaks" + ], + "rufous sibia": [ + "back: rusty-brown and slightly streaked", + "beak: stout, decurved, pale yellow", + "belly: white with grey sides", + "breast: white with reddish-brown streaks", + "crown: black with a white forehead band", + "forehead: bold white stripe", + "eyes: round with dark brown iris", + "legs: sturdy, feathered, pale pink", + "wings: dark, rufous with white markings", + "nape: rusty red with white stripe", + "tail: long, rounded, rufous with black subterminal band", + "throat: white with rufous-tinted sides" + ], + "rufous songlark": [ + "back: light brown with pale streaks", + "beak: thin, sharp, dark gray", + "belly: creamy white with faint brown markings", + "breast: light buff-brown with darker streaks", + "crown: reddish-brown with pale streaks", + "forehead: pale brown tinged with rufous", + "eyes: dark brown with pale eye-ring", + "legs: long, slender, pale brown", + "wings: brown with rufous edges on feathers", + "nape: light brown with rufous streaks", + "tail: brown with paler outer edges and white tips", + "throat: creamy white with faint brown streaks" + ], + "rufous spinetail": [ + "back: reddish-brown with streaks", + "beak: short and stout, dark-colored", + "belly: pale brown or cream", + "breast: rufous, with dusky streaks", + "crown: dark brown or blacks with rufous edgings", + "forehead: reddish-brown", + "eyes: dark, with pale eye-ring", + "legs: strong and grayish", + "wings: rufous-brown with dark notches", + "nape: reddish-brown with streaks", + "tail: short and rufous", + "throat: gray or buff, with streaks" + ], + "rufous treecreeper": [ + "back: reddish-brown with light streaks", + "beak: short, slight curve, dark grey", + "belly: white with grey-brown streaks", + "breast: light grey with faint streaks", + "crown: reddish-brown, slightly streaked", + "forehead: creamy white, blending into crown", + "eyes: small, dark brown with white eye-ring", + "legs: long, slender, pale grey", + "wings: reddish-brown with distinct white spots", + "nape: reddish-brown, slightly streaked", + "tail: long, reddish-brown, white-tipped feathers", + "throat: creamy white with faint grey streaks" + ], + "rufous treepie": [ + "back: rusty-brown with black streaks", + "beak: strong, black, slightly curved", + "belly: whitish-grey with faint brown markings", + "breast: light greyish-white", + "crown: silky black with a slight crest", + "forehead: black and smooth", + "eyes: dark brown with thin black eyeline", + "legs: long and black", + "wings: rufous brown with black tips", + "nape: black with slight hood-like appearance", + "tail: long, graduated, and rufous brown with black stripes", + "throat: whitish-grey with light brown streaks" + ], + "rufous twistwing": [ + "back: reddish-brown plumage", + "beak: short and hooked", + "belly: pale, with faint streaks", + "breast: rufous-colored, blending into gray", + "crown: rufous with gray streaks", + "forehead: rufous, slightly raised feathers", + "eyes: dark, contrasting with pale eye-ring", + "legs: pale, slender", + "wings: short, rufous with twisted feather", + "nape: grayish-brown, blending into back", + "tail: square-ended, rufous", + "throat: pale gray, with faint streaks" + ], + "rufous vanga": [ + "back: reddish-brown feathers", + "beak: stout and hooked, black", + "belly: white", + "breast: bright rufous feathers", + "crown: reddish-brown", + "forehead: reddish-brown", + "eyes: white eye-ring, dark iris", + "legs: blue-gray", + "wings: reddish-brown with black tips", + "nape: reddish-brown", + "tail: long and black-tipped", + "throat: white" + ], + "rufous whistler": [ + "back: olive-brown feathers with slight streaks", + "beak: short, pointed, and grey", + "belly: off-white with scaled appearance", + "breast: rich rufous-colored feathers", + "crown: dark brown with slight crest", + "forehead: grey-brown plumage", + "eyes: small, black, and round", + "legs: slender and grey", + "wings: olive-brown with faint barring", + "nape: brownish-grey with some streaks", + "tail: long and dark, with white tips", + "throat: greyish-white, sometimes with faint streaks" + ], + "rufous woodpecker": [ + "back: olive-brown with dark barring", + "beak: stout and pointed", + "belly: creamy-white with dark streaks", + "breast: dark spotted and streaked", + "crown: rufous-red with lighter edges", + "forehead: olive-grey with dark streaks", + "eyes: dark with a pale eye-ring", + "legs: grey and sturdy", + "wings: dark bars with rufous patches", + "nape: olive-grey with dark streaks", + "tail: banded, rufous and black", + "throat: creamy-white with dark streaks" + ], + "rufous wren": [ + "back: reddish-brown with faint streaks", + "beak: long, slender, and slightly curved", + "belly: creamy-white with light barring", + "breast: cinnamon-buff with darker spotting", + "crown: rich rufous with a subtle crest", + "forehead: rufous blending into the crown", + "eyes: dark brown with a faint pale eyering", + "legs: sturdy and pinkish-brown", + "wings: rufous with dark bars and white spots", + "nape: reddish-brown like the back", + "tail: long and rufous with dark bars", + "throat: creamy-white, unmarked" + ], + "rufous and white wren": [ + "back: reddish-brown with subtle black markings", + "beak: slim and slightly curved, dark-colored", + "belly: white with faint brown spots", + "breast: white with light speckling", + "crown: reddish-brown with traces of black", + "forehead: pale shade of reddish-brown", + "eyes: black with a white eye-ring", + "legs: slender legs and feet, dark-colored", + "wings: reddish-brown, barred with black", + "nape: reddish-brown, blending with the crown", + "tail: reddish-brown with black bars, medium-length", + "throat: white, transitioning into the breast" + ], + "rufous backed antvireo": [ + "back: reddish-brown feathers with streaks", + "beak: short, curved, and dark", + "belly: light gray with white streaks", + "breast: grayish-white plumage", + "crown: rufous-colored with dark streaks", + "forehead: brownish-red feathers", + "eyes: small, black, and rounded", + "legs: short, sturdy, and grayish", + "wings: rufous-brown with dark barring", + "nape: reddish-brown plumage", + "tail: rufous-brown with distinct bands", + "throat: light gray, almost white" + ], + "rufous backed bunting": [ + "back: rich rufous color, streaked with black", + "beak: short and conical, yellowish-gray", + "belly: pale yellow, unmarked", + "breast: bright yellow with faint streaks", + "crown: rufous with a distinct pale stripe", + "forehead: rufous, unmarked", + "eyes: dark brown with pale eye-ring", + "legs: slender, grayish-yellow", + "wings: rufous with black and white markings", + "nape: rufous, unmarked", + "tail: black with white outer feathers", + "throat: bright yellow, unmarked" + ], + "rufous backed dwarf kingfisher": [ + "back: vibrant rufous-brown coloration", + "beak: long, dark, and narrow", + "belly: soft cream-colored", + "breast: white with faint speckles", + "crown: rufous with slight orange tint", + "forehead: bright orange hue", + "eyes: dark and circular with a thin white ring", + "legs: short, dark, and sturdy", + "wings: rufous-brown with blue spots", + "nape: brilliant blue band", + "tail: short, rufous with blue edging", + "throat: white with a faint blue tint" + ], + "rufous backed fantail": [ + "back: rich rufous coloring with black streaks", + "beak: thin, sharp, and slightly curved", + "belly: pale and white, with brownish flanks", + "breast: white with black streaks", + "crown: rufous brown with black streaks", + "forehead: black with a white band above the beak", + "eyes: dark brown, with white eyering", + "legs: thin and black, with sharp claws", + "wings: predominantly rufous with black and white markings", + "nape: rufous brown, blending with the back", + "tail: long and fan-shaped, with rufous, black, and white patterns", + "throat: white with black streaks on the sides" + ], + "rufous backed honeyeater": [ + "back: reddish-brown feathers", + "beak: slender, curved, black", + "belly: light grayish-white", + "breast: grayish-white with brown speckles", + "crown: dark brown with streaks", + "forehead: dark brown, slightly streaked", + "eyes: black with white eye-ring", + "legs: strong, gray", + "wings: reddish-brown with dark flight feathers", + "nape: dark brown, streaked", + "tail: long, reddish-brown with dark banding", + "throat: grayish-white, streaked" + ], + "rufous backed inca finch": [ + "back: rich, reddish-brown feathering", + "beak: short, stout, and conical", + "belly: pale cinnamon to whitish hue", + "breast: warm, rufous-orange shading", + "crown: deep, reddish-brown plumage", + "forehead: slightly paler, rufous-brown feathers", + "eyes: small, black, and beady", + "legs: thin and grayish-brown", + "wings: warm brown, with rufous edging on flight feathers", + "nape: reddish-brown, blending into the back", + "tail: long, with rufous-brown central feathers and black outer feathers", + "throat: bright white, contrasting with the breast" + ], + "rufous backed redstart": [ + "back: reddish-brown with a slight shine", + "beak: black, slim, and sharp", + "belly: white to pale orange", + "breast: bright orange fading to white", + "crown: black with a touch of blue", + "forehead: red-brown hue", + "eyes: small, black, and alert", + "legs: black and thin", + "wings: reddish-brown with darker markings", + "nape: striking red-orange color", + "tail: long with black and white banding", + "throat: white with a hint of orange" + ], + "rufous backed robin": [ + "back: reddish-brown plumage", + "beak: thin, curved, black", + "belly: white with faint streaks", + "breast: orange-red colored", + "crown: dark gray with reddish-brown", + "forehead: gray shading to brown", + "eyes: black with white eye-ring", + "legs: sturdy, grayish-brown", + "wings: reddish-brown with white bars", + "nape: reddish-brown shading to gray", + "tail: reddish-brown with white edges", + "throat: white with faint streaks" + ], + "rufous backed sibia": [ + "back: rich chestnut brown", + "beak: short, curved, black", + "belly: white with grey streaks", + "breast: deep grey fading to white", + "crown: chestnut brown merging into black", + "forehead: black extending above eyes", + "eyes: deep brown with white eye-ring", + "legs: sturdy, greyish-brown", + "wings: chestnut with white and black patterns", + "nape: chestnut brown", + "tail: long, ebony with white feathers on edges", + "throat: white, intersected by a black band" + ], + "rufous backed stipplethroat": [ + "back: reddish-brown streaked feathers", + "beak: short, slightly curved black bill", + "belly: white with black speckles", + "breast: grayish-brown with fine streaks", + "crown: chestnut-red with black streaks", + "forehead: grayish-brown with black streaks", + "eyes: small, dark beady eyes", + "legs: twig-like, grayish-brown legs", + "wings: rufous-colored with dark bars", + "nape: chestnut-red with black streaks", + "tail: short, black-tipped rufous feathers", + "throat: white with dark stippling" + ], + "rufous backed treehunter": [ + "back: rufous-brown to chestnut hue", + "beak: strong, slightly curved, sharp", + "belly: whitish with brownish or buff streaks", + "breast: pale, streaked with rusty-brown color", + "crown: rufous-brown with a scaled appearance", + "forehead: off-white to buff, sometimes streaked with brown", + "eyes: dark, alert, with a pale to buffy-white eyering", + "legs: strong, greyish-brown or pale pinkish color", + "wings: brown to rufous, with some barring or streaks", + "nape: rufous-brown, sometimes streaked or marked with white", + "tail: long, rufous-brown with darker bars or patterns", + "throat: whitish with fine brown or rufous streaks" + ], + "rufous banded honeyeater": [ + "back: olive-brown feathers with faint golden streaks", + "beak: slender, slightly curved black beak", + "belly: white feathers with brownish-red streaks", + "breast: reddish-brown band with golden streaks", + "crown: grayish-green with golden highlights", + "forehead: olive-green feathers", + "eyes: dark brown with a light eye-ring", + "legs: sturdy grayish-brown legs", + "wings: olive-green with gold-tinted flight feathers", + "nape: golden-green feathers blending into the crown", + "tail: olive-green with golden streaks at tips", + "throat: white feathers with brownish-red highlights" + ], + "rufous banded miner": [ + "back: rusty brown with narrow white streaks", + "beak: long and slightly curved, dark-colored", + "belly: pale brown with blurred white markings", + "breast: light brown mixed with rufous undertones", + "crown: dark brown with white speckles", + "forehead: streaked with white and brown bands", + "eyes: dark, beady and surrounded by a faint white eyering", + "legs: slim, reddish-brown with sharp claws", + "wings: brownish-black with distinctive white bands", + "nape: rusty brown with faint white streaks", + "tail: long and brown with white banding on outer feathers", + "throat: pale buff with a hint of rufous coloring" + ], + "rufous banded owl": [ + "back: reddish-brown with dark streaks", + "beak: short, sharp, and dark gray", + "belly: pale, buff-colored with dark bars", + "breast: reddish-brown with dark streaks and bars", + "crown: dark speckled with reddish-brown spots", + "forehead: reddish-brown with fine black streaks", + "eyes: large, dark brown, surrounded by white feathers", + "legs: feathered and buff-colored with dark barring", + "wings: reddish-brown with dark bars and broad white band", + "nape: dark with reddish-brown streaks", + "tail: long with reddish-brown and dark bands", + "throat: pale, buff-colored with fine dark streaks" + ], + "rufous bellied antwren": [ + "back: dark brown and streaked", + "beak: thin, sharp, and black", + "belly: reddish-orange hue", + "breast: grayish with some streaking", + "crown: dark brown with streaks", + "forehead: pale grayish-brown", + "eyes: dark, surrounded by pale eyering", + "legs: long, slender, and grayish", + "wings: brown with faint white markings", + "nape: brown with slight streaking", + "tail: long, brown, and barred", + "throat: pale gray with streaks" + ], + "rufous bellied bush tyrant": [ + "back: brownish-grey feathers", + "beak: short, straight, and black", + "belly: bright orange-red hue", + "breast: grayish-white plumage", + "crown: slate gray with streaks", + "forehead: pale gray appearance", + "eyes: black and beady", + "legs: slender and black", + "wings: brownish-gray with barring", + "nape: slate gray streaked highlights", + "tail: long and dark-brown", + "throat: light gray with a hint of rufous" + ], + "rufous bellied chachalaca": [ + "back: dark brown feathers with lighter streaks", + "beak: stout and curved, grayish-black", + "belly: rufous or reddish-brown", + "breast: pale gray with dark brown streaks", + "crown: dark brown with a slight crest", + "forehead: lighter brown than crown, with faint streaks", + "eyes: dark with a reddish-orange eye-ring", + "legs: long and strong, grayish in color", + "wings: dark brown with rufous-edged feathers", + "nape: dark brown with lighter streaks, connecting to crown", + "tail: long and dark brown, with rufous tips", + "throat: pale gray with fine dark streaks" + ], + "rufous bellied eagle": [ + "back: brownish-grey feathers", + "beak: strong, curved black beak", + "belly: rufous-orange feathers", + "breast: streaked grey and white", + "crown: dark brown head feathers", + "forehead: lighter brown feathers", + "eyes: sharp, yellow-orange gaze", + "legs: feathered, yellow talons", + "wings: broad, powerful wingspan", + "nape: darker brown feathers", + "tail: broad, banded brown tail feathers", + "throat: pale, streaked feathers" + ], + "rufous bellied euphonia": [ + "back: olive-green with tinges of blue", + "beak: strong and conical, black or dark gray", + "belly: deep rufous or reddish-orange", + "breast: yellowish-green, blending into the rufous belly", + "crown: bright blue or turquoise, extending to the upper back", + "forehead: yellow, merging with the blue crown", + "eyes: dark, surrounded by a narrow black eye-ring", + "legs: short and sturdy, gray or black", + "wings: olive-green, with hints of blue and yellow edges", + "nape: olive-green, transitioning to blue at the crown", + "tail: olive-green with blue sheen, slightly forked", + "throat: bright yellow, complementing the forehead" + ], + "rufous bellied helmetshrike": [ + "back: sleek, reddish-brown feathers", + "beak: short, hooked, black", + "belly: warm, rufous-colored plumage", + "breast: rich, grayish-chestnut feathers", + "crown: dark gray with a slightly raised crest", + "forehead: smooth, blending into crown", + "eyes: dark, round, and alert", + "legs: slaty-black and sturdy", + "wings: rufous-brown with dark gray primary feathers", + "nape: continuous with the crown, gray crest", + "tail: long, blackish with rufous outer feathers", + "throat: pale gray, contrasting with breast" + ], + "rufous bellied heron": [ + "back: dark grey plumage with brownish tinge", + "beak: long and sharp with a bright yellow hue", + "belly: reddish-brown with white streaks", + "breast: white plumage with sparse reddish-brown spots", + "crown: black feathers with a slight iridescent sheen", + "forehead: white feathers fading into the dark crown", + "eyes: prominent with a yellow ring and dark pupil", + "legs: long and yellow-green with webbed feet", + "wings: grey-brown with white patches and black tips", + "nape: black feathers curving down towards the back", + "tail: short and grey with white striping", + "throat: white with faint brown streaks" + ], + "rufous bellied kookaburra": [ + "back: dark brown with rusty-red highlights", + "beak: large, black, and slightly curved", + "belly: bright rufous-orange hue", + "breast: white with brown streaks", + "crown: dark-brown with rufous speckles", + "forehead: rufous color fading to white", + "eyes: dark, bead-like, set in white-oval shaped patch", + "legs: short and sturdy, gray-blue color", + "wings: strong, brown with some rufous markings", + "nape: dark brown", + "tail: long, brown, with rufous edges", + "throat: white, blending into rufous breast" + ], + "rufous bellied mountain tanager": [ + "back: dark blue feathers with a slight iridescence", + "beak: short, dark gray, conical-shaped", + "belly: rich rufous-orange color", + "breast: bright yellowish-green feathers", + "crown: deep blue feathers with a hint of purple", + "forehead: bright turquoise-blue feathers", + "eyes: medium-sized, dark with a faint white eye-ring", + "legs: grayish-black, strong and sturdy", + "wings: dark blue with greenish-yellow edges", + "nape: vibrant blue-violet plumage", + "tail: long, dark blue feathers with greenish-yellow tips", + "throat: bright yellowish-green feathers" + ], + "rufous bellied nighthawk": [ + "back: dark brown feathers with subtle streaks", + "beak: short and slightly curved, black", + "belly: reddish-brown with faint markings", + "breast: pale brown with dark speckling", + "crown: dark brown with a rufous patch", + "forehead: light brownish-grey", + "eyes: large, dark, and round", + "legs: short and feathered, with black talons", + "wings: long, pointed, with bars and spots", + "nape: dark brown with light feather edges", + "tail: blackish-brown, with white band and rufous tip", + "throat: light brown with speckling" + ], + "rufous bellied niltava": [ + "back: rich blue feathers", + "beak: short black beak", + "belly: bright rufous-orange color", + "breast: vibrant blue shades", + "crown: deep bluish-purple hue", + "forehead: intense blue feathers", + "eyes: piercing dark eyes", + "legs: dark, slender limbs", + "wings: blue with black flight feathers", + "nape: striking blue-glossed plumage", + "tail: blue with black feather tips", + "throat: deep blue markings" + ], + "rufous bellied seedsnipe": [ + "back: reddish-brown with black speckles", + "beak: short, straight, and gray", + "belly: rufous hue with brown streaks", + "breast: buff-colored with brown spots", + "crown: reddish-brown with faint streaks", + "forehead: pale buff blending to brown", + "eyes: small, dark, and almond-shaped", + "legs: short, feathered, and gray", + "wings: rounded, mostly brown with speckles", + "nape: reddish-brown with faint streaks", + "tail: short, brown with faint bars", + "throat: buff-colored with fine streaks" + ], + "rufous bellied swallow": [ + "back: rusty brown with iridescent greenish-blue sheen", + "beak: short and pointed, black in color", + "belly: bright rufous-orange hue", + "breast: pale blueish-gray, transitioning from belly color", + "crown: glossy greenish-blue with hints of brown", + "forehead: glossy greenish-blue, same as the crown", + "eyes: small and black, blending with surrounding feathers", + "legs: short and thin, with dark gray or black coloration", + "wings: lengthy, with a mixture of greenish-blue and brown feathers", + "nape: greenish-blue hue, transitioning into the brownish back color", + "tail: dark blueish-green with elongated, slightly forked feathers", + "throat: pale blueish-gray, matching the breast color" + ], + "rufous bellied thrush": [ + "back: rusty reddish-brown with darker streaks", + "beak: curved, medium length, yellowish-brown", + "belly: deep rufous-orange", + "breast: lightly streaked with whitish-gray", + "crown: grayish-brown with faint streaks", + "forehead: smooth, grayish-brown", + "eyes: dark brown with a thin, pale eye-ring", + "legs: pale yellowish-gray", + "wings: slightly darker brown with reddish edges", + "nape: transitional grayish-brown with faint streaks", + "tail: rufous-brown with darker central feathers", + "throat: whitish-gray with faint brown streaks" + ], + "rufous bellied tit": [ + "back: rusty brown feathers", + "beak: short, sharp, black", + "belly: vibrant reddish-orange", + "breast: reddish-orange, fading into white", + "crown: head adorned with silverygrey feathers", + "forehead: greyish-silver feathers", + "eyes: small, black, beady", + "legs: lean, brownish-grey", + "wings: lined with brown, white, and red-orange feathers", + "nape: pale grey feathers", + "tail: long with white edges, striped with grey and brown", + "throat: white, blending into reddish-orange breast" + ], + "rufous bellied triller": [ + "back: olive-green with some grayish tones", + "beak: short, pointed, and black", + "belly: reddish-orange or rufous", + "breast: whitish with rufous wash", + "crown: grayish-olive with slight crest", + "forehead: pale gray to olive-gray", + "eyes: dark brown with thin, white eyering", + "legs: short, grayish-brown with strong feet", + "wings: olive-green with dark flight feathers", + "nape: grayish-olive blending into back", + "tail: olive-green with darker outer feathers", + "throat: pale with light gray wash" + ], + "rufous bellied woodpecker": [ + "back: reddish-brown with black barring", + "beak: strong, chisel-like, and black", + "belly: vibrant rufous shade", + "breast: white with black streaks", + "crown: bright crimson for males, dark gray for females", + "forehead: grayish-white with black spots", + "eyes: black with white surrounding feathers", + "legs: gray and sturdy for gripping tree trunks", + "wings: black with white speckles", + "nape: black with white spots", + "tail: black with narrow white bands", + "throat: white with black stripes" + ], + "rufous booted racket tail": [ + "back: rusty brown with iridescent green patches", + "beak: straight, slender, and black", + "belly: whitish with rufous flanks", + "breast: bright green feathers", + "crown: greenish-bronze with a slight crest", + "forehead: iridescent green feathers", + "eyes: black with a white eye-ring", + "legs: dark gray and slender", + "wings: greenish-bronze with black primary feathers", + "nape: greenish-bronze feathers", + "tail: elongated racket-like feathers with black and white markings", + "throat: greenish-bronze feathers" + ], + "rufous breasted accentor": [ + "back: reddish-brown with dark streaks", + "beak: short and conical, dark gray", + "belly: white with dark streaks and rufous patches", + "breast: rufous-colored with dark streaks", + "crown: grayish-brown with fine dark streaks", + "forehead: white streaked with black", + "eyes: black, sharp, and bright", + "legs: thin, strong, and gray", + "wings: brownish-gray with pale wing bars", + "nape: grayish-brown with fine dark streaks", + "tail: long, brownish-grey with white outer feathers", + "throat: white with black crescent-shaped markings" + ], + "rufous breasted antthrush": [ + "back: reddish-brown feathers", + "beak: short and sturdy", + "belly: rich rufous color", + "breast: bold rufous with streaks", + "crown: dark brown with fine streaks", + "forehead: light brown streaks", + "eyes: black with white eyering", + "legs: long and slender, pinkish-gray", + "wings: reddish-brown with dark bars", + "nape: brown with faint streaks", + "tail: long, reddish-brown with dark bars", + "throat: grayish-white with streaks" + ], + "rufous breasted bush robin": [ + "back: warm brown feathers", + "beak: sharp, slender, black", + "belly: rich rufous hue", + "breast: vibrant reddish-brown", + "crown: brown with faint streaks", + "forehead: pale brown, smooth", + "eyes: dark, piercing gaze", + "legs: strong, blackish-brown", + "wings: elongated, brown with faint bars", + "nape: soft brown, well-blended", + "tail: long, brown with white outer feathers", + "throat: creamy white patch" + ], + "rufous breasted chat tyrant": [ + "back: reddish-brown with black spots", + "beak: short, black, and pointed", + "belly: white with rufous flanks", + "breast: grayish-white", + "crown: black with white streaks", + "forehead: black with white streaks", + "eyes: dark brown surrounded by a white eye-ring", + "legs: pinkish gray and slender", + "wings: black with white streaks and rufous edges", + "nape: reddish-brown with black spots", + "tail: black with white outer feathers", + "throat: white and clean" + ], + "rufous breasted flycatcher": [ + "back: rusty-brown coloration", + "beak: thin, sharp, black", + "belly: white with faint streaks", + "breast: warm rufous tones", + "crown: grayish-brown", + "forehead: pale gray", + "eyes: dark, beady", + "legs: slender, black", + "wings: brownish-gray with white edges", + "nape: grayish-brown", + "tail: long, brown with white tips", + "throat: white with a pale rufous band" + ], + "rufous breasted hermit": [ + "back: olive-brown colored feathers", + "beak: long, slender, and slightly curved", + "belly: pale brown with faint streaks", + "breast: rufous-colored with narrow white bands", + "crown: dark greenish-brown", + "forehead: greenish-bronze tone", + "eyes: small and dark in color", + "legs: pale brown and delicate", + "wings: long, dark brown with green iridescence", + "nape: olive-brown with a faint green sheen", + "tail: elongated central feathers, brown and white tips", + "throat: white streaks on dark background" + ], + "rufous breasted leaftosser": [ + "back: brownish-green feathers", + "beak: short, stout, and slightly curved", + "belly: warm reddish-brown hue", + "breast: rich rufous coloring", + "crown: olive-brown with slight crest", + "forehead: olive-brown, blending with crown", + "eyes: small and dark", + "legs: sturdy and grayish-brown", + "wings: olive-brown with pale wing bars", + "nape: olive-brown, continuous with crown", + "tail: long, olive-brown, and slightly graduated", + "throat: pale buff with darker streaking" + ], + "rufous breasted piculet": [ + "back: olive-green with fine streaks", + "beak: small, pointed, and black", + "belly: white with bold rufous streaks", + "breast: rufous-orange, blending into belly pattern", + "crown: pale gray or olive-gray, sometimes slightly streaked", + "forehead: pale orange or rufous", + "eyes: large, dark, expressive with faint eyering", + "legs: short and grayish", + "wings: dark brown with white and rufous spots or bars", + "nape: olive-green, blending into back and crown", + "tail: short, rounded, and dark brown with narrow white or buff tips", + "throat: white with faint dusky markings" + ], + "rufous breasted sabrewing": [ + "back: iridescent green feathers", + "beak: elongated, slightly curved black bill", + "belly: white and fluffy with russet streaks", + "breast: vibrant rufous coloration", + "crown: shimmering green with a subtle crest", + "forehead: metallic green with a faint dark line", + "eyes: small, dark, and expressive", + "legs: slender, black, and sturdy", + "wings: elongated, iridescent green with white markings", + "nape: vibrant green with a coppery sheen", + "tail: elongated, iridescent green with rufous tips", + "throat: brilliant green with a narrow white band" + ], + "rufous breasted sparrowhawk": [ + "back: reddish-brown with dark streaks", + "beak: sharp, dark hooked tip", + "belly: white with rufous streaks", + "breast: reddish-brown with darker streaks", + "crown: reddish-brown with dark streaks", + "forehead: reddish-brown with dark streaks", + "eyes: piercing yellow", + "legs: long, yellow, feathered", + "wings: reddish-brown with dark barring", + "nape: reddish-brown with dark streaks", + "tail: long and banded with reddish-brown and black", + "throat: white with rufous streaks" + ], + "rufous breasted spinetail": [ + "back: reddish-brown with streaks", + "beak: short and sharp", + "belly: pale buff color", + "breast: rufous-orange with streaks", + "crown: reddish-brown with buff stripes", + "forehead: pale buff color", + "eyes: small and black", + "legs: long and slender", + "wings: reddish-brown with buff edges", + "nape: reddish-brown with buff stripes", + "tail: long and graduated", + "throat: creamy white" + ], + "rufous breasted warbling finch": [ + "back: rusty brown feathers with darker streaks", + "beak: sharp, pointed, and black in color", + "belly: white with heavy rufous streaking", + "breast: bright rufous-orange with subtle streaks", + "crown: grayish-brown with a slightly darker center", + "forehead: pale gray with a hint of brown", + "eyes: black, beady, and alert", + "legs: long, thin, and dark grayish-brown", + "wings: brown with rufous and cream-colored edgings", + "nape: grayish-brown with streaks of rufous", + "tail: long, brown with rufous outer tail feathers", + "throat: white with light rufous feather markings" + ], + "rufous breasted wood quail": [ + "back: reddish-brown with black streaks", + "beak: short and curved, pale ivory color", + "belly: rich rufous with white spots", + "breast: rufous with bold black bars", + "crown: dark brown with faint streaks", + "forehead: black with white speckles", + "eyes: dark brown, encircled by light-colored ring", + "legs: sturdy and grayish-brown", + "wings: dark brown with rufous and white bars", + "nape: dark brown with thin white bars", + "tail: short and squared, reddish-brown with dark bars", + "throat: white and unmarked" + ], + "rufous breasted wren": [ + "back: reddish-brown with dark streaks", + "beak: thin, slightly curved, and dark in color", + "belly: pale grayish-cream shade", + "breast: rufous color with fine dark streaks", + "crown: dark brown with lighter streaks", + "forehead: slightly paler brown than the crown", + "eyes: black and beady, surrounded by faint white eye-ring", + "legs: slender and grayish-brown", + "wings: reddish-brown with heavy dark barring", + "nape: slightly lighter brown than the crown with dark streaks", + "tail: reddish-brown with dark barring and white spots on the outer tail feathers", + "throat: buffy-white with dark streaks" + ], + "rufous browed chat tyrant": [ + "back: brownish-gray feathers", + "beak: short, slightly hooked black bill", + "belly: dull white underparts", + "breast: pale grayish-brown chest", + "crown: rufous-colored crest", + "forehead: slightly paler rufous area", + "eyes: dark, piercing gaze", + "legs: slender, grayish-blue legs", + "wings: brownish-gray with rufous edges", + "nape: grayish-brown feathers", + "tail: long, brownish-gray with rufous undertail coverts", + "throat: pale grayish-white color" + ], + "rufous browed conebill": [ + "back: reddish-brown upperparts", + "beak: short, slightly curved, black", + "belly: light grayish-white", + "breast: pale gray with brownish tint", + "crown: bright reddish-orange", + "forehead: rufous-brown", + "eyes: small, dark", + "legs: slender, dark gray", + "wings: reddish-brown with black wingtips", + "nape: reddish-brown", + "tail: long and graduated, reddish-brown", + "throat: pale gray with rufous undertones" + ], + "rufous browed flycatcher": [ + "back: rich olive-brown coloring", + "beak: short, sharp, black", + "belly: white, accented with brown streaks", + "breast: orange-brown with gray spots", + "crown: rusty-red with bold white stripe", + "forehead: deep rufous hue", + "eyes: dark, encircled by white eye-ring", + "legs: thin, gray", + "wings: olive-brown with buff wing bars", + "nape: brignt rufous-brown", + "tail: olive-brown with white-tipped feathers", + "throat: white, bordered by gray streaks" + ], + "rufous browed hemispingus": [ + "back: brownish-gray feathers", + "beak: short, conical, and black", + "belly: off-white with brown streaks", + "breast: light brown with faint streaks", + "crown: rusty red-brown", + "forehead: bright rufous color", + "eyes: black with white eye-ring", + "legs: pale pinkish-gray", + "wings: dark brown with white-edged feathers", + "nape: brownish-gray with slight streaking", + "tail: dark brown with pale outer feathers", + "throat: off-white with faint brown streaks" + ], + "rufous browed peppershrike": [ + "back: olive green and streaked", + "beak: strong, hooked, blackish", + "belly: off-white, some streaks", + "breast: light grayish brown, streaked", + "crown: bold reddish-brown", + "forehead: rufous-brown color, clear", + "eyes: dark brown, alert", + "legs: sturdy, grayish", + "wings: olive green, black wing-bars", + "nape: olive green, finely streaked", + "tail: olive green, elongated", + "throat: white, slightly streaked" + ], + "rufous browed tyrannulet": [ + "back: olive-green feathers", + "beak: thin, pointed black beak", + "belly: pale yellowish-white", + "breast: olive-green with light streaks", + "crown: rufous-orange stripe", + "forehead: reddish-brown plumage", + "eyes: dark and round with white eye-ring", + "legs: grayish-blue thin legs", + "wings: olive-green with pale wing bars", + "nape: olive-green with rufous tinge", + "tail: short, olive-green edged with pale tips", + "throat: white with faint streaks" + ], + "rufous browed wren": [ + "back: brownish-gray feathers", + "beak: slim, sharp, and black", + "belly: warm, ochre buff", + "breast: light brown with subtle streaks", + "crown: reddish-brown patch", + "forehead: rufous-colored stripe", + "eyes: black with white eye ring", + "legs: long, slender, and black", + "wings: brown with faint bars", + "nape: grayish-brown feathers", + "tail: long, brown, with faint barring", + "throat: pale buff with faint streaks" + ], + "rufous brown solitaire": [ + "back: reddish-brown with subtle patterning", + "beak: thin, slightly curved, blackish-gray", + "belly: pale grayish-brown", + "breast: light rufous-brown, softly streaked", + "crown: reddish-brown, like the back", + "forehead: faintly rufous with slight gray hues", + "eyes: dark brown, medium-sized, blackish eye-ring", + "legs: relatively short, grayish-black", + "wings: rufous-brown, long, and broad", + "nape: reddish-brown, blending with crown and back", + "tail: rufous-brown, moderately long, slightly rounded", + "throat: light grayish-brown, subtly streaked" + ], + "rufous capped antshrike": [ + "back: reddish-brown back feathers with subtle streaks", + "beak: strong, slightly hooked black beak", + "belly: creamy-white underparts", + "breast: light rufous with darker streaks", + "crown: reddish-brown with black streaks", + "forehead: light rufous with darker streaks", + "eyes: dark, piercing eyes with white eye-ring", + "legs: sturdy, pale gray legs", + "wings: reddish-brown with black wing bars", + "nape: rufous color with dark streaks", + "tail: long, reddish-brown, and slightly graduated", + "throat: creamy-white with light rufous streaks" + ], + "rufous capped antthrush": [ + "back: reddish-brown feathers", + "beak: short, curved, pale-yellow", + "belly: white with black streaks", + "breast: cinnamon-brown plumage", + "crown: rufous-colored feathers", + "forehead: reddish-brown plumage", + "eyes: dark, round, and alert", + "legs: long, pinkish-grey", + "wings: rounded, reddish-brown", + "nape: rufous-feathered", + "tail: short, reddish-brown", + "throat: white with black streaks" + ], + "rufous capped babbler": [ + "back: olive-brown feathers", + "beak: strong, slightly curved", + "belly: light greyish-white", + "breast: rufous-colored feathers", + "crown: bright rufous cap", + "forehead: continuation of rufous cap", + "eyes: small and black", + "legs: sturdy, pale pinkish-brown", + "wings: olive-brown with slight rufous tint", + "nape: olive-brown, blending with crown", + "tail: olive-brown with rufous tips", + "throat: pale grey, slightly darker than belly" + ], + "rufous capped brushfinch": [ + "back: olive-brown upperparts", + "beak: sturdy, cone-shaped", + "belly: white with light streaks", + "breast: grayish-white", + "crown: rufous with a straight, black line", + "forehead: chestnut-brown", + "eyes: dark, medium-sized", + "legs: pale orange, slim", + "wings: olive-brown with darker edges", + "nape: olive-colored with dark streaks", + "tail: long and dark with white edges", + "throat: white, bordered by black stripes" + ], + "rufous capped lark": [ + "back: reddish-brown with streaks", + "beak: thin, pointed, and grayish", + "belly: creamy-white with fine streaks", + "breast: pale with dark streaks", + "crown: rich rufous with darker streaks", + "forehead: rufous with a prominent eyebrow", + "eyes: dark brown, slightly hidden by feathers", + "legs: long and sturdy, light gray", + "wings: brown with reddish edges and white markings", + "nape: rufous with fine streaks", + "tail: brown with white outer feathers", + "throat: pale creamy-white with streaks" + ], + "rufous capped motmot": [ + "back: rusty brown with dark streaks", + "beak: long, black, curved", + "belly: dull beige with some blue feathers", + "breast: blue-green with black streaks", + "crown: bright rufous with black border", + "forehead: rufous and black with white spot near beak", + "eyes: black, round, with light blue eyering", + "legs: sturdy, grayish-green", + "wings: brownish-green with lighter blue-green edges", + "nape: rufous with thin black stripe", + "tail: long, green-blue feathers with racket tips", + "throat: white with light rufous streaking" + ], + "rufous capped nunlet": [ + "back: rich chestnut brown", + "beak: short and black", + "belly: white to pale buff", + "breast: white with black streaks", + "crown: reddish-brown with a black cap", + "forehead: rufous with black tips", + "eyes: dark brown", + "legs: grayish-pink", + "wings: chestnut with black flight feathers", + "nape: reddish-brown with black streaks", + "tail: chestnut with black tips", + "throat: white with black streaks" + ], + "rufous capped spinetail": [ + "back: reddish-brown feathers", + "beak: slender, pointed, dark gray", + "belly: light buffy color", + "breast: pale brownish-grey", + "crown: rufous cap with streaks", + "forehead: rufous with subtle streaks", + "eyes: small, dark beady", + "legs: slender, grayish-brown", + "wings: brownish with rufous edges", + "nape: rufous with streaks", + "tail: long, brownish, with rufous undertail coverts", + "throat: pale buffy-white" + ], + "rufous capped thornbill": [ + "back: olive green with rufous tinges", + "beak: slender and slightly curved, blackish", + "belly: pale yellow with fine dark streaks", + "breast: yellow with dusky streaks", + "crown: rufous-orange with a spiky crest", + "forehead: bright yellow with faint streaks", + "eyes: dark, positioned on each side of the head", + "legs: pale flesh-colored, slender", + "wings: olive green with two white wing bars", + "nape: olive green, transitioning to rufous cap", + "tail: short and dark, with white outer tail feathers", + "throat: bright yellow with fine dark streaks" + ], + "rufous capped warbler": [ + "back: olive-green with dark streaks", + "beak: slender, dark gray curved beak", + "belly: creamy-white underbelly", + "breast: yellowish breast with gray stripes on sides", + "crown: rufous-capped head", + "forehead: white stripe over eye", + "eyes: round, black eyes", + "legs: pale pinkish-gray thin legs", + "wings: olive-green with dark bars on flight feathers", + "nape: chestnut-colored nape", + "tail: olive-green with dark bars and white outer tips", + "throat: creamy white throat" + ], + "rufous cheeked laughingthrush": [ + "back: rich, reddish-brown plumage", + "beak: short, sturdy, and black", + "belly: off-white with rusty-orange accents", + "breast: warm orange-brown with faint streaking", + "crown: bright rufous-orange", + "forehead: rusty-orange with subtle black markings", + "eyes: lively dark brown with a white eye-ring", + "legs: strong, grayish-blue", + "wings: brownish-red with contrasting black flight feathers", + "nape: rufous shade similar to the crown", + "tail: long, reddish-brown feathers with slightly darker tips", + "throat: pale off-white with streaks of rufous and black" + ], + "rufous cheeked nightjar": [ + "back: streaked brown and gray feathers", + "beak: short and wide, dark in color", + "belly: pale buff with fine streaks", + "breast: grayish brown with black markings", + "crown: mossy green and brown, mottled pattern", + "forehead: creamy white stripe above the eyes", + "eyes: large and rounded, dark brown", + "legs: short, feathered, and grayish-brown", + "wings: elongated, with light and dark brown spots", + "nape: grayish-brown with rufous markings", + "tail: rounded with alternating light and dark bands", + "throat: buffy-white color with brown streaks" + ], + "rufous cheeked tanager": [ + "back: rich olive-green feathers", + "beak: short, conical and black", + "belly: yellowish-olive to dull yellow", + "breast: vibrant yellow with streaks of orange and black", + "crown: chestnut-colored with streaks of black", + "forehead: bright chestnut-red", + "eyes: dark, piercing with a black outline", + "legs: sturdy, grayish-black", + "wings: olive-green with black and blue streaks", + "nape: golden olive-green", + "tail: long, black with blue iridescence", + "throat: vivid yellow" + ], + "rufous chested dotterel": [ + "back: light brown with speckled pattern", + "beak: short and slender, dark colored", + "belly: pale, whitish color", + "breast: rufous chest band", + "crown: brown with a white stripe", + "forehead: white with a v-shaped pattern", + "eyes: dark with a white eyering", + "legs: yellowish, medium length", + "wings: brownish with white markings", + "nape: whitish with subtle brown markings", + "tail: dark brown with lighter edges", + "throat: white with a rufous sideband" + ], + "rufous chested flycatcher": [ + "back: olive-brown feathers with a slight sheen", + "beak: short, sharp, and slightly hooked", + "belly: creamy white with faint streaks", + "breast: vibrant rufous-orange hue", + "crown: dark, sleek feathers with a slight crest", + "forehead: thin white eyebrows above the eyes", + "eyes: black, beady, and surrounded by a white eye-ring", + "legs: dark gray, thin, and strong", + "wings: olive-brown with faint white wing bars", + "nape: olive-brown, smoothly blending into the back", + "tail: long, dark, with white outer tail feathers", + "throat: white patch with delicate streaking" + ], + "rufous chested swallow": [ + "back: sleek, brownish-gray feathers", + "beak: small, dark, pointed shape", + "belly: light gray with rufous tinges", + "breast: vibrant reddish-orange chest", + "crown: dark brown with a slightly raised crest", + "forehead: smooth, brownish-gray with a hint of rufous", + "eyes: small, dark beady orbs", + "legs: slender, dark-colored limbs", + "wings: long, pointed, brownish-gray feathers with white edging", + "nape: brownish-gray feathers blending into the crown", + "tail: elongated, brownish-gray feathers with white accents", + "throat: white feathers fading into the reddish-orange breast" + ], + "rufous chested tanager": [ + "back: olive-green upperparts", + "beak: short, conical and black", + "belly: pale yellow underparts", + "breast: bright orange-red chest patch", + "crown: olive-green with slight crest", + "forehead: olive-green, extending to the eyes", + "eyes: small, black and alert", + "legs: slender, dark gray", + "wings: olive-green with slightly darker flight feathers", + "nape: olive-green, joining the crown and back", + "tail: long, olive-green feathers with dark tips", + "throat: pale yellow, merging with the belly" + ], + "rufous chinned laughingthrush": [ + "back: light reddish-brown feathers", + "beak: short, strong, and black", + "belly: white with black streaks", + "breast: white with black streaks", + "crown: warm brown with darker centers on feathers", + "forehead: light reddish-brown", + "eyes: dark, piercing gaze surrounded by lighter plumage", + "legs: strong, greyish-blue legs", + "wings: reddish-brown with black barring on flight feathers", + "nape: warm reddish-brown", + "tail: long, broad, and reddish-brown with black barring", + "throat: white with thin black streaks" + ], + "rufous collared kingfisher": [ + "back: vibrant green with bluish tinge", + "beak: long, red, and sharp", + "belly: chestnut red with black spotting", + "breast: rufous red merging with spotting from belly", + "crown: glossy blue-green", + "forehead: bright blue-green with black outline", + "eyes: deep black and piercing", + "legs: short, red/orange", + "wings: blue-green with dark feather tips", + "nape: deep blue-green merging with the crown", + "tail: greenish-blue, long and slightly forked", + "throat: white with a hint of rufous red" + ], + "rufous collared robin": [ + "back: reddish-brown feathers", + "beak: small, thin, and black", + "belly: white with faint streaks", + "breast: white with rusty central stripe", + "crown: grayish-brown patches", + "forehead: rufous-colored feathers", + "eyes: black surrounded by white eye-ring", + "legs: long, thin, with dark gray color", + "wings: brown with rufous edges", + "nape: grayish-brown feathers", + "tail: long, brown with rufous undertail coverts", + "throat: white with black border" + ], + "rufous collared sparrow": [ + "back: streaked brown and black", + "beak: short and conical", + "belly: grayish-white", + "breast: white with black streaks", + "crown: reddish-brown", + "forehead: grayish-white", + "eyes: dark with white eyering", + "legs: long and slender", + "wings: brown with some white patches", + "nape: streaked reddish-brown", + "tail: short and brown", + "throat: white with black malar stripe" + ], + "rufous crested coquette": [ + "back: vibrant green with iridescent sheen", + "beak: slender, straight, and black", + "belly: soft green fading to white", + "breast: bright emerald green", + "crown: brilliant rufous crest with spiky feathers", + "forehead: radiant green meeting the rufous crest", + "eyes: round, dark, and alert", + "legs: short and black", + "wings: iridescent green, short and rounded", + "nape: metallic green transitioning to rufous crest", + "tail: elongated, bronze-green feathers with white tips", + "throat: dazzling green collar on males, plain white on females" + ], + "rufous crested tanager": [ + "back: olive-green feathers", + "beak: short, black, and pointed", + "belly: yellow to metallic green hue", + "breast: vivid orange-red coloration", + "crown: red, crested, and prominent", + "forehead: red feathers blending with crown", + "eyes: dark brown, clearly visible", + "legs: dark grey, strong, and perching", + "wings: olive-green with black markings", + "nape: olive-green, connecting to back and crown", + "tail: slightly forked, olive-green with black band", + "throat: bright orange-red, contrasting breast and belly" + ], + "rufous crowned antpitta": [ + "back: reddish-brown with black streaks", + "beak: short and stout, black in color", + "belly: whitish-gray with black stripes", + "breast: rich, reddish-brown hue", + "crown: bright rufous-orange color", + "forehead: pale rufous color", + "eyes: round and dark, surrounded by light eyering", + "legs: long and sturdy, pale pinkish-gray", + "wings: short and rounded, brown with black scaling", + "nape: rufous-brown, blending into the back", + "tail: short and blunt, reddish-brown with black barring", + "throat: white with faint gray streaks" + ], + "rufous crowned babbler": [ + "back: earthy-brown, elongated feathers", + "beak: short, strong, slightly curved", + "belly: whitish cream or pale gray", + "breast: gray-brown with slight streaking", + "crown: distinct reddish-brown hue", + "forehead: rufous colored, slight crest", + "eyes: small, round, dark in color", + "legs: sturdy, pale grayish-blue", + "wings: brownish-gray, short with rounded tips", + "nape: grayish-brown, slightly separated from the crown", + "tail: moderately long, dark brown with edged feathers", + "throat: whitish, blends into the breast area" + ], + "rufous crowned bee eater": [ + "back: vibrant green feathers covering the upper body", + "beak: long, slender, slightly curved black beak", + "belly: yellowish-green, fading to white on lower belly", + "breast: bright orange-chestnut color, fading to green on the sides", + "crown: bold rufous-red cap with a black stripe down the middle", + "forehead: deep-red patch extending to the top of the beak", + "eyes: dark, round eyes with a thin black eye-ring", + "legs: short black legs with strong zygodactyl feet", + "wings: green with black or dark blue flight feathers and tinges of blue edges", + "nape: green, transitioning from the rufous crown to the green back", + "tail: long, slender, green feathers; sometimes with elongated tail streamers", + "throat: pale green color, sometimes with a yellowish tint" + ], + "rufous crowned elaenia": [ + "back: olive-brown, slightly rufous", + "beak: short and slender, dark grey", + "belly: pale yellow with soft, greyish streaks", + "breast: olive-grey, lighter than back", + "crown: reddish-brown with conspicuous crest", + "forehead: olive with a slight greyish hue", + "eyes: dark brown with pale, thin eye-ring", + "legs: pale grey, medium length and slender", + "wings: olive-brown with two white wingbars", + "nape: olive-brown, blending with back color", + "tail: olive-brown, slightly forked, and edged with pale feathers", + "throat: light grey, bordered by a faint, pale malar stripe" + ], + "rufous crowned emuwren": [ + "back: reddish-brown with dark streaks", + "beak: thin, long, and pointy", + "belly: white with light brown streaks", + "breast: bright rufous-orange color", + "crown: distinctive rufous-red patch", + "forehead: brown with lighter streaks", + "eyes: small, round, and dark", + "legs: slender, long, and brownish-gray", + "wings: brownish-black with light streaks", + "nape: reddish-brown with dark streaks", + "tail: long, thin, and black with white tips", + "throat: white with light streaks" + ], + "rufous crowned eremomela": [ + "back: olive-green", + "beak: thin and sharp", + "belly: yellowish-green", + "breast: yellowish-green", + "crown: bright rufous", + "forehead: rufous-orange", + "eyes: dark with white eye-ring", + "legs: grayish", + "wings: olive-green with white edges", + "nape: rufous-brown", + "tail: olive-green with whitish tips", + "throat: yellowish-white" + ], + "rufous crowned greenlet": [ + "back: olive-green with rufous tinge", + "beak: short and sharp, dark grey", + "belly: pale yellowish-green", + "breast: olive-yellow with light streaks", + "crown: rufous-orange", + "forehead: greenish-yellow", + "eyes: dark brown with pale eyering", + "legs: grayish-blue", + "wings: green with two yellow wing bars", + "nape: greenish-yellow", + "tail: olive-green with dark tips", + "throat: pale yellow-green" + ], + "rufous crowned laughingthrush": [ + "back: reddish-brown feathers", + "beak: slightly curved, blackish-gray", + "belly: pale rufous, white streaks", + "breast: rufous-gray, black streaks", + "crown: rufous-brown, raised crest", + "forehead: rufous-brown with black streaks", + "eyes: dark brown with pale, bare eye-ring", + "legs: strong, pale pinkish-gray", + "wings: brownish, rufous edges on flight feathers", + "nape: rufous-brown with black streaks", + "tail: rufous-brown, medium length, slightly forked", + "throat: white, black streaks" + ], + "rufous crowned prinia": [ + "back: light brown with faint streaks", + "beak: short and pointed, blackish-grey", + "belly: white with slight tinge of yellow", + "breast: pale yellow with faint brown streaks", + "crown: rusty-red with darker brown streaks", + "forehead: pale brown, blending with crown", + "eyes: small and dark with thin white eye-ring", + "legs: slender and greyish-pink", + "wings: light brown with darker brown barring", + "nape: light brown streaked with darker brown", + "tail: long and graduated, light brown with darker brown edges", + "throat: clean white, merging with breast" + ], + "rufous crowned roller": [ + "back: long, horizontal, reddish-brown feathers", + "beak: elongated, strong, black hook", + "belly: pale beige with darker streaks", + "breast: bright rufous-chestnut with darker barring", + "crown: vibrant rufous-orange crest", + "forehead: small, flat, reddish orange", + "eyes: round, large, dark brown", + "legs: sturdy, gray, scaled", + "wings: long, dark blue with rufous edges", + "nape: reddish-brown, blending with crown", + "tail: elongated, dark blue with rufous tips, square-ended", + "throat: pale, whitish gray with streaks" + ], + "rufous crowned tody flycatcher": [ + "back: brownish-green with rufous tinge", + "beak: small, thin, and black", + "belly: pale yellowish-white", + "breast: light olive-green", + "crown: bright rufous-orange", + "forehead: slightly paler rufous-orange", + "eyes: small, dark, and round", + "legs: thin and black", + "wings: greenish-brown with yellowish-white edges on flight feathers", + "nape: brownish-green with rufous-orange streaking", + "tail: relatively short, greenish-brown with yellowish-white edges", + "throat: pale yellowish-white" + ], + "rufous eared brushfinch": [ + "back: brownish-olive feathers", + "beak: small, dark, conical-shaped", + "belly: pale buff coloration", + "breast: light chestnut hue", + "crown: streaked black and olive", + "forehead: pale buff with dark streaks", + "eyes: dark, shiny, encircled with white ring", + "legs: pale pinkish-grey", + "wings: tawny brown with black streaks", + "nape: olive-green with black streaks", + "tail: dark brown with white outer tail feathers", + "throat: creamy-white with faint streaks" + ], + "rufous eared warbler": [ + "back: light brownish with subtle markings", + "beak: thin, dark, slightly curved", + "belly: pale yellow or creamy white", + "breast: light orange-brown with some streaks", + "crown: reddish-brown with darker streaks", + "forehead: reddish-brown and smooth", + "eyes: dark, round, surrounded by a faint eyering", + "legs: pale pinkish-grey", + "wings: reddish-brown with blackish bars", + "nape: light grey with darker streaks", + "tail: reddish-brown, medium-length, slightly forked", + "throat: creamy white with slight streaking" + ], + "rufous faced antbird": [ + "back: reddish-brown feathers with dark streaks", + "beak: short, sharp, and slightly curved", + "belly: pale grey with faint streaks", + "breast: light greyish-white with streaks", + "crown: rufous-colored feathers and a dark stripe", + "forehead: rufous with a thin dark band", + "eyes: large and black, with a thin white eye-ring", + "legs: pale pinkish-grey, with sharp claws", + "wings: reddish-brown with dark feather markings", + "nape: rufous with dark streaks", + "tail: long and rufous, with dark tips", + "throat: pale greyish-white with streaks" + ], + "rufous faced antpitta": [ + "back: reddish-brown feathers", + "beak: short, stout, and hooked", + "belly: light gray with brownish tint", + "breast: grayish-white with fine dark streaks", + "crown: rufous-orange with subtle streaks", + "forehead: rufous-orange blending into crown", + "eyes: small and dark brown", + "legs: long and slender, pale pink", + "wings: brownish with faint barring", + "nape: reddish-brown, blending into back", + "tail: short and rounded, brown with faint bands", + "throat: creamy white with dark streaks" + ], + "rufous faced crake": [ + "back: reddish-brown with faint streaks", + "beak: short and conical, yellowish-brown", + "belly: warm buff color, paler than breast", + "breast: rufous-orange with fine dark streaks", + "crown: rufous-brown, slightly darker than back", + "forehead: reddish-brown, seamlessly blending with the crown", + "eyes: dark brown, small and beady", + "legs: yellowish-green, relatively long for size", + "wings: reddish-brown, streaked with darker brown", + "nape: rufous-brown, similar to the crown color", + "tail: short and square, reddish-brown with dark bars", + "throat: pale buff color, unmarked and slightly paler than the breast" + ], + "rufous faced warbler": [ + "back: olive-green feathers with rufous tinges", + "beak: thin, slightly curved, and black", + "belly: light cream with brownish streaks", + "breast: pale yellow with faint streaks", + "crown: rufous-orange with a dark streak", + "forehead: reddish-orange with distinct black stripe", + "eyes: black, surrounded by thin white eye-ring", + "legs: pale pinkish-gray with sharp claws", + "wings: dark brown with white wing bars", + "nape: olive-green blending into rufous crown", + "tail: dark brown, slightly forked with white outer edges", + "throat: clean, pale yellowish-cream" + ], + "rufous fronted antthrush": [ + "back: rusty-brown plumage", + "beak: short, strong, and curved", + "belly: creamy-white with brown streaks", + "breast: warm chestnut-brown with white spots", + "crown: rufous color with pale streaks", + "forehead: rich rufous shade", + "eyes: dark and beady", + "legs: slender and grey", + "wings: medium-length with rufous and brown feathers", + "nape: streaked rufous-brown", + "tail: medium length, rufous-brown feathers", + "throat: creamy-white with fine brown spots" + ], + "rufous fronted babbler": [ + "back: rusty-brown upperparts", + "beak: short, sturdy, and curved", + "belly: light, grayish-white underparts", + "breast: pale, grayish-white", + "crown: rufous-red patch", + "forehead: rufous-red, extending above the eyes", + "eyes: dark and beady", + "legs: pinkish-brown, slender", + "wings: brownish with light feather edging", + "nape: blending rufous-red and brown", + "tail: long, brownish with rufous tip", + "throat: pale, grayish-white" + ], + "rufous fronted laughingthrush": [ + "back: reddish-brown feathers", + "beak: strong, slightly curved, black", + "belly: white with black streaks", + "breast: grayish-white, black streaks", + "crown: reddish-brown, slightly raised", + "forehead: bright rufous-red", + "eyes: large, dark brown", + "legs: strong, dark gray", + "wings: reddish-brown, white-tipped", + "nape: reddish-brown, white-streaked", + "tail: long, black with white tips", + "throat: white, black-streaked" + ], + "rufous fronted parakeet": [ + "back: olive-green feathered back", + "beak: strong, orange-red hooked beak", + "belly: yellowish-green underside", + "breast: vibrant green chest feathers", + "crown: rufous-colored head", + "forehead: reddish-brown frontal feathers", + "eyes: dark, round eyes with white eye-ring", + "legs: grayish, short legs with zygodactyl feet", + "wings: green wings with blue primary feathers", + "nape: olive-green nape with slight rufous tint", + "tail: long, green-blue tail feathers", + "throat: greenish-yellow throat area" + ], + "rufous fronted prinia": [ + "back: light brown with faint streaks", + "beak: short and sharp, light-colored", + "belly: off-white with faint brown streaks", + "breast: pale whitish-brown with subtle markings", + "crown: warm chestnut-brown with a rufous tinge", + "forehead: slightly paler brown than the crown", + "eyes: small and round, dark brown or black", + "legs: slender and light brown or grayish", + "wings: brownish gray with faint bars and a slight rufous tinge", + "nape: light brown, blending into the crown and back", + "tail: long and slim, brownish gray with faint barring", + "throat: off-white and unmarked" + ], + "rufous fronted tailorbird": [ + "back: olive-green feathers", + "beak: slender, curved, black bill", + "belly: whitish-gray with faint streaks", + "breast: buff-orange coloration", + "crown: rufous-orange patch", + "forehead: rufous-orange strip", + "eyes: dark, beady with a pale eye-ring", + "legs: long, grayish, slender for perching", + "wings: olive-green, short and rounded", + "nape: olive-green with rufous tinge", + "tail: dark olive-green, long, graduated", + "throat: whitish-gray with light streaks" + ], + "rufous fronted thornbird": [ + "back: reddish-brown feathers", + "beak: sharp, straight, and slightly curved", + "belly: creamy pale, with some brown streaks", + "breast: buff-colored, streaked with reddish-brown", + "crown: reddish-brown with a patch of rufous feathers", + "forehead: reddish-brown, accented by rufous feathers", + "eyes: dark brown, surrounded by a thin white eye-ring", + "legs: sturdy, dark gray", + "wings: reddish-brown with black and white feather markings", + "nape: reddish-brown, blending with the crown", + "tail: long, reddish-brown with black bars and white tips", + "throat: pale, creamy white, contrasting the breast" + ], + "rufous fronted wood quail": [ + "back: reddish-brown with black streaks", + "beak: short, curved, dark gray", + "belly: buff-colored with black barring", + "breast: grayish-blue with black spots", + "crown: rufous with black streaks", + "forehead: rufous color, slightly darker than the crown", + "eyes: dark brown surrounded by rufous feathers", + "legs: strong, grayish-blue, adapted for ground-dwelling", + "wings: dark brown with white and chestnut bars", + "nape: dark brown with rufous streaks", + "tail: short, brown, with black bars and white tips", + "throat: whitish-gray with dark streaks" + ], + "rufous gaped hillstar": [ + "back: warm olive-green", + "beak: long and slender black", + "belly: dark green fading to gray", + "breast: shimmering green", + "crown: brilliant violet-blue", + "forehead: vivid copper-red", + "eyes: piercing black", + "legs: strong, dark gray", + "wings: long and rounded, dark brown", + "nape: violet-blue with olive-green hue", + "tail: iridescent blue-black, forked", + "throat: gleaming orange-red" + ], + "rufous gorgeted flycatcher": [ + "back: earthy brown feathers", + "beak: small, sharp, and black", + "belly: pale cream and orange base", + "breast: light orange with grayish-white streak", + "crown: dark brown with reddish tint", + "forehead: broad reddish-orange band", + "eyes: beady black", + "legs: thin and dark", + "wings: brown with reddish edges", + "nape: warm brown with some orange tinge", + "tail: long brown with red and white tail feathers", + "throat: bright orange-red gorget" + ], + "rufous headed chachalaca": [ + "back: reddish-brown feathers", + "beak: short and hooked, dark grey", + "belly: creamy white plumage", + "breast: reddish-chestnut feathers", + "crown: rufous crest, thick and bushy", + "forehead: white facial skin, bright red lores", + "eyes: dark brown, surrounded by a pale eye-ring", + "legs: dark grey, strong and slender", + "wings: rufous and brownish, broad and rounded", + "nape: reddish-brown, long feathers", + "tail: long, chestnut-rufous with black bands", + "throat: white, bare skin" + ], + "rufous headed ground roller": [ + "back: brownish-gray feathers with rufous highlights", + "beak: strong, slightly curved, black upper and lower bill", + "belly: off-white with faint brown streaks", + "breast: warm reddish-brown with streaked pattern", + "crown: rufous with black streaks", + "forehead: grayish-brown with lighter streaks", + "eyes: dark brown with pale gray eyering", + "legs: sturdy, grayish-pink legs", + "wings: olive-brown with black and white markings", + "nape: grayish-brown with rufous tinge", + "tail: dark brown with rufous and white barring", + "throat: pale gray with lighter streaks" + ], + "rufous headed parrotbill": [ + "back: reddish-brown feathers", + "beak: short, robust, curved", + "belly: light buffy-orange", + "breast: golden-yellow plumage", + "crown: rufous-colored crest", + "forehead: bright rufous feathers", + "eyes: dark with white eye-ring", + "legs: pale pinkish-gray", + "wings: reddish-brown with blackish markings", + "nape: rufous transitioning to brown", + "tail: long, brownish with black barring", + "throat: golden-yellow feathers" + ], + "rufous headed pygmy tyrant": [ + "back: reddish-brown with subtle feather patterns", + "beak: short, sharp, and black", + "belly: pale yellow or white with light streaks", + "breast: pale yellow or white with light streaks", + "crown: bright rufous with a slight crest", + "forehead: bright rufous blending into the crown", + "eyes: round, dark, and expressive", + "legs: thin, gray, and agile", + "wings: reddish-brown with distinct wing bars", + "nape: reddish-brown blending into the back", + "tail: short, reddish-brown, with slightly rounded edges", + "throat: pale yellow or white with light streaks" + ], + "rufous headed robin": [ + "back: rusty reddish-brown feathers", + "beak: thin, straight, and dark-colored", + "belly: off-white with pale reddish-brown speckles", + "breast: orangey-red plumage", + "crown: vibrant rufous-red with a prominent crest", + "forehead: rufous-red feathering", + "eyes: small and dark with white eye-ring", + "legs: dark and slender with prominent claws", + "wings: brownish with rufous-red edges and white wingbars", + "nape: rusty reddish-brown feathering", + "tail: long and reddish-brown with a white tip", + "throat: off-white with pale reddish-brown speckles" + ], + "rufous headed tailorbird": [ + "back: olive-green with rufous tinge", + "beak: slender, slightly curved, and dark-colored", + "belly: whitish with buffy wash", + "breast: grayish-white with light streaks", + "crown: rich rufous-brown", + "forehead: bright rufous color", + "eyes: dark with conspicuous white eyering", + "legs: pale pinkish or grayish", + "wings: olive-green with rufous edges on flight feathers", + "nape: olive-green with slight rufous shade", + "tail: greenish-brown with prominent white tips", + "throat: whitish with thin dark streaks" + ], + "rufous headed tanager": [ + "back: reddish-brown feathers", + "beak: short and sharp", + "belly: light yellow underside", + "breast: vibrant yellow feathers", + "crown: rufous-colored cap", + "forehead: reddish-brown area", + "eyes: small and black", + "legs: dark-grey and slender", + "wings: rufous and black-tipped feathers", + "nape: reddish-brown nape area", + "tail: medium length, fan-shaped", + "throat: yellow plumage" + ], + "rufous headed woodpecker": [ + "back: vibrant reddish-brown feathers", + "beak: strong, chisel-like, and black", + "belly: white with rufous streaks", + "breast: white with rufous spots", + "crown: bright rufous-orange", + "forehead: pale rufous coloring", + "eyes: round, dark, and alert", + "legs: sturdy, grayish-blue", + "wings: reddish-brown with black and white bars", + "nape: rufous-orange with black streaks", + "tail: long, black with white tips", + "throat: white with rufous streaks" + ], + "rufous legged owl": [ + "back: reddish-brown feathers with dark barring", + "beak: sharp, hooked, pale grayish-white", + "belly: light, stripped with reddish-brown and white", + "breast: white with reddish-brown streaks", + "crown: reddish-brown with dark streaks", + "forehead: pale white streaks amidst reddish-brown feathers", + "eyes: large, expressive, and yellow", + "legs: long, feathered, and reddish-orange", + "wings: broad, rounded, with reddish-brown and dark barring", + "nape: reddish-brown with dark barring", + "tail: long, reddish-brown with dark bands", + "throat: white with faint reddish-brown streaks" + ], + "rufous lored kingfisher": [ + "back: vibrant blue-green feathers", + "beak: long, black and sharply pointed", + "belly: pale yellow with reddish-brown streaks", + "breast: bright orange chest with white markings", + "crown: vivid blue and green with rufous highlights", + "forehead: brilliant blue-green with a touch of rufous", + "eyes: dark, beady eyes with a black stripe running across them", + "legs: short, black legs with strong toes and claws", + "wings: vibrant blue-green with black bars and white spots", + "nape: reddish-brown merging into the blue-green of the crown", + "tail: long, iridescent blue-green with black bands and white tips", + "throat: white with a subtle rufous tint" + ], + "rufous lored tyrannulet": [ + "back: brownish-green with slight streaks", + "beak: slender, black, and slightly curved", + "belly: pale yellow with hint of olive", + "breast: olive-yellow, feathers slightly matted", + "crown: rufous-brown, distinctive central stripe", + "forehead: pale olive with faint yellow markings", + "eyes: dark, surrounded by thin white eyering", + "legs: grayish-brown, thin and agile", + "wings: greenish-brown, short, and rounded", + "nape: rufous-brown, blending with crown", + "tail: elongated, dusky green with blackish edges", + "throat: pale yellow, transitioning into breast color" + ], + "rufous margined antwren": [ + "back: reddish-brown feathers", + "beak: small, black, and pointed", + "belly: white with faint rufous markings", + "breast: rufous-chestnut color", + "crown: reddish-brown feathers", + "forehead: white with a hint of rust color", + "eyes: round, black, and alert", + "legs: slender and black", + "wings: reddish-brown with white streaks", + "nape: reddish-brown and well-feathered", + "tail: long and rufous with white-tipped feathers", + "throat: white with rufous chestnut color edge" + ], + "rufous naped bellbird": [ + "back: reddish-brown feathers", + "beak: short, sturdy, and pale-colored", + "belly: creamy-white with light brown markings", + "breast: light brown, slightly speckled", + "crown: rufous or reddish-brown tuft", + "forehead: cream to light brown hue", + "eyes: deep black with a thin, white eye-ring", + "legs: slender and dark grey", + "wings: mid-length, reddish-brown with lighter edges", + "nape: distinctive rufous or reddish-brown patch", + "tail: short, brown, and slightly notched", + "throat: creamy-white with light brown streaks" + ], + "rufous naped greenlet": [ + "back: olive-green feathers", + "beak: thin, sharp, and slightly curved", + "belly: yellowish-green hue", + "breast: lighter green plumage", + "crown: reddish-brown crest", + "forehead: greenish-yellow tint", + "eyes: small and dark", + "legs: slender and gray", + "wings: olive-green with darker flight feathers", + "nape: rufous or reddish-brown patch", + "tail: green with darker outer feathers", + "throat: pale greenish-yellow" + ], + "rufous naped ground tyrant": [ + "back: brownish-grey feathers", + "beak: short, dark, and stout", + "belly: cream-white with faint streaks", + "breast: pale grey with light streaks", + "crown: reddish-brown with darker streaks", + "forehead: pale grey transitioning to crown", + "eyes: dark with pale grey eye-ring", + "legs: long and slender, pale pink", + "wings: brownish-grey with light streaks", + "nape: rufous-colored, distinct from crown", + "tail: short and square, brownish-grey", + "throat: light grey with faint streaking" + ], + "rufous naped lark": [ + "back: brownish-grey feathers with white streaks", + "beak: short, slightly curved, pale yellow", + "belly: off-white and lightly spotted", + "breast: light beige-brown with few streaks", + "crown: brown with pale streaks and slight crest", + "forehead: brownish-grey with white streaks", + "eyes: dark brown, slightly elongated", + "legs: pale yellow, thin and elongated", + "wings: brownish-grey with white markings", + "nape: rufous red/brown, distinctive coloration", + "tail: brownish-grey with white outer edges", + "throat: off-white, unmarked" + ], + "rufous naped tit": [ + "back: reddish-brown with streaks", + "beak: short and sharp, dark grey", + "belly: pale greyish-white", + "breast: light orange-brown", + "crown: rufous-red with slight crest", + "forehead: white with black stripes", + "eyes: black with white eye-ring", + "legs: slender greyish-blue", + "wings: brown with white wingbars", + "nape: rufous with black stripes", + "tail: long with black and white patterns", + "throat: white with black border" + ], + "rufous naped wren": [ + "back: subdued reddish-brown plumage", + "beak: sturdy and slightly curved", + "belly: creamy white with faint barring", + "breast: light brown with subtle streaks", + "crown: rufous-brown with black streaks", + "forehead: slightly paler brown with fine streaks", + "eyes: small, dark-centered with white eye-ring", + "legs: pale brown, strong and slender", + "wings: brown with blackish barring", + "nape: rich rufous color with black streaks", + "tail: long, brown, and slightly notched", + "throat: creamy-white with pale streaks" + ], + "rufous necked foliage gleaner": [ + "back: brownish-olive feathers", + "beak: long, slender, and curved", + "belly: pale with light streaks", + "breast: orange-brown with dark spots", + "crown: rufous and brownish-olive", + "forehead: brownish-olive with thin streaks", + "eyes: dark, surrounded by a pale eye-ring", + "legs: gray and sturdy", + "wings: brownish-olive with faint barring", + "nape: rufous, connecting crown and back", + "tail: brownish-olive, long and square-tipped", + "throat: pale with dark streaks" + ], + "rufous necked hornbill": [ + "back: rusty brown with a slight sheen", + "beak: large, curved, yellow upper beak with a reddish base and black lower mandible", + "belly: white or pale buff with black streaks", + "breast: black with a white or pale buff patch on the upper part", + "crown: black with a short crest", + "forehead: small feathers leading into the dark crest", + "eyes: dark with a vivid blue eye-ring", + "legs: strong, grayish-blue legs and feet", + "wings: broad and rounded, black with white bars on the flight feathers", + "nape: vibrant rufous-orange band on the back of the neck", + "tail: black with white bars and a broad white tip", + "throat: black with a contrasting white or pale buff patch" + ], + "rufous necked laughingthrush": [ + "back: reddish-brown with black streaks", + "beak: strong, slightly curved, black", + "belly: off-white with faint brown spots", + "breast: bright chestnut-colored", + "crown: sleek brown head feathers", + "forehead: lighter brown than crown", + "eyes: small, black, surrounded by white eye-ring", + "legs: sturdy, dark grey", + "wings: brown and black with white streaks", + "nape: rufous red coloration", + "tail: long, brown, with black and white markings", + "throat: off-white with light brown spots" + ], + "rufous necked puffbird": [ + "back: brownish-black with white speckles", + "beak: strong, black, and slightly curved", + "belly: whitish with brown spots", + "breast: light brown with white streaks", + "crown: reddish-brown with a black patch", + "forehead: light brown and slightly fluffy", + "eyes: dark, small, surrounded by a black stripe", + "legs: strong, gray, with sharp claws", + "wings: brownish-black with white spots and streaks", + "nape: rufous or reddish-brown", + "tail: dark brown with white-tipped feathers", + "throat: white with a rufous patch" + ], + "rufous necked snowfinch": [ + "back: brownish-grey feathers", + "beak: short, conical, dark grey", + "belly: whitish-grey plumage", + "breast: pale grey with brown streaks", + "crown: brownish-grey feathers", + "forehead: reddish-brown patch", + "eyes: small, dark beady", + "legs: strong, dark grey", + "wings: dark grey with white wingbars", + "nape: reddish-brown band", + "tail: long, dark grey with white edges", + "throat: light grey with slight brown streaks" + ], + "rufous necked sparrowhawk": [ + "back: reddish-brown with dark streaks", + "beak: sharp, hooked, blackish-grey", + "belly: white with rufous-brown streaks", + "breast: reddish-brown with darker barring", + "crown: dark reddish-brown", + "forehead: slightly paler brown", + "eyes: piercing yellow", + "legs: long, yellow with sharp talons", + "wings: broad, rounded, reddish-brown with dark barring", + "nape: rufous-colored with dark streaks", + "tail: long, reddish-brown with dark bands", + "throat: white with rufous-brown streaks" + ], + "rufous necked wood rail": [ + "back: sunset brown feathers", + "beak: long, curved, and olive-yellow", + "belly: creamy white to russet", + "breast: pale cinnamon-orange", + "crown: dark olive-brown", + "forehead: rusty-red", + "eyes: bright, pale yellow", + "legs: sturdy, grayish-green", + "wings: rufous and olive with white streaks", + "nape: rufous-brown", + "tail: short, fan-like with black and white bands", + "throat: whitish, blending into breast color" + ], + "rufous necked wryneck": [ + "back: brown with dark vertical streaks", + "beak: short, slightly decurved", + "belly: cream-colored with dark streaks", + "breast: grayish-brown with thin streaks", + "crown: dark with light streaks", + "forehead: grayish with dark markings", + "eyes: black surrounded by pale eyebrow stripe", + "legs: dull pinkish-brown", + "wings: brown with buff patterned feathers", + "nape: rusty-red and streaky", + "tail: short, brown with dark bands", + "throat: white with dark speckles" + ], + "rufous rumped antwren": [ + "back: streaked brown and black patterns", + "beak: short and sharp, black in color", + "belly: white with light rufous tones", + "breast: grayish-white with faint streaks", + "crown: dark brown with a faint crest", + "forehead: lighter brown than crown, small white eye-ring", + "eyes: small, black, surrounded by white eye-ring", + "legs: slender, grayish in color", + "wings: brownish-black with rufous-rimmed feathers", + "nape: brown transitioning to rufous towards rump", + "tail: rufous color, long and narrow with white tips", + "throat: white with faint gray streaks" + ], + "rufous rumped foliage gleaner": [ + "back: reddish-brown with subtle streaks", + "beak: short, sharp, slightly curved", + "belly: pale and streaked with brown", + "breast: light brown with faint streaks", + "crown: rufous-brown with slight crest", + "forehead: light brown, blending into crown", + "eyes: black, surrounded by faint brown rings", + "legs: long, thin, pale brown", + "wings: reddish-brown with barring and white-tipped feathers", + "nape: rufous, blending into back and crown", + "tail: long, rufous with dark central feathers and white tips", + "throat: light brown with faint streaks" + ], + "rufous rumped lark": [ + "back: brownish-grey with light streaks", + "beak: short and stout, pale grey", + "belly: off-white with light brown spots", + "breast: pale buff, slightly streaked", + "crown: brown with grey streaks", + "forehead: pale brown with fine streaks", + "eyes: dark brown, small, and alert", + "legs: slender and pale grey", + "wings: long and pointed, brown with white edges", + "nape: light brown, slightly streaked", + "tail: rufous-rumped with dark central feathers", + "throat: pale buff, mostly clear of markings" + ], + "rufous rumped seedeater": [ + "back: brownish with rufous highlights", + "beak: short and conical, grayish color", + "belly: pale, buffy-white underside", + "breast: buffy with faint streaks", + "crown: chestnut-colored with a slight crest", + "forehead: buffy-white, blending into the crown", + "eyes: dark and relatively inconspicuous", + "legs: thin and grayish", + "wings: brownish with small white wingbars", + "nape: chestnut brown, blending into the back", + "tail: relatively short, rufous-brown", + "throat: white with streaks, contrasting with the breast" + ], + "rufous shafted woodstar": [ + "back: glossy-green upperparts", + "beak: short, straight black bill", + "belly: grayish-white with reddish sides", + "breast: iridescent green fading to gray", + "crown: shining green head", + "forehead: bright green feathers", + "eyes: small, dark, alert", + "legs: short, black, and sturdy", + "wings: rounded edges, dark with rufous edges", + "nape: green feathers with a reddish tint", + "tail: forked, rufous-shafted with dark tips", + "throat: males brilliant pink-violet; females grayish-white" + ], + "rufous sided broadbill": [ + "back: reddish-brown feathers", + "beak: large, black, and hooked", + "belly: light creamy-yellow", + "breast: vibrant blue patch", + "crown: black with blue sheen", + "forehead: black and blue", + "eyes: small, dark with a yellowish ring", + "legs: strong, feathered, gray", + "wings: red-brown with black and blue tips", + "nape: black and blue blend", + "tail: long, reddish-brown with black tips", + "throat: bright yellow" + ], + "rufous sided crake": [ + "back: reddish-brown with black bars", + "beak: short, stout, and pale grey", + "belly: white with black barring", + "breast: deep rufous with black streaks", + "crown: dark brown with pale streaks", + "forehead: light brown with dark spots", + "eyes: small and dark", + "legs: yellowish-green with long toes", + "wings: reddish-brown with darker bars", + "nape: pale-streaked brown", + "tail: dark brown, short, and thick", + "throat: pale buff with dark spotting" + ], + "rufous sided gerygone": [ + "back: olive-green feathers", + "beak: thin and pointy", + "belly: pale yellow", + "breast: white with light brown streaks", + "crown: olive-brown with faint streaks", + "forehead: light olive-brown", + "eyes: dark brown with a faint eye-ring", + "legs: pale brown", + "wings: olive-brown with white streaks", + "nape: olive-brown", + "tail: elongated with white tips", + "throat: white with light brown streaks" + ], + "rufous sided honeyeater": [ + "back: brownish-green with distinct streaks", + "beak: long and curved, black", + "belly: pale yellow with brown markings", + "breast: pale yellow with darker streaks", + "crown: dark brown with fine streaks", + "forehead: slightly lighter brown than crown", + "eyes: medium-sized, dark with yellow eye-ring", + "legs: strong and robust, dark gray", + "wings: brownish-green with white wing bars", + "nape: dark brown with fine streaks", + "tail: long and narrow, brown with white tips", + "throat: pale yellow with darker streaks" + ], + "rufous sided scrub tyrant": [ + "back: reddish-brown with subtle streaks", + "beak: short and black, slightly hooked", + "belly: pale yellow with faint streaks", + "breast: yellowish with brown streaks", + "crown: rufous-red with a pronounced crest", + "forehead: light gray blending into the crown", + "eyes: small and dark, surrounded by a faint eyering", + "legs: slender and blackish-brown", + "wings: reddish-brown with hints of black and white", + "nape: grayish blend from the crown to back", + "tail: long and rufous, with blackish outer feathers", + "throat: pale gray, contrasting with breast" + ], + "rufous sided warbling finch": [ + "back: brownish-red upper feathers", + "beak: short, conical, and sharp-edged", + "belly: creamy-white lower feathers", + "breast: reddish-brown with streaks", + "crown: grayish-brown top of head", + "forehead: pale gray-brown area above the bill", + "eyes: dark with pale eye-ring", + "legs: slender and grayish-pink", + "wings: brownish-red with dark streaks", + "nape: grayish-brown neck feathers", + "tail: fan-shaped with dark bars", + "throat: buffy-white with faint streaks" + ], + "rufous tailed antbird": [ + "back: reddish-brown with streaks", + "beak: sharp, thin, black", + "belly: greyish-white with faint streaks", + "breast: greyish-white, with brownish streaks", + "crown: reddish-brown, slightly raised", + "forehead: pale brown with slight streaks", + "eyes: small, black, with pale eye-ring", + "legs: strong, greyish-blue", + "wings: reddish-brown, with faint bars", + "nape: reddish-brown, with light streaks", + "tail: long, rufous, with dark bars", + "throat: white, with faint brown streaks" + ], + "rufous tailed antthrush": [ + "back: reddish-brown feathers", + "beak: short, curved, and black", + "belly: pale brown and lightly spotted", + "breast: faintly streaked with lighter shades of brown", + "crown: warm reddish-brown hue", + "forehead: slightly paler brown than crown", + "eyes: dark with a thin white eye-ring", + "legs: strong with dark greyish hue", + "wings: rufous-brown with darker tips", + "nape: rich rufous coloration", + "tail: reddish-brown and slightly tapered", + "throat: off-white with small, dark spots" + ], + "rufous tailed attila": [ + "back: olive-brown with rufous tones", + "beak: thick, slightly hooked, gray-black", + "belly: pale yellow with olive tinge", + "breast: yellowish-olive fading to pale yellow", + "crown: olive-brown", + "forehead: slightly paler olive-brown", + "eyes: dark brown with pale eye-ring", + "legs: long, gray-black", + "wings: rufous-brown with darker primaries", + "nape: olive brown with rufous highlights", + "tail: bright rufous, long and graduated", + "throat: pale yellow-olive" + ], + "rufous tailed babbler": [ + "back: reddish-brown feathers", + "beak: short, pointed, dark gray", + "belly: light grayish-brown plumage", + "breast: grayish-brown feathers", + "crown: reddish-brown with faint streaks", + "forehead: slightly paler than crown", + "eyes: small and dark", + "legs: sturdy with dark claws", + "wings: reddish-brown with blackish edging", + "nape: reddish-brown with faint streaks", + "tail: rufous with a dark terminal band", + "throat: light grayish-brown" + ], + "rufous tailed fantail": [ + "back: reddish-brown with streaks", + "beak: small and curved", + "belly: pale cream color", + "breast: white with rusty shades", + "crown: reddish-brown with a crest", + "forehead: narrow white line", + "eyes: black and beady", + "legs: light brown and slender", + "wings: elongated with reddish-brown edges", + "nape: rusty reddish-brown", + "tail: long and fan-shaped with reddish-brown feathers", + "throat: white with fine brown streaks" + ], + "rufous tailed flatbill": [ + "back: rusty-brown with streaks", + "beak: broad and flat, orange-yellow", + "belly: pale yellow with brown streaks", + "breast: buff-yellow with faint streaks", + "crown: rufous-brown with faint streaks", + "forehead: pale buff with streaks", + "eyes: dark with pale eye-ring", + "legs: grayish, slender, and long", + "wings: brown with rufous edging on feathers", + "nape: rufous-brown, slightly streaked", + "tail: rufous-brown, long, and slightly forked", + "throat: pale buff with faint streaks" + ], + "rufous tailed flycatcher": [ + "back: rusty-brown feathers", + "beak: narrow and straight, blackish", + "belly: off-white with faint streaks", + "breast: pale yellow with subtle streaks", + "crown: rufous-brown with partial crest", + "forehead: pale off-white", + "eyes: dark with thin white eye-ring", + "legs: sturdy, blackish-gray", + "wings: rufous-brown with blackish flight feathers", + "nape: rust-colored with pale streaks", + "tail: reddish-brown with prominent dark bars", + "throat: off-white with light streaking" + ], + "rufous tailed foliage gleaner": [ + "back: rusty-brown with fine streaks", + "beak: long and slender, hooked tip", + "belly: pale brownish-gray", + "breast: rufous-brown with fine streaks", + "crown: reddish-brown with fine streaks", + "forehead: grayish-brown", + "eyes: dark with pale eyering", + "legs: strong, pale pink", + "wings: rufous-brown with wing bars", + "nape: rusty-brown, lightly streaked", + "tail: long and rufous, slightly forked", + "throat: pale grayish-brown" + ], + "rufous tailed hawk": [ + "back: reddish-brown feathers with dark streaks", + "beak: hooked and sharp, dark gray color", + "belly: white with reddish-brown streaks", + "breast: white with horizontal reddish-brown streaks", + "crown: dark brown with slight reddish tinge", + "forehead: white with few brown streaks", + "eyes: piercing yellow with dark black outline", + "legs: strong and yellow, with sharp talons", + "wings: long, broad, reddish-brown with dark bars", + "nape: reddish-brown with dark streaks", + "tail: rufous with dark bands, slightly fan-shaped", + "throat: white, sometimes with light reddish-brown streaks" + ], + "rufous tailed hummingbird": [ + "back: iridescent green feathers", + "beak: long, slender, curved", + "belly: light grayish-white", + "breast: shimmering green", + "crown: shining green", + "forehead: bright green", + "eyes: small, dark, round", + "legs: short, thin, gray", + "wings: narrow, fast-flapping, greenish-bronze", + "nape: vibrant green", + "tail: reddish-brown, forked", + "throat: white, streaked with green" + ], + "rufous tailed jacamar": [ + "back: iridescent green", + "beak: long, slender, black", + "belly: rufous-orange", + "breast: white and rufous", + "crown: shiny green", + "forehead: bright green", + "eyes: black, beady", + "legs: grayish-brown", + "wings: shimmering green", + "nape: glistening green", + "tail: reddish-brown", + "throat: white, tinged with orange" + ], + "rufous tailed lark": [ + "back: light brown with streaks", + "beak: thick and conical, cream-colored", + "belly: pale creamy-white", + "breast: brown with dark streaks", + "crown: rufous-brown with streaks", + "forehead: pale whitish-buff", + "eyes: dark brown with pale eyering", + "legs: long and thin, light-brown", + "wings: brown with rufous edges, white wingbar", + "nape: rufous brown with streaks", + "tail: rufous with dark central feathers", + "throat: creamy-white with brown streaks" + ], + "rufous tailed palm thrush": [ + "back: rusty-brown feathers", + "beak: short and slightly curved, black", + "belly: pale white with faint streaks", + "breast: creamy white with brown streaks", + "crown: dark brown and slightly raised", + "forehead: slightly lighter brown than the crown", + "eyes: round and dark with a faint pale ring", + "legs: long and slender, dark brown", + "wings: rusty-brown with darker brown markings", + "nape: dark brown, merging with the crown", + "tail: rufous-brown with a slightly darker tip", + "throat: pale white with fine brown streaks" + ], + "rufous tailed plantcutter": [ + "back: reddish-brown with streaks", + "beak: short, black, and hooked", + "belly: white with pale rufous streaks", + "breast: pale rufous with streaks", + "crown: rufous-red with faint markings", + "forehead: rufous to grayish-red", + "eyes: dark, framed by pale eyebrow", + "legs: thin, grayish-black", + "wings: rufous with distinct black markings", + "nape: reddish-brown with streaks", + "tail: bright rufous, slightly forked", + "throat: white with rufous tinge" + ], + "rufous tailed robin": [ + "back: rusty-orange coloration with darker streaks", + "beak: small, slender, and dark gray", + "belly: whitish with faint gray-brown streaks", + "breast: reddish-brown with darker markings", + "crown: dark gray with slight streaks", + "forehead: pale gray with thin markings", + "eyes: dark, round, and expressive", + "legs: slender and light brown", + "wings: grayish-brown with pale wing bars", + "nape: pale gray with thin streaks", + "tail: rufous-orange with a slight fork", + "throat: whitish-gray with faint streaks" + ], + "rufous tailed rock thrush": [ + "back: dark grey-blue to black feathers", + "beak: black, medium-length and thin", + "belly: white to light grey feathers", + "breast: orange-crimson feathers fading to the belly", + "crown: dark grey to black feathers", + "forehead: dark grey feathers", + "eyes: small, black, and alert", + "legs: slender, dark grey-black", + "wings: blue-grey with black flight feathers", + "nape: dark grey to black feathers", + "tail: rusty-orange with grey base and black band at the tip", + "throat: light grey-blue to white" + ], + "rufous tailed scrub robin": [ + "back: reddish-brown, streaked feathers", + "beak: black, slender, slightly curved", + "belly: white with light brown spots", + "breast: white with pale orange wash", + "crown: rufous-brown, slightly raised", + "forehead: pale grayish-white", + "eyes: black, surrounded by white ring", + "legs: pinkish-brown and slender", + "wings: rufous-brown, long with white edges", + "nape: reddish-brown, streaked", + "tail: rufous, edged with black and white tips", + "throat: white, unmarked" + ], + "rufous tailed shama": [ + "back: rusty reddish-brown", + "beak: sharp, black curved", + "belly: white with light rufous", + "breast: orange-rufous", + "crown: dark brown", + "forehead: black chinstrap line", + "eyes: piercing, dark brown", + "legs: long, slender grey", + "wings: reddish-brown mixed with black", + "nape: dark brown with slight reddish tinge", + "tail: long, rufous with white tips", + "throat: white, unmarked" + ], + "rufous tailed stipplethroat": [ + "back: rich rufous coloring with fine stippling", + "beak: compact, straight, and pointed", + "belly: white with rufous streaks and spots", + "breast: white with dense stippling", + "crown: rufous-brown with fine markings", + "forehead: boldly patterned with rufous and buff hues", + "eyes: dark, expressive with a pale eye-ring", + "legs: sturdy and grayish-brown", + "wings: dark, rufous-toned with white-tipped coverts", + "nape: rufous-brown with fine streaking", + "tail: long and rufous, with dark barring", + "throat: whitish with dense stippled patterns" + ], + "rufous tailed tailorbird": [ + "back: olive-green feathers", + "beak: thin and pointed", + "belly: light olive-brown", + "breast: whitish and streaked", + "crown: rufous-colored with a dark center stripe", + "forehead: light olive-green", + "eyes: black with white eye-ring", + "legs: light brown and slender", + "wings: olive-green with rufous edges", + "nape: olive-green with a rufous tint", + "tail: long and rufous-colored", + "throat: white with faint streaks" + ], + "rufous tailed tyrant": [ + "back: reddish-brown with streaks", + "beak: small, black, and pointed", + "belly: beige with light streaks", + "breast: pale orange and streaked", + "crown: rufous with streaks", + "forehead: light beige, fading to rufous", + "eyes: black with thin white eye-ring", + "legs: thin and grayish", + "wings: rufous brown with white to beige wing bars", + "nape: rufous brown, slightly streaked", + "tail: rufous with a slight fork", + "throat: pale beige and streaked" + ], + "rufous tailed weaver": [ + "back: brown streaks on a caramel base", + "beak: strong, silver-gray", + "belly: creamy white with brown spots", + "breast: white with a dusty rufous tinge and slight streaks", + "crown: russet-brown with fine black streaks", + "forehead: black with small white spots", + "eyes: medium-sized, dark brown", + "legs: long, thin, olive-gray", + "wings: brown with rufous and white markings", + "nape: reddish-brown with darker streaks", + "tail: rufous with black and white tips", + "throat: white with narrow brown streaks" + ], + "rufous tailed xenops": [ + "back: reddish-brown with streaks", + "beak: short and curved", + "belly: pale with brownish spots", + "breast: buff-white with streaks", + "crown: reddish-brown with black streaks", + "forehead: pale and slightly streaked", + "eyes: black with white ring", + "legs: pale pinkish-grey", + "wings: reddish-brown with white bars", + "nape: reddish-brown with black streaks", + "tail: rufous with stiffened shafts", + "throat: pale buff-white" + ], + "rufous thighed kite": [ + "back: rusty-brown feathering with black streaking", + "beak: sharp, black, hooked tip", + "belly: white to pale yellow, barred with fine rufous lines", + "breast: white, streaked with brownish-red", + "crown: rufous-orange, with a dark line extending behind the eye", + "forehead: whitish, with reddish-brown streaks", + "eyes: dark brown with a yellow eye-ring", + "legs: yellow-skinned with black, curved talons", + "wings: long and narrow, black with rufous and white patches", + "nape: rufous-orange, transitioning to the crown", + "tail: black with white and rusty-red barring", + "throat: white, with a subtle rufous tinge" + ], + "rufous throated antbird": [ + "back: reddish-brown plumage", + "beak: narrow, slightly curved, black", + "belly: light brown with faint streaks", + "breast: tan with darker streaks", + "crown: rufous-colored feathers", + "forehead: reddish-brown, blending into the crown", + "eyes: round, dark, surrounded by white eye-ring", + "legs: slender, grayish-pink", + "wings: short, reddish-brown with rufous-tipped coverts", + "nape: rufous, connecting with the crown", + "tail: long, reddish-brown with white-tipped feathers", + "throat: bright rufous patch, distinct from the surrounding plumage" + ], + "rufous throated bronze cuckoo": [ + "back: copper-bronze plumage", + "beak: slender, blackish-brown", + "belly: white with black bars", + "breast: copper-bronze hue", + "crown: metallic golden brown", + "forehead: paler bronze tone", + "eyes: dark, beady", + "legs: grayish-blue", + "wings: reddish-brown, with white tips", + "nape: metallic golden brown", + "tail: long, graduated, dark-barred", + "throat: rufous-toned, distinctive" + ], + "rufous throated dipper": [ + "back: brownish-gray feathers", + "beak: short, dark, pointed", + "belly: white feathered region", + "breast: rufous-tinged plumage", + "crown: dark gray feathered head", + "forehead: grayish-brown feathers", + "eyes: small, dark, and round", + "legs: strong, dark, and short", + "wings: grayish-brown with white streaks", + "nape: grayish-brown feathered area", + "tail: short, dark, with white outer feathers", + "throat: vibrant rufous patch" + ], + "rufous throated flycatcher": [ + "back: brownish-grey feathers", + "beak: sharp, pointy, black", + "belly: white or light grey", + "breast: reddish-brown patch", + "crown: dark grey or black", + "forehead: lighter grey strip", + "eyes: round, black, alert", + "legs: thin, brown, sturdy", + "wings: short, rounded, brownish", + "nape: grey or black feathers", + "tail: long, brownish-grey", + "throat: reddish or rusty color" + ], + "rufous throated fulvetta": [ + "back: brownish-grey feathers", + "beak: short, sharp, and pale-colored", + "belly: light grey with slight rufous tinge", + "breast: greyish-white with rufous undertones", + "crown: dark grey with a slight rufous hue", + "forehead: dark grey with fine streaks", + "eyes: small, black, and alert", + "legs: pale pink and slender", + "wings: brownish-grey with subtle rufous markings", + "nape: dark grey with faint streaks", + "tail: medium-length, brownish-grey with rufous edges", + "throat: bold rufous patch" + ], + "rufous throated honeyeater": [ + "back: rusty brown feathers", + "beak: slender, curved black beak", + "belly: white with black streaks", + "breast: white with brown speckles", + "crown: reddish-brown head", + "forehead: light brown with white markings", + "eyes: small, black, and sparkling", + "legs: thin, gray, and sturdy", + "wings: brown with white streaks", + "nape: rusty red coloring", + "tail: long, brown, and fan-shaped", + "throat: vibrant rufous patch" + ], + "rufous throated partridge": [ + "back: reddish-brown with black streaks", + "beak: short, curved, grayish", + "belly: buff, white and black barred", + "breast: rich chestnut with black barring", + "crown: rufous with black border", + "forehead: white and black striped", + "eyes: dark brown, surrounded by bold white band", + "legs: strong, pinkish-grey", + "wings: dark chestnut, black and buff barred", + "nape: rufous-color, bordered by black band", + "tail: long, chestnut with black bars and white tips", + "throat: white with prominent black stripes" + ], + "rufous throated sapphire": [ + "back: iridescent blue-green", + "beak: slim, black, and slightly curved", + "belly: light greenish-grey", + "breast: shimmering turquoise-blue", + "crown: brilliant metallic blue", + "forehead: gleaming emerald green", + "eyes: small, dark, and rounded", + "legs: slender, black and scaled", + "wings: rounded and dark green", + "nape: radiant deep blue", + "tail: elongated, forked, and iridescent", + "throat: distinctive rufous-orange color" + ], + "rufous throated solitaire": [ + "back: olive-brown feathers", + "beak: short, pointed black bill", + "belly: white with pale rufous hue", + "breast: lighter olive-brown transitioning to white", + "crown: olive-brown, slightly crested", + "forehead: pale rufous stripe", + "eyes: dark with white eye-ring", + "legs: long, grayish-black", + "wings: olive-brown with faint white wing bars", + "nape: olive-brown, blending into back color", + "tail: long and pointed, olive-brown with white edges", + "throat: pronounced rufous tint" + ], + "rufous throated tanager": [ + "back: olive-green feathered coverage", + "beak: short, thick, cone-shaped and black", + "belly: light yellow with slight streaks", + "breast: vibrant orange-red coloration", + "crown: deep olive-green feathers", + "forehead: bright olive-green hue", + "eyes: small, black, with white eyering", + "legs: dark grey, sturdy", + "wings: greenish tinge with dark accents", + "nape: vibrant olive tone", + "tail: olive-green, elongated feathers", + "throat: striking rufous coloration" + ], + "rufous throated wren babbler": [ + "back: reddish-brown with slight streaks", + "beak: short and slightly curved", + "belly: white with brown spots", + "breast: white with reddish-brown streaks", + "crown: rufous-brown", + "forehead: white with brown streaks", + "eyes: dark with pale eye-ring", + "legs: sturdy, pale pinkish-brown", + "wings: reddish-brown with faint bars", + "nape: rufous-brown", + "tail: long and slightly graduated, reddish-brown", + "throat: white with reddish-brown streaks" + ], + "rufous vented chachalaca": [ + "back: brownish-olive feathers", + "beak: long, curved, grayish", + "belly: rufous-toned feathers", + "breast: grayish-brown plumage", + "crown: dark brown, slightly crested", + "forehead: narrow pale eyebrow stripe", + "eyes: dark brown, well-defined", + "legs: strong, grayish-brown", + "wings: long, olive-brown primary feathers", + "nape: reddish-brown feathers", + "tail: long, rufous-vented, slightly graduated", + "throat: light gray with darker markings" + ], + "rufous vented grass babbler": [ + "back: reddish-brown feathers with streaks", + "beak: short, curved, and sharp", + "belly: creamy-white with rufous vent", + "breast: light brown with streaks", + "crown: dark brown with streaks", + "forehead: buffy-grey with streaks", + "eyes: dark and beady, surrounded by light feathers", + "legs: long, thin, and grey", + "wings: brownish-grey with dark markings", + "nape: reddish-brown with streaks", + "tail: long, pointed, and reddish-brown", + "throat: buffy-white with light streaks" + ], + "rufous vented ground cuckoo": [ + "back: dark brown with streaks", + "beak: long and slender, black color", + "belly: rufous with black and white streaks", + "breast: lightly barred with brown and white", + "crown: black with white streaks", + "forehead: slightly paler brown", + "eyes: dark brown with white eye-ring", + "legs: long and sturdy, blue-gray color", + "wings: large with dark brown and rufous feathers", + "nape: dark brown with slight white streaking", + "tail: long and graduated, rufous and black barred", + "throat: pale with brown and white streaks" + ], + "rufous vented laughingthrush": [ + "back: reddish-brown with dark streaks", + "beak: strong, slightly curved, blackish-grey", + "belly: pale rusty-orange with blackish streaks", + "breast: grayish-brown with streaks", + "crown: rusty-brown with dark streaks", + "forehead: reddish-brown, blending with crown", + "eyes: dark brown with pale eye-ring", + "legs: strong, greyish-black", + "wings: reddish-brown with darker flight feathers", + "nape: reddish-brown, blending with crown", + "tail: long with reddish-brown and dark grey feathers", + "throat: pale grey with faint streaks" + ], + "rufous vented niltava": [ + "back: rich blue with rufous feather tips", + "beak: dark, strong, and curved", + "belly: vibrant rufous-orange", + "breast: rich blue, transitioning to rufous", + "crown: deep blue with darker streaks", + "forehead: vivid blue, slightly lighter than crown", + "eyes: dark, beady, surrounded by blue feathers", + "legs: dark grey and slender", + "wings: striking blue with rufous edges", + "nape: deep blue with darker streaks", + "tail: long, blue with rufous vent and outer feathers", + "throat: bright blue, similar to forehead" + ], + "rufous vented paradise flycatcher": [ + "back: rusty-brown feathers with short, darker stripes", + "beak: short, black, slightly hooked", + "belly: white with touches of rufous", + "breast: rusty-brown with a white streak down the middle", + "crown: glossy black with elongated tail feathers", + "forehead: black with slight iridescence", + "eyes: dark brown with a pale eyering", + "legs: black and relatively short", + "wings: rich chestnut with contrasting white bands", + "nape: glossy black, blending seamlessly into the crown", + "tail: long and ribbon-like, with rufous and white streamers", + "throat: white, transitioning into the rusty breast color" + ], + "rufous vented tapaculo": [ + "back: brownish-grey feathers", + "beak: short, thin, and black", + "belly: rufous-orange coloration", + "breast: greyish-white feathers", + "crown: dark grey with slight crest", + "forehead: smooth grey feathers", + "eyes: small and black, surrounded by grey feathers", + "legs: strong, short, and dark grey", + "wings: short and rounded, with brownish-grey feathers", + "nape: greyish-brown plumage", + "tail: short and rufous-colored", + "throat: whitish-grey feathers" + ], + "rufous vented tit": [ + "back: reddish-brown feathers", + "beak: short, pointed, black", + "belly: off-white with reddish patches", + "breast: slight reddish-brown hue", + "crown: dark gray with white streaks", + "forehead: whitish-gray", + "eyes: small, black, piercing", + "legs: slender, grayish-brown", + "wings: reddish-brown feathers with white markings", + "nape: grayish-white with faint streaks", + "tail: long, rusty-red with black bands", + "throat: pale grayish-white" + ], + "rufous vented whitetip": [ + "back: rusty-brown feathers", + "beak: short, curved black bill", + "belly: creamy-white plumage", + "breast: white with slight rufous streaks", + "crown: rich chestnut-brown", + "forehead: white stripe above the eye", + "eyes: dark, beady eyes", + "legs: long, skinny pale legs", + "wings: brown and white with rufous tips", + "nape: chestnut-brown with white streaks", + "tail: short, white-tipped with rufous undertail coverts", + "throat: white, unmarked" + ], + "rufous vented yuhina": [ + "back: reddish-brown with dark streaks", + "beak: short and slightly curved", + "belly: whitish with pale rufous flanks", + "breast: white with dark brown streaks", + "crown: velvety brown with a spiky crest", + "forehead: reddish-brown and slightly flat", + "eyes: dark and beady, surrounded by a pale eye-ring", + "legs: grayish with robust claws", + "wings: brownish with white-edged feathers", + "nape: dark brown with streaks", + "tail: long and brown with white outer tips", + "throat: white with dark markings" + ], + "rufous webbed brilliant": [ + "back: rich reddish-brown feathers", + "beak: slender, elongated, blackish", + "belly: creamy white with brown streaks", + "breast: vivid orange-red plumage", + "crown: iridescent green with golden highlights", + "forehead: bright metallic green", + "eyes: large, dark, surrounded by orange feathers", + "legs: thin, gray with strong claws", + "wings: rufous with webbed feather tips", + "nape: golden-green transitioning to reddish-brown", + "tail: elongated, rufous with white outer margins", + "throat: brilliant orange-red with iridescence" + ], + "rufous webbed bush tyrant": [ + "back: reddish-brown with mottled pattern", + "beak: short, stout, and black", + "belly: pale grayish with brown streaks", + "breast: warm brownish-gray", + "crown: dark brown with a slight crest", + "forehead: medium brown with subtle streaking", + "eyes: large and black, surrounded by pale eyering", + "legs: slender and gray", + "wings: brown with rusty-red edges and light bars", + "nape: brownish-gray with slight streaking", + "tail: short and square-tipped, rusty-red with blackish bars", + "throat: pale gray with faint brown streaks" + ], + "rufous winged antshrike": [ + "back: reddish-brown with dark streaks", + "beak: short, strong, and hooked", + "belly: white with faint streaks", + "breast: white with brownish sides", + "crown: black with reddish-brown tinge", + "forehead: black with partial reddish-brown tinge", + "eyes: dark with a light eye-ring", + "legs: sturdy and grayish", + "wings: rufous-colored with dark barring", + "nape: dark with reddish-brown tinge", + "tail: long, rufous with dark barring", + "throat: white, sometimes with faint streaks" + ], + "rufous winged buzzard": [ + "back: brownish with rufous streaks", + "beak: black, hook-shaped for tearing prey", + "belly: white with brown barring", + "breast: white with brown streaks", + "crown: dark brown with a rufous tinge", + "forehead: whitish, blending into the crown", + "eyes: piercing yellow with a black outline", + "legs: yellow, strong and featherless", + "wings: rufous in color with dark brown bars", + "nape: brown with rufous shades", + "tail: dark brown with rufous bars and white tips", + "throat: white with brown streaks" + ], + "rufous winged cisticola": [ + "back: reddish-brown and streaked", + "beak: short, pointed, and black", + "belly: off-white with hints of rufous", + "breast: pale buff with faint streaks", + "crown: rufous, slightly streaked", + "forehead: rufous with black markings", + "eyes: small, round, and black", + "legs: slim, greyish-black", + "wings: reddish-brown with clear white tips", + "nape: rufous, streaked with black", + "tail: reddish-brown, elongated, and forked", + "throat: buff white, unstreaked" + ], + "rufous winged fulvetta": [ + "back: dark olive-green", + "beak: short and conical", + "belly: pale grayish-brown", + "breast: pale grayish-white", + "crown: reddish-brown", + "forehead: dusky gray", + "eyes: dark brown surrounded", + "legs: stout and grayish-pink", + "wings: reddish-brown with white tips", + "nape: olive-green", + "tail: dark brown with thin white edges", + "throat: pale grayish-white" + ], + "rufous winged ground cuckoo": [ + "back: olive-brown with dark streaks", + "beak: long, slender, slightly curved, dark grayish-brown", + "belly: buffy-white with brown horizontal barring", + "breast: dark brown with lighter brown streaks", + "crown: dark brown with rufous tinged feathers", + "forehead: rufous-orange with a subtle crest", + "eyes: dark brown with pale buff eyering", + "legs: strong, dark gray with long toes and sharp claws", + "wings: rufous-orange with distinct white banding and barring", + "nape: olive-brown with slight streaking", + "tail: long, graduated, dark brown with alternating white and rufous bands", + "throat: pale buff with dark brown streaks" + ], + "rufous winged illadopsis": [ + "back: rich chestnut-brown colored feathers", + "beak: short, sturdy, and pale grayish", + "belly: creamy white, slightly buff undertones", + "breast: grayish-brown with faint streaks", + "crown: chestnut-brown, blending with back", + "forehead: smooth, chestnut-brown", + "eyes: dark, slightly beady, surrounded by pale eyering", + "legs: pale gray, slender yet strong", + "wings: rufous-brown with distinct tawny wing panel", + "nape: chestnut-brown, matching crown and back", + "tail: rufous-brown, slightly squared-off shape", + "throat: buffy-white, hint of streaks" + ], + "rufous winged philentoma": [ + "back: brownish-grey with faint streaks", + "beak: slender and straight black beak", + "belly: white, fading to pale yellow", + "breast: greyish-brown with faint streaks", + "crown: rufous, with brownish streaks", + "forehead: slightly grayish rufous", + "eyes: dark brown encircled with white", + "legs: long, skinny grey legs", + "wings: rufous with dark brown flight feathers", + "nape: brownish-grey with faint streaks", + "tail: long and straight brownish tail", + "throat: pale greyish-white" + ], + "rufous winged sparrow": [ + "back: streaked brown and gray feathers", + "beak: short, conical, pale grayish-blue", + "belly: off-white and lightly streaked", + "breast: light brown with thin streaks", + "crown: rusty brown with gray markings", + "forehead: pale gray-brown with fine streaks", + "eyes: large, dark, and expressive", + "legs: sturdy and grayish-blue", + "wings: rufous with white and black markings", + "nape: brownish-gray with fine streaks", + "tail: long, dusky, and edged with rufous", + "throat: white with light streaks" + ], + "rufous winged sunbird": [ + "back: rusty-orange feathers with iridescent sheen", + "beak: long, slim, and curved for nectar extraction", + "belly: bright yellow plumage with thin, dark streaks", + "breast: vibrant yellow, blending into belly", + "crown: shiny, iridescent green feathers", + "forehead: iridescent green feathers transitioning to crown", + "eyes: small, black, and alert", + "legs: thin, gray, and adaptable for perching", + "wings: rufous with greenish edging and flashes of iridescent blue", + "nape: green iridescent feathers continuing from crown", + "tail: elongated, rufous central feathers with green edges", + "throat: iridescent green, contrasting with yellow breast" + ], + "rufous winged tanager": [ + "back: olive-green with hints of rufous", + "beak: short, sturdy, and black", + "belly: pale yellow with subtle streaks", + "breast: bright yellow with hints of green", + "crown: olive-green, contrasts with forehead", + "forehead: striking orange-red coloration", + "eyes: black with white eye-ring", + "legs: strong, dark gray, with sharp claws", + "wings: rufous color with black edging", + "nape: olive-green, blends with back", + "tail: rufous with black tips, forked", + "throat: bright yellow, seamless with the breast" + ], + "rufous winged tyrannulet": [ + "back: olive-green with rufous streaks", + "beak: short, sharp, and dark-colored", + "belly: pale yellowish-white", + "breast: olive-gray hue", + "crown: dark olive-green with rufous highlights", + "forehead: subtle rufous-olive tint", + "eyes: small, dark, and alert", + "legs: sturdy and dark gray", + "wings: rufous-edged flight feathers", + "nape: olive-green with touches of rufous", + "tail: short, dark, and rufous-tipped", + "throat: whitish under a grayish wash" + ], + "rufous winged woodpecker": [ + "back: dark brown with rufous streaks", + "beak: strong, straight, and black", + "belly: creamy white with brown spots", + "breast: light brown with dark streaks", + "crown: rufous-orange with black patterning", + "forehead: tan with black markings", + "eyes: dark and medium-sized, surrounded by black markings", + "legs: sturdy and gray", + "wings: dark brown with rufous patches and white spots", + "nape: black with white barring", + "tail: black with white outer feathers", + "throat: light brown with dark streaks" + ], + "running coua": [ + "back: bright blue upper body feathers", + "beak: long, curved black beak", + "belly: light blue-gray feathers", + "breast: vibrant blue plumage", + "crown: royal blue crest on the head", + "forehead: blue feathers with a slight curve", + "eyes: piercing yellow eyes", + "legs: strong gray legs with sharp claws", + "wings: bright blue feathers with white accents", + "nape: smooth blue feathers curve down from the crest", + "tail: long, wide blue feathers with white tips", + "throat: vibrant blue feathers with a lighter-blue patch" + ], + "r\u00fcppell bustard": [ + "back: light brownish-gray with black speckles", + "beak: sturdy, short, and sharp; light gray color", + "belly: creamy white with black bands", + "breast: light grayish-brown with black speckles", + "crown: pale grayish-brown with dark streaks", + "forehead: light gray-brown with darker streaks", + "eyes: rounded and black, encircled by a thin white ring", + "legs: long, strong, and cream-colored", + "wings: elongated with black, gray, and white patterns", + "nape: pale gray-tan with scattered black streaks", + "tail: black and white bands with a slightly forked shape", + "throat: cream-colored with faint black streaks" + ], + "r\u00fcppell chat": [ + "back: olive-brown with subtle streaks", + "beak: short and black, slightly curved", + "belly: pale grey-white with light markings", + "breast: grey-brown with some barring", + "crown: olive-brown with a slight crest", + "forehead: olive-brown, blending into the crown", + "eyes: dark brown with white eye-ring", + "legs: long and blackish-grey", + "wings: olive-brown with blackish flight feathers", + "nape: olive-brown, continuing from the crown", + "tail: olive-brown with a black tip", + "throat: pale grey-white, contrasting with breast" + ], + "r\u00fcppell griffon": [ + "back: dark brown feathers", + "beak: strong, sharp, hooked", + "belly: creamy white feathers", + "breast: white plumage mixed with brown", + "crown: whitish-brown feathers", + "forehead: well-defined white patch", + "eyes: bright yellow with a dark pupil", + "legs: powerful, whitish legs with sharp talons", + "wings: broad, long wingspan with dark-brown feathers", + "nape: lightly feathered with pale brown", + "tail: dark-brown, short tail feathers", + "throat: white, fluffy feathers" + ], + "r\u00fcppell parrot": [ + "back: green with hints of blue", + "beak: dark gray to black, strong and hooked", + "belly: yellowish-green with blue-green hues", + "breast: vibrant green, slightly paler than the back", + "crown: deep blue with a green tinge", + "forehead: deep blue, bordering on turquoise", + "eyes: reddish-brown with white eye-ring", + "legs: dark grey, strong and scaly", + "wings: green with blue wingtips and yellow speckles", + "nape: green blending into the blue crown", + "tail: green and blue-green, long and tapering", + "throat: pale green, lighter than the breast" + ], + "r\u00fcppell robin chat": [ + "back: olive-brown feathers with slight streaks", + "beak: slender, short, and slightly curved", + "belly: white feathers with gray-brown streaks", + "breast: warm orange to chestnut hue", + "crown: olive-brown with gray edges", + "forehead: grayish-brown feathers with slight streaks", + "eyes: large and dark with pale eyebrows", + "legs: long and thin with a grayish hue", + "wings: olive-brown with bold white patches", + "nape: olive-brown with subtle streaks", + "tail: long and dark with white outer feathers", + "throat: white with gray-brown streaks" + ], + "r\u00fcppell starling": [ + "back: iridescent greenish-blue feathers", + "beak: short, strong, and black", + "belly: dull white or grayish underparts", + "breast: dark bluish-green, glossy plumage", + "crown: shiny deep blue or greenish-blue", + "forehead: slightly glossy blue-black feathers", + "eyes: dark brown with pale blue eye ring", + "legs: relatively long, blackish-gray", + "wings: long with blue-green sheen", + "nape: greenish-blue feathers with metallic shine", + "tail: blackish-blue with greenish shimmer", + "throat: deep blue or greenish-blue, glossy feathers" + ], + "r\u00fcppell warbler": [ + "back: dark grayish-brown with subtle streaks", + "beak: thin and curved, blackish-brown", + "belly: pale gray with lighter whitish underparts", + "breast: pale gray, blending into the belly", + "crown: dark grayish-brown with a well-defined crest", + "forehead: slightly paler gray compared to the crown", + "eyes: dark brown, surrounded by a pale gray eyering", + "legs: long and thin, pale pinkish-brown", + "wings: dark grayish-brown with faint white marks on secondaries", + "nape: dark grayish-brown, continuous with the crown", + "tail: dark grayish-brown with a white outer tail feather", + "throat: pale gray with a contrasting dark malar stripe" + ], + "r\u00fcppell weaver": [ + "back: striking yellow-green, streaked with black", + "beak: conical and sturdy, silver-gray", + "belly: bright yellow", + "breast: vibrant yellow, black streaks", + "crown: olive-green, black forehead band", + "forehead: yellow-green, black band", + "eyes: dark brown, outlined in white", + "legs: grayish-black, strong", + "wings: yellow-edged flight feathers, black and green pattern", + "nape: yellow-green, streaked with black", + "tail: long and black, white-tipped outer feathers", + "throat: bright yellow, edged with black" + ], + "russet antshrike": [ + "back: rusty-brown upperparts", + "beak: strong, hook-tipped bill", + "belly: pale gray-white underparts", + "breast: grayish-white, blending with belly", + "crown: rusty-orange, sleek feathering", + "forehead: smooth, rusty-orange plumage", + "eyes: dark, with a subtle eye-ring", + "legs: sturdy, pale gray", + "wings: brownish, with prominent white bars", + "nape: slightly paler rusty-brown than the back", + "tail: long, brown, with a slight reddish tinge", + "throat: grayish-white, transitioning into breast plumage" + ], + "russet bush warbler": [ + "back: olive-brown feathers", + "beak: short, thin, and pointed", + "belly: beige with light streaks", + "breast: pale orange-brown", + "crown: olive-brown with a faint stripe", + "forehead: lighter brown than crown", + "eyes: small with white eye-ring", + "legs: slim and greyish", + "wings: olive-brown with faint wing-bars", + "nape: olive-brown, blending with the crown", + "tail: long and brown with faint diagonal markings", + "throat: pale creamy-yellow with light streaks" + ], + "russet nightingale thrush": [ + "back: olive-brown upper body", + "beak: thin, dark, slightly curved", + "belly: white with russet spots", + "breast: creamy white with brownish spots", + "crown: reddish-brown head", + "forehead: smooth, light brown", + "eyes: beady dark surrounded by white eye-ring", + "legs: long, slender, pinkish-gray", + "wings: long brownish feathered with light bars", + "nape: russet-brown", + "tail: square tipped, olive-brown", + "throat: white with dark streaks" + ], + "russet sparrow": [ + "back: earthy brown with subtle streaks", + "beak: short conical with a pale lower mandible", + "belly: pale, creamy white with brown flanks", + "breast: white with chestnut streaks", + "crown: warm chestnut-brown with pale fringe", + "forehead: reddish-brown fading to grey", + "eyes: dark brown with a pale eye-ring", + "legs: sturdy pinkish-brown", + "wings: brown with hints of chestnut and white-edged feathers", + "nape: rich chestnut-brown", + "tail: dark brown with white tips and outer tail feathers", + "throat: white with faint streaks" + ], + "russet backed oropendola": [ + "back: rich chestnut-brown color", + "beak: long, black, and slightly curved", + "belly: lighter chestnut shade with black streaks", + "breast: deep chestnut with contrasting black streaks", + "crown: golden-yellow feathers", + "forehead: black with a hint of green", + "eyes: small, black, and piercing", + "legs: grayish-black and sturdy", + "wings: deep brown with hints of metallic green", + "nape: vibrant yellow feathers", + "tail: long, graduated, and dark brown", + "throat: striking black with greenish sheen" + ], + "russet bellied spinetail": [ + "back: rusty-brown with streaks", + "beak: thin and pointed", + "belly: warm russet tone", + "breast: light rusty-brown with streaks", + "crown: darker reddish-brown", + "forehead: lighter reddish-brown", + "eyes: black with a white eyering", + "legs: pale pinkish-gray", + "wings: brown with darker flight feathers", + "nape: reddish-brown with streaks", + "tail: long, brown, and graduated", + "throat: grayish-white with faint streaks" + ], + "russet capped tesia": [ + "back: vibrant green feathers", + "beak: short and thin, dark grey", + "belly: creamy white with yellow tint", + "breast: white with soft yellow streaks", + "crown: rich russet-brown crest", + "forehead: greenish-brown plumage", + "eyes: small, black and alert", + "legs: delicate and light grey", + "wings: green with thin white bars", + "nape: russet-brown fading to green", + "tail: short, green and white-tipped", + "throat: white with fine black markings" + ], + "russet crowned crake": [ + "back: varying shades of brown to blend with environment", + "beak: short and slender, pale yellow", + "belly: pale beige and understated markings", + "breast: creamy buff with dark streaks", + "crown: russet colored, distinctive feature", + "forehead: light brown and slightly sloping", + "eyes: dark and beady, alert expression", + "legs: long and slim, pale yellowish", + "wings: brown with light mottling, rounded shape", + "nape: light brown with subtle markings", + "tail: short and rounded, brown feathers", + "throat: lighter in color, blending into breast" + ], + "russet crowned motmot": [ + "back: rich, deep green hue", + "beak: long, thin, and slightly curved", + "belly: pale green with rufous undertones", + "breast: bright turquoise with a black central stripe", + "crown: warm russet with a pronounced crest", + "forehead: light green blending into the russet crown", + "eyes: dark, round, and expressive", + "legs: slender and grayish in color", + "wings: green and blue feathers with elongated tips", + "nape: greenish-blue with hints of russet", + "tail: long and broad with a unique \"racquet\" shape at the tip", + "throat: earthy green with a central black stripe" + ], + "russet crowned quail dove": [ + "back: deep russet-brown, gently blending with the wings", + "beak: short, stout, light-grayish hue", + "belly: pale gray with a hint of russet undertones", + "breast: soft gray with warm russet hints", + "crown: rich russet-hued crest", + "forehead: subtle russet-orange transition into the crown", + "eyes: dark brown, circled by a thin white ring", + "legs: slender, grayish-pink tone", + "wings: soft russet and brown feathers with slight gradient", + "nape: smooth russet-brown transition from the crown", + "tail: elongated, tonal brown and russet feathers", + "throat: light gray with a slight flush of russet" + ], + "russet crowned warbler": [ + "back: olive-brown with subtle streaks", + "beak: short, pointed, pale brown", + "belly: creamy yellow with faint streaks", + "breast: yellow-tinged with brown streaks", + "crown: vibrant russet with a central crest", + "forehead: yellowish-brown, gradually darkening", + "eyes: dark with pale eyering, slightly tilted", + "legs: sturdy, pale pinkish-grey", + "wings: olive-brown with two white wingbars", + "nape: olive-brown, blending with back", + "tail: long, olive-brown with white edges", + "throat: pale yellow, unmarked" + ], + "russet mantled foliage gleaner": [ + "back: russet-brown and streaked", + "beak: long, slender, and slightly curved", + "belly: creamy-white with brown markings", + "breast: softly barred with russet and white", + "crown: russet colored with fine streaks", + "forehead: pale russet-brown", + "eyes: dark, surrounded by faint white eye-ring", + "legs: pale pinkish-gray", + "wings: brownish-russet with white-tipped feathers", + "nape: russet-brown with fine streaks", + "tail: long, reddish-brown with lightly barred feathers", + "throat: creamy-white with russet streaking" + ], + "russet mantled softtail": [ + "back: rich brown plumage", + "beak: slender and slightly curved", + "belly: light russet with faint streaks", + "breast: warm russet color", + "crown: deep russet with subtle streaks", + "forehead: light russet blending into the crown", + "eyes: dark and expressive", + "legs: strong, grayish-brown", + "wings: brown with rufous edging on feathers", + "nape: russet color, blending with the crown", + "tail: elongated with rufous-brown feathers", + "throat: lighter russet with fine streaks" + ], + "russet naped wood rail": [ + "back: rich brown with subtle streaks", + "beak: long and slightly curved, greyish-colored", + "belly: pale brown with soft, dark markings", + "breast: orange-brown with dark streaks", + "crown: dark brown with a subtle reddish tint", + "forehead: lighter brown, blending into the crown", + "eyes: beady and black, set in a white eye-ring", + "legs: long and slender, greyish-green color", + "wings: brown with black barring and white streaks", + "nape: russet-red, giving the bird its name", + "tail: dark brown, moderately long and slightly fan-shaped", + "throat: pale buff with fine, dark streaks" + ], + "russet tailed thrush": [ + "back: rich brown with minimal markings", + "beak: strong, slightly curved, and yellowish", + "belly: cream with light russet spotting", + "breast: creamy white with russet-brown streaks", + "crown: warm russet-brown with faint streaks", + "forehead: smooth russet-brown with a slight crest", + "eyes: dark with a thin, white eye-ring", + "legs: long, sturdy, and yellowish", + "wings: brown with lighter edging on flight feathers", + "nape: warm russet-brown with slight streaking", + "tail: russet with darker bars and a squared tip", + "throat: creamy white with light russet markings" + ], + "russet throated puffbird": [ + "back: reddish-brown feathers with black streaks", + "beak: strong, slightly curved, black", + "belly: white with fine black barring", + "breast: white with broad black streaks", + "crown: rufous-chestnut with black speckles", + "forehead: rufous-chestnut with fine black lines", + "eyes: large, black, and encircled with white", + "legs: strong, slate-gray with sharp talons", + "wings: rufous-chestnut with black spots and white tips", + "nape: rufous-chestnut with black streaks", + "tail: long, black with white-tipped feathers", + "throat: pale russet color with slight black streaking" + ], + "russet winged schiffornis": [ + "back: olive-brown feathers covering the dorsal side", + "beak: medium-sized, slightly curved, grayish-black color", + "belly: cream-colored with reddish-brown undertones", + "breast: pale yellowish-brown with fine reddish-brown streaks", + "crown: rich brown feathers with slight reddish hue", + "forehead: smooth, brown feathers transitioning from crown", + "eyes: small, dark, and well-defined, surrounded by lighter feathers", + "legs: long, slender, grayish-black color with sharp claws", + "wings: warm russet color with black and brown patterns on coverts", + "nape: brownish-olive feathers extending from crown to back", + "tail: fairly long, dark brown with a reddish-brown tint and white tips", + "throat: light cream color with faint reddish-brown streaks" + ], + "russet winged spadebill": [ + "back: olive-green with russet markings", + "beak: short, black hooked bill", + "belly: pale creamy-white", + "breast: faded russet-orange", + "crown: grayish-olive with russet tinge", + "forehead: olive-gray with no distinct markings", + "eyes: round, dark with a pale eye-ring", + "legs: slender grayish-pink", + "wings: olive-green with russet wing-bars", + "nape: grayish-olive blending into back", + "tail: russet-edged with olive-green central feathers", + "throat: creamy-white with a hint of russet" + ], + "rust and yellow tanager": [ + "back: rusty orange feathers", + "beak: short, pointed, and black", + "belly: vibrant yellow plumage", + "breast: rich yellow feathers", + "crown: rusty orange crest", + "forehead: rusty orange patch", + "eyes: small, black, and alert", + "legs: slender, gray-black", + "wings: rusty orange with black markings", + "nape: rusty orange hue", + "tail: long, black with orange tips", + "throat: bold yellow feathers" + ], + "rustic bunting": [ + "back: streaked brown and white", + "beak: short, conical, pale pinkish-brown", + "belly: cream or off-white", + "breast: reddish-brown with dark streaks", + "crown: reddish-brown with dark striations", + "forehead: mix of reddish-brown and black", + "eyes: small, black, with white eyering", + "legs: long, pale pinkish-brown", + "wings: brown and black with white markings", + "nape: reddish-brown with dark streaks", + "tail: dark brown with white outer feathers", + "throat: white with black stripes" + ], + "rusty flowerpiercer": [ + "back: rusty brown with faint streaks", + "beak: short, hooked, black", + "belly: yellowish with brown streaks", + "breast: grayish-brown with white spots", + "crown: dark brown with rusty edges", + "forehead: rusty brown, slightly paler", + "eyes: dark with white eye-ring", + "legs: slender, grayish-black", + "wings: dark brown with rufous wing-bars", + "nape: rusty brown, lighter than crown", + "tail: long, dark brown with rusty edges", + "throat: whitish with brown streaks" + ], + "rusty laughingthrush": [ + "back: rusty-brown feathers covering the upper part of the body", + "beak: slender and slightly curved, with dark coloration", + "belly: pale cream with light rusty streaks", + "breast: deep rusty-orange with darker streaks", + "crown: rich red-brown with smooth feathers", + "forehead: slightly paler rusty-brown than the crown", + "eyes: dark with a thin, white eye-ring", + "legs: grayish-brown, strong, and sturdy", + "wings: rusty-brown with darker feather tips and edges", + "nape: rusty-red feathers transitioning from the crown to the back", + "tail: long, dark brown feathers with rusty edges", + "throat: creamy-white with dark streaks along the sides" + ], + "rusty mouse warbler": [ + "back: rusty brown feathers", + "beak: small, sharp, and black", + "belly: light buff-white with brown speckles", + "breast: buff-white with rusty streaks", + "crown: reddish-brown with faint streaks", + "forehead: rufous-orange hues", + "eyes: dark, beady, and alert", + "legs: slender, grayish-yellow", + "wings: rusty brown with light feather edges", + "nape: reddish-brown, transitioning from crown", + "tail: long, narrow, rusty brown feathers", + "throat: pale buff-white with light streaks" + ], + "rusty pitohui": [ + "back: rusty orange and black barring", + "beak: short and sharp, black in color", + "belly: orange-yellow with black spots", + "breast: bright orange with black spots", + "crown: black with a slight orange tinge", + "forehead: deep rusty orange", + "eyes: small and black, surrounded by orange feathers", + "legs: dark gray, long and slender", + "wings: black with orange-yellow accents and banding", + "nape: rusty orange with black barring", + "tail: long and black, with orange-yellow banding", + "throat: bright orange with black spots" + ], + "rusty sparrow": [ + "back: reddish-brown feathers", + "beak: short, conical, and dark gray", + "belly: pale, grayish-white", + "breast: light rusty-brown with faint streaks", + "crown: rusty brown with fine streaks", + "forehead: light reddish-brown", + "eyes: small, black and shiny", + "legs: slender and pale pinkish-brown", + "wings: reddish-brown with darker wingtips and white patch", + "nape: light rusty-brown with fine streaks", + "tail: dark brown with pale edges on outer feathers", + "throat: pale gray with faint, dark streaks" + ], + "rusty tinamou": [ + "back: dark brown with reddish tint", + "beak: short, curved, grayish-black", + "belly: pale brown with blackish bars", + "breast: chestnut brown with dark streaks", + "crown: dark grey with a reddish-brown hue", + "forehead: lighter grey-brown", + "eyes: small, black, and rounded", + "legs: strong and slender, yellowish-brown", + "wings: reddish-brown with dark stripes and spots", + "nape: greyish-brown with hazy reddish hues", + "tail: short and blackish-brown with faint dark bars", + "throat: pale buff with brown speckles" + ], + "rusty whistler": [ + "back: rusty brown feathers", + "beak: short, sharp, and pointed", + "belly: creamy white with rusty brown spots", + "breast: pale orange with brown streaks", + "crown: reddish-brown with darker streaks", + "forehead: reddish-brown, smooth feathers", + "eyes: dark and round with a thin white eye-ring", + "legs: sturdy grey legs with three toes", + "wings: rusty brown with faint white bars", + "nape: reddish-brown, blending with crown", + "tail: long and narrow with rusty brown feathers", + "throat: creamy white, bordered with brown streaks" + ], + "rusty backed antwren": [ + "back: rusty reddish-brown feathers", + "beak: small, curved, and sharp for insects", + "belly: white or cream-colored plumage", + "breast: pale grayish-white feathers", + "crown: dark brown with lighter streaks", + "forehead: brownish-gray coloration", + "eyes: round, dark, with white eye-ring", + "legs: slender, gray, and long", + "wings: brown with white streaks or spots", + "nape: rusty-colored with darker spots", + "tail: long and slender, rusty brown with black band", + "throat: white or pale gray plumage" + ], + "rusty backed monjita": [ + "back: reddish-brown with darker streaks", + "beak: short and black, slightly hooked", + "belly: white with faint brown markings", + "breast: white with rusty-brown edges", + "crown: rusty brown, slightly darker than back", + "forehead: white, contrasting with the brown crown", + "eyes: dark with prominent white eyering", + "legs: pale, medium-length, and slender", + "wings: reddish-brown with white-edged feathers", + "nape: rusty brown, consistent with back color", + "tail: reddish-brown with a slight gradient to darker tips", + "throat: white, blending into the breast" + ], + "rusty backed spinetail": [ + "back: rusty brown coloration with fine streaks", + "beak: long, slender, and slightly curved", + "belly: off-white with faint brown markings", + "breast: pale brown with subtle streaking", + "crown: reddish-brown with thin black stripes", + "forehead: light brown with a slight crest", + "eyes: dark, small, and alert", + "legs: sturdy gray legs with strong claws", + "wings: brown with faint patterned markings", + "nape: reddish-brown with fine black lines", + "tail: elongated, rusty brown with black barring", + "throat: soft white with light brown streaks" + ], + "rusty backed thrush": [ + "back: reddish-brown with subtle dark streaks", + "beak: thin, slightly curved, dark greyish", + "belly: creamy-white with pale rusty-brown spots", + "breast: off-white with dark brown speckles", + "crown: rusty-brown with faint darker markings", + "forehead: pale, slightly contrasting with crown", + "eyes: small, bright, black, surrounded by inconspicuous eye-ring", + "legs: slim, dark grey, adapted for ground foraging", + "wings: brown with faint reddish tinge, medium length", + "nape: similar to crown, rusty-brown with faint markings", + "tail: elongated rusty-brown with slightly darker tips", + "throat: off-white, transitioning smoothly to breast markings" + ], + "rusty barred owl": [ + "back: brownish-grey feathers with white markings", + "beak: sharp, hooked, dark gray", + "belly: pale with dark brown barring", + "breast: light grey-brown with dark vertical streaks", + "crown: rusty brown with dense white speckles", + "forehead: light, white-buff with small dark spots", + "eyes: large, dark brown, encircled by dark facial disc", + "legs: feathered, cream-colored with dark streaks", + "wings: broad, brownish-grey with dark bars and white spots", + "nape: grey-brown with white speckles", + "tail: long, brownish-grey with darker bands", + "throat: white with fine dark streaks" + ], + "rusty bellied brushfinch": [ + "back: brownish-gray feathers", + "beak: short, conical, blackish-brown", + "belly: reddish-brown with gray undertones", + "breast: pale gray with brownish streaks", + "crown: grayish-brown with subtle streaks", + "forehead: mostly unmarked, grayish-brown", + "eyes: black, small, centered in white eyering", + "legs: strong, dark brown", + "wings: brownish-gray with paler feather edges", + "nape: grayish-brown, smooth transitions to crown", + "tail: long, dark brown, forked", + "throat: pale gray shading into the breast" + ], + "rusty bellied shortwing": [ + "back: rusty brown with faint barring", + "beak: short and pointed, blackish-gray", + "belly: deep rusty orange hue", + "breast: rusty brown with lighter streaks", + "crown: dark brown, slightly mottled", + "forehead: pale brown, blending into crown", + "eyes: round, dark, alert", + "legs: thin and strong, pale gray", + "wings: medium length, barred rusty brown", + "nape: rich brown, faintly marked", + "tail: short, dark brown with light barring", + "throat: pale brown transitioning into breast" + ], + "rusty belted tapaculo": [ + "back: rusty-brown with fine, dark streaks", + "beak: short, curved, and black", + "belly: rufous-brown with paler ventral area", + "breast: grayish-brown, merging with flank's barring", + "crown: dark gray with brownish edges", + "forehead: grayish-brown, blending with crown", + "eyes: dark and small, with pale eye-ring", + "legs: strong and pale pinkish gray", + "wings: short and rounded, with dark gray to brownish feathers", + "nape: brownish with faint streaks", + "tail: short and dark, with rusty tips", + "throat: pale gray with white mottling" + ], + "rusty breasted antpitta": [ + "back: brownish-grey feathers", + "beak: short, straight, and pointed", + "belly: rust-colored with black streaks", + "breast: rusty-brown with black spots", + "crown: greyish-brown with white streaks", + "forehead: light grey with white streaks", + "eyes: small and black", + "legs: long and thin with greyish-pink hue", + "wings: brownish-grey with white bars", + "nape: greyish-brown with white streaks", + "tail: short, rounded, and brownish-grey", + "throat: off-white with black streaks" + ], + "rusty breasted nunlet": [ + "back: rusty brown feathers", + "beak: short, slightly curved, black", + "belly: pale olive-brown with faint barring", + "breast: rusty brown with a whitish center", + "crown: brownish-gray head cap", + "forehead: light reddish-brown feathers", + "eyes: dark, beady, encircled by pale eyering", + "legs: slender, pale grayish-blue", + "wings: brownish gray with rufous edges on flight feathers", + "nape: light gray-brown with subtle streaks", + "tail: moderately long, dark brown with reddish-brown edges", + "throat: white with a hint of grayish-brown streaks" + ], + "rusty breasted wheatear": [ + "back: rusty-brown feathers with faint streaks", + "beak: thin, pointed, and dark-colored", + "belly: light cream with soft rust-colored markings", + "breast: distinct rusty-orange hue fading into the belly", + "crown: greyish-brown with subtle streaks", + "forehead: smooth greyish-brown transitioning into the crown", + "eyes: dark and alert, surrounded by faint eye-ring", + "legs: long, slender, and dark gray", + "wings: brownish-grey with faint bars and white edging", + "nape: greyish-brown, blending with the color of the crown", + "tail: dark grey with prominent white outer tail feathers", + "throat: pale grey, contrasting with the rusty breast" + ], + "rusty breasted whistler": [ + "back: rusty brown with faint streaks", + "beak: short and sharp, pale gray", + "belly: soft buff with light streaks", + "breast: rich rusty-orange with faint markings", + "crown: dark olive-brown", + "forehead: slightly paler olive-brown", + "eyes: dark, beady, with an off-white eye-ring", + "legs: sturdy, pale gray", + "wings: olive-brown with darker flight feathers", + "nape: dark olive-brown, blending into the back", + "tail: olive-brown, slightly forked", + "throat: pale buff with light streaks" + ], + "rusty breasted wren babbler": [ + "back: reddish-brown with subtle markings", + "beak: slender, slightly curved, dark-colored", + "belly: pale rusty-orange hue", + "breast: rusty-brown with fine streaks", + "crown: brown and subtly patterned", + "forehead: pale, faint streaks on brownish base", + "eyes: dark, piercing gaze", + "legs: sturdy, light brown", + "wings: reddish-brown, patterned with darker barring", + "nape: brownish, distinctively marked", + "tail: medium length, rusty tone with darker bands", + "throat: pale brown with subtle streaks" + ], + "rusty browed warbling finch": [ + "back: brownish-gray feathers", + "beak: small, pointed, silver-gray", + "belly: pale cream with light streaks", + "breast: soft gray with subtle streaks", + "crown: rusty-brown with darker streaks", + "forehead: pale rusty-yellow", + "eyes: small, black, with white eye-ring", + "legs: thin, pale pink", + "wings: dark gray with bold white markings", + "nape: brownish-gray with subtle streaks", + "tail: dark gray with contrasting white edges", + "throat: pale gray with fine streaks" + ], + "rusty capped fulvetta": [ + "back: brownish-grey feathers", + "beak: short, stout, and pale", + "belly: pale buffy-white", + "breast: grayish-brown with faint streaks", + "crown: rusty-orange cap", + "forehead: rusty-orange patch", + "eyes: dark and beady", + "legs: pinkish-grey and slim", + "wings: brownish-grey with pale fringes", + "nape: brownish-grey feathers", + "tail: medium-length, brownish-grey", + "throat: pale buffy-white" + ], + "rusty cheeked hornbill": [ + "back: brownish-black feathers with a slight gloss", + "beak: large, curved, yellow-orange with a black base", + "belly: pale cream or white with fine black streaks", + "breast: pale cream or white with fine black streaks", + "crown: black, covered by a unique casque (projection) on top of the beak", + "forehead: black, featuring a slight curve before beginning the casque", + "eyes: pale blue or grayish-white with a black pupil", + "legs: short, dark gray or black with strong, curved talons", + "wings: brownish-black with white-tipped primary flight feathers", + "nape: dark gray or black transitioning to lighter shades on the throat", + "tail: long, brownish-black with white-tipped feathers", + "throat: lighter gray or white, contrasting the black nape" + ], + "rusty cheeked scimitar babbler": [ + "back: olive-brown plumage", + "beak: long, curved, and silver-tipped", + "belly: light grayish-white feathers", + "breast: pale russet-orange color", + "crown: rufous-brown with a slight crest", + "forehead: rich rusty-red patch", + "eyes: small and dark with white eye-ring", + "legs: strong, pinkish-brown", + "wings: short, rounded with olive-brown feathers", + "nape: rufous-brown, blending into the back", + "tail: long, graduated, and olive-brown", + "throat: light grayish-white feathers" + ], + "rusty collared seedeater": [ + "back: brownish-gray feathers", + "beak: short, conical, black", + "belly: pale gray-white", + "breast: grayish-brown", + "crown: rusty brown color", + "forehead: lighter brown shade", + "eyes: dark with a white eye-ring", + "legs: thin, grayish-black", + "wings: brownish-gray with white markings", + "nape: rusty brown color", + "tail: long, grayish-brown feathers", + "throat: grayish-white" + ], + "rusty crowned babbler": [ + "back: rusty-brown feathers with streaks", + "beak: short, straight, dark colored", + "belly: pale, off-white, and streaked", + "breast: grayish-white with subtle streaks", + "crown: rusty-orange, prominent crest", + "forehead: rusty-orange, blending with crown", + "eyes: small, dark, surrounded by faint eye-ring", + "legs: sturdy, grayish-brown", + "wings: darker brown, with some gray and white feathers", + "nape: rusty-brown, slightly paler than crown", + "tail: long, brownish-gray with white tips", + "throat: off-white, streaked, contrasting with breast" + ], + "rusty crowned ground sparrow": [ + "back: brownish-grey with dark streaks", + "beak: short, straight, and conical", + "belly: pale grey-white", + "breast: light grey with faint streaks", + "crown: rusty-red with a distinct pattern", + "forehead: pale grey blending into the crown", + "eyes: small, dark, and beady", + "legs: slender and pale pinkish-grey", + "wings: slightly rounded with dark bars", + "nape: greyish-brown with pale streaks", + "tail: medium length, brown with white edges", + "throat: light grey, becoming paler towards the belly" + ], + "rusty crowned tit spinetail": [ + "back: brownish-gray feathers", + "beak: short, pointed, black", + "belly: whitish-gray with light streaks", + "breast: light gray with darker streaking", + "crown: rusty-red plumage", + "forehead: reddish-brown feathers", + "eyes: black with white eye-ring", + "legs: pale pinkish-gray", + "wings: brownish-gray with pale wing-bars", + "nape: gray with reddish-brown highlights", + "tail: long, narrow, gray-brown with fine barring", + "throat: pale gray with slight streaks" + ], + "rusty faced parrot": [ + "back: green feathers with a rusty hue", + "beak: curved, sharp, and black", + "belly: soft green with a hint of rust-colored feathers", + "breast: bright green mixed with rusty red feathers", + "crown: green feathers with a rusty tinge near the forehead", + "forehead: rich rusty red feathers", + "eyes: dark brown with a black pupil, surrounded by green feathers", + "legs: gray and scaly with sharp talons", + "wings: vibrant green with blue-tinted tips", + "nape: green feathers with a touch of rust color", + "tail: long and green with blue-tinted edges", + "throat: light green with a hint of rust-colored feathers" + ], + "rusty flanked crake": [ + "back: reddish-brown with dark streaks", + "beak: short and yellowish-green", + "belly: white with blackish spots", + "breast: grayish-brown with paler streaks", + "crown: reddish-brown with darker stripes", + "forehead: grayish-white", + "eyes: dark, piercing", + "legs: long and yellowish-green", + "wings: reddish-brown with dark bars", + "nape: reddish-brown with dark stripes", + "tail: short and reddish-brown", + "throat: white with faint gray markings" + ], + "rusty flanked jungle flycatcher": [ + "back: reddish-brown with fine streaks", + "beak: short and slender, dark gray", + "belly: pale with faint streaks", + "breast: light brown with darker streaks", + "crown: dark brown with lighter margins", + "forehead: light brown, slightly streaky", + "eyes: dark, with a pale eyering", + "legs: grayish-brown", + "wings: dark brown with light brown edgings", + "nape: reddish-brown, streaky", + "tail: dark brown with white tip", + "throat: pale with faint dark streaks" + ], + "rusty flanked treecreeper": [ + "back: streaked brown plumage", + "beak: thin, curved, pointed", + "belly: light cream-colored", + "breast: faintly streaked cream", + "crown: russet-brown with faint streaks", + "forehead: light brown, slightly streaked", + "eyes: small, round, black", + "legs: pale, thin, nimble", + "wings: brown with light white markings", + "nape: russet-brown, streaked", + "tail: long, stiff, brownish with white spots", + "throat: creamy white, streaked" + ], + "rusty fronted barwing": [ + "back: brownish-grey feathers", + "beak: strong, slightly curved, blackish", + "belly: white with black streaks", + "breast: chestnut-colored feathers", + "crown: rusty-brown with white streaks", + "forehead: chestnut brown", + "eyes: dark, beady eyes", + "legs: sturdy, greyish legs", + "wings: long, greyish-brown with white patches", + "nape: whitish streaks on a brown background", + "tail: long, greyish-brown with white tips", + "throat: chestnut-colored with faint streaks" + ], + "rusty fronted canastero": [ + "back: reddish-brown with dark streaks", + "beak: short, pointed, and black", + "belly: pale buff or whitish hue", + "breast: tawny-brown or rusty with dark streaks", + "crown: reddish-brown with dark streaks", + "forehead: slightly paler reddish-brown", + "eyes: dark brown with faint white eyering", + "legs: long, slender, and dark gray", + "wings: reddish-brown with dark bars", + "nape: reddish-brown with dark streaks", + "tail: long, slightly notched, with reddish-brown and dark bars", + "throat: buffy-white or pale with faint streaks" + ], + "rusty fronted tody flycatcher": [ + "back: olive-green with a slight sheen", + "beak: short, straight, and black", + "belly: light yellow with a rusty hue", + "breast: soft yellow with a tinge of rust", + "crown: olive-green blending with the back", + "forehead: light yellowish-green", + "eyes: small, round, and black", + "legs: thin and black with sharp claws", + "wings: olive-green with black flight feathers", + "nape: olive-green, similar to back", + "tail: short, black with white edges", + "throat: soft yellow blending with breast" + ], + "rusty headed spinetail": [ + "back: reddish-brown with streaks of gray", + "beak: short, curved, and sharp", + "belly: off-white with faint brown spots", + "breast: pale, creamy white", + "crown: rusty-orange with short crest", + "forehead: pale rusty-brown", + "eyes: small and black", + "legs: pale brown, slim and long", + "wings: reddish-brown with darker streaks", + "nape: warm brown with gray streaks", + "tail: long and fan-shaped with dark-brown bands", + "throat: creamy white with faint brown spots" + ], + "rusty margined flycatcher": [ + "back: olive-brown plumage", + "beak: strong, hooked, black tip", + "belly: pale yellowish-gray feathers", + "breast: yellowish-olive with streaks", + "crown: grayish-brown with rufous edges", + "forehead: grayish-white", + "eyes: black, surrounded by pale eye-ring", + "legs: medium-short, blackish-gray", + "wings: olive-brown with rufous-tipped primary feathers", + "nape: grayish-brown with rusty margins", + "tail: olive-brown with rufous outer feathers", + "throat: pale gray with streaks" + ], + "rusty margined guan": [ + "back: reddish-brown plumage", + "beak: slightly hooked, ivory-colored", + "belly: light gray with faint brown markings", + "breast: grayish-brown with light barring", + "crown: black with brown highlights", + "forehead: white-bordered black stripe", + "eyes: dark brown, surrounded by bare, red skin", + "legs: sturdy, grayish-blue with yellow feet", + "wings: rufous feathers with dark bars", + "nape: white-bordered black stripe connecting to forehead", + "tail: long, dark brown with white-tipped feathers", + "throat: grayish-brown, lightly speckled" + ], + "rusty naped pitta": [ + "back: greenish-brown feathers with subtle blue sheen", + "beak: slightly curved and short, black or grayish-black", + "belly: pale yellowish-buff or dull white with brown streaks", + "breast: blue-gray with lighter central band", + "crown: rusty-red color with bluish streaks", + "forehead: yellowish-green or yellowish-gray", + "eyes: relatively large, dark brown or black with white rings", + "legs: strong and sturdy, flesh-colored or pinkish-gray", + "wings: greenish-blue with black and white accents on flight feathers", + "nape: rusty-red or orange-brown", + "tail: long and blue-green, tipped with white and black bands", + "throat: pale gray or white with brown streaks" + ], + "rusty necked piculet": [ + "back: olive-green with fine streaks", + "beak: short, straight, and sharp", + "belly: pale yellow with faint streaks", + "breast: yellowish-green with fine streaks", + "crown: reddish-brown with a speckled pattern", + "forehead: pale, streaked, with a patch of red in males", + "eyes: small, round, and dark", + "legs: slim, greyish-blue", + "wings: olive-green with hints of yellow, short and pointed", + "nape: reddish-brown with faint streaks", + "tail: short, olive-green, and slightly rounded", + "throat: pale and streaked, blending into breast coloration" + ], + "rusty tailed flycatcher": [ + "back: olive-brown with faint streaks", + "beak: short, dark, and pointed", + "belly: whitish with light rusty wash", + "breast: pale grayish-brown with light streaks", + "crown: rusty-brown with indistinct pale lines", + "forehead: light gray with faint markings", + "eyes: dark with pale eyering", + "legs: long, slender, and dark", + "wings: olive-brown with faint wing bars", + "nape: rusty-brown with faint streaks", + "tail: rusty-orange with dark edges", + "throat: whitish with pale streaks" + ], + "rusty throated parrotbill": [ + "back: rusty-colored upper feathers", + "beak: short, robust, and pointed", + "belly: whitish-gray with faint streaks", + "breast: pale brown with fine streaks", + "crown: reddish-brown with raised crest", + "forehead: slightly paler than crown", + "eyes: large, dark, and expressive", + "legs: sturdy and grayish-blue", + "wings: rusty-brown with blackish tips", + "nape: reddish-brown, blending with crown", + "tail: long, slender, and reddish-brown", + "throat: pale grayish-white with faint streaks" + ], + "rusty tinged antpitta": [ + "back: rusty brown with fine dark streaks", + "beak: short, thin, and pointed", + "belly: pale ochre with light streaks", + "breast: soft reddish-brown with darker barring", + "crown: rich rufous-brown with faint streaks", + "forehead: slightly paler rufous-brown", + "eyes: small and dark, situated on the sides of the head", + "legs: sturdy and pinkish-brown", + "wings: rusty brown with dark feather tips", + "nape: rufous-brown blending into the crown", + "tail: short and rufous-brown with dark bands", + "throat: pale ochre with fine dark streaks" + ], + "rusty winged antwren": [ + "back: olive-brown plumage", + "beak: slender, pointed, black", + "belly: light grayish-white", + "breast: pale gray to white", + "crown: reddish-brown", + "forehead: slightly paler reddish-brown", + "eyes: dark brown, small", + "legs: thin, grayish", + "wings: rusty-orange with black bars", + "nape: olive-brown with a hint of red", + "tail: long, narrow, brown with black barring", + "throat: white to pale gray" + ], + "rusty winged barbtail": [ + "back: rusty-brown feathers covering the upper body", + "beak: short, strong, and slightly curved for picking insects", + "belly: pale with a hint of cinnamon or buff color", + "breast: light buff or grayish-brown with vague streaks", + "crown: rusty-brown with a faint crest", + "forehead: slightly paler and less reddish than the crown", + "eyes: round and dark, surrounded by a faint white eyering", + "legs: long, slender, and grayish-brown for tree perching", + "wings: rufous-brown with subtle, darker wingbars", + "nape: rusty-brown, blending with the crown", + "tail: long, square-shaped, and reddish-brown with faint barring", + "throat: pale with a hint of cinnamon or buff color, similar to the belly" + ], + "rusty winged starling": [ + "back: rusty-brown feathers with subtle streaks", + "beak: short, sharp black beak for insects", + "belly: lighter rusty-brown, fading to whitish", + "breast: pale rusty-brown, streaked with darker shades", + "crown: finely streaked, cinnamon-brown hue", + "forehead: pale, smooth rusty-colored feathers", + "eyes: small, black, bright and expressive", + "legs: sturdy, grayish-brown, built for perching", + "wings: dark brown, tinged with rust color, slightly pointed", + "nape: continuing rusty-brown, streaked pattern from crown", + "tail: medium-length, dark brown with rusty edges, slightly forked", + "throat: soft white blending into rusty-brown breast" + ], + "ruvu weaver": [ + "back: olive-green to yellowish-green feathers", + "beak: long, pointed, black in color", + "belly: pale yellow with light streaks", + "breast: bright yellow, sometimes with faint streaks", + "crown: golden-yellow with a slight crest", + "forehead: yellowish-green, blending with crown", + "eyes: small, dark brown, surrounded by faint, pale ring", + "legs: blackish-brown, strong, and adapted for perching", + "wings: black, with yellowish-green to olive edges on feathers", + "nape: yellowish-green, blending with back and crown", + "tail: black with olive-green to yellowish outer feathers", + "throat: pale yellow, distinct from breast color" + ], + "rwenzori apalis": [ + "back: blue-grey feathers with light streaks", + "beak: short, narrow, and black", + "belly: pale white feathers with light grey markings", + "breast: white with subtle grey streaks", + "crown: bright blue-grey plumage", + "forehead: blue-grey feathers blending into the crown", + "eyes: small, dark, and round", + "legs: sturdy and slate-grey", + "wings: blue-grey with black striping and white edging", + "nape: blue-grey plumage with stripes", + "tail: long, blue-grey, and white-tipped feathers", + "throat: white with light grey streaks" + ], + "rwenzori batis": [ + "back: olive-green feathered back", + "beak: short, sturdy black beak", + "belly: white with grayish-yellow tinge", + "breast: gray with white streaks", + "crown: black with a bold white stripe", + "forehead: black feathers above beak", + "eyes: small dark eyes", + "legs: long, slender grayish-yellow legs", + "wings: rounded with barred white and black pattern", + "nape: olive-green feathers blending into crown", + "tail: long, dark feathers with white outer edges", + "throat: white feathered, contrasting with breast" + ], + "rwenzori hill babbler": [ + "back: earthy brown feathers", + "beak: short and curved", + "belly: pale cream color", + "breast: light brown with dark streaks", + "crown: reddish-brown plumes", + "forehead: subtle grayish hue", + "eyes: dark and expressive", + "legs: sturdy, grayish-blue", + "wings: medium length, brown with white streaks", + "nape: dark brownish-black", + "tail: long, dark brown with white tips", + "throat: white with fine brown streaks" + ], + "rwenzori turaco": [ + "back: vibrant green with iridescent blue hues", + "beak: reddish-orange, stout and curved", + "belly: rich emerald green feathers", + "breast: iridescent blue blending into green", + "crown: green head crest with purple tips", + "forehead: deep green with touches of blue", + "eyes: dark and surrounded by white eye-ring", + "legs: short and sturdy, dark in color", + "wings: iridescent blue and green with red flight feathers", + "nape: bright green blending into the back", + "tail: elongated, dark green with blue sheen", + "throat: deep green with iridescent blue highlights" + ], + "ryukyu flycatcher": [ + "back: olive-green feathers covering the upper body", + "beak: short, sharp, and slightly curved structure for catching insects", + "belly: pale, off-white feathers with a smooth texture", + "breast: light orange or peach-colored plumage that may vary in intensity", + "crown: a patch of blue-gray feathers on top of the head", + "forehead: the area above the beak; olive-green in color, like the back", + "eyes: small and round, with a black, bead-like appearance", + "legs: slender and gray, with sharp claws for perching on branches", + "wings: long and pointed, with olive-green, black, and blue-gray feathers", + "nape: the back of the neck; olive-green feathers similar to the back", + "tail: long, fan-shaped with a mix of olive-green and blue-gray feathers", + "throat: off-white plumage that extends from the lower beak down to the breast" + ], + "ryukyu minivet": [ + "back: bright olive-green", + "beak: slender, slightly curved", + "belly: pale yellow", + "breast: vibrant yellow", + "crown: black with a scarlet patch", + "forehead: black extending to eye line", + "eyes: small and black", + "legs: thin, dark gray", + "wings: striking black and white pattern", + "nape: black", + "tail: long black with white edges", + "throat: yellow-orange" + ], + "ryukyu robin": [ + "back: olive-brown with dark streaks", + "beak: sharp, narrow, black", + "belly: pale grayish-white", + "breast: reddish-orange fading to white", + "crown: slate-gray with slight bluish tint", + "forehead: dark blue-gray with line of white", + "eyes: black with white eye-ring", + "legs: slender, grayish-brown", + "wings: olive-brown with darker flight feathers", + "nape: slate-gray with a bluish tint", + "tail: dark brown with white outer feathers", + "throat: white with grayish-blue streaks" + ], + "ryukyu scops owl": [ + "back: distinct brown and white feather patterns", + "beak: small, sharp, and light grey", + "belly: light brown with white streaks", + "breast: brownish-grey with streaks and spots", + "crown: rufous or grey-brown with distinctive markings", + "forehead: greyish-brown with a whitish border", + "eyes: large, yellow-orange, and surrounded by small feathers", + "legs: feathered, short, with sharp talons", + "wings: mottled brown with white spots and bands", + "nape: light grey with narrow brown streaks", + "tail: brown with light horizontal bands", + "throat: white with brown streaking" + ], + "sabah partridge": [ + "back: dark olive-brown feathers", + "beak: short and stout, dark grey", + "belly: whitish with black streaks", + "breast: rufous-chestnut colored", + "crown: rich chestnut with a black stripe", + "forehead: white eyebrow-like stripe above the eyes", + "eyes: small and round, dark brown", + "legs: strong and feathered, grey", + "wings: olive-brown with chestnut patches", + "nape: dark olive-brown", + "tail: short and rounded, dark brown", + "throat: white with dark streaks" + ], + "sabine gull": [ + "back: light grey feathers with subtle streaks", + "beak: short, sturdy black beak with red tip", + "belly: pure white feathers with a smooth appearance", + "breast: white and grey slightly marbled feathers", + "crown: dark grey with a slight crest toward the nape", + "forehead: light grey feathers transitioning to the dark crown", + "eyes: small, black, and alert with a white eye-ring", + "legs: short, slender, orange legs and black webbed feet", + "wings: pale grey with black and white wingtips outlined by white edges", + "nape: dark grey feathers connecting to the crown", + "tail: white feathers with a distinct black band", + "throat: white feathers extending onto the lower neck" + ], + "sabine puffback": [ + "back: olive-green upper region", + "beak: short and pointed, blackish-brown", + "belly: white with faint gray markings", + "breast: grayish-white, sometimes with a faint pinkish hue", + "crown: dark gray with a slight greenish tint", + "forehead: dark gray, merging into the crown", + "eyes: dark brown with pale eye-ring", + "legs: long and slender, blackish-gray", + "wings: olive-green with black feather edges", + "nape: olive-green, blending with back and crown", + "tail: blackish-brown, medium-length with rounded edges", + "throat: grayish-white, lighter than the breast" + ], + "sabine spinetail": [ + "back: olive-brown feathers with paler streaks", + "beak: short, sharp, and grayish-black", + "belly: light buff-color with brownish undertones", + "breast: pale brown with darker markings", + "crown: reddish-brown with streaks of white", + "forehead: grayish-brown with paler streaks", + "eyes: dark brown with a thin pale eyering", + "legs: long and slender with dark grayish-black claws", + "wings: olive-brown with white and black bars", + "nape: grayish-brown with white streaks", + "tail: long, blackish-brown with white outer feathers and tips", + "throat: pale buff with faint brownish markings" + ], + "sabota lark": [ + "back: light brown with dark streaks", + "beak: strong, slightly curved, dark grey", + "belly: whitish with faint brown markings", + "breast: pale brown with darker streaks", + "crown: brownish with dark streaks, slight crest", + "forehead: pale brown fading to buff", + "eyes: large, dark brown, encircled by thin eye-ring", + "legs: long, slender, pale pinkish-grey", + "wings: brown with darker flight feathers, white edges", + "nape: light brown with dark streaks, slightly paler than crown", + "tail: medium-length, dark brown, outer feathers edged in white", + "throat: pale buff, unmarked" + ], + "sacred kingfisher": [ + "back: vibrant blue-green feathers", + "beak: long, sharp, black", + "belly: cream-white gradient", + "breast: pale yellow-orange plumage", + "crown: bright turquoise-blue", + "forehead: striking blue-green", + "eyes: dark, piercing gaze", + "legs: short, sturdy, dark gray", + "wings: vivid blue-green with dark flight feathers", + "nape: rich blue-green hue", + "tail: iridescent blue-green, long", + "throat: creamy white with a slight yellow tinge" + ], + "sad flycatcher": [ + "back: dull grey feathers", + "beak: thin, black, downturned", + "belly: pale grayish-white", + "breast: faded grey plumage", + "crown: flattened, dark grey", + "forehead: narrow, furrowed", + "eyes: glassy, sunken", + "legs: thin, weak-looking", + "wings: drooping, frayed edges", + "nape: ruffled, unkempt feathers", + "tail: short, bedraggled", + "throat: pale, exposed" + ], + "saddle billed stork": [ + "back: sleek black feathers", + "beak: long, thick red and yellow bill", + "belly: pure white plumage", + "breast: mostly white feathers", + "crown: small black crest", + "forehead: thin strip of black feathers", + "eyes: striking yellow-orange color", + "legs: long, black, and slender", + "wings: large, with black and white feathers", + "nape: black feathered transition from head to back", + "tail: elongated white feathers", + "throat: white feathers with a hint of reddish undertone" + ], + "saffron finch": [ + "back: bright yellow with streaks", + "beak: conical and sharp, silver-gray color", + "belly: vibrant yellow hue", + "breast: rich golden-yellow shades", + "crown: beautiful yellowish-orange tone", + "forehead: warm, bright yellow-plumed", + "eyes: dark, beady, and expressive", + "legs: strong and slender with grayish-blue hue", + "wings: rich yellow with fine black markings", + "nape: orange-yellowish tone with sleek feathers", + "tail: long and dark with black and yellow streaks", + "throat: bright yellow with soft feathering" + ], + "saffron siskin": [ + "back: vibrant yellow-green feathered surface", + "beak: short, conical-shaped with grey-black color", + "belly: soft, pale yellow feather hue", + "breast: yellowish green plumage with streaks", + "crown: yellow-golden feathers with a hint of green", + "forehead: golden-yellow capped brilliance", + "eyes: small, round-shaped with black pupil", + "legs: slender grey-black legs with clawed feet", + "wings: vibrant green with yellow-hued edges", + "nape: yellow-green feathered transition between head and back", + "tail: long and slender with green and yellow feathers", + "throat: delicate yellow feathers fading to the belly" + ], + "saffron toucanet": [ + "back: vibrant green feathers", + "beak: long, curved, yellow-orange", + "belly: pale yellow with green hues", + "breast: bright yellow plumage", + "crown: rich green feathers", + "forehead: yellowish-green fade", + "eyes: circular with black pupils", + "legs: strong, grey-blue", + "wings: green with hints of blue", + "nape: lush green feathers", + "tail: elongated green-blue feathers", + "throat: yellow with green tinges" + ], + "saffron billed sparrow": [ + "back: light brown with darker streaks", + "beak: saffron-yellow and conical-shaped", + "belly: creamy white with faint brown streaks", + "breast: pale brown with subtle streaks", + "crown: light brown with dark streaks", + "forehead: buff-white with a hint of orange", + "eyes: dark brown with a thin eye-ring", + "legs: pale flesh-colored with strong claws", + "wings: light brown with darker brown markings", + "nape: light brown with darker streaks", + "tail: brown with delicate white tips", + "throat: creamy white, blending with breast" + ], + "saffron cowled blackbird": [ + "back: dark black with greenish iridescence", + "beak: sharp, orange-yellow with dark tip", + "belly: bold saffron-yellow", + "breast: deep black with vibrant yellow band", + "crown: glossy black with a hint of green shine", + "forehead: shimmering black with greenish glow", + "eyes: striking deep brown", + "legs: sturdy, dark gray", + "wings: jet black with a small saffron patch", + "nape: glossy black with subtle green hints", + "tail: long and black with yellow borders", + "throat: rich black with a saffron-yellow stripe" + ], + "saffron crested tyrant manakin": [ + "back: vibrant green feathers", + "beak: small, black, and sharp", + "belly: bright yellow and fluffy", + "breast: deep golden yellow feathers", + "crown: intense saffron crest", + "forehead: yellow feathers fading to green", + "eyes: black, expressive, round", + "legs: slender and gray", + "wings: striking green with yellow accents", + "nape: green feathers with yellow highlights", + "tail: long, tapered, green with yellow edges", + "throat: golden yellow feathers" + ], + "saffron crowned tanager": [ + "back: vibrant green feathers", + "beak: short, sharp, black", + "belly:\u00a0bright yellow plumage", + "breast: deep orange hue", + "crown:\u00a0saffron yellow head crest", + "forehead:\u00a0saffron yellow feathers", + "eyes:\u00a0dark, round with thin white ring", + "legs:\u00a0slender gray legs", + "wings:\u00a0green with black accents", + "nape:\u00a0greenish-yellow feathers", + "tail:\u00a0long, green, slightly forked", + "throat:\u00a0bright orange-yellow feathers" + ], + "saffron headed parrot": [ + "back: vibrant green feathers covering upper body", + "beak: strong, curved black beak for cracking seeds", + "belly: soft, yellow-feathered underbelly", + "breast: brilliant saffron-orange plumage on upper chest", + "crown: bright saffron-colored crest atop the head", + "forehead: yellow-to-orange gradient above the eyes", + "eyes: dark, intelligent eyes with white eye-rings", + "legs: sturdy, gray-scaled legs with sharp claws", + "wings: large, green wings with blue and yellow accents", + "nape: green feathers transitioning into saffron at the neck", + "tail: long, green tail feathers with blue and yellow tips", + "throat: pale yellow feathers blending into the chest area" + ], + "sagebrush sparrow": [ + "back: grayish-brown with streaks", + "beak: small, conical, and dark", + "belly: pale gray-white", + "breast: light gray with faint streaks", + "crown: grayish-brown with a darker central stripe", + "forehead: gray", + "eyes: dark with a faint white eyering", + "legs: thin and pale", + "wings: grayish-brown with contrasting white wingbars", + "nape: grayish-brown with a faint, incomplete collar", + "tail: dark with white outer feathers", + "throat: pale gray" + ], + "sahel bush sparrow": [ + "back: light brown with subtle streaks", + "beak: sturdy, conical shape, dark grey", + "belly: creamy-white color", + "breast: pale grey-brown with fine streaks", + "crown: chestnut-colored with black streaks", + "forehead: chestnut patch above the beak", + "eyes: dark, beady, surrounded by pale feathers", + "legs: pale pink or grey, strong and slender", + "wings: brown with white-tipped feathers", + "nape: light chestnut-brown with streaks", + "tail: dark brown and forked", + "throat: creamy-white, bordered by dark streaks" + ], + "sahel paradise whydah": [ + "back: sleek black feathers", + "beak: sharp, elongated black beak", + "belly: golden-yellow coloration", + "breast: striking golden-yellow hue", + "crown: black with subtle iridescence", + "forehead: smooth black feathers", + "eyes: small, beady, and black", + "legs: sturdy black appendages", + "wings: elongated, black with white tips on secondary feathers", + "nape: black, connecting to a long, luxurious tail", + "tail: thin, elongated, and black with white tips", + "throat: golden-yellow plumage" + ], + "saipan reed warbler": [ + "back: olive-brown with light streaks", + "beak: long, slender, and slightly curved", + "belly: pale yellow with faint brown streaks", + "breast: light yellow with subtle markings", + "crown: olive-brown with a slight crest", + "forehead: smooth and slightly paler than the crown", + "eyes: dark and small, with a white eye-ring", + "legs: long, thin, and pale brown", + "wings: olive-brown with lighter buff wingbars", + "nape: olive-brown with light streaks", + "tail: long and olive-brown, with white tips on outer feathers", + "throat: pale yellow with faint brown streaks" + ], + "sakalava rail": [ + "back: brownish-grey feathers", + "beak: short and stout, dark color", + "belly: pale with light brown markings", + "breast: greyish-white with sparse streaks", + "crown: dark brown with white streaks", + "forehead: light grey with minimal markings", + "eyes: dark, small and rounded", + "legs: long and slender, yellowish-brown", + "wings: brownish-grey with white spots", + "nape: dark brown with white streaks", + "tail: short and fan-shaped, dark brown", + "throat: greyish-white with minimal markings" + ], + "sakalava weaver": [ + "back: brownish-black feathers", + "beak: curved and pointed, beige", + "belly: pale yellow plumage", + "breast: golden-yellow feathers", + "crown: yellowish-orange head crest", + "forehead: bright yellow patch", + "eyes: small, black, and round", + "legs: slender, grayish-blue", + "wings: brownish-black feathers with hints of yellow", + "nape: golden-yellow plumage", + "tail: long, brownish-black feathers", + "throat: vibrant yellow color" + ], + "saker falcon": [ + "back: sleek, brownish-grey feathers", + "beak: sharp, curved, yellowish-gray", + "belly: lighter, cream-colored feathers", + "breast: pale, spotted with dark brown markings", + "crown: brownish-grey with a slight crest", + "forehead: light, creamy hue with dark speckling", + "eyes: dark, piercing, with a yellow orbital ring", + "legs: yellow-orange, powerful, sharp talons", + "wings: long, pointed, darker on top with lighter underwing coverts", + "nape: brownish-grey with streaks of lighter feathers", + "tail: greyish-brown, well-barred, with a white tip", + "throat: white with dark mottling" + ], + "sakhalin grasshopper warbler": [ + "back: olive-brown with faint streaks", + "beak: slim, pointed, dark brownish-gray", + "belly: off-white with brown wash", + "breast: pale buff with some streaking", + "crown: olive-brown with central dark stripe", + "forehead: olive-brown, blending into crown", + "eyes: dark brown with white eye ring", + "legs: pinkish-brown with dark claws", + "wings: olive-brown with dark bars", + "nape: olive-brown, continuous with back", + "tail: olive-brown, rounded with dark barring", + "throat: off-white with faint streaking" + ], + "sakhalin leaf warbler": [ + "back: olive-green and slightly streaked", + "beak: thin, sharp, and pointed", + "belly: pale yellowish-white", + "breast: light yellow with faint streaks", + "crown: olive-green with a light central stripe", + "forehead: pale yellowish-green", + "eyes: dark brown with a pale yellow eye-ring", + "legs: slender and pale pinkish-grey", + "wings: olive-green with faint wing bars", + "nape: olive-green with a slight streaking", + "tail: olive-green and slightly forked", + "throat: pale yellow with faint streaks" + ], + "salim ali swift": [ + "back: sleek, dark plumage", + "beak: slender, slightly curved", + "belly: pale gray and streamlined", + "breast: light gray with faint streaks", + "crown: dark with a slightly raised crest", + "forehead: smooth and black", + "eyes: small, dark, and alert", + "legs: short, strong, and ending in sharp claws", + "wings: long, narrow, and angled for speed", + "nape: lightly streaked with gray feathers", + "tail: forked and deeply notched", + "throat: pale gray, sharply contrasting with black head" + ], + "salinas monjita": [ + "back: light greyish brown with streaks", + "beak: thin, pointed, dark grey or black", + "belly: white or pale grayish", + "breast: pale gray, with subtle streaks", + "crown: light rufous or reddish-brown", + "forehead: light rufous, blending with crown", + "eyes: bright, dark brown with subtle eye rings", + "legs: thin, greyish or blackish, with sharp claws", + "wings: greyish brown with white feather edgings", + "nape: greyish brown, with light streaks", + "tail: grey-brown, with white outer feathers and tips", + "throat: pale grey or white, blending into breast" + ], + "salmon crested cockatoo": [ + "back: white, feathered, and smooth", + "beak: large, light-colored, and strong", + "belly: white, fluffy feathers", + "breast: white, plump, and feathered", + "crown: salmon-colored crest, raised or lowered", + "forehead: white feathers, blending into crest", + "eyes: small, dark, and bright", + "legs: short, gray, and scaly", + "wings: wide, white, feathered, strong in flight", + "nape: white feathers, connecting to the head", + "tail: long, white feathers, fan-like in shape", + "throat: white, smooth feathers" + ], + "salvadori antwren": [ + "back: olive-brown upperparts", + "beak: slender, curved black beak", + "belly: light buff-colored underparts", + "breast: grayish-brown plumage", + "crown: chestnut-colored crown", + "forehead: slightly paler than crown", + "eyes: dark, beady eyes", + "legs: slender, dark gray legs", + "wings: olive-brown with faint wing bars", + "nape: olive-brown plumage", + "tail: long, dark gray tail feathers", + "throat: grayish-white coloration" + ], + "salvadori eremomela": [ + "back: olive-green feathers", + "beak: slim and pointed", + "belly: pale white with greenish hue", + "breast: yellowish-green gradient", + "crown: olive-green with a bluish tinge", + "forehead: lighter green towards the beak", + "eyes: dark and beady", + "legs: light grey and slender", + "wings: olive-green with faint white streaks", + "nape: blue-green coloring", + "tail: elongated with a slight fork", + "throat: creamy white" + ], + "salvadori fig parrot": [ + "back: green feathers covering the dorsal side", + "beak: short, strong, ivory-colored", + "belly: vibrant yellow feathers", + "breast: dark blue-green plumage", + "crown: emerald green feathers on top of the head", + "forehead: bright scarlet-red patch", + "eyes: black iris with white eye-ring", + "legs: short, sturdy, and gray", + "wings: green with slight blue tinge, hint of yellow at tips", + "nape: deep green feathered area at the back of the neck", + "tail: short and green, slightly squared at the end", + "throat: bright yellow plumage with blue-green overlay" + ], + "salvadori nightjar": [ + "back: mottled, grayish-brown feathers", + "beak: small, short, and black", + "belly: soft, buffy-white with brown speckles", + "breast: pale grayish-brown with faint streaks", + "crown: dark brown with light speckling", + "forehead: light grayish-brown with fine markings", + "eyes: large, round, and black", + "legs: pale brown with slight feathering", + "wings: long, pointed, dark brown with a banded pattern", + "nape: grayish-brown with fine feather markings", + "tail: pale brown with darker brown bands", + "throat: straight, lined with speckled white" + ], + "salvadori pheasant": [ + "back: elegant, golden-brown plumage", + "beak: short and strong, blackish-grey", + "belly: light golden-brown feathers", + "breast: iridescent, greenish-black", + "crown: reddish-brown with crest-like feathers", + "forehead: coppery-red sheen", + "eyes: bright and alert, amber-colored", + "legs: long and sturdy, reddish-brown", + "wings: elongated and striking, golden-brown", + "nape: rich copper-red plumage", + "tail: long and luxurious, golden-brown with black barring", + "throat: iridescent greenish-black feathers" + ], + "salvadori serin": [ + "back: olive-green feathers covering the upper body", + "beak: small, sharp, hooked, grayish", + "belly: creamy-white plumage with streaked flanks", + "breast: pale yellow coloration, blending into belly", + "crown: olive-brown with darker streaks", + "forehead: olive-brown feathers continuing from crown", + "eyes: small, dark, situated on sides of the head", + "legs: short, sturdy, grayish in color", + "wings: olive-brown with blackened edges, rounded shape", + "nape: olive-brown feathers connecting to the crown", + "tail: olive-brown with slightly forked shape", + "throat: pale yellow, blending into the breast area" + ], + "salvadori teal": [ + "back: rich chestnut brown with fine, dark spots", + "beak: short, grayish-blue with black tip", + "belly: pale, creamy-white with faint spots", + "breast: chestnut brown with darker spots and streaks", + "crown: dark brown with pale feather edges", + "forehead: slightly lighter brown than the crown", + "eyes: bright, piercing amber", + "legs: legs and feet bluish-gray with black webbing", + "wings: green-blue speculum and white-bordered dark brown feathers", + "nape: similar to the crown, with a slightly lighter brown hue", + "tail: dark brown with lighter fringes on outer feathers", + "throat: pale, creamy-white with light streaks" + ], + "salvadori weaver": [ + "back: dark, olive-yellow feathers", + "beak: conical, black, and strong", + "belly: bright yellow plumage", + "breast: rich golden yellow", + "crown: deep black, with a slight crest", + "forehead: dark black, contrasting with face", + "eyes: beady black, with white eye-ring", + "legs: sturdy, grayish-blue", + "wings: black and olive-yellow, with long flight feathers", + "nape: olive-yellow, subtly transitioning to the crown", + "tail: black, long, and wedge-shaped", + "throat: bright golden yellow, vividly colored" + ], + "salvin albatross": [ + "back: sleek, light grey feathers", + "beak: long and hooked, light grey with a dark tip", + "belly: white, soft feathers", + "breast: broad, white plumage", + "crown: pale grey feathers, smooth and streamlined", + "forehead: gently sloping, pale grey feathers", + "eyes: dark and round, encircled by fine white feathers", + "legs: strong, black webbed feet", + "wings: long, narrow, with dark grey tips and white undersides", + "nape: light grey feathers, connecting crown to back", + "tail: short and sharp, with alternating grey and white feathers", + "throat: white, smooth feathers, transitioning to breast plumage" + ], + "salvin curassow": [ + "back: dark brownish-green feathers", + "beak: strong and slightly curved, dusky gray", + "belly: blackish feathers with lighter edging", + "breast: dark brown feathers with fine white bars", + "crown: black crest, glossy dark green-blue sheen", + "forehead: black and glossy, with a bluish tinge", + "eyes: deep red, surrounded by bare bluish skin", + "legs: sturdy and grayish blue", + "wings: dark brown, with some lighter edging on feathers", + "nape: black, shiny dark green-blue sheen", + "tail: long, dark brown feathers with white tips", + "throat: black, some fine white bars on feathers" + ], + "salvin prion": [ + "back: light grey feathers", + "beak: short and conical, bluish-white", + "belly: pale grey plumage", + "breast: light grayish-white feathers", + "crown: pale grey feathers, slightly darker than back", + "forehead: light grey plumage, blends with crown", + "eyes: dark brown, small", + "legs: bluish-gray, slender", + "wings: pale grey, with darker grey-black tips on primary feathers", + "nape: light grey, continuous color with crown and back", + "tail: pale grey with white outer feathers and black subterminal band", + "throat: greyish-white plumage, lighter than breast" + ], + "samar hornbill": [ + "back: black feathers with subtle green sheen", + "beak: large, curved, and yellowish-white", + "belly: black feathers with slight green iridescence", + "breast: dark black feathers with a greenish glint", + "crown: black plumage with a crest of elongated feathers", + "forehead: black feathers merging with the beak and crown", + "eyes: small, round, with a reddish-brown iris", + "legs: sturdy, grayish-black with sharp claws", + "wings: long black feathers with hints of metallic green", + "nape: black feathers with a glossy green sheen", + "tail: elongated central black feathers with green iridescence", + "throat: black, short feathers with subtle green highlights" + ], + "samoan fantail": [ + "back: olive-brown with a slight sheen", + "beak: short, thin, and hooked", + "belly: soft gray with very light barring", + "breast: white with grayish-brown accents", + "crown: dark brown with a prominent crest", + "forehead: white streak extending above the eyes", + "eyes: round and black with a white eye-ring", + "legs: slender, with grayish-blue scales", + "wings: brown with white wing bars and black-tipped feathers", + "nape: olive-brown with lighter streaks", + "tail: long, fan-like, with dark brown feathers edged in white", + "throat: white, blending into the gray breast area" + ], + "samoan flycatcher": [ + "back: olive-brown feathers with subtle streaks", + "beak: short, sturdy, slightly curved black beak", + "belly: off-white to pale yellow feathers", + "breast: white or light grey with faint streaks", + "crown: rufous or reddish-brown feathers", + "forehead: slight rufous tinge contrasting with crown", + "eyes: dark, round, with white to pale grey eyerings", + "legs: slim and pale greyish-blue", + "wings: olive-brown with rufous edges on flight feathers", + "nape: olive-brown, sometimes with a rufous tinge", + "tail: olive-brown and relatively long in proportion to body", + "throat: white or pale grey, often with fine streaks" + ], + "samoan myzomela": [ + "back: olive-brown feathers", + "beak: thin, curved, blackish", + "belly: yellowish-orange to red hue", + "breast: bright red or orange", + "crown: deep red or orange", + "forehead: red or orange head", + "eyes: dark, surrounded by red or orange feathers", + "legs: dark, slender", + "wings: dark, short, rounded", + "nape: olive-brown coloration", + "tail: dark brown, slightly forked", + "throat: deep red or orange feathers" + ], + "samoan starling": [ + "back: shiny, metallic-blue feathers", + "beak: short, sharply-pointed, blackish-grey", + "belly: dark black with a tinge of blue feathers", + "breast: glossy, dark-blue feathers", + "crown: deep blue-black with metallic sheen", + "forehead: rich blue-black with iridescent shine", + "eyes: small, dark brown, surrounded by metallic blue feathers", + "legs: strong, dark grey with sharp claws", + "wings: broad, rounded, blue-black with hints of green iridescence", + "nape: vibrant metallic blue-black feathers", + "tail: long, dark blue-black, with glossy texture", + "throat: shimmering dark blue, slightly paler than breast feathers" + ], + "samoan triller": [ + "back: olive-green upperparts and pale streaks", + "beak: short, sharply pointed, black color", + "belly: white feathering with light gray undertones", + "breast: light gray with subtle pale streaks", + "crown: olive-green with faint streaks", + "forehead: light gray, almost white coloring", + "eyes: small, dark, surrounded by pale eye-ring", + "legs: slender, grayish-black with sharp claws", + "wings: olive-green with black-edged wing coverts", + "nape: olive-green transitioning to lighter gray", + "tail: olive-green with black central feathers and white outer tips", + "throat: whitish-gray, almost white" + ], + "samoan whistler": [ + "back: olive-brown with subtle streaks", + "beak: dark and slender", + "belly: off-white or pale yellow", + "breast: light olive-green", + "crown: olive-brown with yellow streaks", + "forehead: olive-green with vague streaks", + "eyes: dark with pale eyering", + "legs: grayish-blue", + "wings: olive-brown with yellowish edges", + "nape: olive-brown with yellow streaks", + "tail: olive-brown and rounded", + "throat: pale yellowish-green" + ], + "san andres vireo": [ + "back: olive-green with subtle gray streaks", + "beak: short and hooked, light pinkish hue", + "belly: creamy-white with pale yellow wash", + "breast: pale gray with faint olive tones", + "crown: light gray with faint olive tinge", + "forehead: soft gray with slight yellow undertones", + "eyes: dark brown with white eyering", + "legs: pale pinkish-gray and slender", + "wings: olive-gray with distinctive white wingbars", + "nape: grayish olive with faint streaks", + "tail: long and tapered, olive-gray with white outer edges", + "throat: pale gray, blending into breast" + ], + "san blas jay": [ + "back: deep blue feathers with a glossy sheen", + "beak: strong, black, and slightly hooked", + "belly: light blue to greyish-blue feathers", + "breast: bright blue plumage", + "crown: dark blue, slightly raised feathers", + "forehead: deep blue, smooth feathers", + "eyes: black and piercing with a bluish-grey eye-ring", + "legs: strong, black, and featherless", + "wings: iridescent blue with black flight feathers", + "nape: deep blue, smooth feathers", + "tail: long, graduated, and black with blue edges", + "throat: light blue, unmarked feathers" + ], + "san cristobal mockingbird": [ + "back: brownish-grey plumage", + "beak: long, slender, and slightly curved", + "belly: lighter grey-white feathers", + "breast: grey-white feathering", + "crown: brownish-grey with faint streaks", + "forehead: smooth brownish-grey", + "eyes: dark, penetrating gaze with thin eye-ring", + "legs: thin and relatively long, blackish", + "wings: broad, brownish-grey with modest dark markings", + "nape: brownish-grey with distinct streaks", + "tail: long, rounded, and brownish-grey", + "throat: pale grey-white plumage" + ], + "sand lark": [ + "back: light brown with subtle markings", + "beak: short and conical", + "belly: pale, sandy color", + "breast: creamy white with light streaks", + "crown: sandy brown with pale streaks", + "forehead: light brown", + "eyes: small and dark", + "legs: long and slender", + "wings: brown with black and white markings", + "nape: pale brown", + "tail: dark brown with white outer feathers", + "throat: white with light brown streaks" + ], + "sand partridge": [ + "back: sandy brown with black markings", + "beak: short and stout, light brown", + "belly: creamy white with dark spots", + "breast: grayish-brown with subtle barring", + "crown: chestnut-colored with streaks", + "forehead: pale with slight markings", + "eyes: dark and small, surrounded by a pale ring", + "legs: short and sturdy, light brown", + "wings: mottled brown with white-tipped feathers", + "nape: chestnut-colored with thin black stripes", + "tail: short and square, brown with black and white edges", + "throat: pale with speckled markings" + ], + "sand colored nighthawk": [ + "back: sandy-brown feathers with intricate patterns", + "beak: short, hooked, sand-colored", + "belly: pale cream with dappled markings", + "breast: soft beige with subtle dark streaks", + "crown: tawny crown with feathered crest", + "forehead: speckled light brown blending to crown", + "eyes: large, dark, and well-camouflaged", + "legs: sturdy, sand-colored, short", + "wings: long, narrow, cryptically patterned", + "nape: intricately barred in sandy hues", + "tail: long, rounded, sand-colored with faint banding", + "throat: pale cream with delicate striping" + ], + "sandstone shrikethrush": [ + "back: reddish-brown upper body feathers", + "beak: thin, black and hooked", + "belly: creamy-white with faint streaks", + "breast: pale gray with subtle scalloping", + "crown: gray-brown smooth feathers", + "forehead: light gray with fine markings", + "eyes: sharp, black, and round", + "legs: slender and dark gray", + "wings: short, reddish-brown with fine patterns", + "nape: gray-brown with fine streaks", + "tail: reddish-brown with black banding", + "throat: light gray with faint streaks" + ], + "sandy gallito": [ + "back: light brown with dark streaks", + "beak: short and curved, grayish-black", + "belly: pale brown with dark spots", + "breast: grayish-brown with faint markings", + "crown: reddish-brown fading to gray", + "forehead: light gray with subtle streaks", + "eyes: dark brown surrounded by gray feathers", + "legs: long and slim, grayish-brown", + "wings: brown with darker flight feathers", + "nape: reddish-brown with darker streaks", + "tail: brown with broad, dark bands", + "throat: pale gray with faint streaks" + ], + "sandy scops owl": [ + "back: tawny-brown with small black speckles", + "beak: sharp, curved, grayish-black", + "belly: light beige with dark brown vertical streaks", + "breast: buff-colored with dark brown vertical streaks", + "crown: tawny-brown with black markings", + "forehead: tawny-brown with lightly speckled black spots", + "eyes: large, yellow-orange with black pupils", + "legs: feathered, beige with sharp black talons", + "wings: rounded, tawny-brown with black barred pattern", + "nape: tawny-brown, darker towards rear, with small black spots", + "tail: tawny-brown with dark brown horizontal bars", + "throat: light beige with sparse dark brown streaks" + ], + "sanford sea eagle": [ + "back: dark brown feathers", + "beak: strong, hooked, yellow", + "belly: white feathers", + "breast: brownish-white plumage", + "crown: dark brown feathers", + "forehead: slightly paler brown", + "eyes: sharp, yellow-orange", + "legs: yellow, powerful talons", + "wings: broad, dark brown, white patches", + "nape: dark brown feathers", + "tail: white base, dark brown tips", + "throat: white feathers" + ], + "sanford white eye": [ + "back: olive-green upper body feathers", + "beak: short, slightly curved bill", + "belly: pale greyish-white underparts", + "breast: light olive-green plumage", + "crown: rich chestnut-colored crest", + "forehead: bright white band above the beak", + "eyes: conspicuous white eye-ring", + "legs: bluish-gray slender legs and feet", + "wings: olive-green with faint wing bars", + "nape: olive-green blending with the crown", + "tail: long, olive-green with white tip", + "throat: pale greyish-white, contrasting with breast" + ], + "sangihe golden bulbul": [ + "back: golden-yellow feathers with a slight olive tinge", + "beak: short and curved, light orange color", + "belly: bright yellow feathers with hints of green", + "breast: vibrant golden-yellow plumage", + "crown: golden-yellow, slightly raised feather crest", + "forehead: bright yellow feathers transitioning to golden-yellow towards the crown", + "eyes: dark brown with a thin white eye-ring", + "legs: light orange, slender and elongated", + "wings: olive-green with yellowish edging on feathers", + "nape: golden-yellow transitioning to olive-green towards the back", + "tail: olive-green feathers with yellow tips, medium length", + "throat: bright yellow feathers, contrasting with the breast" + ], + "sangihe hanging parrot": [ + "back: vibrant green feathers", + "beak: short, curved, and orange-red", + "belly: light green plumage", + "breast: bright green feathers", + "crown: red patch with blue borders", + "forehead: bluish-green plumage", + "eyes: dark, surrounded by white eye-ring", + "legs: grayish, with two toes facing forward and two backward", + "wings: green with blue-tinted edges", + "nape: bluish-green transition to the back", + "tail: short, green feathers with blue tips", + "throat: green fading into the yellow-orange lower part" + ], + "sangihe lilac kingfisher": [ + "back: vibrant blue feathers", + "beak: long, black and pointed", + "belly: pale orange hue", + "breast: bright lilac plumage", + "crown: iridescent blue-violet", + "forehead: deep violet-blue feathers", + "eyes: dark, rounded with a white ring", + "legs: short and black", + "wings: blue and lilac with hints of orange", + "nape: blue fading to lilac", + "tail: blue and lilac with white tips", + "throat: light orange coloration" + ], + "sangihe pitta": [ + "back: vibrant blue with dark stripes", + "beak: sharp, black, and slightly curved", + "belly: creamy white with pale blue patches", + "breast: overlapping blue and black scales", + "crown: bright blue with black edge", + "forehead: electric blue with black markings", + "eyes: dark, round, and expressive", + "legs: strong, slender, and dark gray", + "wings: blue and black, broad, rounded", + "nape: deep blue with a hint of turquoise", + "tail: long, blue, and black with white tips", + "throat: white with subtle blue markings" + ], + "sangihe scops owl": [ + "back: dark-brown with blackish markings", + "beak: light-grey, short and hooked", + "belly: pale-grey with thin black streaks", + "breast: pale-grey with blackish-grey streaks", + "crown: dark-brown with blackish spots", + "forehead: pale-grey with blackish spots", + "eyes: yellow-orange with dark eye-ring", + "legs: feathered light-grey with sharp talons", + "wings: dark-brown with blackish markings and pale-grey fringes", + "nape: dark-brown with blackish spots", + "tail: dark-brown, moderately-long with alternate pale-grey bands", + "throat: pale-grey with thin black streaks" + ], + "sangihe whistler": [ + "back: olive-brown with faint streaks", + "beak: short, sharp, and black", + "belly: creamy-white with light streaks", + "breast: pale yellow-brown with slight streaks", + "crown: olive-brown with faint streaks", + "forehead: smooth, olive-brown", + "eyes: round and dark, surrounded by a white eyering", + "legs: slender, pale pinkish-brown", + "wings: olive-brown with faint bars and white tips", + "nape: olive-brown with light streaking", + "tail: long, olive-brown with white tips and subtle barring", + "throat: creamy-white, slightly streaked" + ], + "sangkar white eye": [ + "back: sleek, greenish-blue plumage", + "beak: slim, pointy, dark gray", + "belly: light grey with a hint of green", + "breast: pale greyish-green feathers", + "crown: greenish-blue head crest", + "forehead: subtle bluish-green gradient", + "eyes: prominent white eye-ring", + "legs: thin, grey with sharp claws", + "wings: short, green-blue with dark feathers", + "nape: green tint with smooth feathers", + "tail: long, dark blue-green central feathers", + "throat: pale, greenish-grey feathers" + ], + "santa cruz white eye": [ + "back: pale greenish-gray feathers", + "beak: small, pointed black beak", + "belly: light gray-white underbelly", + "breast: pale gray with thin, white streaks", + "crown: light gray-white, rounded top", + "forehead: white to pale gray gradient", + "eyes: small, black, encircled by pale white rings", + "legs: thin, gray, with sharp claws", + "wings: pale greenish-gray with white edges", + "nape: light gray-white, blending into back", + "tail: short, pale gray with white tips", + "throat: gray-white, blending into breast" + ], + "santa marta antbird": [ + "back: olive-brown with subtle darker streaks", + "beak: short, black, hooked tip", + "belly: pale grayish-white with faint brownish flecks", + "breast: grayish-white with darker gray streaks", + "crown: dark grayish-brown with a bluish sheen", + "forehead: dark grayish-brown with a slight bluish reflection", + "eyes: dark brown surrounded by off-white eye-ring", + "legs: long, slender, grayish-black", + "wings: olive-brown with blackish wing-bars", + "nape: olive-brown with darker streaks", + "tail: long, dark brown with pale feather tips", + "throat: light grayish-white with faint brownish streaks" + ], + "santa marta antpitta": [ + "back: olive-brown feathers", + "beak: short, black, and pointed", + "belly: pale, yellowish-white", + "breast: slate-gray with white spots", + "crown: olive-brown with faint black streaks", + "forehead: slightly paler olive-brown", + "eyes: small, dark, and round", + "legs: long, slender, pinkish-gray", + "wings: olive-brown with faint black bars", + "nape: olive-brown with black streaks", + "tail: short, olive-brown with black bars", + "throat: white with grayish-brown edges" + ], + "santa marta blossomcrown": [ + "back: vibrant green feathers", + "beak: slender, slightly curved", + "belly: soft whitish-gray plumage", + "breast: bright green feathers", + "crown: iridescent purple-red tuft", + "forehead: shining green feathers", + "eyes: small, black, and alert", + "legs: sturdy, grayish-brown", + "wings: bright green with subtle hints of blue", + "nape: smooth green feathers transitioning to the crown", + "tail: short, slightly rounded, green feathers", + "throat: whitish-gray plumage" + ], + "santa marta brushfinch": [ + "back: olive-green feathers", + "beak: short, conical, and black", + "belly: white with grayish sides", + "breast: grayish-white plumage", + "crown: black feathers with white streaks", + "forehead: white streaks over black", + "eyes: dark with thin white eye-ring", + "legs: strong, dark gray", + "wings: olive-green with black flight feathers", + "nape: olive-green with white streaks", + "tail: long, black with olive-green edges", + "throat: white-bordered, black center" + ], + "santa marta bush tyrant": [ + "back: olive-brown with subtle streaks", + "beak: small, black and sharply pointed", + "belly: pale yellow with faint streaks", + "breast: yellowish-olive, streaked with gray", + "crown: dark gray with an orange-yellow crest", + "forehead: smooth, light gray", + "eyes: black, beady with a thin white eye-ring", + "legs: slender, charcoal gray", + "wings: olive-brown with faint wing bars", + "nape: olive-gray with faint streaks", + "tail: dark grayish-brown with hint of olive", + "throat: grayish-white with streaks" + ], + "santa marta foliage gleaner": [ + "back: olive-brown, slightly striated feathers", + "beak: short, slightly curved, blackish upper bill and pale lower bill", + "belly: dull white with brownish-gray streaks", + "breast: olive-gray plumage with fine streaks", + "crown: rufous-brown feathers with a faint streak", + "forehead: olive-gray with faint streaking", + "eyes: dark brown with a thin eye-ring", + "legs: grayish-blue, strong and sturdy", + "wings: olive-brown with darker flight feathers", + "nape: olive-brown, blending with the back", + "tail: long, brownish with black barring", + "throat: pale grayish-white with fine streaks" + ], + "santa marta parakeet": [ + "back: vibrant green feathers", + "beak: short, hooked, beige", + "belly: light green, feathery", + "breast: soft green plumage", + "crown: intense blue, striking", + "forehead: brilliant blue feathers", + "eyes: round, dark with white ring", + "legs: light gray, strong", + "wings: green with blue tips", + "nape: subtle blue-green transition", + "tail: long, green with blue edges", + "throat: pale green, soft feathers" + ], + "santa marta screech owl": [ + "back: grayish-brown with dark streaks", + "beak: light gray, hooked shape", + "belly: grayish-white with fine brown barring", + "breast: grayish-white with fine brown barring", + "crown: grayish-brown with dark streaks", + "forehead: grayish-brown with dark streaks", + "eyes: large, yellow, and circular", + "legs: feathered, light gray, with sharp talons", + "wings: grayish-brown with dark streaks and spots", + "nape: grayish-brown with dark streaks", + "tail: grayish-brown with dark banding", + "throat: grayish-white with fine brown barring" + ], + "santa marta tapaculo": [ + "back: dark plumage with gray undertones", + "beak: short, stout and black", + "belly: pale gray with light streaks", + "breast: grayish with a white center", + "crown: blackish-brown with faint speckles", + "forehead: dark gray with faint markings", + "eyes: small, black, and round", + "legs: pinkish-gray, strong and sturdy", + "wings: dark gray with slight brown tones", + "nape: brownish-gray with faint spots", + "tail: short, rounded, with dark gray feathers", + "throat: whitish-gray with fine streaks" + ], + "santa marta warbler": [ + "back: vibrant green feathers", + "beak: short, slender, and black", + "belly: pale yellow with minimal markings", + "breast: bright yellow with black streaks", + "crown: olive-green with subtle gray tinges", + "forehead: bright yellow, fading into the crown", + "eyes: dark with white eye-ring", + "legs: pale pinkish, sturdy and slender", + "wings: olive-green with black edging", + "nape: olive-green fading into the back", + "tail: olive-green with slight black barring", + "throat: bright yellow, continuous with breast" + ], + "santa marta woodstar": [ + "back: vibrant green feathers", + "beak: slender, elongated black beak", + "belly: light grayish-white feathering", + "breast: soft gray plumage with a hint of green", + "crown: emerald green cap feathers", + "forehead: glittering green and bronze hues", + "eyes: small and dark, surrounded by feathers", + "legs: slender, short black legs", + "wings: delicate, iridescent green with black tips", + "nape: bright green with bronze sheen", + "tail: graduated tail with black and white outer feathers", + "throat: brilliant pinkish-purple gorget (males) or pale gray (females" + ], + "santa marta wren": [ + "back: olive-brown with light streaks", + "beak: thin, slightly curved, dark grey", + "belly: light cream with brownish spots", + "breast: creamy white with faint spots", + "crown: rufous with darker streaks", + "forehead: pale olive-brown", + "eyes: black with pale eye-ring", + "legs: slender, pale grey", + "wings: olive-brown with light markings", + "nape: rufous-brown with white streaks", + "tail: long, brown with thin dark bands", + "throat: creamy white with faint spots" + ], + "santarem parakeet": [ + "back: green feathers with slight blue tinge", + "beak: beige-colored, hooked shape", + "belly: vibrant yellow feathers", + "breast: yellow-green feathers with orange markings", + "crown: bright green feathers", + "forehead: green feathers with subtle blue sheen", + "eyes: dark brown with white eye-ring", + "legs: gray, scaly texture with talons", + "wings: green feathers with darker blue edges", + "nape: green feathers, slightly paler than crown", + "tail: long, green-blue feathers", + "throat: yellowish-green feathers" + ], + "santo thicketbird": [ + "back: olive-brown feathers with subtle streaks", + "beak: slender, slightly curved, greyish-black", + "belly: pale cream with pale brown spots", + "breast: warm buff colored with faint smudges", + "crown: olive-brown with a slight crest", + "forehead: smooth olive-brown feathers", + "eyes: small, dark brown, surrounded by thin eye-ring", + "legs: sturdy, yellowish-brown with sharp claws", + "wings: rounded, olive-brown with faint barring", + "nape: smooth olive-brown feathers", + "tail: long, narrow, olive-brown with darker tips", + "throat: pale cream with traces of buff" + ], + "sao francisco sparrow": [ + "back: grayish-brown with dark streaks", + "beak: short, conical, and pale gray", + "belly: creamy-white with light brown streaks", + "breast: light gray, subtly streaked", + "crown: reddish-brown with dark markings", + "forehead: pale gray, blending into the crown", + "eyes: dark, beady, surrounded by a pale eye-ring", + "legs: pale pinkish-brown, thin and sturdy", + "wings: brown with white markings, slightly pointed", + "nape: reddish-brown, continuous from the crown", + "tail: dark brown with white outer feathers, moderately long", + "throat: pale gray, unmarked, contrasting with the breast" + ], + "sao paulo tyrannulet": [ + "back: olive-green and smooth", + "beak: thin, small, and pointy", + "belly: pale yellowish-white", + "breast: light gray with greenish tinges", + "crown: olive-green with white eyering", + "forehead: olive-green, blending into the crown", + "eyes: dark, encircled by white eyering", + "legs: grayish-black and slender", + "wings: olive-green with faint wing bars", + "nape: olive-green, connecting to the back", + "tail: olive-green and elongated", + "throat: pale gray to off-white" + ], + "sao tome green pigeon": [ + "back: olive-green feathered back", + "beak: short, pale yellowish beak", + "belly: yellowish-green underside with dark scale-like patterns", + "breast: yellowish-green with hints of gray", + "crown: greenish-gray with a slight bluish tinge", + "forehead: smooth greenish-gray", + "eyes: dark brown with a narrow white eyering", + "legs: short, red-orange with strong feet", + "wings: dark green with black and yellowish tips", + "nape: olive-green with a possible blue sheen", + "tail: medium-length, dark green with yellowish outlines", + "throat: light greenish-gray" + ], + "sao tome grosbeak": [ + "back: olive-brown feathers", + "beak: large, thick, and black", + "belly: dull grayish-yellow feathers", + "breast: lighter grayish-yellow plumage", + "crown: dark brown streaks and olive-green feathers", + "forehead: black and olive-green feathers", + "eyes: small, dark, and round", + "legs: sturdy and grayish-pink", + "wings: olive-brown with faint wingbars", + "nape: olive-brown with darker streaks", + "tail: short, olive-brown feathers", + "throat: grayish-yellow and lightly streaked" + ], + "sao tome ibis": [ + "back: dark brownish-grey feathers", + "beak: long, slim, and curved downward", + "belly: contrastingly white feathers", + "breast: white feathers, merging with brown on sides", + "crown: featherless, bluish-black skin", + "forehead: dark brownish-grey feathers", + "eyes: small and dark, encircled by bluish-black skin", + "legs: long and slender, with reddish-brown coloration", + "wings: dark brownish-grey plumage, wide and robust", + "nape: feathered, dark-brownish with white streaks", + "tail: short, with pointed brownish-grey feathers", + "throat: bare, bluish-black skin, partially covered by white feathers" + ], + "sao tome oriole": [ + "back: vibrant yellow feathers", + "beak: long, pointed, black", + "belly: bright yellow plumage", + "breast: golden yellow feathers", + "crown: black feathers with slight crest", + "forehead: deep black plumage", + "eyes: dark, beady, surrounded by black feathers", + "legs: slender, grayish-blue", + "wings: black with yellow highlights and accents", + "nape: black plumage blending into yellow back", + "tail: long, black, with yellow edges", + "throat: brilliant yellow feathers" + ], + "sao tome paradise flycatcher": [ + "back: dark blue glossy plumage", + "beak: small, black, and pointed", + "belly: white to pale gray feathers", + "breast: bright chestnut-orange color", + "crown: elongated blue-black feathers form a crest", + "forehead: sleek blue-black feathers", + "eyes: dark and round, with a white eye-ring", + "legs: long, thin, and black", + "wings: dark blue, with lighter blue highlights", + "nape: deep blue feathers with a glossy sheen", + "tail: long and graduated, with a chestnut-orange underside", + "throat: pale grayish-white, contrasting with the breast" + ], + "sao tome pigeon": [ + "back: dark brown, short feathers", + "beak: straight, reddish-orange", + "belly: light gray with white hints", + "breast: bluish-gray plumage", + "crown: dark brown, smooth feathers", + "forehead: bluish-gray, short feathers", + "eyes: dark, round with grayish ring", + "legs: reddish-orange, strong", + "wings: dark brown, broad with white bands", + "nape: bluish-gray, slightly longer feathers", + "tail: dark brown, medium-length feathers", + "throat: light gray with white undertones" + ], + "sao tome prinia": [ + "back: olive-green upper feathering", + "beak: short, curved, and sharp", + "belly: light yellowish underparts", + "breast: pale yellow with faint streaks", + "crown: grayish-brown crest", + "forehead: slightly paler grayish-brown", + "eyes: small and black", + "legs: slender and long", + "wings: olive-green with faint barring", + "nape: grayish-brown, blending with the crown", + "tail: long and narrow, dark brown", + "throat: pale yellow, slightly streaked" + ], + "sao tome scops owl": [ + "back: dark-mottled reddish-brown feathers", + "beak: sharp, hooked, and black", + "belly: light gray with dark streaks", + "breast: grayish-white with reddish-brown speckles", + "crown: reddish-brown with dark markings", + "forehead: light-colored with fine dark speckles", + "eyes: large, black, and surrounded by light gray feathers", + "legs: feathered with reddish-brown and dark gray markings", + "wings: brown and grayish-white with distinct barred patterns", + "nape: mottled reddish-brown and gray feathers", + "tail: long and dark brown with white bars", + "throat: pale gray with fine dark streaks" + ], + "sao tome short tail": [ + "back: greenish or reddish-brown plumage", + "beak: small, sturdy, and dark-colored", + "belly: whitish-gray with soft speckling", + "breast: grayish to white with light barring or streaking", + "crown: dark brown or black, sometimes with red highlights", + "forehead: brown or reddish-brown, in line with crown", + "eyes: dark with a faint pale eye-ring", + "legs: grayish or dull olive, small and slender", + "wings: short and rounded, with dark brown feathers and light edges", + "nape: continuation of crown color, connecting to back", + "tail: short and square-shaped, dark brown with faint barring", + "throat: clear to light gray, leading into breast coloration" + ], + "sao tome spinetail": [ + "back: dark brown with streaks", + "beak: slender, slightly curved", + "belly: pale with thin dark stripes", + "breast: buff-brown with some streaks", + "crown: rufous-brown with slight streaking", + "forehead: rufous-brown, like the crown", + "eyes: small, dark-colored", + "legs: sturdy, pale brown", + "wings: dark brown with rufous edges on feathers", + "nape: rufous-brown, streaked", + "tail: long, thin, brown with rufous edges", + "throat: pale buff with streaks" + ], + "sao tome sunbird": [ + "back: iridescent green feathers with a metallic sheen", + "beak: long and slender curved bill, adapted for feeding on nectar", + "belly: vibrant yellow hue, blending into the breast color", + "breast: bright yellow feathers, transitioning to the belly and throat", + "crown: glossy metallic green or purple feathers", + "forehead: iridescent green with a slight metallic sheen", + "eyes: small, dark, and alert with good vision", + "legs: thin yet sturdy, grayish-black with sharp claws for perching", + "wings: relatively short and rounded for quick, agile flight", + "nape: metallic green shine, connecting the crown to the back", + "tail: elongated, slender central feathers, with shorter outer feathers", + "throat: intense yellow feathering, blending seamlessly with the breast" + ], + "sao tome thrush": [ + "back: olive-brown with subtle streaks", + "beak: sturdy, hooked, and black", + "belly: pale grayish-white; lightly spotted", + "breast: grayish-white with dark spots", + "crown: dark olive-brown", + "forehead: slightly paler than the crown", + "eyes: medium-sized, dark brown", + "legs: strong, dark gray", + "wings: olive-brown; well-defined feathers", + "nape: olive-brown, lighter than crown", + "tail: olive-brown, medium-length, squared", + "throat: paler gray; lightly spotted" + ], + "sao tome weaver": [ + "back: olive-green with dark stripes", + "beak: black, robust, and pointy", + "belly: yellowish-green", + "breast: vibrant golden-yellow", + "crown: glossy black", + "forehead: shiny greenish-black", + "eyes: dark brown with white eye-ring", + "legs: sturdy and grayish-blue", + "wings: olive-brown with distinctive yellow edges", + "nape: glossy black", + "tail: long, olive-brown with faint stripes", + "throat: golden-yellow with black border" + ], + "sao tome white eye": [ + "back: olive-green plumage", + "beak: curved, silvery-gray", + "belly: light grayish-white", + "breast: pale gray with white center", + "crown: bright green with yellow tinge", + "forehead: curved, greenish-yellow", + "eyes: large, whitish eye-ring", + "legs: slender, grayish-black", + "wings: greenish-brown with white edges", + "nape: olive-green, blending into crown", + "tail: long, greenish-brown with white tips", + "throat: white, contrasting with breast" + ], + "sapayoa": [ + "back: olive-green with a faint yellow tint", + "beak: short, flattened, and dark grey", + "belly: pale yellow with subtle olive-green wash", + "breast: dull, pale yellow", + "crown: inconspicuous greenish-yellow", + "forehead: greenish-yellow and uniform", + "eyes: dark, beady eye with a pale eye-ring", + "legs: medium length, slender, and grey", + "wings: olive-green with darker flight feathers", + "nape: greenish-yellow with a subtle shift in shade from the crown", + "tail: medium length, olive-brown with a slight green sheen", + "throat: pale yellow with a seamless transition from the breast" + ], + "sapphire flycatcher": [ + "back: brilliant blue feathers", + "beak: small, pointed black beak", + "belly: pale greyish-white hue", + "breast: vibrant blue plumage", + "crown: shiny sapphire top feathers", + "forehead: gleaming blue markings", + "eyes: round, black, and alert", + "legs: slender, dark grey stems", + "wings: bold blue with dark edges", + "nape: dazzling blue feathers", + "tail: long, blue, with dark bands", + "throat: light grayish-blue tint" + ], + "sapphire quail dove": [ + "back: vibrant blue feathers with subtle green iridescence", + "beak: short, curved, blackish-gray beak", + "belly: pale grayish-white with delicate speckles", + "breast: light bluish-gray with soft pale streaks", + "crown: deep sapphire blue with iridescent sheen", + "forehead: shimmering blue with bright, reflective sheen", + "eyes: dark, round eyes with a thin white eye-ring", + "legs: slender, grayish-brown legs with scaly texture", + "wings: blue-violet with intricate feather patterns", + "nape: glossy sapphire color fading into soft gray", + "tail: long, blue and black, with white-tipped feathers", + "throat: pale gray with subtle blue tinge and faint speckles" + ], + "sapphire bellied hummingbird": [ + "back: metallic blue-green hue", + "beak: long, slender black curve", + "belly: iridescent sapphire blue", + "breast: shimmering white with light blue accents", + "crown: iridescent emerald green", + "forehead: bright green-gold shimmer", + "eyes: small dark orbs", + "legs: short, delicate black limbs", + "wings: fast-beating, aerodynamic feathers", + "nape: metallic green with blue undertone", + "tail: tapered, iridescent blue-green feathers", + "throat: vibrant green-gold hue" + ], + "sapphire rumped parrotlet": [ + "back: vibrant green feathers", + "beak: short, hooked, light-colored", + "belly: pale yellowish-green plumage", + "breast: soft green and slightly puffed", + "crown: rich green with slight blue tint", + "forehead: bright sapphire-blue patch", + "eyes: dark with white eye ring", + "legs: short, gray, and stout", + "wings: green with blue flight feathers", + "nape: deep green merging into sapphire-blue", + "tail: green and blue, long, and tapered", + "throat: pale green, smooth plumage" + ], + "sapphire spangled emerald": [ + "back: iridescent blue-green feathers", + "beak: slender and black-tipped", + "belly: vibrant turquoise plumage", + "breast: shimmering sapphire-blue feathers", + "crown: sparkling emerald head", + "forehead: smooth gradient from blue to green", + "eyes: piercing dark orbs", + "legs: thin, dark appendages", + "wings: expansive cobalt-blue vanes", + "nape: delicate transition of blues and greens", + "tail: elongated, jewel-toned feathers", + "throat: brilliant azure gorget" + ], + "sapphire throated hummingbird": [ + "back: iridescent green-blue feathers", + "beak: long, slender, slightly curved", + "belly: pale grayish-white coloration", + "breast: shimmering green-blue feathers", + "crown: bright sapphire blue head feathers", + "forehead: vibrant sapphire blue feathers", + "eyes: small, dark, and alert", + "legs: short, delicate, and lightweight", + "wings: fast-beating, translucent, and narrow", + "nape: blue-green feathers transitioning to the back", + "tail: short, dark, and forked", + "throat: shiny sapphire blue plumage" + ], + "sapphire vented puffleg": [ + "back: iridescent green-blue feathers", + "beak: lengthy, thin, black, and curved", + "belly: white with green-blue speckles", + "breast: bright white with feather fluffs", + "crown: shiny, metallic green-blue hue", + "forehead: vibrant turquoise-green feathers", + "eyes: small, round, and dark", + "legs: thin, short, and gray", + "wings: multicolored, green-blue feathers with black tips", + "nape: metallic green-blue feather patterns", + "tail: long, iridescent green-blue feathers that fan out", + "throat: contrasting white with round shapes" + ], + "sardinian warbler": [ + "back: olive-grey with a slight sheen", + "beak: thin, dark, and needle-like", + "belly: pale grey with white undertail coverts", + "breast: light grey with subtle streaking", + "crown: black with a crimson eye-ring (male) or greyish-brown (female", + "forehead: black in males, greyish-brown in females", + "eyes: dark brown with a bright red eye-ring", + "legs: pale pinkish-grey and sturdy", + "wings: olive-grey with faint barring on secondaries", + "nape: olive-grey, blending with the back", + "tail: dark, long, and rounded with white outer feathers", + "throat: pale grey, lighter than the breast" + ], + "sarus crane": [ + "back: grey-feathered and smooth", + "beak: long, slender, and pointed", + "belly: soft grey plumage", + "breast: grey feathers with a slight curve", + "crown: red, fleshy patch atop the head", + "forehead: smooth and unfeathered", + "eyes: small, black, and alert", + "legs: tall, strong, and pinkish-grey", + "wings: broad, long, and grey with white tips", + "nape: slim, with grey feathers flowing down", + "tail: fan-shaped, medium length, grey feathers", + "throat: white-feathered, elongated patch" + ], + "satin berrypecker": [ + "back: vibrant green feathers", + "beak: slender, curved black bill", + "belly: creamy-yellow shade", + "breast: rich chestnut brown", + "crown: dark green, glossy plumage", + "forehead: bright green feathers", + "eyes: small and dark, surrounded by green", + "legs: thin, black, and scaly", + "wings: iridescent green feathers", + "nape: dark green transitioning to chestnut", + "tail: short and greenish-brown", + "throat: golden-yellow coloration" + ], + "satin bowerbird": [ + "back: vibrant blue-black feathers", + "beak: short, pointed, and pale yellow", + "belly: medium blue to olive-green plumage", + "breast: deep satin-blue feathers or greenish, depending on the sex", + "crown: radiant blue-black feathers", + "forehead: glossy blue-black plumage", + "eyes: bright blue with a black outline", + "legs: strong greyish-blue limbs", + "wings: iridescent blue-black with lighter blue highlights", + "nape: lustrous blue-black feathers", + "tail: long, blue-black with a slightly rounded tip", + "throat: smooth satin-blue or greenish, depending on the sex" + ], + "satin flycatcher": [ + "back: dark blue-black with iridescent sheen", + "beak: short, straight, black", + "belly: white with scalloped gray markings", + "breast: white with gray-blue streaks", + "crown: glossy black with slight crest", + "forehead: black, merging into the crown", + "eyes: dark, surrounded by narrow black eye-ring", + "legs: thin, dark gray", + "wings: dark blue-black with white wingbar", + "nape: blue-black, connects crown to back", + "tail: long, dark blue-black with white tips", + "throat: white, contrasting with dark head" + ], + "satin swiftlet": [ + "back: sleek, dark feathers", + "beak: short, slightly curved", + "belly: pale gray underparts", + "breast: soft, gray plumage", + "crown: dark, smooth feathering", + "forehead: light, faint streaks", + "eyes: black, attentive beads", + "legs: slender, pinkish-gray", + "wings: long, curved edges", + "nape: smooth, gray feather transition", + "tail: forked, black feathers", + "throat: pale gray, delicate plumage" + ], + "saturnine antshrike": [ + "back: dark gray with thin white streaks", + "beak: short and hook-tipped, black", + "belly: pale gray with fine white streaks", + "breast: light gray with faint white stripes", + "crown: blackish-gray with a white stripe", + "forehead: blackish-gray and slightly crested", + "eyes: deep black with white eye-ring", + "legs: slender, light gray", + "wings: dark gray with white wing bars", + "nape: blackish-gray with white stripe continuation from crown", + "tail: long and dark gray, with white-tipped feathers", + "throat: whitish-gray with fine black stripes" + ], + "saunders gull": [ + "back: light grey feathered upper body", + "beak: short, red-tipped yellow bill", + "belly: delicate white underbelly", + "breast: white plumage on chest", + "crown: smooth grey head feathers", + "forehead: slight frown on grey face", + "eyes: dark, round with pensive gaze", + "legs: short, bright orange-red limbs", + "wings: grey with black-tipped feathers", + "nape: grey feathers transition to white", + "tail: short, white feathers with black band", + "throat: soft white plumage on neck" + ], + "saunders tern": [ + "back: slate-grey feathers with a streamlined body shape", + "beak: sharp, slender, and black with a yellow tip", + "belly: pale underparts with a white tint", + "breast: soft white plumage", + "crown: black cap from forehead to nape", + "forehead: smooth black feathers above eyes", + "eyes: alert, dark, and bead-like", + "legs: slender orange-red with webbed feet for swimming", + "wings: long, pointed, and grey for agile flying", + "nape: black band connecting the crown to the back feathers", + "tail: forked white feathers for navigation in flight", + "throat: white feathers leading to breast area" + ], + "savanna hawk": [ + "back: brown feathers with white streaks", + "beak: sharply hooked, dark gray", + "belly: white with rufous bars", + "breast: white with brown streaks", + "crown: brown with white streaks", + "forehead: white with rufous bars", + "eyes: bright yellow with black pupils", + "legs: long, yellow with sharp talons", + "wings: broad, brown with light bands", + "nape: brown with white streaks", + "tail: brown with rufous and white bands", + "throat: white with brown streaks" + ], + "savanna nightjar": [ + "back: mottled brown with gray and black markings", + "beak: short, straight, blackish-brown", + "belly: white with brown marbling", + "breast: pale grayish-brown with black spots", + "crown: pale gray-brown with streaked black markings", + "forehead: dark gray-brown with fine, black streaks", + "eyes: large, dark, soulful in appearance", + "legs: short, feathered, camouflaged brown", + "wings: long, mottled brown with dark bands and white spots on coverts", + "nape: pale gray-brown with black streaking", + "tail: brown with dark bars and a white outer tail feather", + "throat: pale buffy-brown with black speckles" + ], + "savi warbler": [ + "back: olive-brown with light streaks", + "beak: thin, pointed, and dark-colored", + "belly: pale yellowish-brown", + "breast: light buff-brown", + "crown: olive-brown with faint streaking", + "forehead: smooth, pale brown", + "eyes: small, dark, and well-defined", + "legs: long, pale pinkish-grey", + "wings: rounded, olive-brown with faint barring", + "nape: light olive-brown with subtle streaks", + "tail: short, square, dark-brown with pale edges", + "throat: pale buff, slightly streaked" + ], + "savile bustard": [ + "back: light brown with scattered black markings", + "beak: strong, yellowish-brown with a slight curve", + "belly: whitish-gray with black streaks", + "breast: reddish-brown spotted with black", + "crown: black mixed with brown feathers", + "forehead: white strip dividing the brown head", + "eyes: dark brown with a thin white ring", + "legs: sturdy and yellowish-brown", + "wings: brown with white and black stripes", + "nape: dark brown with a white stripe on each side", + "tail: long, dark brown feathers with white tips", + "throat: whitish mixed with brown feathers" + ], + "saw billed hermit": [ + "back: iridescent green-bronze feathers", + "beak: long, curved, black-colored", + "belly: beige-feathered with a touch of green", + "breast: pale grayish-white plumage", + "crown: glossy green-bronze feathers", + "forehead: bronze-green with slight curve", + "eyes: small, round, black orbs", + "legs: slender, medium-length, grayish", + "wings: broad, tapered edges, green-bronze", + "nape: shining green-bronze feathers", + "tail: elongated, white-tipped feathers", + "throat: reddish-brown with a white stripe" + ], + "saxaul sparrow": [ + "back: dark-streaked and sandy brown", + "beak: short and conical, blackish in males, paler in females", + "belly: creamy white with dark streaks on sides", + "breast: pale buff with fine streaks", + "crown: rufous-brown with dark streaks", + "forehead: pale buff to white with dark streaks", + "eyes: small and dark", + "legs: short and sturdy, pale pinkish-brown", + "wings: sandy brown with dark streaks and pale wing bars", + "nape: rufous-brown with dark streaks", + "tail: rufous-brown, ragged, with dark center and white tips", + "throat: pale buff to white with light streaks" + ], + "sayaca tanager": [ + "back: vibrant blue feathers", + "beak: small, sharp, and black", + "belly: light greenish-blue plumage", + "breast: bright blue with greenish hues", + "crown: vivid blue feathers with a slight crest", + "forehead: radiant blue plumage", + "eyes: dark with a black pupil and thin eye-ring", + "legs: sturdy and black", + "wings: blue feathers with black outlining", + "nape: striking blue continuing from the crown", + "tail: elongated blue feathers with a slight curve", + "throat: pale greenish-blue feathers" + ], + "scale breasted woodpecker": [ + "back: greenish-brown with faint scaling patterns", + "beak: straight, long, and pointed for drilling into wood", + "belly: cream-colored with brown horizontal scales-like markings", + "breast: light-colored with scaled brown patterns", + "crown: smooth red feathers for males, brown for females", + "forehead: greenish-brown with a few red feathers for males, mainly brown for females", + "eyes: small, dark, and alert to spot insects and larvae", + "legs: strong, grayish-blue with sharp claws for gripping bark", + "wings: greenish-brown with white bars and black flight feathers", + "nape: greenish-brown with faint vertical striping", + "tail: greenish-brown with white bars, stiffened for balance and support", + "throat: cream-colored with a few brown scales-like markings" + ], + "scale crested pygmy tyrant": [ + "back: olive-green with subtle blackish stripes", + "beak: small, black, hooked upper mandible", + "belly: light yellowish-white", + "breast: pale yellow with faint grayish streaks", + "crown: olive-brown, adorned with erectable crest feathers", + "forehead: olive-brown, blending into crest", + "eyes: dark, round, surrounded by thin white eye-ring", + "legs: grayish, slender, adapted for perching", + "wings: olive-brown, edged with blackish and yellowish markings", + "nape: olive-brown, blending into back and crown", + "tail: short, dark, with white outer feather tips", + "throat: pale yellowish-white, subtly streaked with gray" + ], + "scale feathered malkoha": [ + "back: brownish-green, iridescent scales", + "beak: curved, blackish-grey", + "belly: pale creamy-white", + "breast: light greenish-grey with scales", + "crown: blackish-green with a slight hint of purple", + "forehead: dark green with faint scales", + "eyes: whitish-yellow, surrounded by black marking", + "legs: dark grey with scaly pattern", + "wings: greenish-black with iridescent sheen", + "nape: light green scales", + "tail: long, graduated tail feathers with green and blue iridescence", + "throat: white with light grey scales" + ], + "scale throated earthcreeper": [ + "back: brownish-gray with intricate scaling", + "beak: long, slender, and curved", + "belly: pale with dark brown streaks", + "breast: light brown with delicate scaling", + "crown: dark brown with light streaks", + "forehead: light brown blending into the crown", + "eyes: small and dark, encircled by light feathering", + "legs: sturdy, grayish-brown with strong claws", + "wings: brown and gray with scaly pattern", + "nape: light brown, transitioning into darker crown", + "tail: long, earthy brown with faint barring", + "throat: pale with subtle brown scaling" + ], + "scale throated hermit": [ + "back: greenish-bronze feathers", + "beak: long, slender, and curved", + "belly: light gray coloration", + "breast: pale gray with some green hues", + "crown: greenish feathers with a slight bronze sheen", + "forehead: white plumes with a scaled appearance", + "eyes: small, dark, and rounded", + "legs: grayish-brown and slender", + "wings: greenish-brown with darker primary feathers", + "nape: bronze-green feathers connecting to the crown", + "tail: elongated, white-tipped, and rufous in color", + "throat: white feathers with dark scaling pattern" + ], + "scaled antbird": [ + "back: olive-brown with subtle black streaks", + "beak: short, sturdy, and black", + "belly: whitish with faint greyish-brown streaks", + "breast: greyish-white with brownish tinges", + "crown: dark grey with a rufous crest", + "forehead: pale grey with fine black streaks", + "eyes: dark brown surrounded by a white eyering", + "legs: long, slender, and pale greyish-blue", + "wings: dark brown with buff wingbars", + "nape: olive-brown with a slight rufous tinge", + "tail: long, dark brown with buff tips", + "throat: white with fine greyish-black streaks" + ], + "scaled antpitta": [ + "back: olive-brown feathers", + "beak: short, strong, and curved", + "belly: pale yellow with brown speckles", + "breast: lighter olive-brown with subtle markings", + "crown: same olive-brown as back, rounded", + "forehead: slightly lighter color than crown, well-defined", + "eyes: dark, small, and round", + "legs: long, slender, and pale pink", + "wings: olive-brown with darker flight feathers", + "nape: continuation of crown color and texture", + "tail: short, olive-brown, and slightly forked", + "throat: pale yellow with no markings" + ], + "scaled chachalaca": [ + "back: smooth plumage, earthy brown", + "beak: short, curved, pale gray", + "belly: light tan, soft feathers", + "breast: buffy-brown, overlapping plumage", + "crown: chestnut color, slight crest", + "forehead: slightly paler brown, smooth transition to crown", + "eyes: dark, rounded, small in proportion", + "legs: sturdy, grayish, scaly", + "wings: brown, wide, rounded, white-tipped primaries", + "nape: chestnut striping, connecting to crown", + "tail: long, brown feathers, white tips, slight fan shape", + "throat: pale, subtle feathering, short neck" + ], + "scaled dove": [ + "back: grayish-brown with subtle scaling", + "beak: short, stout, and cream-colored", + "belly: pale buff to whitish with delicate scaling", + "breast: pinkish-brown with fine scaling", + "crown: blue-gray with a slight crest", + "forehead: pale gray blending into the crown", + "eyes: dark brown, surrounded by a bright eye-ring", + "legs: pinkish-red with scaly texture", + "wings: mottled gray-brown with black spots on coverts", + "nape: blue-gray with fine, dark-edged feather tips", + "tail: gray-brown, long and tapered with white outer feathers", + "throat: pale, creamy-white with the slightest scaling accents" + ], + "scaled flowerpiercer": [ + "back: striking mixed shades of blue and green", + "beak: elongated, sharply-curved black hook", + "belly: pale gray with darker gray streaks", + "breast: soft lavender-blue fading to gray", + "crown: deep blue fading to paler blue", + "forehead: bright blue with white markings", + "eyes: small and black, surrounded by white feathers", + "legs: black and slender with sharp talons", + "wings: blue-green with darker flight feathers", + "nape: blue-green with subtle feather patterns", + "tail: short and dark, edged with blue", + "throat: bright white with fine gray streaking" + ], + "scaled fruiteater": [ + "back: vibrant green feathers", + "beak: short, hooked, yellow", + "belly: mossy green plumage", + "breast: subtle green speckled with light yellow", + "crown: iridescent emerald hue", + "forehead: bright yellow-green transition", + "eyes: small, circular, dark", + "legs: greyish-blue, slender", + "wings: green with blue-black flight feathers", + "nape: pale green that merges with crown", + "tail: elongated, blue-black feathers", + "throat: softly transition from yellow-green to pale green" + ], + "scaled ground cuckoo": [ + "back: greenish-brown with iridescent highlights", + "beak: slender and slightly curved, grayish hue", + "belly: cream-colored with grayish-white bands", + "breast: light brown with dark markings", + "crown: dark chestnut brown", + "forehead: lighter brown, transitioning to the crown color", + "eyes: sharp and dark brown, with a yellow eye-ring", + "legs: strong and yellow with long toes", + "wings: broad and rounded, with greenish-brown upper feathers and white-barred lower feathers", + "nape: dark chestnut brown, matching the crown", + "tail: long and graduated, with broad alternating white and greenish-brown bars", + "throat: lighter brown, transitioning to the breast color" + ], + "scaled metaltail": [ + "back: shimmering emerald feathers", + "beak: sleek black, slightly curved", + "belly: iridescent bronze tones", + "breast: radiant metallic green", + "crown: gleaming golden highlights", + "forehead: bright coppery hue", + "eyes: alert, deep black orbs", + "legs: slim, dark gray, with delicate talons", + "wings: expansive, adorned with fine green scales", + "nape: polished metallic accents", + "tail: long, iridescent green feathers with intricate patterns", + "throat: fiery specks of red on dark green base" + ], + "scaled piculet": [ + "back: greenish-brown with delicate scaling", + "beak: short, dark, and pointed", + "belly: whitish with dark streaks", + "breast: pale brown with fine scaling", + "crown: reddish-brown marked with white spots", + "forehead: brownish with densely packed white speckles", + "eyes: small, round, and dark", + "legs: thin and grayish-blue", + "wings: brownish-green with white-tipped feathers forming bars", + "nape: brown with faint white scaling", + "tail: short, brownish-gray with slightly pointed feathers", + "throat: whitish-brown with thin dark streaks" + ], + "scaled pigeon": [ + "back: grayish-blue feathered curve", + "beak: small, black, and pointed", + "belly: light gray, soft feathers", + "breast: rounded, bluish-gray plumage", + "crown: sleek, gray-blue feathers", + "forehead: flattened gray-blue contour", + "eyes: small, bright orange rings", + "legs: short, strong, red-pinkish", + "wings: broad, blue-gray feathered flaps", + "nape: smooth, gray-blue feather transition", + "tail: wide, dark, gray-blue fan", + "throat: lighter bluish-gray, feathery slope" + ], + "scaled spinetail": [ + "back: brown with narrow buffy streaks", + "beak: long, slender and slightly curved", + "belly: pale buff with darker streaks", + "breast: brownish-gray with paler streaking", + "crown: brownish-gray with a subtle crest", + "forehead: grayish-brown fading into a pale eye stripe", + "eyes: small, dark and beady", + "legs: long, slender, and pale gray", + "wings: mottled brown with faint buff bars", + "nape: brownish-gray with a subtle buffy collar", + "tail: long, rufous, and slightly graduated", + "throat: pale grayish-white with thin streaks" + ], + "scaled woodcreeper": [ + "back: brown with black streaks", + "beak: long, straight, and pointed", + "belly: white to buff", + "breast: brown with curved dark markings", + "crown: reddish-brown", + "forehead: reddish-brown", + "eyes: dark with a pale eyering", + "legs: strong, grayish", + "wings: brown with fine barring", + "nape: reddish-brown", + "tail: long, brown with narrow dark bars", + "throat: white to buff" + ], + "scallop breasted antpitta": [ + "back: olive-brown with subtle streaks", + "beak: short, stout, and black", + "belly: pale buff with evener scalloping", + "breast: buff-colored with dark scalloping", + "crown: dusty brown fading towards nape", + "forehead: lighter brown with thin streaks", + "eyes: black, round and bright", + "legs: strong and sturdy, pinkish-brown", + "wings: brownish-olive with faint barring", + "nape: pale brown blending with crown", + "tail: short, brown with thin barring", + "throat: light buff, distinct from breast" + ], + "scalloped antbird": [ + "back: brownish-gray feathers with pale scalloped pattern", + "beak: short, slender, and black", + "belly: whitish-gray with faint scalloped markings", + "breast: pale gray with scalloped brownish feather edges", + "crown: dark gray with subtle brownish scalloping", + "forehead: slightly paler gray with fine brownish scallops", + "eyes: dark brown with pale grayish eye-ring", + "legs: thin and long, pale pinkish-gray", + "wings: brownish-gray with scalloped feather edges", + "nape: brownish-gray with distinct scalloped feather pattern", + "tail: long, brownish-gray with scalloped edges and white tips", + "throat: pale grayish-white, unmarked" + ], + "scalloped woodcreeper": [ + "back: brownish with dark streaks and scalloping pattern", + "beak: long, slightly decurved, and pale yellowish-brown", + "belly: pale buff, finely streaked with brown", + "breast: light brown with dark streaks and scalloping, transitioning to a paler belly", + "crown: warm brown with small, dark brown streaks", + "forehead: slightly paler brown with fine streaks", + "eyes: large, dark, and conspicuous", + "legs: pale pinkish-brown with strong, sharp claws", + "wings: brownish with scalloping and fine streaks on feathers", + "nape: warm brown with dark streaks and scalloping pattern", + "tail: long, stiff, and brownish with faint scalloping on feather tips", + "throat: slightly paler than breast, finely streaked with brown" + ], + "scaly babbler": [ + "back: olive-brown with faint scalloping", + "beak: strong, slightly curved, dark gray", + "belly: pale white with fine gray scaling", + "breast: gray with darker scale-like patterns", + "crown: grayish-brown, slightly darker than back", + "forehead: soft gray blending into the crown", + "eyes: dark, surrounded by faint white eye-ring", + "legs: sturdy, brownish-gray for perching", + "wings: olive-brown with faint scalloping, short and rounded", + "nape: grayish-brown with scalloped pattern", + "tail: olive-brown with darker feather tips", + "throat: pale gray, similar to belly but with denser scaling" + ], + "scaly chatterer": [ + "back: olive-green and scaly-patterned", + "beak: stout and curved, pale-tipped", + "belly: creamy white with scaly markings", + "breast: pale and scaly-patterned", + "crown: dusky gray, with faint streaks", + "forehead: grayish-brown", + "eyes: dark-bead-like", + "legs: strong and grayish-blue", + "wings: olive-green, scaly-patterned", + "nape: grayish-brown, streaked", + "tail: long, olive-green and rounded", + "throat: paler-gray and scaly" + ], + "scaly ground roller": [ + "back: blue-green scaling pattern", + "beak: short, stout, and hooked", + "belly: ochre-colored with black spots", + "breast: pale bluish-green with dark scaling", + "crown: deep blue-green with dark streaks", + "forehead: vibrant green-blue scales", + "eyes: large, dark, and surrounded by pale feathers", + "legs: strong, grey, and featherless", + "wings: rounded, blue-green with scaly patterns", + "nape: bluish-green with dark streaks", + "tail: long, broad, and blue-green with dark barring", + "throat: pale grey with black spotting" + ], + "scaly laughingthrush": [ + "back: olive-brown with black scaling", + "beak: slightly curved, greyish-black", + "belly: whitish-grey with black specks", + "breast: light-grey with dark-grey scaling", + "crown: olive-brown with dark streaks", + "forehead: narrow blackish-white bars", + "eyes: dark brown with lighter eye-ring", + "legs: strong, pale pinkish-grey", + "wings: olive brown with black scaling, white tips", + "nape: olive-brown with black streaks", + "tail: long, olive, black-scaled feathers, white tips", + "throat: white with indistinct grey scaling" + ], + "scaly spurfowl": [ + "back: olive-brown with faint white barring", + "beak: short, stout and pale grayish", + "belly: buff feathers with small white streaks", + "breast: whitish-buff feathers with fine black barrings", + "crown: reddish-brown with black spots", + "forehead: reddish-brown feathers", + "eyes: dark brown iris surrounded by a red eye-ring", + "legs: strong, grayish-brown with spur on each leg", + "wings: olive-brown with faint white barring and chestnut patch", + "nape: reddish-brown with black spots and faint white barring", + "tail: long, rounded, olive-brown with faint white bars", + "throat: buff with fine black barrings" + ], + "scaly thrush": [ + "back: olive-brown with dark streaks", + "beak: straight, yellowish-brown", + "belly: creamy white with brown spots", + "breast: pale white with brown streaks", + "crown: olive-brown with faint streaks", + "forehead: pale olive-brown", + "eyes: dark brown with white eye-ring", + "legs: pale pinkish-brown", + "wings: dark brown with faint white markings", + "nape: olive-brown with faint streaks", + "tail: dark brown with pale tips", + "throat: creamy white with brown streaks" + ], + "scaly weaver": [ + "back: olive-green feathers", + "beak: short, black and conical", + "belly: pale yellow scales", + "breast: yellow plumage with brown speckles", + "crown: red-brown feathers", + "forehead: golden-yellow streak", + "eyes: small, black and rounded", + "legs: sturdy and light grey", + "wings: short with green to brown feathers", + "nape: reddish-brown scales", + "tail: olive-brown with variable length", + "throat: pale yellow with fine brown markings" + ], + "scaly bellied woodpecker": [ + "back: greenish-brown, scaled appearance", + "beak: strong, chisel-shaped, grayish-black", + "belly: pale greenish-yellow, scaly pattern", + "breast: greenish-yellow, streaked with darker feathers", + "crown: crimson red cap, extending to nape", + "forehead: crimson red, blending into crown", + "eyes: dark brown with white outline", + "legs: sturdy, grayish-brown, sharp claws", + "wings: greenish-brown, barred with white", + "nape: crimson red, part of crown continuation", + "tail: greenish-black, white-tipped feathers, stiffened for support", + "throat: pale greenish-yellow, streaked with brown" + ], + "scaly breasted bulbul": [ + "back: olive-brown with subtle scaling", + "beak: short, slender, and curved", + "belly: pale yellow with dark scaly patterns", + "breast: creamy-white with brown scalloping", + "crown: grayish-green with a slight crest", + "forehead: pale olive-green", + "eyes: dark with pale eye-ring", + "legs: long, slender, and gray", + "wings: olive-brown with slight green edging", + "nape: grayish-green with a muted scaly pattern", + "tail: long and olive-brown with white-tipped feathers", + "throat: slightly paler than breast with light scaling" + ], + "scaly breasted cupwing": [ + "back: greenish-brown with subtle scales", + "beak: short, slender, and slightly curved", + "belly: pale, with fine scaly markings", + "breast: creamy white with brownish scales", + "crown: olive-brown with faint streaks", + "forehead: pale olive-brown", + "eyes: dark brown, encircled by faint eyering", + "legs: sturdy, pale pinkish-gray", + "wings: olive-green with prominent pale bars", + "nape: olive-brown, blending with crown", + "tail: short, olive-brown with pale edges", + "throat: plain white with a streaked collar" + ], + "scaly breasted hummingbird": [ + "back: iridescent green feathers", + "beak: long, slender, and slightly curved", + "belly: white feathers with green scaling", + "breast: white feathers with green scaling", + "crown: shimmering green feathers", + "forehead: metallic green plumage", + "eyes: small, round, and dark", + "legs: short and delicate with small talons", + "wings: elongated, swift-moving, and translucent", + "nape: bright green feathers transitioning to scaling", + "tail: short, forked, and greenish-bronze", + "throat: white feathers with green scaling" + ], + "scaly breasted illadopsis": [ + "back: olive-brown with faint scaling", + "beak: short, stout, and pale grayish", + "belly: white with dark brown scaling", + "breast: light brown with dark brown scaling", + "crown: olive-brown with slight pale streaks", + "forehead: smooth, olive-brown", + "eyes: small, dark with pale eye-ring", + "legs: sturdy, grayish-brown", + "wings: olive-brown with pale-edged feathers", + "nape: olive-brown with subtle streaks", + "tail: long, brownish with faint barring", + "throat: buffy-white, unmarked" + ], + "scaly breasted kingfisher": [ + "back: vibrant blue-green feathers", + "beak: long, sharp, black bill", + "belly: white with yellow tinge", + "breast: white with greenish-blue scale-like markings", + "crown: bright turquoise-blue", + "forehead: blue-green feathers", + "eyes: dark, round, surrounded by a white ring", + "legs: short with strong, dark grey claws", + "wings: deep blue with greenish-blue tips", + "nape: turquoise-blue feathers", + "tail: long, blue-green with white spots", + "throat: white with faint blue-green scales" + ], + "scaly breasted lorikeet": [ + "back: vibrant green feathers", + "beak: orange-reddish, curved shape", + "belly: light green scales", + "breast: yellow-green with scaly pattern", + "crown: bright green feathers", + "forehead: yellowish-green plumage", + "eyes: dark, expressive with white eye-ring", + "legs: grayish, strong and short", + "wings: green with hints of blue and red", + "nape: yellow-green transition to back", + "tail: green and blue with red underside", + "throat: pale green with scaly markings" + ], + "scaly breasted munia": [ + "back: olive-brown feathers with subtle scaling", + "beak: short, sturdy, and conical-shaped in pale gray", + "belly: creamy white with delicate dark scale-like markings", + "breast: white feathers with fine black scaling pattern", + "crown: smooth reddish-brown feathers", + "forehead: reddish-brown with well-defined edges", + "eyes: striking black with a slim white eye-ring", + "legs: thin and pale gray with strong clasping toes", + "wings: olive-brown with black and white streaks in flight feathers", + "nape: reddish-brown melding neatly into back feathers", + "tail: dark brown, long, and tapering to a sharp tip", + "throat: white with faint black scaling, leading to breast pattern" + ], + "scaly breasted partridge": [ + "back: olive-green with subtle scale-like patterns", + "beak: short, curved, and grayish-brown", + "belly: white and scaly with dark edges", + "breast: white and scaly with dark edges, merging with belly", + "crown: dark brown with a slight crest", + "forehead: pale-colored with a transition to dark brown", + "eyes: small, round, and dark with a white eye-ring", + "legs: robust, gray with sharp claws for ground foraging", + "wings: medium-sized with olive-green feathers and brown marking", + "nape: olive-green with a transition from the crown", + "tail: short and fan-shaped with brown and olive-green feathers", + "throat: light-colored merging with scaly breast feathers" + ], + "scaly breasted thrasher": [ + "back: olive-brown feathers", + "beak: stout, slightly curved", + "belly: creamy-yellow with dark scaling", + "breast: overlapping brown scales", + "crown: olive-brown with faint streaking", + "forehead: yellowish-brown hue", + "eyes: dark, surrounded by pale eye-ring", + "legs: strong, grayish-blue", + "wings: dark brown feathers with slight wing bars", + "nape: olive-brown streaks", + "tail: long, brown with white outer tips", + "throat: may carry scaling or be plain cream color" + ], + "scaly breasted wren": [ + "back: olive-brown with faint scaling", + "beak: thin, pointy, and dark-colored", + "belly: white with brown scaly patterns", + "breast: white with dark brown scalloping", + "crown: dark brown with lighter streaks", + "forehead: brown with faint streaking", + "eyes: dark, beady, surrounded by pale eye-ring", + "legs: slender, grayish-brown", + "wings: brown with fine barring", + "nape: brown with lighter streaks", + "tail: long, brown with faint barring", + "throat: white, extending to breast" + ], + "scaly crowned babbler": [ + "back: olive-green with fine scaling", + "beak: slightly curved, dark-colored", + "belly: creamy-white with faint scaling", + "breast: pale brown with dark scalloped markings", + "crown: brown scaled with dark grey feathers", + "forehead: pale grey with fine scaling", + "eyes: dark brown with thin eye-ring", + "legs: slender, light pinkish-grey", + "wings: olive-green with prominent feather patterns", + "nape: greyish-brown with scaly appearance", + "tail: long, olive-brown with faint scalloped markings", + "throat: buffy-white with greyish scaling" + ], + "scaly headed parrot": [ + "back: vibrant green feathers covering upper body", + "beak: short, curved, and strong; upper beak dark grey while lower beak light grey", + "belly: light green feathered underbelly", + "breast: green feathers with a slight blue hue", + "crown: bright blue feathers on top of the head", + "forehead: small patch of red and blue feathers above the beak", + "eyes: round, dark, and expressive; surrounded by white eye patches", + "legs: strong, grey legs with sharp, dark claws", + "wings: rich green primary feathers with blue tips; red wing coverts", + "nape: green feathers at the back of the neck", + "tail: long, tapering tail feathers; blue, green, and red in color", + "throat: green feathers transitioning to a lighter color on the neck" + ], + "scaly naped parrot": [ + "back: green, feathered with scale-like pattern", + "beak: hooked, strong, greyish-black", + "belly: light green with fluffy feathers", + "breast: bright green, smoothly feathered", + "crown: deep green, small feathers forming a crest", + "forehead: green, blends seamlessly with crown", + "eyes: round, dark with a white eye-ring", + "legs: grey, scaly texture with strong talons", + "wings: green, broad with hints of blue near tips", + "nape: scaly texture, transitioning from green to blue", + "tail: green and blue feathers, long and tapered", + "throat: vibrant green, softly feathered" + ], + "scaly naped pigeon": [ + "back: grayish-blue feathers", + "beak: short, strong, pale yellowish", + "belly: whitish-gray plumage", + "breast: soft gray feathers", + "crown: scaled-pattern bluish-gray feathers", + "forehead: light gray, smooth", + "eyes: dark, round, and expressive", + "legs: reddish-pink with strong, scaly texture", + "wings: broad, grayish-blue with black flight feathers", + "nape: scaled blue-gray feather pattern", + "tail: dark gray to black, elongated feathers", + "throat: pale gray, smooth feathers" + ], + "scaly sided merganser": [ + "back: sleek, dark green-brown plumage", + "beak: narrow, serrated, orange-red", + "belly: white with gray flecks", + "breast: white, elongated black streaks", + "crown: glossy green, high tuft", + "forehead: greenish-black, rounded", + "eyes: bright, reddish-orange", + "legs: orange-red, webbed feet", + "wings: dark, elongated white patches", + "nape: black, neckband-like pattern", + "tail: long, fan-shaped, dark", + "throat: white, narrow feathering" + ], + "scaly throated foliage gleaner": [ + "back: brownish-gray with faint scaling", + "beak: strong, curved, pale colored", + "belly: light buff with faint scaling", + "breast: brownish-gray with scaly pattern", + "crown: reddish-brown with faint streaks", + "forehead: reddish-brown, blends with the crown", + "eyes: dark, surrounded by lighter feathers", + "legs: sturdy, pale-colored", + "wings: brownish-gray with faint scaling, rounded shape", + "nape: reddish-brown with slight streaks", + "tail: brownish-gray, long, slightly rounded", + "throat: light buff with faint scaling" + ], + "scaly throated honeyguide": [ + "back: light-brown with faint scales", + "beak: short and stout, dusky color", + "belly: off-white with pale scaling", + "breast: pale brownish-gray with scaly appearance", + "crown: dark brown with brighter shaft streaks", + "forehead: slightly lighter than crown, with streaks", + "eyes: dark, round, and well-placed", + "legs: robust, dull grayish-blue", + "wings: brown, long, and rounded at tips", + "nape: pale brown with faint streaks", + "tail: dark brown with white-tip corners", + "throat: white with bold, brown-tipped scaling" + ], + "scaly throated leaftosser": [ + "back: olive-brown feathers", + "beak: straight, strong, dark gray", + "belly: light, buff-colored plumage", + "breast: olive-brown, merging with belly", + "crown: dark brown striping", + "forehead: unmarked, olive-brown", + "eyes: dark, beady, surrounded by light ring", + "legs: light gray, short, strong", + "wings: olive-brown, barred with black", + "nape: buff-colored, striped", + "tail: olive-brown, short, with black markings", + "throat: lightly scaled, buff-colored" + ], + "scarce swift": [ + "back: pale gray-brown feathers", + "beak: small and narrow, dark in color", + "belly: off-white to pale brown plumage", + "breast: lighter gray-brown feathers", + "crown: dark feathered crest on top of head", + "forehead: pale gray-brown plumage", + "eyes: small and dark, surrounded by light feathers", + "legs: short and slender with sharp claws", + "wings: long and pointed, tawny brown with black tips", + "nape: gray-brown plumage at the back of the neck", + "tail: short and forked with gray-brown feathers", + "throat: light gray-toned feathers" + ], + "scarlet finch": [ + "back: vibrant red with streaks of black", + "beak: short, conical, and silver-gray", + "belly: bright reddish-orange", + "breast: rich scarlet red", + "crown: ruby-red with smooth feathers", + "forehead: scarlet hue blending into the crown", + "eyes: small, dark, and alert", + "legs: slender, grayish-brown", + "wings: scarlet with black markings", + "nape: bright red, connecting the crown and back", + "tail: red plumes with black stripes at the tips", + "throat: soft, fiery red feathers" + ], + "scarlet minivet": [ + "back: vibrant orange shades with black streaks", + "beak: sharp, pointed, and black", + "belly: bright yellow-orange hue", + "breast: striking orange-red color", + "crown: iridescent black extending to the nape", + "forehead: sleek black transitioning to the crown", + "eyes: small, dark and alert", + "legs: thin, black and delicate", + "wings: black with orange-yellow fringes", + "nape: glossy black, connecting the crown and back", + "tail: long, black and fan-shaped with orange-yellow edges", + "throat: brilliant orange-red contrasting with the black head" + ], + "scarlet myzomela": [ + "back: vibrant red with dark streaks", + "beak: slender, slightly curved and black", + "belly: deep scarlet or reddish-orange hue", + "breast: rich scarlet, fading to paler red on sides", + "crown: brilliant red with a slightly raised crest", + "forehead: brightly colored red or orange-red", + "eyes: beady and dark, surrounded by red feathers", + "legs: thin and black with sharp claws", + "wings: dark brown or black with red edges", + "nape: deep red continuing from crown to back", + "tail: black with red or orange-red undertail coverts", + "throat: bright red, contrasting with black chin" + ], + "scarlet robin": [ + "back: rich olive-green texture", + "beak: sharp and pointed, yellow hue", + "belly: soft red-orange feathers", + "breast: vibrant scarlet red plumage", + "crown: dark brown with a hint of chestnut", + "forehead: slightly lighter brown than crown", + "eyes: black with a thin white ring", + "legs: slender and dark grey", + "wings: dark brown, slightly elongated", + "nape: subtle chestnut, blending with crown", + "tail: long and dark, with lighter edges", + "throat: bright red, merging with breast" + ], + "scarlet and white tanager": [ + "back: vibrant scarlet feathers", + "beak: sharp, pale, and slightly curved", + "belly: soft white plumage", + "breast: striking scarlet feathers", + "crown: brilliant scarlet crest", + "forehead: bright scarlet plumage", + "eyes: small, dark, and attentive", + "legs: slender and white", + "wings: scarlet feathers with white accents", + "nape: scarlet feathers transitioning to white", + "tail: long and fan-shaped, scarlet and white feathers", + "throat: white feathers transitioning to scarlet" + ], + "scarlet backed flowerpecker": [ + "back: vibrant red-orange with black streaks", + "beak: small, slender, and curved", + "belly: light gray-white", + "breast: pale gray with red hue", + "crown: red-orange with black contours", + "forehead: red-orange with black streaks", + "eyes: small, round, and dark", + "legs: gray slender legs with sharp claws", + "wings: black with a touch of white or light gray edging", + "nape: red-orange with black streaks", + "tail: short, black with white tips", + "throat: pale gray with red tinge" + ], + "scarlet backed woodpecker": [ + "back: striking crimson feathers", + "beak: sharp, pointed bill", + "belly: soft, whitish plummage", + "breast: pale cream feathers", + "crown: bright red cap", + "forehead: smooth, white patch", + "eyes: piercing black orbs", + "legs: sturdy and featherless", + "wings: bold black and white patterns", + "nape: vibrant red stripe", + "tail: black with white bars", + "throat: pale, cream-colored feathers" + ], + "scarlet banded barbet": [ + "back: red with black banding", + "beak: stout, yellowish-white", + "belly: vibrant red", + "breast: bright red, fading to lighter hues", + "crown: vivid scarlet, slightly feathered", + "forehead: bold red, meeting the crown", + "eyes: dark, encircled by a thin blue ring", + "legs: light grayish, sturdy", + "wings: black with rows of white spots", + "nape: red, merging into back pattern", + "tail: black, tipped with red highlights", + "throat: bright red, contrasting with breast" + ], + "scarlet bellied mountain tanager": [ + "back: vibrant blue feathers", + "beak: short, black, and pointed", + "belly: fiery scarlet color", + "breast: bright red-orange chest", + "crown: deep blue head", + "forehead: blue feathers with slight black markings", + "eyes: small, black, and round", + "legs: thin, dark, and stilt-like", + "wings: blue with black flight feathers", + "nape: dark blue, blending with the crown", + "tail: long, blue feathers with black tips", + "throat: red-orange, contrasting with the belly" + ], + "scarlet breasted dacnis": [ + "back: vibrant blue feathers", + "beak: sharp, pointy black beak", + "belly: soft white feathers", + "breast: striking scarlet patch", + "crown: brilliant blue plumage", + "forehead: bright blue feathers", + "eyes: piercing black eyes", + "legs: thin, grayish legs", + "wings: bold blue feathers with black edges", + "nape: bold blue plumage", + "tail: long, blue feathers with black tips", + "throat: white feathers transitioning to scarlet breast" + ], + "scarlet breasted flowerpecker": [ + "back: vibrant green and smooth feathers", + "beak: short, slightly curved, black", + "belly: pale white with soft plumage", + "breast: bright scarlet patch with fine feathers", + "crown: sleek green feathers with a slight sheen", + "forehead: green, gradually transitioning to scarlet on the breast", + "eyes: small, round, and dark", + "legs: delicate and black with sharp claws", + "wings: green with black edges and white spots", + "nape: green plumage, transitioning to pale white on the belly", + "tail: short, slightly forked, with green and black feathers", + "throat: white, smooth, and unblemished" + ], + "scarlet breasted fruit dove": [ + "back: vibrant green feathers with a slight sheen", + "beak: short, stout, and dark gray", + "belly: soft, pale gray plumage", + "breast: stunning scarlet hue with fine green speckles", + "crown: rich emerald green feathers", + "forehead: bright yellow merging into green", + "eyes: round, dark, and inquisitive", + "legs: short, strong, and grayish-pink", + "wings: iridescent green with black and white patterns", + "nape: emerald intensity fading to yellow-green", + "tail: green feathers with black bars, elongated central feathers", + "throat: vibrant scarlet transitioning into belly color" + ], + "scarlet breasted fruiteater": [ + "back: vibrant green feathers", + "beak: short, hooked, ivory", + "belly: brilliant red-orange plumage", + "breast: fiery scarlet feathers", + "crown: striking emerald green", + "forehead: bright green with slight yellow hue", + "eyes: dark and beady, surrounded by green feathers", + "legs: stout, gray, well-suited for perching", + "wings: luscious green with grayish-black primaries", + "nape: deep forest green feathers", + "tail: elongated, green with black banding", + "throat: rich, scarlet plumage" + ], + "scarlet browed tanager": [ + "back: vibrant green feathers", + "beak: sharp, short, and black", + "belly: bright yellow plumage", + "breast: rich red feathers", + "crown: scarlet red brow", + "forehead: scarlet red stripe", + "eyes: dark, alert, and expressive", + "legs: slender, grayish-black", + "wings: green with black edging", + "nape: green and smooth", + "tail: long, green with black streaks", + "throat: yellow, fading into the red breast" + ], + "scarlet chested parrot": [ + "back: bright green plumage", + "beak: short, hooked, grayish", + "belly: turquoise blue feathers", + "breast: vibrant scarlet patch", + "crown: deep blue feathering", + "forehead: brilliant blue plumage", + "eyes: dark with white eye-ring", + "legs: strong, grayish-brown", + "wings: green with blue highlights", + "nape: blue to green gradient", + "tail: long, green with blue tips", + "throat: blue-violet plumage" + ], + "scarlet chested sunbird": [ + "back: vibrant green with iridescent sheen", + "beak: long, slender, and curved for nectar feeding", + "belly: soft greyish-white feathers", + "breast: striking scarlet or red coloration", + "crown: bright metallic green with iridescence", + "forehead: shimmering green with slight blue tint", + "eyes: small, round, and dark-colored", + "legs: thin and black, with three sharp claws", + "wings: iridescent green with black-tipped covert feathers", + "nape: metallic green, transitioning from the crown", + "tail: dark blueish-green, elongated, and forked", + "throat: bright turquoise with iridescent shine" + ], + "scarlet collared flowerpecker": [ + "back: vibrant green feathers", + "beak: short, curved, black", + "belly: pale yellow underside", + "breast: bright red collar", + "crown: green feathered crest", + "forehead: green feathers fading to white", + "eyes: small, dark, alert", + "legs: slender, gray", + "wings: green with touches of blue", + "nape: green feathers above red collar", + "tail: short, green with blue tips", + "throat: white, blending into red collar" + ], + "scarlet crowned barbet": [ + "back: vibrant green feathers", + "beak: sharp, black and slightly curved", + "belly: yellowish-green feathers", + "breast: mix of red and orange feathers", + "crown: bright red with small yellow spots", + "forehead: red feathers meeting the beak", + "eyes: small, black, and expressive", + "legs: grayish-black with sharp claws", + "wings: green with yellow accents", + "nape: greenish-yellow feathers", + "tail: long, green feathers with yellow tips", + "throat: orange-red feathers fading into the breast area" + ], + "scarlet fronted parakeet": [ + "back: vibrant green feathers", + "beak: sharp and strong, light peach color", + "belly: soft yellow-green feathers", + "breast: vivid orange-red plumage", + "crown: radiant red feathers", + "forehead: striking scarlet tone", + "eyes: dark, intelligent gaze", + "legs: sturdy, pale pink claws", + "wings: brilliant green with blue undertones", + "nape: bright green, transitioning to red", + "tail: long, green-blue feathers", + "throat: lighter green feathering" + ], + "scarlet headed blackbird": [ + "back: deep black feathers covering the bird's back", + "beak: strong, conical-shaped with a sharp point", + "belly: intense red coloration with a smooth texture", + "breast: striking scarlet hue contrasting with black", + "crown: vibrant red feathers atop the bird's head", + "forehead: brilliant red plumage at the front of the head", + "eyes: shiny, dark-colored eyes with a keen gaze", + "legs: slim, black legs with curved talons for perching", + "wings: long, black feathers with a red shoulder patch", + "nape: continuation of the red crown down the back of the neck", + "tail: fan-shaped black feathers with a slight curve at the tip", + "throat: red feathers transitioning to black on the chest" + ], + "scarlet headed flowerpecker": [ + "back: vibrant green feather coverage", + "beak: short, sharp, and curved", + "belly: whitish-gray with a hint of yellow", + "breast: bright red plumage", + "crown: gleaming scarlet head feathers", + "forehead: vivid red plumage", + "eyes: small, beady, and black", + "legs: slender with light pink hue", + "wings: green with fine black edges", + "nape: scarlet blending with green on neck", + "tail: short and graduated, mostly green", + "throat: red leading into breast area" + ], + "scarlet hooded barbet": [ + "back: vibrant scarlet feathers with streaks of black", + "beak: thick, grayish-white hooked bill", + "belly: bright yellow plumage with orange tints", + "breast: yellow-golden feathers with some red patches", + "crown: fiery red and orange, slightly tufted", + "forehead: glowing scarlet, blending into the crown", + "eyes: round, black with white eye-ring", + "legs: sturdy, gray-blue with sharp claws", + "wings: primary feathers black, secondary feathers patterned with red and yellow", + "nape: scarlet and orange hues merging with the back", + "tail: blackish-brown, long, and slightly forked", + "throat: golden-yellow feathers, contrasting with the red head" + ], + "scarlet horned manakin": [ + "back: vibrant green feathers", + "beak: small but sturdy, black", + "belly: deep scarlet hue", + "breast: bright crimson red", + "crown: adorned with red feathered horns", + "forehead: green feathers transitioning to red", + "eyes: alert and black, circled by green", + "legs: thin, grayish-blue", + "wings: vivid green with elongated feathers", + "nape: green, continuing the back's hue", + "tail: long and green with red accents", + "throat: bold red coloration" + ], + "scarlet naped myzomela": [ + "back: vibrant red feathers", + "beak: small, sharp, black", + "belly: light gray with faint red flares", + "breast: crimson red, contrasting", + "crown: deep scarlet, eye-catching", + "forehead: bright red plumage", + "eyes: small, black, alert", + "legs: slender, grayish-brown", + "wings: dark gray with red edges", + "nape: fiery scarlet coloration", + "tail: grayish, fan-shaped, elongated", + "throat: rich red hue, striking" + ], + "scarlet rumped cacique": [ + "back: vibrant yellow with contrasting black markings", + "beak: strong, pointed, and black", + "belly: bright yellow with light feather texture", + "breast: vivid yellow merging into the belly", + "crown: glossy black, smoothly contoured", + "forehead: sleek black transitioning into crown", + "eyes: beady and dark, surrounded by black feathers", + "legs: slender, strong, and black", + "wings: black with bold yellow edges", + "nape: distinctive scarlet patch connecting to back", + "tail: long, black, and slightly forked", + "throat: smooth black, complementing breast color" + ], + "scarlet rumped tanager": [ + "back: vibrant green with a red patch", + "beak: small and sharp, black in color", + "belly: bright scarlet red", + "breast: rich orange-red hue", + "crown: shimmering green feathers", + "forehead: intense blue contrasting with green", + "eyes: small, black and round", + "legs: sturdy and grey-colored", + "wings: vivid green with black edges", + "nape: brilliant blue-green blending to green", + "tail: long and green, red rump visible", + "throat: bold blue merging with breast color" + ], + "scarlet rumped trogon": [ + "back: vibrant green upper body", + "beak: short, slightly curved, black", + "belly: light grey undersides", + "breast: rich red band across chest", + "crown: dark green head top", + "forehead: bright green forehead", + "eyes: large, black, expressive", + "legs: short, strong, white claws", + "wings: green, black-tipped feathers", + "nape: distinct greenish yellow hue", + "tail: black, white-tipped, long", + "throat: deep blue front neck area" + ], + "scarlet shouldered parrotlet": [ + "back: vibrant green plumage", + "beak: small, sharp, grayish-black", + "belly: light green with a hint of blue", + "breast: bright turquoise feathers", + "crown: deep blue and green hues", + "forehead: intense scarlet patch", + "eyes: dark, expressive with a white eye-ring", + "legs: short, sturdy, gray", + "wings: striking green with blue coverts", + "nape: rich blue-green transition", + "tail: long, green with blue tips", + "throat: iridescent turquoise-blue" + ], + "scarlet thighed dacnis": [ + "back: vibrant blue feathers", + "beak: short and black, cone-shaped", + "belly: pale blue plumage", + "breast: bright blue and soft", + "crown: intense blue with a metallic sheen", + "forehead: deep blue feathers", + "eyes: large and black, with a thin blue ring", + "legs: thin and light gray", + "wings: vivid blue, with black edges", + "nape: bright blue and smooth", + "tail: black, with hints of blue", + "throat: rich sky-blue plumage" + ], + "scarlet throated tanager": [ + "back: vibrant green feathers", + "beak: short, sharp, dark-colored", + "belly: bright yellow plumage", + "breast: deep scarlet hue", + "crown: green with a red streak", + "forehead: scarlet patch above the beak", + "eyes: dark, round, and alert", + "legs: grayish and slender", + "wings: green with black edges", + "nape: green with red patch", + "tail: green with black tips", + "throat: brilliant scarlet color" + ], + "schalow turaco": [ + "back: vibrant green feathers with iridescent sheen", + "beak: reddish-orange, short, and curved", + "belly: soft green fading to white", + "breast: dusky green, slightly lighter than back", + "crown: green with a pronounced white-tipped crest", + "forehead: green with a slight blue tinge", + "eyes: large, dark, and almond-shaped", + "legs: dark and slender, ending in three sharp claws", + "wings: emerald green with iridescent violet-blue primaries", + "nape: green, transitioning smoothly to the crest", + "tail: long and deep green, tipped with white", + "throat: light green, gradually blending with the breast and belly" + ], + "schlegel asity": [ + "back: vibrant green feathers", + "beak: black, slender and curved", + "belly: pale yellow underparts", + "breast: yellow-orange with black borders", + "crown: iridescent blue-violet", + "forehead: bold black band", + "eyes: large and dark, surrounded by white feathers", + "legs: sturdy, grayish-black", + "wings: green, with blue edges on flight feathers", + "nape: bright blue and green with a slight sheen", + "tail: relatively short, green with blue tips", + "throat: blue iridescent patch, bordered by black" + ], + "schlegel francolin": [ + "back: rich brown, finely mottled with black spots", + "beak: short, strong, and grayish-brown", + "belly: pale buff-yellow with blackish barring", + "breast: chestnut-brown with fine black speckles", + "crown: dark reddish-brown with black streaks", + "forehead: grayish-brown, paler than crown", + "eyes: dark brown with a subtle grayish-brown eye-ring", + "legs: sturdy, reddish-gray with scaled patterns", + "wings: rich brown with black and chestnut markings", + "nape: paler reddish-brown with fine black streaks", + "tail: dark brown with chestnut and black barring", + "throat: creamy-white, bordered by thin black line" + ], + "schneider pitta": [ + "back: deep blue and violet feathers", + "beak: short and sturdy, black", + "belly: vibrant red-orange with black stripes", + "breast: bright blue feathers", + "crown: black with a blue sheen", + "forehead: red-orange and blue plumage", + "eyes: small with black pupils", + "legs: strong, pinkish-gray", + "wings: deep blue and violet feathers", + "nape: dark blue with a black stripe", + "tail: short and wide, deep blue", + "throat: bright blue with black stripes" + ], + "schrenck bittern": [ + "back: earthy brown with fine streaks", + "beak: long, conical and yellowish", + "belly: pale with dark streaks", + "breast: buff-colored with brown spots", + "crown: black with greenish sheen", + "forehead: pale yellow-brown", + "eyes: positioned high on head, dark brown", + "legs: greenish-yellow, long and slender", + "wings: brown, rounded with striking patterns", + "nape: greenish-black with streaks", + "tail: long, fan-shaped with barred markings", + "throat: pale and somewhat unmarked" + ], + "schwartz antthrush": [ + "back: dark brown with faint black streaks", + "beak: short, curved, and black", + "belly: pale brown with white speckles", + "breast: rust-colored with white spots", + "crown: deep brown with black pattern", + "forehead: dark brown with thin black stripes", + "eyes: small, black, and slightly oval", + "legs: strong, grayish-yellow with clawed toes", + "wings: dark brown with white bars", + "nape: dark brown with black streaks", + "tail: elongated with brown and black bands", + "throat: white with tiny brown spots" + ], + "scimitar billed woodcreeper": [ + "back: olive-brown with fine streaks", + "beak: long, curved scimitar-like", + "belly: buff-colored with narrow dark bars", + "breast: pale cinnamon with delicate streaks", + "crown: rufous-brown with slight crest", + "forehead: reddish-brown, blending into crown", + "eyes: dark, with pale eye-ring", + "legs: sturdy, grayish-blue", + "wings: brownish, with muted rufous bars", + "nape: rufous-brown, transitioning from crown", + "tail: long, brownish with faint rufous bars", + "throat: pale buff, streaked with brown" + ], + "scimitar winged piha": [ + "back: olive-green feathers covering the dorsal side", + "beak: short and hooked, black in color", + "belly: pale yellow feathers with thin and dark streaks", + "breast: grayish-white feathers with minimal streaks", + "crown: grayish-brown feathers with a slightly raised crest", + "forehead: smooth grayish-brown feathers, slanting view shapes", + "eyes: dark brown, bead-like in appearance", + "legs: strong grayish-black with sharp talons for gripping branches", + "wings: curved, elongated flight feathers resembling a scimitar", + "nape: olive-green feathers connecting the crown to the back", + "tail: medium-length, grayish-brown feathers with white tips", + "throat: white feathers with grayish streaks along the sides" + ], + "scintillant hummingbird": [ + "back: shimmering green with a metallic sheen", + "beak: slender and slightly curved", + "belly: soft, muted gray with feathered texture", + "breast: iridescent green-gold transitioning to gray", + "crown: bright emerald green, reflective", + "forehead: gleaming violet-blue hue", + "eyes: small, dark, and alert", + "legs: thin and delicate, with small talons", + "wings: partially translucent, glinting green and blue in flight", + "nape: metallic green, transitioning to the crown", + "tail: forked, with iridescent green and coppery-red feathers", + "throat: vibrant, iridescent magenta and purple" + ], + "scissor tailed hummingbird": [ + "back: metallic green feathers", + "beak: long, slender, and black", + "belly: pale gray, sometimes with hints of light green", + "breast: white, extending into a collar", + "crown: iridescent greenish-blue", + "forehead: greenish-blue just above the beak", + "eyes: small and dark, nestled in green feathers", + "legs: short and black with small feet", + "wings: iridescent green, long and pointed", + "nape: greenish-blue, connecting crown to back", + "tail: elongated, forked, and black-tipped", + "throat: iridescent rose-red patch" + ], + "scissor tailed kite": [ + "back: sleek gray-blue feathers", + "beak: long, sharp, and black", + "belly: white with black markings", + "breast: white with gray streaks", + "crown: dark gray-blue", + "forehead: light gray-blue", + "eyes: black and piercing", + "legs: strong yellow-orange", + "wings: long and elegant, with dark flight feathers", + "nape: smooth gray-blue plumage", + "tail: distinctive long, forked, black-and-white feathering", + "throat: white with light gray-blue streaks" + ], + "scissor tailed nightjar": [ + "back: sleek, greyish-brown feathers", + "beak: thin, sharp black beak", + "belly: light grey with faint barring", + "breast: subtle greyish-white spotted markings", + "crown: smooth, brownish-grey feathers", + "forehead: darker grey transition to crown", + "eyes: large, dark with a hint of white ring", + "legs: slim and long, blackish-brown", + "wings: elongated, greyish-brown with distinct white markings", + "nape: brownish-grey feathers with a smoother blend to the back", + "tail: exceptionally long, white with dark central feathers", + "throat: greyish-white with barred pattern" + ], + "sclater antwren": [ + "back: olive-brown feathers", + "beak: small, pointed, black", + "belly: pale gray-white", + "breast: grayish-white", + "crown: dark gray with a slight crest", + "forehead: smooth, dark gray", + "eyes: black with white eye-ring", + "legs: thin, pale orange", + "wings: olive-brown with faint white bars", + "nape: dark gray, blending into back feathers", + "tail: long, olive-brown with white tips", + "throat: light gray, blending into breast" + ], + "sclater crowned pigeon": [ + "back: dark blue plumage with a metallic sheen", + "beak: short, pale-colored hooked beak", + "belly: deep blue feathers with slight gloss", + "breast: vibrant blue with purplish tint and iridescent shine", + "crown: elegant, spiky white crest resembling a crown", + "forehead: deep blue feathers above beak with iridescent shimmer", + "eyes: black with prominent blue eye-ring", + "legs: sturdy dark purple-grey legs", + "wings: dark blue with a metallic sheen and black primary feathers", + "nape: light blue feathers transitioning to darker shades towards the back", + "tail: long, broad, dark blue feathers with black bars", + "throat: smooth purplish-blue plumage with iridescent shine" + ], + "sclater lark": [ + "back: streaked brown with white edges", + "beak: slim and pointed, brownish-gray", + "belly: light cream with brown streaks", + "breast: buff-white with brown streaks", + "crown: brown with pale streaks, raised crest", + "forehead: light brown with fine streaks", + "eyes: small and dark, surrounded by pale feathers", + "legs: thin and elongated, pale brown", + "wings: brown with white-tipped feathers, slightly rounded", + "nape: brown with faint streaks, pale edges", + "tail: brown with white outer feathers, short and slightly forked", + "throat: pale creamy-buff, unmarked" + ], + "sclater monal": [ + "back: iridescent blue-green feathers", + "beak: short, strong, and hooked", + "belly: shining green and blue feathers", + "breast: vibrant blue-green plumage", + "crown: metallic green and blue crest", + "forehead: bright blue-violet feathers", + "eyes: dark, small, and round", + "legs: strong and feathered with powerful claws", + "wings: rounded with blue-green feathers", + "nape: iridescent blue and green plumage", + "tail: long and dark with hints of blue-green", + "throat: gleaming green-blue feathers" + ], + "sclater myzomela": [ + "back: olive-green with greyish tinge", + "beak: slender, black, and slightly curved", + "belly: pale yellow with faint streaks", + "breast: vibrant yellow with fine streaks", + "crown: bright red with slight iridescence", + "forehead: red with a metallic sheen", + "eyes: dark brown with thin, white eye-ring", + "legs: dark grey and thin", + "wings: olive-green with dark flight feathers", + "nape: olive-green, blending into red crown", + "tail: olive-green with darker central feathers", + "throat: bright red, contrasting with yellow breast" + ], + "sclater tyrannulet": [ + "back: olive-gray plumage", + "beak: small, slender, and black", + "belly: pale yellow", + "breast: light olive-gray", + "crown: dusky olive with subtle crest", + "forehead: dusky olive-gray", + "eyes: bold white eyering", + "legs: slender and dark gray", + "wings: olive-gray with two pale wing bars", + "nape: olive-gray", + "tail: long and dark with pale tips", + "throat: pale whitish-yellow" + ], + "sclater whistler": [ + "back: olive-brown with fine streaks", + "beak: slim, straight, blackish-brown", + "belly: pale grayish-white", + "breast: grayish-white with brown streaks", + "crown: olive-brown with streaks", + "forehead: olive-brown with streaks", + "eyes: dark brown, encircled with white eyering", + "legs: pale pinkish or gray", + "wings: olive-brown with blackish flight feathers", + "nape: olive-brown with fine streaks", + "tail: olive-brown with blackish band and white tips", + "throat: grayish-white, occasionally streaked" + ], + "scottish crossbill": [ + "back: vibrant reddish-brown plumage", + "beak: thick, curved cross-shaped bill", + "belly: creamy-white to yellowish hue", + "breast: reddish brown with streaks", + "crown: red-tinged plumage", + "forehead: slightly flat and red-tinged", + "eyes: small, dark, alert", + "legs: sturdy, grayish-blue color", + "wings: reddish-brown with darkened primary feathers", + "nape: red-tinged neck feathers", + "tail: medium-length, sharp, dark-tipped feathers", + "throat: whitish underside, subtly streaked" + ], + "screaming cowbird": [ + "back: black feathered upper body", + "beak: short, dark, and conical", + "belly: whitish-gray underparts", + "breast: white with dark streaks", + "crown: sleek black head", + "forehead: black with smooth feathers", + "eyes: black and beady", + "legs: thin and dark-colored", + "wings: black and rounded", + "nape: black feathered neck", + "tail: long, black, and fan-shaped", + "throat: black and sleek-feathered" + ], + "screaming piha": [ + "back: dull grayish-brown feathers", + "beak: short, broad, blackish-gray", + "belly: pale gray, slightly lighter than back", + "breast: grayish-white, blending into belly", + "crown: dark gray, with faint black streaks", + "forehead: slightly lighter gray than crown", + "eyes: black, with off-white eye-ring", + "legs: sturdy, blackish-gray", + "wings: brownish-gray, with lighter gray edges", + "nape: dark gray, like the crown", + "tail: long, straight, grayish-brown", + "throat: light gray, similar to belly color" + ], + "scribble tailed canastero": [ + "back: brownish streaked feathers", + "beak: short, hooked, and grayish", + "belly: buff-white with dark streaks", + "breast: pale with brown streaks", + "crown: rufous-brown with black streaks", + "forehead: streaked and brownish", + "eyes: dark brown with faint eye-ring", + "legs: grayish and sturdy", + "wings: brown with black and white barring", + "nape: buff and brown with streaks", + "tail: long, thin, and scribble-like markings", + "throat: buff-white with faint streaks" + ], + "scripps murrelet": [ + "back: dark grey and streaked", + "beak: short and sharp", + "belly: white and fluffy", + "breast: white with slight grey undertones", + "crown: dark grey with streaks", + "forehead: dark grey, sleek", + "eyes: small, black, and alert", + "legs: short and webbed", + "wings: long, pointed, grey-black", + "nape: greyish-white, slightly streaked", + "tail: blackish-grey, short, and slightly forked", + "throat: white and smooth" + ], + "scrub blackbird": [ + "back: dark black feathers covering the upper body", + "beak: sharp, pointed and black in color", + "belly: sleek, black feathers extending to the tail", + "breast: black-colored plumage on the chest area", + "crown: smooth, dark feathers on top of the head", + "forehead: black feathers above the eyes and beak", + "eyes: small, round, black and expressive", + "legs: slender and black, with strong and sharp claws", + "wings: sturdy black feathers with elongated flight feathers", + "nape: black feathers transitioning from the head to the back", + "tail: long, black feathers extending horizontally from the body", + "throat: black plumes covering the front of the neck area" + ], + "scrub euphonia": [ + "back: olive-green feathers", + "beak: short, thick, and curved", + "belly: bright yellow plumage", + "breast: vibrant yellow feathers", + "crown: black with a hint of blue", + "forehead: small black mask-like feature", + "eyes: round and black, surrounded by black feathers", + "legs: short and gray", + "wings: blue-black with green edging", + "nape: olive-green colored", + "tail: short and square, blue-black in color", + "throat: striking yellow plumage" + ], + "scrub greenlet": [ + "back: olive-green feathers cover the top", + "beak: slender, slightly curved, and grayish", + "belly: light yellow tinged with green", + "breast: pale olive-green, fading to yellow on the sides", + "crown: olive-green with a faint dark stripe down the center", + "forehead: pale olive-green matching the rest of the head", + "eyes: dark, tiny, and surrounded by pale olive-green feathers", + "legs: slender and gray, ending in toes with sharp claws", + "wings: olive-green with faint darker feather edges and streaking", + "nape: olive-green feathers transition smoothly from crown and back", + "tail: olive-green, short, and slightly notched", + "throat: pale yellow, in contrast to the olive-green breast" + ], + "scrub honeyeater": [ + "back: sleek, greenish-brown feathers", + "beak: thin, curved, black", + "belly: creamy white with fine streaks", + "breast: pale yellow, faintly streaked", + "crown: olive-toned with faded streaks", + "forehead: smooth, muted greenish-brown", + "eyes: rounded, dark, surrounded by pale eye-ring", + "legs: slender, grayish-blue", + "wings: elongated, greenish-brown with pale edges", + "nape: subtle greenish-brown, blending with crown", + "tail: long, fan-shaped, greenish-brown with pale tips", + "throat: white, blending with pale breast" + ], + "scrub nightjar": [ + "back: brownish-grey with subtle markings", + "beak: short, wide, and hooked", + "belly: pale grey with fine streaks", + "breast: greyish-brown with faint spots", + "crown: dark grey with bold markings", + "forehead: lighter grey blending to crown", + "eyes: large, black, and reflective", + "legs: short and feathered", + "wings: long, greyish-brown with mottling", + "nape: dusky grey with a hint of spots", + "tail: greyish-brown with dark banding", + "throat: pale grey with darker streaks" + ], + "scrub tanager": [ + "back: vibrant green covering the majority of its body", + "beak: black, short, and stout", + "belly: yellowish-green", + "breast: grayish-green or yellowish-green", + "crown: vibrant blue or green", + "forehead: vivid, iridescent green-blue", + "eyes: black with a light-colored ring surrounding", + "legs: grayish-black and strong", + "wings: greenish-blue with black edges", + "nape: bright green", + "tail: black or deep green with a slightly forked shape", + "throat: grayish-green or yellow-green" + ], + "scrub warbler": [ + "back: olive-brown with light streaks", + "beak: thin, pointy, and dark", + "belly: pale grey-white", + "breast: light grey with faint streaks", + "crown: dull brown with fine streaks", + "forehead: slightly paler brown", + "eyes: dark with pale eyering", + "legs: thin, long, and pale", + "wings: brown with visible barring", + "nape: olive-grey with fine streaks", + "tail: long, graduated, and brown", + "throat: pale grey-white" + ], + "scrubtit": [ + "back: olive-brown, slightly darker than wings", + "beak: short and sharp, black or dark grey", + "belly: pale grey or off-white, blending into breast", + "breast: slightly darker grey, uniform across chest", + "crown: olive-brown, sometimes with faint streaks", + "forehead: same color as crown, sloping smoothly into it", + "eyes: black, medium-sized, surrounded by thin whitish eyering", + "legs: sturdy, blue-grey or pale pinkish, with sharp claws", + "wings: olive-brown, faintly streaked with darker brown", + "nape: same color as crown, continuous with the back", + "tail: relatively short, olive-brown with faint darker barring", + "throat: pale grey, slightly lighter than belly, with scattered fine streaks" + ], + "seaside cinclodes": [ + "back: dark brown feathers with lighter streaks", + "beak: elongated, slightly curved, black", + "belly: lighter brown with faint streaks", + "breast: creamy with dark brown streaks", + "crown: dark brown with lighter streaks", + "forehead: slightly paler brown than crown", + "eyes: small, dark, surrounded by pale feathering", + "legs: long, yellowish, strong", + "wings: dark brown with lighter streaks, short and rounded", + "nape: dark brown with lighter streaks", + "tail: dark brown, wings and tail with white tips", + "throat: white with fine dark streaks" + ], + "secretarybird": [ + "back: long, sleek, feathered body", + "beak: long, sharp, downward-curved", + "belly: slim, white with lightly speckled feathers", + "breast: white, lightly speckled, rounded", + "crown: black crest of feathers atop the head", + "forehead: white, unfeathered flat part with visible eyebrows", + "eyes: bright, piercing yellow with black edges", + "legs: long, slender, powerful, featherless", + "wings: wide, expansive, black-edged feathers", + "nape: thick, feathered neck connecting head and body", + "tail: long, dramatic, black and white feathers", + "throat: slender, white, lightly speckled feathers" + ], + "sedge warbler": [ + "back: distinct streaks on a brown background", + "beak: long, slender, and pointed", + "belly: pale, cream-colored with minimal markings", + "breast: buff-toned with faint streaks", + "crown: dark brown with a central stripe", + "forehead: pale with a slight stripe", + "eyes: dark and round with pale, thin eyering", + "legs: pale pink and sturdy", + "wings: brown with darker flight feathers and wing bars", + "nape: brown with streaks and mottling", + "tail: brown with faint barring, slightly forked", + "throat: white with streaks on the sides" + ], + "see see partridge": [ + "back: brown with black markings", + "beak: short and stout, light brown", + "belly: cream with black markings", + "breast: grayish-white with black bars", + "crown: reddish-brown with black markings", + "forehead: creamy white", + "eyes: bold, black surrounded by white ring", + "legs: feathered, light brown", + "wings: short, brown with black and white markings", + "nape: reddish-brown with black bars", + "tail: long, brown with black and white stripes", + "throat: creamy white with black markings" + ], + "selva cacique": [ + "back: vibrant green-yellow feathers", + "beak: strong, slightly curved black beak", + "belly: bright yellow plumage", + "breast: yellow feathers with slight green tinge", + "crown: smooth, glossy black feathers", + "forehead: black feathered with a hint of green", + "eyes: dark, small, and alert", + "legs: sturdy black limbs", + "wings: greenish-yellow feathers with black tips", + "nape: glossy black with a greenish sheen", + "tail: long, black, and slightly forked", + "throat: vivid yellow feathers" + ], + "semicollared flycatcher": [ + "back: slate gray with white linings", + "beak: small, black, hooked tip", + "belly: off-white, slightly speckled", + "breast: white with faint gray streaks", + "crown: black, slightly shiny", + "forehead: white patch above beak", + "eyes: large, reflective, dark brown", + "legs: slim, gray-black", + "wings: medium-sized, black with white markings", + "nape: black with a white semicircular collar", + "tail: black, short, with white outer feathers", + "throat: white, unmarked" + ], + "semicollared hawk": [ + "back: slate-grey feathers with white streaks", + "beak: sharp, black hooked tip", + "belly: creamy-white with black horizontal stripes", + "breast: white and marked with dark, vertical streaks", + "crown: slate-grey with white streaks", + "forehead: white, blending into the grey crown", + "eyes: piercing yellow surrounded by a black stripe", + "legs: long, yellow with black talons", + "wings: slate-grey upper feathers with white under feathers", + "nape: grey with a partial white collar", + "tail: long, dark grey with white horizontal bands", + "throat: white, blending into the striped breast" + ], + "semicollared puffbird": [ + "back: olive-brown color with spotted pattern", + "beak: black, short, and strong", + "belly: light beige with irregular streaks", + "breast: soft beige with scattered dark markings", + "crown: olive-brown with paler streaks", + "forehead: white semicollar marking", + "eyes: dark brown with white eyering", + "legs: short, grayish-blue", + "wings: olive-brown hue with faint bars", + "nape: white semicollar band", + "tail: olive-brown feathers with thin barring", + "throat: soft beige with streaked pattern" + ], + "semiplumbeous hawk": [ + "back: sleek slate-gray feathers", + "beak: strong, hooked black beak", + "belly: light gray-white underparts", + "breast: grayish-white with faint barring", + "crown: dark gray headcrest", + "forehead: smooth gray plumage", + "eyes: piercing yellow-orange gaze", + "legs: sturdy yellow legs and talons", + "wings: broad slate-gray with black edges", + "nape: grayish-white transitioning to darker gray", + "tail: long banded gray and black feathers", + "throat: white with subtle gray streaking" + ], + "senegal batis": [ + "back: olive-green with black streaks", + "beak: short, hooked, black", + "belly: pale cream-white", + "breast: grayish-white with black barring", + "crown: dark black with a thin white stripe", + "forehead: black with a thin white stripe", + "eyes: large, round, dark brown", + "legs: slender, grayish-blue", + "wings: black and white patterned with blue edgings", + "nape: black with a thin white stripe", + "tail: black with white spots, long, and forked", + "throat: pale gray" + ], + "senegal coucal": [ + "back: dark brown with black streaks", + "beak: black, stout, and slightly curved", + "belly: creamy white with soft grey feathers", + "breast: chestnut-brown with black markings", + "crown: black with a hint of metallic green sheen", + "forehead: slightly lighter brown with fine streaks", + "eyes: dark, surrounded by light grey eye-ring", + "legs: blackish-grey with strong scaly texture", + "wings: dark brown with reddish-brown wing coverts", + "nape: brown with black streaks connecting to the back", + "tail: long and graduated with a greenish-black hue", + "throat: creamy white with light grey undertones" + ], + "senegal eremomela": [ + "back: olive-green feathers", + "beak: petite, pointed, black", + "belly: creamy white underparts", + "breast: light greenish-yellow plumage", + "crown: dark grey with greenish-yellow edges", + "forehead: greyish green", + "eyes: black, bead-like, surrounded by white eye-ring", + "legs: slender, greyish brown", + "wings: olive-green with yellow-fringed edging", + "nape: olive-green with yellowish tinges", + "tail: long, olive-green with yellowish outer feathers", + "throat: bright yellow to greenish-yellow" + ], + "senegal lapwing": [ + "back: dark brown feathers with lighter streaks", + "beak: short, black, slightly curved tip", + "belly: white underside with blackish markings", + "breast: golden-brown with black band separating it from the white belly", + "crown: dark plumage with white stripe", + "forehead: white extending into a v shape towards eyes", + "eyes: round, dark brown or black", + "legs: long, slender, and yellowish", + "wings: dark brown with white markings, rounded tips", + "nape: golden-brown, lighter than back", + "tail: short, dark brown with white band across", + "throat: white, meeting white forehead markings" + ], + "senegal parrot": [ + "back: vibrant green plumage covering the upper back", + "beak: short, curved, light-colored upper mandible and dark lower mandible", + "belly: soft green, blending with the breast", + "breast: vibrant orange and yellow feathers leading to belly", + "crown: greyish head with relatively flat shape", + "forehead: grey, matching the crown", + "eyes: dark, round with a white eye-ring", + "legs: greyish feet with two forward-facing and two backward-facing toes", + "wings: bright green with blue-tinted primary feathers", + "nape: gradual transition from grey crown to green back", + "tail: long, dark green feathers with blue tips", + "throat: greyish-white blending with the breast feathers" + ], + "senegal thick knee": [ + "back: light brown with speckled markings", + "beak: long, slightly curved, pale yellow", + "belly: white with subtle speckles", + "breast: sandy brown with feathered spots", + "crown: light brown blending into darker brown near the nape", + "forehead: smooth, light brown, merging into crown", + "eyes: bright yellow with bold black stripe", + "legs: long, slender, grey-green", + "wings: mottled brown, folded neatly by their sides", + "nape: darker brown feathering, connecting to crown", + "tail: short and light brown, with white and black bands", + "throat: pale white, blending into breast feathers" + ], + "sennar penduline tit": [ + "back: blue-grey feathers with a hint of brown", + "beak: sharp, pointed, and black", + "belly: pale creamy white with fine grey streaks", + "breast: soft, white plumage with grey tinge", + "crown: blue-grey with prominent pale eyebrow stripe", + "forehead: smooth blue-grey feathers", + "eyes: small, round, and black", + "legs: slender, blue-grey, and featherless", + "wings: blue-grey feathers with white-edged tips", + "nape: blue-grey with a thin white line", + "tail: long, blue-grey feathers with a white-tip border", + "throat: white with delicate grey streaks" + ], + "sentinel rock thrush": [ + "back: slate grey, smooth feathers", + "beak: black, sharp and slender", + "belly: pale grey with a hint of blue", + "breast: mottled grey-blue, white streaks", + "crown: grey-blue, sleek feathers", + "forehead: pale grey, slightly flushed", + "eyes: dark, round with a thin white ring", + "legs: black, long and slender", + "wings: grey-blue with black flight feathers", + "nape: subtle gradient from grey to blue", + "tail: dark, fan-shaped with white tips", + "throat: pale grey with white streaks" + ], + "sepia capped flycatcher": [ + "back: olive-brown plumage", + "beak: short and stout, black color", + "belly: pale yellow feathering", + "breast: light greyish-white, speckled pattern", + "crown: dark brown cap-like top", + "forehead: lighter brown shade blending into crown", + "eyes: dark black with thin white eye-ring", + "legs: thin and black, equipped with small claws", + "wings: olive-brown with white edges on flight feathers", + "nape: olive-brown, continuous shade from back", + "tail: dark brown with white outer tail feathers", + "throat: pale greyish-white, smooth transition from breast" + ], + "sepik ramu shrikethrush": [ + "back: brownish-gray feathers", + "beak: sharp, slender, and slightly curved", + "belly: buff-white with gray-brown spots and streaks", + "breast: pale gray with dark streaks", + "crown: olive-brown with narrow black streaks", + "forehead: olive-gray with faint dark streaks", + "eyes: dark, small, and round", + "legs: strong, medium-length, grayish-brown", + "wings: olive-brown with dark barring and white-tipped secondary feathers", + "nape: olive-brown with thin black streaks", + "tail: long and olive-brown with faint dark bars", + "throat: pale gray with fine dark streaks" + ], + "seram boobook": [ + "back: rich brown with horizontal dark streaks", + "beak: sharp, medium-sized, and black", + "belly: white with brown spots and streaks", + "breast: creamy white with dark brown streaks", + "crown: dark brown with white speckles", + "forehead: brown with faint white speckles", + "eyes: large, dark, and prominent", + "legs: strong and feathered, with sharp talons", + "wings: brown with intricate white barring patterns", + "nape: dark brown with delicate white speckles", + "tail: long and brown, with distinct white bands", + "throat: light beige with faint brown streaks" + ], + "seram bush warbler": [ + "back: olive-brown hues with intricate feather patterns", + "beak: thin, straight, and pointed for picking insects", + "belly: creamy-white color with a soft appearance", + "breast: light brown transitioning to white near the belly", + "crown: olive-brown with subtle streaks", + "forehead: slightly paler shade of olive-brown", + "eyes: dark and alert, surrounded by faint white eyering", + "legs: slender and pinkish-brown for perching and hopping", + "wings: olive-brown with a bold black bar and white tips", + "nape: olive-brown with delicate feather structures", + "tail: long and graduated with white tips and undertail coverts", + "throat: off-white, blending into the breast's light brown color" + ], + "seram friarbird": [ + "back: shades of grey-brown feathering", + "beak: long, slender, downward-curved", + "belly: pale grey with white undertones", + "breast: light grey, gently blending with belly", + "crown: dusky black feathers with a slight crest", + "forehead: smooth transition from crown to eyes", + "eyes: dark, encircled with a thin grey eye ring", + "legs: dark grey, strong and sturdy", + "wings: medium length, grey-brown with darker flight feathers", + "nape: grey-brown, blending with back and crown", + "tail: long, dark grey with white tips on the outer feathers", + "throat: light grey, contrast with darker head and breast" + ], + "seram golden bulbul": [ + "back: olive-yellow with lighter edges", + "beak: short, curved, greyish horn color", + "belly: pale yellow-olive", + "breast: rich golden-yellow", + "crown: darker olive-yellow", + "forehead: bright yellow-olive", + "eyes: dark, round, white eye-ring", + "legs: greyish-brown, slender", + "wings: olive-yellow with broad yellow bar", + "nape: olive-yellow, slightly darker than back", + "tail: olive-yellow with yellow edges", + "throat: vibrant golden-yellow" + ], + "seram honeyeater": [ + "back: dark brown plumage with olive green highlights", + "beak: slender, slightly-hooked bill in black color", + "belly: white with faint vertical streaks", + "breast: horizontally-striped with brown and white markings", + "crown: dark brown transitioning to lighter brown towards the forehead", + "forehead: light brown with fine dark streaks", + "eyes: large, dark orbs with a thin white eye-ring", + "legs: strong, grayish-brown, with sharp claws", + "wings: dark brown with olive green edges, medium in size", + "nape: brown with faint olive hue", + "tail: long, straight, dark brown feathers with olive green edges", + "throat: white with brown streaks extending from the breast" + ], + "seram imperial pigeon": [ + "back: slate-grey, smooth feathers", + "beak: short, curved, white-tipped", + "belly: pale grey, soft plumage", + "breast: bluish-grey, slightly puffed", + "crown: dark grey, contrasting crest", + "forehead: light grey, smooth transition to the crown", + "eyes: bright, orange-red irises", + "legs: strong, pinkish color", + "wings: rounded, greyish-blue, white trailing edges", + "nape: dark grey, continuous with the crown", + "tail: long, white-tipped, fan-like", + "throat: whitish-grey, lighter than breast" + ], + "seram masked owl": [ + "back: dark brown feathers with paler streaks", + "beak: sharp, hooked, light-gray beak", + "belly: white with dark brown streaks", + "breast: creamy white feathers with brown speckles", + "crown: dark reddish-brown feathers with a black face mask", + "forehead: black facial disc, paler at the top", + "eyes: large, piercing yellow eyes", + "legs: strong, yellow-orange legs with sharp talons", + "wings: variegated brown and white, broad and rounded", + "nape: dark reddish-brown feathers with hint of lighter streaks", + "tail: long, dark brown with faint white bars", + "throat: white with dark brown streaks" + ], + "seram mountain pigeon": [ + "back: grey-brown feathers with subtle hues of blue", + "beak: short, stout, and curved, light grey in color", + "belly: light grey feathers transitioning into white near the tail", + "breast: soft, pale grey color with a hint of blue", + "crown: dark grey feathers giving a slight crest effect", + "forehead: grey-blue feathers extending up towards the crown", + "eyes: dark, beady, and alert, surrounded by a patch of light grey feathers", + "legs: short and strong with yellow-to-orange scales and sharp claws", + "wings: broad and rounded, grey-blue feathers with dark edges", + "nape: grey feathers with a slight sheen of blue", + "tail: short, fan-shaped, dark grey-blue feathers with dark tips", + "throat: silvery grey plumage with a clear line towards the breast" + ], + "seram myzomela": [ + "back: dark crimson-colored feathers", + "beak: short, black, and slightly curved", + "belly: bright red with a slight orange hue", + "breast: vibrant red feathers", + "crown: deep red with a slightly darker shade", + "forehead: rich red feathers with a smooth texture", + "eyes: small, round, and black", + "legs: slender grayish-brown with strong talons", + "wings: dark red with lighter tips and a wide wingspan", + "nape: crimson-red continued from the crown", + "tail: short and fan-shaped, red with black tips", + "throat: intense red feathers fading into the breast color" + ], + "seram oriole": [ + "back: bright yellow with black streaks", + "beak: strong, sharp, and black", + "belly: vibrant yellow with faint black markings", + "breast: vivid yellow with black streaks", + "crown: solid black with yellow edges", + "forehead: striking black", + "eyes: small, round, and beady black", + "legs: sturdy, black legs with sharp talons", + "wings: black with hints of yellow on the edges", + "nape: yellow with thin black lines", + "tail: long, black, and slightly forked", + "throat: brilliant yellow with black streaks" + ], + "seram swiftlet": [ + "back: sleek and dark-colored upper body", + "beak: short, slightly curved bill", + "belly: pale and smooth underbelly", + "breast: soft grayish-white feathers", + "crown: smooth, dark-colored head", + "forehead: slightly rounded, dark plumage", + "eyes: small, dark, and sharp", + "legs: short, sturdy limbs with small claws", + "wings: long, slender, and pointed for swift flight", + "nape: dark-colored neck feathers connecting head and back", + "tail: short, fan-shaped with a slight fork", + "throat: pale gray plumage on the neck front" + ], + "seram thrush": [ + "back: dark brown with feather patterns", + "beak: long, slightly curved, black", + "belly: cream-colored with brown spots", + "breast: cream-colored with dark streaks", + "crown: dark brown with faint spots", + "forehead: dark brown blending into crown", + "eyes: black with white eyering", + "legs: slender, greyish-brown", + "wings: brown with lighter fringes and spots", + "nape: dark brown with mottled feather patterns", + "tail: brown with white tips on outer feathers", + "throat: creamy white with subtle streaks" + ], + "seram white eye": [ + "back: sleek gray feathers", + "beak: small, sharp, black", + "belly: white feathered underside", + "breast: white plumage, puffed", + "crown: gray head feathers", + "forehead: white stripe above eyes", + "eyes: large, bright white rings", + "legs: slender and gray", + "wings: gray with white speckles", + "nape: gray connecting to crown", + "tail: long and gray, fanned", + "throat: white and soft" + ], + "serendib scops owl": [ + "back: grayish-brown plumage with dark streaks", + "beak: short, hooked, pale gray", + "belly: pale gray with dark brown markings", + "breast: grayish-brown with dark streaks and white spots", + "crown: grayish-brown with dark streaks, camouflaged", + "forehead: smooth grayish-brown with few streaks", + "eyes: large, yellow-orange, surrounded by dark patches", + "legs: feathered, grayish-brown, with sharp talons", + "wings: rounded, grayish-brown, spotted, and barred with dark colors", + "nape: grayish-brown with dark streaks, blending into back plumage", + "tail: short, square, grayish-brown with dark bands", + "throat: pale gray with fine dark streaks" + ], + "serra antwren": [ + "back: dark gray feathers with subtle streaks", + "beak: sharp, black, and slender", + "belly: creamy white with fine gray streaks", + "breast: gray and white mix with fine streaks", + "crown: dark gray with a reddish-brown patch", + "forehead: white, meeting the dark gray crown", + "eyes: shiny, black, surrounded by white eyestripe", + "legs: slender and black, built for perching", + "wings: dark gray with fine streaks, rounded edges", + "nape: dark gray with subtle reddish shading", + "tail: long and dark gray, with noticeable white tips", + "throat: white and unmarked, contrasting with the breast" + ], + "serra do mar tyrannulet": [ + "back: olive-green feathers", + "beak: short and thin, black or dark gray", + "belly: pale yellowish or white", + "breast: light gray to olive-gray", + "crown: olive-green, darker than back", + "forehead: whitish or pale gray", + "eyes: dark, surrounded by pale eyering", + "legs: slender, grayish-blue", + "wings: olive-green with two yellowish wing bars", + "nape: slightly lighter olive-green", + "tail: long, olive-green with thin white edges", + "throat: white or pale gray" + ], + "serra do mar tyrant manakin": [ + "back: vibrant green feathers", + "beak: small, sharp, and black", + "belly: lighter green or yellowish hue", + "breast: rich green coloration", + "crown: bright red feathers in male birds", + "forehead: intense red plumage in males", + "eyes: beady, black, and alert", + "legs: slender, grayish", + "wings: green with a darker outline", + "nape: continuation of the green back feathers", + "tail: elongated, green with a dark tip", + "throat: green with a slight yellow tinge" + ], + "seven colored tanager": [ + "back: vibrant emerald green", + "beak: short and strong, black", + "belly: bright orange-yellow with blue accents", + "breast: rich turquoise blue", + "crown: deep metallic blue", + "forehead: vivid sky blue", + "eyes: dark, surrounded by blue feathers", + "legs: thin and grey", + "wings: mix of blue, green, and yellow feathers", + "nape: radiant blue blending into green", + "tail: multicolored layers of blue, green, and yellow feathers", + "throat: striking deep blue with a hint of turquoise" + ], + "severtzov grouse": [ + "back: brownish-grey plumage with darker bars", + "beak: short, strong, and slightly curved", + "belly: white-grey feathers with black barring", + "breast: dark chestnut feathers with white spots", + "crown: mottled brown and grey feathers", + "forehead: pale greyish-white with black speckles", + "eyes: bright yellow with a black pupil", + "legs: feathered and greyish-brown", + "wings: rounded with white and brown barring", + "nape: grey and brown mottled feathers", + "tail: rounded, with dark bars and a white tip", + "throat: light grey feathers with black speckles" + ], + "seychelles blue pigeon": [ + "back: vibrant blue feathers with a slight green sheen", + "beak: short and curved, pale silver-gray color", + "belly: bright turquoise-blue with soft, fluffy feathers", + "breast: rich blue feathers, slightly darker than belly", + "crown: striking blue crested head, elongated feathers", + "forehead: smooth blue feathers, transitioning into the crown", + "eyes: dark brown with thin blue-gray eye-ring", + "legs: strong and scaly, light gray with sharp claws", + "wings: bold blue feathers with black primaries and secondaries", + "nape: bright blue feathers connecting to the back and crown", + "tail: long, slightly fan-shaped, iridescent blue feathers", + "throat: soft blue feathers, lighter shade than breast" + ], + "seychelles bulbul": [ + "back: dark olive-brown with shades of gray", + "beak: strong, slightly curved, blackish", + "belly: pale yellow with light streaks", + "breast: light yellow with subtle streaks", + "crown: dark brownish-gray", + "forehead: grayish-brown blending with the crown", + "eyes: deep brown with white eyering", + "legs: grayish-black, slender and strong", + "wings: dark olive-brown with shades of gray and slight white markings", + "nape: grayish-brown extending from crown", + "tail: long, dark olive-brown with slight white tips", + "throat: pale yellow, smooth without streaks" + ], + "seychelles fody": [ + "back: bright olive-green", + "beak: short and conical", + "belly: pale yellow", + "breast: vibrant yellow-orange", + "crown: brilliant orange-red", + "forehead: striking red-orange", + "eyes: dark and round", + "legs: slender and greyish-blue", + "wings: olive-green with black edges", + "nape: orange-red with olive-green tint", + "tail: long and olive-green", + "throat: bright yellow" + ], + "seychelles kestrel": [ + "back: rusty brown with dark streaks", + "beak: sharp, hooked, and dark grey", + "belly: creamy white with dark spots", + "breast: buff-colored with dark streaks", + "crown: rusty brown with dark streaks", + "forehead: rusty brown with dark streaks", + "eyes: dark brown, piercing gaze", + "legs: yellowish, strong, and slender", + "wings: rusty brown with black barring", + "nape: rusty brown with dark streaks", + "tail: rusty brown with black barring, square-shaped end", + "throat: creamy white with dark spots" + ], + "seychelles magpie robin": [ + "back: dark brown plumage", + "beak: slender and slightly curved", + "belly: pale, grayish-white feathers", + "breast: light grayish-brown coloring", + "crown: dark brown with slight crest", + "forehead: dark brown, seamless transition from crown", + "eyes: expressive, dark beady eyes", + "legs: slender, dark gray limbs", + "wings: dark brown with secondary feathers lighter shade", + "nape: dark brown, connects to crown", + "tail: long, conspicuous, dark brown with white tips", + "throat: light grayish-white, distinct from breast" + ], + "seychelles paradise flycatcher": [ + "back: dark blue-black, glossy feathers", + "beak: small, slender, black", + "belly: light turquoise blue, fluffy", + "breast: deep turquoise blue, smooth feathers", + "crown: long, flowing, black streamers", + "forehead: turquoise blue, feathers meeting beak", + "eyes: dark, round, alert", + "legs: thin, black, delicate", + "wings: blue-black, broad, rounded", + "nape: where blue-black crown and turquoise blue neck feathers meet", + "tail: long, slender, black with streamers", + "throat: turquoise blue, blending into breast" + ], + "seychelles parrot": [ + "back: greenish-blue feathers", + "beak: short and strong, dark gray", + "belly: light green feathers with a bluish sheen", + "breast: greenish-blue feathers, slightly lighter than the back", + "crown: bright green feathers", + "forehead: narrow band of red feathers", + "eyes: black with a white ring, giving a wide-eyed appearance", + "legs: gray and scaly, with strong, zygodactyl feet", + "wings: dark green with some blue feathers and a prominent red patch", + "nape: green feathers, sometimes with a bluish hue", + "tail: long and rectangular, with green and blue feathers and red tips", + "throat: greenish-blue feathers, blending into the breast area" + ], + "seychelles scops owl": [ + "back: brownish-grey feathers with streaks of white", + "beak: short, sharp, and hooked, pale yellow-grey color", + "belly: pale grey with reddish-brown streaks", + "breast: light grey-brown with white streaks and markings", + "crown: mottled brown and grey feathers with subtle white spots", + "forehead: pale greyish-brown with faint white streaks", + "eyes: large, rounded, and yellow with a black pupil", + "legs: feathered, light grey-brown with strong, sharp talons", + "wings: broad and rounded, greyish-brown with white speckling and barring", + "nape: greyish-brown with white streaks and spots", + "tail: relatively short, grey-brown with white bands and markings", + "throat: pale grey with faint white streaks" + ], + "seychelles sunbird": [ + "back: olive-green to dark brown, smooth feathers", + "beak: slender, curved black, specialized for nectar feeding", + "belly: grayish-white to pale yellow, soft and rounded", + "breast: vibrant orange or yellow, sometimes with iridescent feathers", + "crown: glossy green or blue, with a metallic sheen", + "forehead: small and rounded, similar in color to the crown", + "eyes: dark brown, round, set on either side of the head", + "legs: slender gray or black, with three forward-facing toes and a backward-facing toe", + "wings: olive-green or brown, with a short, rounded shape for agile flight", + "nape: olive-green to dark brown, transitioning from the crown to the back", + "tail: long and slender, with darker central feathers and lighter outer feathers", + "throat: grayish-white to pale yellow, blending into the breast color" + ], + "seychelles swiftlet": [ + "back: dark grey feathers", + "beak: short black beak", + "belly: greyish-white plumage", + "breast: somewhat light grey feathers", + "crown: dark grey crowned head", + "forehead: lighter grey frontal feathers", + "eyes: small, dark, glistening eyes", + "legs: short black legs", + "wings: long, dark grey wings", + "nape: slightly lighter grey nape", + "tail: dark grey forked tail", + "throat: pale grey feathered throat" + ], + "seychelles warbler": [ + "back: olive-brown feathers", + "beak: slender, pointed, and black", + "belly: pale grayish-yellow", + "breast: light olive-yellow", + "crown: yellowish-olive with streaks", + "forehead: slightly yellowish-brown", + "eyes: beady with white eye-ring", + "legs: long and slender, grayish-blue", + "wings: olive-brown with faint white bars", + "nape: olive-yellow", + "tail: long and slender, olive-brown", + "throat: pale olive-yellow" + ], + "seychelles white eye": [ + "back: olive green feathers", + "beak: short, thin, and black", + "belly: pale yellow-white plumage", + "breast: light olive-green shading", + "crown: dark grayish-green color", + "forehead: small white feathers patch", + "eyes: distinctive white eye-ring", + "legs: slender grayish-blue", + "wings: olive-green with white fringes", + "nape: greyish-green feathered region", + "tail: short and olive-green", + "throat: white feathers blending into the breast" + ], + "shade warbler": [ + "back: olive-green and patterned", + "beak: slim, pointed, dark-colored", + "belly: pale yellow or white", + "breast: lightly streaked, yellowish", + "crown: slightly crested, olive", + "forehead: inconspicuous, greenish tones", + "eyes: dark, beady, surrounded by faint white eye-ring", + "legs: thin, dark brown, strong", + "wings: primary feathers dark, secondary feathers with pale edges", + "nape: greenish gray, blending with back", + "tail: dark, forked, white outer tips", + "throat: bright yellow, defining feature" + ], + "shaft tailed whydah": [ + "back: brownish-black feathers with a slight gloss", + "beak: short, conical, and black", + "belly: white with a hint of gray", + "breast: white, blending into the grayish belly", + "crown: glossy black with smooth feathers", + "forehead: continuation of the black crown", + "eyes: small, black, and centered in the white face", + "legs: thin, gray, and strong", + "wings: dark brown with white streaks", + "nape: black, connecting the crown and back", + "tail: long, needle-like shafts with black and white feathers", + "throat: white, contrasting with the black crown" + ], + "sharp beaked ground finch": [ + "back: smooth, brown-gray feathers", + "beak: sharp, pointed and black", + "belly: pale, whitish-gray feathers", + "breast: soft, light brown plumage", + "crown: dark brown, rounded top", + "forehead: feathers blend into the beak", + "eyes: small, dark, and alert", + "legs: sturdy, dark, and scaly", + "wings: sleek, brown-gray with distinct streaks", + "nape: transitioning from the dark brown crown", + "tail: long, narrow, and dark-brown", + "throat: paler brown feathers, blending into breast" + ], + "sharp billed canastero": [ + "back: brownish-gray feathers", + "beak: long, slender, and pointed", + "belly: buff-colored with faint streaks", + "breast: light brown with streaking", + "crown: dark brown with pale streaks", + "forehead: brownish-gray blending into the crown", + "eyes: small and black", + "legs: pale, sturdy, and featherless", + "wings: brownish-gray with faint barring", + "nape: streaked pale brown", + "tail: long, dark brown with pale tips", + "throat: buff-colored with narrow streaks" + ], + "sharp billed treehunter": [ + "back: olive-green streaked with brown", + "beak: long, curved, and pointed", + "belly: pale yellow with thin streaks", + "breast: buff-colored with brown streaks", + "crown: rufous-brown with a concealed crest", + "forehead: rust-colored with fine streaks", + "eyes: dark brown with white eyering", + "legs: sturdy and grayish-blue", + "wings: olive-brown with dark bars", + "nape: olive-green with fine streaks", + "tail: long, brown with white tips and a ladder pattern", + "throat: off-white with brown streaks" + ], + "sharp tailed ibis": [ + "back: sleek and brown, with subtle white streaks", + "beak: long, decurved, dark color with pale base", + "belly: pale, creamy-white, blending into wings", + "breast: dark brown, barred with white streaks", + "crown: reddish-brown, featuring a white-striped crest", + "forehead: prominent white patch", + "eyes: pale, surrounded by a brownish-grey facial skin", + "legs: long, reddish in color", + "wings: broad with brown, grey, and cream patterns", + "nape: reddish-brown, transitioning from the crown", + "tail: sharp, black, elongated and feathered", + "throat: delicately adorned with brown and white" + ], + "sharp tailed sandpiper": [ + "back: streaked, brownish-gray pattern", + "beak: thin, straight, and dark", + "belly: white with light buff streaks", + "breast: buff-colored with dark streaks", + "crown: chestnut-brown with streaks", + "forehead: pale whitish-brown", + "eyes: deep black with white eyering", + "legs: pale yellowish-green", + "wings: brownish-gray with white-edged feathers", + "nape: chestnut-brown with streaks", + "tail: dark brown with white edges", + "throat: white with faint buff streaks" + ], + "sharp tailed starling": [ + "back: glossy-green feathers with iridescent sheen", + "beak: long, slender, and pointed", + "belly: pale buff-yellow with subtle streaks", + "breast: light chestnut-orange with fine streaks", + "crown: iridescent green with frontal crest", + "forehead: iridescent green, blending into crown", + "eyes: small, dark, with a white eye-ring", + "legs: strong and pale pinkish-grey", + "wings: long, pointed, with blackish-green primaries", + "nape: curved stripe of white feathers", + "tail: sharply-pointed, black with white outer feathers", + "throat: bright yellow, blending into breast" + ], + "sharp tailed streamcreeper": [ + "back: dark brown and streaked", + "beak: slender, slightly curved", + "belly: white with gray-brown flanks", + "breast: white with spots and streaks", + "crown: rufous with fine streaks", + "forehead: pale with fine streaks", + "eyes: black and round", + "legs: long and thin, yellowish", + "wings: dark brown with rufous edgings", + "nape: gray-brown with fine streaks", + "tail: long and sharply pointed, brown and barred", + "throat: white and unmarked" + ], + "sharp tailed tyrant": [ + "back: light brown with faint streaks", + "beak: short, thin, and black", + "belly: pale with subtle darker streaks", + "breast: grayish-white with brown streaks", + "crown: dark gray, semi-flat", + "forehead: light gray with fine streaks", + "eyes: black with thin white eye-ring", + "legs: long, thin, and grayish", + "wings: brown with lighter edges on feathers", + "nape: light gray with dark streaks", + "tail: pointed tips, dark bars or spots", + "throat: light gray with fine darker streaks" + ], + "sharpbill": [ + "back: smooth, sleek feathers", + "beak: long, sharp, and curve-tipped", + "belly: slightly rounded and light-colored", + "breast: soft, full plumage", + "crown: rounded top with vibrant feathers", + "forehead: small and smoothly feathered", + "eyes: sharp, alert gaze with dark markings", + "legs: slender, strong and clawed", + "wings: long, pointed, and strong for agile flight", + "nape: gracefully curved with delicate feather tufts", + "tail: elongated and fan-shaped for balance", + "throat: smooth feathers and subtly darker hue" + ], + "sharpe akalat": [ + "back: dark chestnut-brown", + "beak: short and slightly curved", + "belly: bright rust-orange", + "breast: rusty-brownish-orange", + "crown: chestnut-brown with a grayish tinge", + "forehead: light gray-brown", + "eyes: large and dark", + "legs: sturdy and pinkish-gray", + "wings: chestnut-brown with white spots", + "nape: pale grayish-brown", + "tail: long and dark chestnut with a white tip", + "throat: pale grayish-white" + ], + "sharpe apalis": [ + "back: olive-green feathers covering the upper body", + "beak: strong, hook-shaped for insect-catching", + "belly: pale yellowish-white plumage", + "breast: yellowish-white with faint brown streaks", + "crown: distinctive golden-yellow crest", + "forehead: smooth, golden-yellow plumage", + "eyes: dark, alert, and expressive", + "legs: slender, dark grey with strong feet for grasping branches", + "wings: olive-green with brownish-black primary feathers", + "nape: gold-colored with olive-green blending", + "tail: long, dark brown with white edges on outer feathers", + "throat: pale yellow with a hint of brown streaks" + ], + "sharpe drongo": [ + "back: sleek, dark gray coat", + "beak: slightly hooked, black, and sturdy", + "belly: lighter gray with faint streaks", + "breast: smooth gray plumage", + "crown: dark slate gray and slightly raised", + "forehead: smooth, gray, and gently sloping", + "eyes: black, piercing, and round", + "legs: long, black, and slim", + "wings: long, pointed, and dark gray", + "nape: pale gray with light feather pattern", + "tail: forked, long, and black with white tips", + "throat: grayish-white with faint streaks" + ], + "sharpe longclaw": [ + "back: olive-green upper body", + "beak: slender, pointed black bill", + "belly: off-white lower body", + "breast: cream with black streaks", + "crown: gray-brown cap", + "forehead: white brow line", + "eyes: dark, distinct white eye ring", + "legs: long, yellowish-brown", + "wings: elongated, olive-brown with faint banding", + "nape: mottled grayish-brown", + "tail: long, narrow, dark brown", + "throat: buff-colored with black streaking" + ], + "sharpe rosefinch": [ + "back: reddish-brown with dark streaks", + "beak: short and thick, light gray color", + "belly: pale pinkish-gray", + "breast: bright rosy-red", + "crown: deep rose color", + "forehead: vibrant rose hue", + "eyes: small, dark, and round", + "legs: strong, gray-colored", + "wings: brownish-red with dark flight feathers", + "nape: rose-colored blending into brown", + "tail: forked, dark brown", + "throat: bright rosy-red" + ], + "sharpe starling": [ + "back: iridescent green-black feathers", + "beak: relatively short, pointed yellow-tipped", + "belly: shiny green-black feathers with lighter edges", + "breast: speckled with greyish-white spots", + "crown: iridescent green-black, smooth feathers", + "forehead: same color as crown, slightly flatter", + "eyes: dark, medium size, alert and lively", + "legs: relatively long, pinkish-gray", + "wings: iridescent green-black, long and pointed", + "nape: green-black feathers blending into back color", + "tail: narrow and long, same color as wings", + "throat: purple-tinted feathers with lighter speckles" + ], + "sharpe wren": [ + "back: olive-brown with fine streaks", + "beak: slender and slightly curved", + "belly: creamy-white with light barring", + "breast: rich buff-colored with dark markings", + "crown: chestnut-brown with a pale streak", + "forehead: warm reddish-brown", + "eyes: dark and beady, encircled by pale eyering", + "legs: sturdy and pinkish-gray", + "wings: short and rounded with brown barring", + "nape: olive-brown with faint streaks", + "tail: short and broad, dark with pale edges", + "throat: creamy-white with light streaks" + ], + "shear tailed gray tyrant": [ + "back: sleek gray feathers", + "beak: thin, pointed black bill", + "belly: pale gray-white underparts", + "breast: light gray plumage", + "crown: soft gray feathered crest", + "forehead: smooth gray feathers", + "eyes: round, black, piercing gaze", + "legs: slender, black, long legs", + "wings: gray, elongated, aerodynamic", + "nape: subtle gray feathers transition", + "tail: distinctive forked shape, gray feathers", + "throat: lighter gray, delicate feathers" + ], + "shelley eagle owl": [ + "back: dark brown feathers with white streaks", + "beak: strong, black, and sharply curved", + "belly: whitish with dark brown streaks and bars", + "breast: pale brown with fine white streaks", + "crown: dark brown with faint white streaks", + "forehead: dark brown feathers", + "eyes: large, black, soul-piercing orbs", + "legs: sturdy and feathered, with sharp talons", + "wings: broad and powerful, brown and white-mottled feathers", + "nape: dark brown feathers with white streaks transitioning to the crown", + "tail: long and brown, with white feather tips forming horizontal bars", + "throat: light brown feathers with fine white stippling" + ], + "shelley francolin": [ + "back: reddish-brown with black and white speckles", + "beak: short and strong, greyish-brown", + "belly: white with black and brown markings", + "breast: buff-colored with distinct black barring", + "crown: russet-brown with a slight crest", + "forehead: russet-brown with short white streaks", + "eyes: small and dark with white ring", + "legs: robust and greyish-brown with spurs", + "wings: reddish-brown with white streaks and black spots", + "nape: russet-brown with a slight crest", + "tail: short and square, reddish-brown with black barring", + "throat: white with fine black streaks" + ], + "shelley greenbul": [ + "back: olive-green with subtle grey shade", + "beak: short, sturdy, and dark", + "belly: creamy white with light olive tinge", + "breast: pale olive-green, slightly paler than back", + "crown: olive-green with a faint yellowish streak", + "forehead: gently sloping olive-green", + "eyes: dark, surrounded by faint off-white eye-ring", + "legs: brownish-grey with strong feet", + "wings: olive-green and greyish-brown feather edges", + "nape: uniform olive-green continuation from crown", + "tail: pointed, olive-green with dark brown central feathers", + "throat: brighter white, contrasting with pale breast" + ], + "shelley oliveback": [ + "back: olive-green feathers covering the dorsal side", + "beak: small, sharp, and black for seed eating", + "belly: cream-colored with light olive tinges", + "breast: pale olive and cream-colored feathers", + "crown: olive-green with slight bronze shades", + "forehead: olive-green feathers meet the beak", + "eyes: small, round, with a black pupil and pale ring", + "legs: slender, greyish, and sturdy", + "wings: olive-green with secondary feathers edged in white", + "nape: olive-green continuing down from the crown", + "tail: medium length, olive feathers with a dark band and light tip", + "throat: cream-colored blending into the breast feathers" + ], + "shelley rufous sparrow": [ + "back: earthy brown feather pattern", + "beak: short, conical, pale gray", + "belly: light gray-brown, some darker streaks", + "breast: warm chestnut, subtle markings", + "crown: reddish-brown, gray feather borders", + "forehead: lighter gray-brown, narrow feathers", + "eyes: round, dark brown, white ring", + "legs: slender, gray-brown, strong", + "wings: brown, patterned, whitish tips", + "nape: reddish-brown, gray edges", + "tail: brown, slightly forked, white corners", + "throat: pale gray, darker streaks" + ], + "shelley starling": [ + "back: iridescent green-blue plumage", + "beak: thin, pointed, and yellow", + "belly: pale, light-gray feathers", + "breast: soft, silver-gray plumage", + "crown: shimmering green-blue feathers", + "forehead: smooth, metallic green-blue", + "eyes: small, dark, and alert", + "legs: thin, reddish-pink with strong claws", + "wings: iridescent green-blue, angular shape", + "nape: metallic green-blue transition to gray", + "tail: straight, dark, fan-shaped feathers", + "throat: silver-gray with slight iridescence" + ], + "shelley sunbird": [ + "back: vibrant, iridescent green", + "beak: slim, curved, black bill", + "belly: pale yellow, fluffy feathers", + "breast: shimmering golden-orange plumage", + "crown: radiant emerald-green tuft", + "forehead: glistening green feathers", + "eyes: small, round, jet-black", + "legs: slender, dark gray", + "wings: patterned green and yellow", + "nape: luminous green feathers", + "tail: elongated, white-edged feathers", + "throat: bright golden-orange chest" + ], + "shikra": [ + "back: greyish-brown feathers", + "beak: sharp, hooked, yellowish", + "belly: white with rufous bars", + "breast: pale grey or white", + "crown: dark grey, rounded", + "forehead: light grey", + "eyes: piercing, orange or yellow", + "legs: long, slender, yellow", + "wings: short, rounded, mottled grey", + "nape: light grey", + "tail: dark grey, narrow white bands", + "throat: light grey or white" + ], + "shining bronze cuckoo": [ + "back: iridescent bronze-green plumage", + "beak: short, slightly curved, dark gray", + "belly: pale with black scaling", + "breast: bronzed dark-green hue", + "crown: gleaming bronze-colored", + "forehead: metallic bronze-green", + "eyes: dark, round with white eye-ring", + "legs: thin, dark grayish-blue", + "wings: iridescent green with prominent white tips", + "nape: shining bronze-green coloration", + "tail: long, bronze-green with white outer feathers", + "throat: white with black scalloped markings" + ], + "shining drongo": [ + "back: iridescent black feathers", + "beak: strong, slightly curved", + "belly: lighter black, sometimes with pale flecks", + "breast: dark and slightly puffed", + "crown: glossy black with slight crest", + "forehead: smooth and shimmering black", + "eyes: bright red or orange", + "legs: black and sturdy", + "wings: long and angular, black with a metallic sheen", + "nape: glossy black, blending into the crown", + "tail: long, forked and slightly fanned", + "throat: deep black with a faint shimmer" + ], + "shining flycatcher": [ + "back: glossy black feathers", + "beak: short and slightly hooked", + "belly: vibrant golden-yellow hue", + "breast: shining metallic blue-black", + "crown: iridescent bluish-black", + "forehead: deep metallic blue-black", + "eyes: dark, piercing gaze", + "legs: slender and grayish", + "wings: black with bluish sheen", + "nape: gleaming black-blue plumage", + "tail: long and tapered, black-blue", + "throat: bright golden-yellow color" + ], + "shining honeycreeper": [ + "back: iridescent black-blue feathers", + "beak: elongated, gently curving, black", + "belly: bright turquoise", + "breast: shimmering blue transitioning to turquoise", + "crown: glossy black-blue plumage", + "forehead: sleek black feathers", + "eyes: piercing, black-bead surrounded by blue", + "legs: slender, dark gray", + "wings: iridescent blue-black feathers", + "nape: deep black-blue contrasting with turquoise lower down", + "tail: shimmering blue, slightly forked", + "throat: brilliant turquoise with slim black-blue border" + ], + "shining sunbeam": [ + "back: iridescent green-bronze feathers", + "beak: long, slender, and slightly curved", + "belly: duller, orange-hued feathers", + "breast: bright coppery-orange plumage", + "crown: subtly shimmering green crest", + "forehead: glimmering green-gold feathers", + "eyes: small and round, dark in color", + "legs: slender, dark gray with sharp claws", + "wings: iridescent green-bronze with a metallic sheen", + "nape: shining, green-bronze feathers", + "tail: long and slightly forked, with iridescent burnished bronze feathers", + "throat: bright, coppery-orange plumage" + ], + "shining sunbird": [ + "back: iridescent green-blue feathers", + "beak: long, slender, and curved", + "belly: pale yellow with fine streaks", + "breast: bright metallic purple", + "crown: shining metallic green", + "forehead: iridescent green-blue", + "eyes: small, black, and round", + "legs: thin and brownish-gray", + "wings: dark gray with green-blue edges", + "nape: glossy green-blue feathers", + "tail: long and forked, dark gray", + "throat: bright metallic purple" + ], + "shining blue kingfisher": [ + "back: striking iridescent blue feathers", + "beak: long, sharp, black dagger-like", + "belly: bright white with blue tinges", + "breast: white merging into vivid blue", + "crown: bright metallic blue head", + "forehead: rich sapphire blue hue", + "eyes: expressive, dark, beady orbs", + "legs: sturdy, short, red-orange limbs", + "wings: brilliant azure with black tips", + "nape: metallic glistening blue transition", + "tail: elongated, blue-black feathers", + "throat: pure white with subtle streaks" + ], + "shining green hummingbird": [ + "back: vibrant emerald feathers", + "beak: sleek and elongated black bill", + "belly: soft pastel green plumage", + "breast: iridescent green feathers", + "crown: radiant green crest", + "forehead: glistening lime feathers", + "eyes: small and alert deep black orbs", + "legs: slender, delicate limbs", + "wings: fast fluttering and iridescent green", + "nape: luminous green connecting crown to back", + "tail: short, fan-shaped with green accents", + "throat: dazzling green throat patch" + ], + "shiny whistling thrush": [ + "back: glossy blue-black feathers", + "beak: strong, straight, and dark", + "belly: deep blue with a hint of iridescence", + "breast: rich blue-black plumage", + "crown: sleek, bright blue-black feathers", + "forehead: smooth blue-black feathers", + "eyes: round, dark, and watchful", + "legs: sturdy, dark, and powerful", + "wings: glossy, broad, blue-black feathers", + "nape: sleek, iridescent blue feathers", + "tail: long, streaming, blue-black plumes", + "throat: vibrant, bright blue plumage" + ], + "shore plover": [ + "back: light brown with subtle black streaks", + "beak: stout, pale orange with a dark tip", + "belly: white and clean-looking", + "breast: off-white mixed with rusty hues", + "crown: grayish-brown", + "forehead: white stripe above eyes", + "eyes: dark with a piercing gaze", + "legs: relatively short, orange-yellow", + "wings: brownish-grey, elongated feathers", + "nape: blending of white and brownish-grey", + "tail: brown with white band", + "throat: white with pale rusty shades" + ], + "short bearded melidectes": [ + "back: olive-brown feathers", + "beak: short, black, and curved", + "belly: pale yellowish-brown", + "breast: warm brown with faint streaks", + "crown: golden-yellow with a tinge of brown", + "forehead: golden-yellow feathers", + "eyes: dark brown and beady", + "legs: sturdy, dark gray", + "wings: olive-brown with hints of yellow", + "nape: golden-yellow, fading to olive-brown", + "tail: long, dark brown with lighter tips", + "throat: short, white beard-like feathers" + ], + "short billed canastero": [ + "back: brownish-grey plumage", + "beak: short, curved, black", + "belly: buffy-white with brown streaks", + "breast: pale brown, slightly streaked", + "crown: brownish-grey, sometimes with rufous tones", + "forehead: slightly darker than the crown, with faint streaks", + "eyes: dark brown, surrounded by pale eyering", + "legs: strong, yellowish-brown", + "wings: brownish-grey with faint barring", + "nape: similar to the crown, brownish-grey", + "tail: long, brownish-grey with darker, banded feathers", + "throat: buffy-white, unmarked" + ], + "short billed chlorospingus": [ + "back: olive-green with subtle streaks", + "beak: short, grayish-black, cone-shaped", + "belly: yellowish-white, fading into the sides", + "breast: grayish-white, streaks of olive green", + "crown: dark greenish-gray with slight streaks", + "forehead: olive-green, blending into crown", + "eyes: black, outlined by pale eye-ring", + "legs: pale pinkish-gray, sturdy", + "wings: olive-green with darker feather edges", + "nape: green-gray, slightly lighter than crown", + "tail: olive-green, medium length, squared end", + "throat: pale grayish-white, unmarked" + ], + "short billed crombec": [ + "back: olive-green plumage", + "beak: short and slightly curved", + "belly: pale greyish-white", + "breast: light grey with fine streaks", + "crown: dull yellowish-brown", + "forehead: gently sloping brow", + "eyes: small and dark", + "legs: thin and pale", + "wings: olive-green with faint barring", + "nape: greyish-brown with thin streaks", + "tail: short and square-tipped", + "throat: white with soft streaks" + ], + "short billed gull": [ + "back: sleek gray feathers", + "beak: compact, slightly curved", + "belly: white, soft plumage", + "breast: smooth white feathers", + "crown: light gray, rounded", + "forehead: flat, pale gray", + "eyes: small, dark, and alert", + "legs: slim, webbed feet", + "wings: gray, distinct black tips", + "nape: pale gray, slim neck", + "tail: white, forked shape", + "throat: feathered white, unblemished" + ], + "short billed honeycreeper": [ + "back: vibrant blue-green feathers", + "beak: short, straight black bill", + "belly: pale gray-white underparts", + "breast: bright turquoise-blue plumage", + "crown: iridescent purple-blue head", + "forehead: gleaming blue-violet hue", + "eyes: small, black, and alert", + "legs: slender, dark gray limbs", + "wings: brilliant blue-green with black edges", + "nape: stunning purple-blue transitioning to blue-green", + "tail: sharply pointed, blue-green tail feathers", + "throat: rich blue-violet throat patch" + ], + "short billed leaftosser": [ + "back: rich olive-brown color", + "beak: short and stout", + "belly: buff-white hue", + "breast: pale olive-brown", + "crown: darker olive-brown", + "forehead: tinge of rusty-brown", + "eyes: black with white eye ring", + "legs: strong and pinkish-brown", + "wings: olive-brown with some white spots", + "nape: slightly paler olive-brown", + "tail: short and sharp, olive-brown", + "throat: buff-white with faint streaks" + ], + "short billed miner": [ + "back: brownish-gray feathers", + "beak: short, black, and stout", + "belly: light cream-colored", + "breast: pale gray with brown speckles", + "crown: grayish-brown plumage", + "forehead: grayish-brown feathers", + "eyes: small and black", + "legs: slender and grayish-pink", + "wings: brownish-gray with white bars", + "nape: grayish-brown plumage", + "tail: brown with white-tipped feathers", + "throat: pale gray with brown streaks" + ], + "short billed minivet": [ + "back: vibrant orange-yellow with black streaks", + "beak: short and black, designed for catching insects", + "belly: vivid orange-yellow with a slight gradient", + "breast: mix of orange and yellow merging into the belly", + "crown: black with a sleek, streamlined look", + "forehead: smooth black contouring to the eyes", + "eyes: small and black with a piercing gaze", + "legs: thin and black, perching with ease", + "wings: striking black with bold, colorful patches", + "nape: black, transitioning to the bird's colorful back", + "tail: long and black with bursts of bright color", + "throat: bright yellow-orange, blending with the belly" + ], + "short billed pigeon": [ + "back: slate grey feathers", + "beak: short, stout, and dark grey", + "belly: pale grey with light feathering", + "breast: soft, greyish-cerulean plumage", + "crown: darker grey feathers than back", + "forehead: flat, small grey feathers", + "eyes: round, dark, with grey eye-ring", + "legs: short and sturdy, reddish-pink", + "wings: grey with darker primary feathers", + "nape: well-feathered with slight curve to the neck", + "tail: medium-length, square, grey with darker grey tips", + "throat: pale grey, slightly lighter than breast" + ], + "short billed pipit": [ + "back: light brown, streaked with darker markings", + "beak: short, conical-shaped, dark gray", + "belly: pale, creamy white with light streaks", + "breast: buff-colored, lightly streaked with brown", + "crown: brown with faint streaks, slightly darker than back", + "forehead: buff to light brown, blending with crown", + "eyes: medium-sized, dark brown with thin pale eye-ring", + "legs: pale pinkish-gray, slender and strong", + "wings: brown with darker feather edges and white wing-bar", + "nape: light brown, continuous with crown and back coloration", + "tail: brownish, short, and slightly forked", + "throat: white, blending with breast coloration" + ], + "short clawed lark": [ + "back: light brown with darker streaks", + "beak: short and sharp, pale yellow", + "belly: pale buff or white", + "breast: light brown with dark streaks", + "crown: sandy brown with faint streaks", + "forehead: smooth and light brown", + "eyes: small, dark, and alert", + "legs: short with scaled claws, pale brown", + "wings: brownish-grey with dark markings", + "nape: light brown with streaks", + "tail: short and slightly forked, dark brown", + "throat: pale buff or white" + ], + "short crested coquette": [ + "back: vibrant green feathers", + "beak: long, slender, and black", + "belly: iridescent green", + "breast: bright green plumage", + "crown: short, spiky rufous crest", + "forehead: glittering green feathers", + "eyes: small and dark", + "legs: black and delicate", + "wings: iridescent green and rounded", + "nape: green feathers with rufous edging", + "tail: rounded, black with white tips", + "throat: green plumage with white patch" + ], + "short crested flycatcher": [ + "back: olive-green feathers", + "beak: short, wide, and dark", + "belly: yellowish underparts", + "breast: light gray plumage", + "crown: grayish feathers with a short crest", + "forehead: pale gray feathers", + "eyes: dark and alert", + "legs: dark, slender legs", + "wings: dark brown with white wing bars", + "nape: grayish-brown feathers", + "tail: long and dark with white edges", + "throat: grayish-white plumage" + ], + "short crested monarch": [ + "back: vibrant blue with streaks of black", + "beak: sharp, pointed and black", + "belly: creamy white with blue edges", + "breast: white with a touch of blue", + "crown: royal blue with a short crest", + "forehead: deep blue with black outlines", + "eyes: dark with a white eye-ring", + "legs: long and thin, black in color", + "wings: bold blue with black patterns", + "nape: brilliant blue with black streaks", + "tail: long, tapered, blue with black barring", + "throat: bright white with faint blue edges" + ], + "short legged ground roller": [ + "back: vibrant and intricately patterned", + "beak: strong, curved, and sharp-edged", + "belly: pale with dark spots", + "breast: richly colored with unique markings", + "crown: distinct feathers and patterns", + "forehead: smooth and brightly colored", + "eyes: piercing with a bold outline", + "legs: short and sturdy", + "wings: broad and powerful with striking patterns", + "nape: well-defined with an eye-catching color", + "tail: long and fan-shaped with brilliant markings", + "throat: delicately textured with subtle hues" + ], + "short tailed akalat": [ + "back: olive-brown with faint streaks", + "beak: short, straight, and black", + "belly: whitish-gray with dark spots", + "breast: pale gray with subtle markings", + "crown: light brown with slight streaks", + "forehead: smooth, light brown", + "eyes: dark, surrounded by pale eye-ring", + "legs: strong, pale pink", + "wings: brown with faint streaks, moderate size", + "nape: olive-brown, lightly streaked", + "tail: short, dark brown with white edges", + "throat: white or pale gray, unmarked" + ], + "short tailed albatross": [ + "back: smooth white feathers", + "beak: large and pale pinkish-yellow", + "belly: white and soft feathered", + "breast: white plumage with some light black speckles", + "crown: white feathers meeting at the center", + "forehead: white and flat", + "eyes: dark and round, giving a gentle appearance", + "legs: strong, pale pinkish-yellow", + "wings: white plumage with black tips, long and narrow", + "nape: smooth white feathers meeting at the neck", + "tail: short and white with black edges", + "throat: white, unblemished feathers" + ], + "short tailed antthrush": [ + "back: brownish plumage with streaks", + "beak: relatively short, curved, and stout", + "belly: buff-colored with faint bars", + "breast: chestnut brown with light barring", + "crown: dark brown with slightly rufous hue", + "forehead: smooth brown, contiguous with crown", + "eyes: medium in size, dark brown or black", + "legs: strong and sturdy, pale pinkish-brown", + "wings: brownish with lighter feather edges, rounded shape", + "nape: brown blending into the crown, slightly lighter shade", + "tail: short with brown feathers, inconspicuous barring", + "throat: buff-white, blending into the chest" + ], + "short tailed babbler": [ + "back: olive-brown with faint streaks", + "beak: short, strong, and curved", + "belly: pale buff-yellow", + "breast: slightly darker buff-yellow", + "crown: dark brown, plumage prominent", + "forehead: whitish, short streaks", + "eyes: dark brown, surrounded by thin white eyering", + "legs: sturdy, grayish-brown", + "wings: short, olive-brown with some rufous feathers", + "nape: olive-brown, faint streaks", + "tail: short, rounded, rufous brown", + "throat: pale buff-yellow, unstreaked" + ], + "short tailed batis": [ + "back: grayish-brown with faint markings", + "beak: short, slender, and hooked", + "belly: white or pale gray", + "breast: white or pale gray with faint streaks", + "crown: black cap or crest", + "forehead: white or pale gray stripe", + "eyes: surrounded by dark feathering", + "legs: slender and grayish", + "wings: black and white with bold markings", + "nape: grayish-brown with slight streaks", + "tail: short, square, and black with white outer feathers", + "throat: white or pale gray" + ], + "short tailed emerald": [ + "back: vibrant green feathers", + "beak: slender, needle-like", + "belly: off-white, fading into green", + "breast: iridescent green", + "crown: shimmering emerald green", + "forehead: bright, metallic green", + "eyes: small, dark, bead-like", + "legs: delicate, grayish-black", + "wings: fast-moving, translucent edges", + "nape: brilliant green fading to white", + "tail: short, slightly forked, bright green", + "throat: gleaming emerald hue" + ], + "short tailed field tyrant": [ + "back: light gray with subtle streaks", + "beak: short and pointed black", + "belly: pale whitish-yellow", + "breast: grayish-white with slight streaks", + "crown: dark grayish-black", + "forehead: light gray", + "eyes: small and dark", + "legs: long and thin black", + "wings: gray with slight barring", + "nape: light gray", + "tail: short and black", + "throat: pale white" + ], + "short tailed grasswren": [ + "back: small, brown, and streaked with darker bars", + "beak: short, pointed, and shaped for eating insects", + "belly: delicate, pale brown with faint markings", + "breast: warm brown, with subtle barring", + "crown: light brown with streaks of black and white", + "forehead: brown, fading to a paler shade towards the eyes", + "eyes: small, dark, and alert, surrounded by a pale eyering", + "legs: slender, long, and built for hopping in grass", + "wings: brown with black and white streaks, adapted for short bursts of flight", + "nape: brown and streaked with darker markings", + "tail: short, brown with black bars, and often held cocked upward", + "throat: soft, pale brown with little to no markings" + ], + "short tailed hawk": [ + "back: sleek and smooth feathers", + "beak: sharp, hooked curve", + "belly: light, softly-patterned plumage", + "breast: pale to ruddy feathers", + "crown: smooth, dark feathers", + "forehead: smooth transition to beak", + "eyes: sharp, piercing gaze", + "legs: strong and slender", + "wings: broad, rounded tips", + "nape: dark, smooth feathers", + "tail: shorter, banded feathers", + "throat: light, delicate plumage" + ], + "short tailed lark": [ + "back: brownish, streaked plumage", + "beak: small, pointed, and pale gray", + "belly: whitish with light brown markings", + "breast: light brown, streaked feathers", + "crown: brown with pale streaks, slightly crested", + "forehead: pale brown with thin markings", + "eyes: small, dark, and round, surrounded by pale feathers", + "legs: thin, pinkish-brown, with small claws", + "wings: brown with white edges, rounded shape", + "nape: brownish with pale streaks, connects to crown", + "tail: short, square-shaped, with dark brown feathers", + "throat: whitish and unmarked, transitioning to breast" + ], + "short tailed nighthawk": [ + "back: mottled brown and gray plumage", + "beak: small, wide-gaped, and dark", + "belly: pale gray with dark brown speckles", + "breast: grayish-brown with dark bars", + "crown: dark brown with pale streaks", + "forehead: dark gray with small white spots", + "eyes: large, dark, and slightly bulging", + "legs: short, gray, and feathered", + "wings: dark gray with elongated and pointed tips", + "nape: brownish-gray with pale streaks", + "tail: short, dark, and rounded with white bars", + "throat: pale gray with dark speckles" + ], + "short tailed paradigalla": [ + "back: vibrant matte black feathers", + "beak: bright yellow-orange curved structure", + "belly: dark black feathered region", + "breast: bold black feathers with a slight shine", + "crown: black feathers with iridescent blue tips", + "forehead: matte black feathers with a slight curve", + "eyes: small, dark, and round with a black outline", + "legs: sturdy black legs with sharp claws", + "wings: short, rounded black feathers with blue iridescence", + "nape: black, smoothly transitioning to the outstanding crown", + "tail: short, black, rounded feathers with iridescent tips", + "throat: deep black, glossy feathers with a smooth texture" + ], + "short tailed parrotbill": [ + "back: olive-green with faint streaks", + "beak: small and conical, ivory-colored", + "belly: pale white-greyish", + "breast: buffy-white with brownish flanks", + "crown: warm chestnut-brown", + "forehead: slightly paler than crown", + "eyes: black beads surrounded by a white eye-ring", + "legs: thin and pale pinkish-grey", + "wings: olive-green with some darker flight feathers", + "nape: light olive-green with subtle streaks", + "tail: short and dark with white tips", + "throat: white, blending into breast" + ], + "short tailed pipit": [ + "back: light brown with dark streaks", + "beak: slender and pale pinkish-gray", + "belly: pale buff or light brown", + "breast: light brown with dark speckles", + "crown: streaked brown and pale buff", + "forehead: pale buff with light streaks", + "eyes: dark brown with thin, white eye-ring", + "legs: long and pale pinkish-gray", + "wings: brown with pale buff wing bars", + "nape: streaked brown and pale buff", + "tail: short and brown with pale outer feathers", + "throat: white with fine brown streaks" + ], + "short tailed pygmy tyrant": [ + "back: olive-green with subtle markings", + "beak: small and sharp, black with a lighter base", + "belly: pale yellowish-white", + "breast: light olive-green", + "crown: grayish green with a concealed yellow patch", + "forehead: slightly lighter green than crown", + "eyes: dark with pale eye-ring", + "legs: short and slender, grayish-black", + "wings: olive-green with faint black barring", + "nape: grayish green, blending with crown", + "tail: short and stubby, olive-green with pale tips", + "throat: pale, grayish-white" + ], + "short tailed scimitar babbler": [ + "back: olive-brown with pale streaks", + "beak: strong, curved, and greyish-black", + "belly: buff-white with brown markings", + "breast: rufous-chestnut color", + "crown: brown with pale streaks", + "forehead: pale grey-brown", + "eyes: dark brown with white eye-ring", + "legs: sturdy and pinkish-grey", + "wings: olive-brown with slight rufous shading", + "nape: olive-brown with pale streaks", + "tail: short, brown, with a slight upward curve", + "throat: white with fine, dark streaks" + ], + "short tailed shearwater": [ + "back: sleek dark feathers", + "beak: strong, hooked tip", + "belly: lighter gray hue", + "breast: smoky gray coloring", + "crown: dark, rounded top", + "forehead: smooth, slightly sloping", + "eyes: small, dark beady eyes", + "legs: short, webbed feet", + "wings: slender, dark, elongated", + "nape: dark, smooth plumage", + "tail: short, wedge-shaped", + "throat: lighter gray shading" + ], + "short tailed starling": [ + "back: sleek, dark feathers", + "beak: short, strong, pointed", + "belly: light grey plumage", + "breast: speckled grey and white feathers", + "crown: smooth, black feathers", + "forehead: small, darker head plumage", + "eyes: round, black, expressive", + "legs: slim, dark, and strong", + "wings: short, pointed, dark-feathered", + "nape: dark, smoother plumage", + "tail: short, square-ended, dark feathers", + "throat: light grey, soft feathers" + ], + "short tailed swift": [ + "back: sleek, streamlined body", + "beak: small, sharp, and pointed", + "belly: light, soft feathers", + "breast: smooth, curved shape", + "crown: uncrested, rounded head", + "forehead: flat and inconspicuous", + "eyes: small, dark, and alert", + "legs: short and adapted for aerial life", + "wings: long, slender, and curved", + "nape: well-feathered and connected to wings", + "tail: short, slightly forked appearance", + "throat: pale, narrow-feathered region" + ], + "short tailed woodstar": [ + "back: shimmering green iridescent feathers", + "beak: thin, elongated curved bill", + "belly: soft light gray plumage", + "breast: pale grayish-white feathers", + "crown: bright green feathers blending into back", + "forehead: vibrant emerald green plumage", + "eyes: small, piercing black orbs", + "legs: slender pinkish-grey legs", + "wings: rapid and agile, dark-tipped feathers", + "nape: shining green, continuous with crown", + "tail: short, squared-off, gray undertail coverts", + "throat: white, intersected by black band" + ], + "short toed coucal": [ + "back: dark brownish-black feathers", + "beak: short, robust, black hook-like", + "belly: white with black streaks", + "breast: dark brown with light streaks", + "crown: black with slight crest", + "forehead: black with short, dense feathers", + "eyes: dark brown, white-ringed", + "legs: long, grayish-black, strong", + "wings: rounded, black, broad", + "nape: black with slight rufous tinge", + "tail: long, broad, banded with black and white", + "throat: whitish with black streaks" + ], + "short toed rock thrush": [ + "back: blue-gray with black speckles", + "beak: sharp and thin, black", + "belly: pale orange", + "breast: bluish-grey with slight orange tint", + "crown: blue-gray color", + "forehead: light blue contrasts with the darker crown", + "eyes: small and dark, surrounded by a thin white eye-ring", + "legs: slender, pinkish-grey", + "wings: blue-grey with black streaks", + "nape: blue-grey, blending with the crown", + "tail: blue-grey with dark bands", + "throat: vibrant orange, contrasting with the breast" + ], + "short toed snake eagle": [ + "back: light brown with dark streaks", + "beak: strong, hooked, black", + "belly: creamy white with brown streaks", + "breast: pale buff with brown streaks", + "crown: dark brown, streaked with lighter brown", + "forehead: light brown with dark streaks", + "eyes: intense, piercing yellow", + "legs: feathered yellow, robust", + "wings: broad, rounded, light brown with dark spots", + "nape: light brown with dark streaks", + "tail: brownish-grey, banded with dark bars", + "throat: pale buff with brown streaks" + ], + "short toed treecreeper": [ + "back: brown with white streaks", + "beak: long, thin, and slightly curved", + "belly: pale gray-white", + "breast: light gray-white", + "crown: brown with white speckles", + "forehead: slightly lighter brown", + "eyes: small, dark, and round", + "legs: thin, gray, and flexible", + "wings: brown with white spots", + "nape: medium brown, mottled", + "tail: brown with white-tipped feathers", + "throat: pale gray-white" + ], + "shovel billed kookaburra": [ + "back: olive-brown feathers with slight sheen", + "beak: large, wide, and shovel-shaped", + "belly: off-white and pale-yellow feathers", + "breast: light brown with white streaks", + "crown: dark brown feathers and slightly mottled", + "forehead: pale buff-brown with fine, dark streaks", + "eyes: dark, piercing, and expressive", + "legs: strong, gray, and scaly", + "wings: brownish-gray with white spots on coverts", + "nape: pale buff-brown with darker streaks", + "tail: barred with brown and pale bands, rectangular shape", + "throat: off-white with fine, dark streaks" + ], + "shrike like cotinga": [ + "back: grayish upper parts", + "beak: stout and slightly hooked", + "belly: creamy white underparts", + "breast: whitish with faint grayish markings", + "crown: dark gray with white streaks", + "forehead: pale grayish-white", + "eyes: dark beady orbs", + "legs: slender, grayish-black", + "wings: grayish-black with white markings", + "nape: pale gray with a small crest", + "tail: long and square-shaped, banded black and white", + "throat: white with faint gray lines" + ], + "shy ground dove": [ + "back: delicate shades of brown with pinkish hue", + "beak: slim, dark grey, and slightly curved", + "belly: pale grey with soft streaks", + "breast: bluish-grey with pinkish undertones", + "crown: rich purple-brown with blue-grey edge", + "forehead: light bluish-grey with a smooth slope", + "eyes: small, dark, and shiny, surrounded by pale skin", + "legs: short and strong, light pinkish-grey", + "wings: brown with black spots, slightly rounded", + "nape: purple-brown with a hint of blue-grey", + "tail: long & dark-tipped, bluish-grey feathers", + "throat: pale grey with a softer texture" + ], + "shy heathwren": [ + "back: olive-brown with subtle streaks", + "beak: slim, slightly curved, blackish-brown", + "belly: pale and reddish-brown striped", + "breast: warm brown with light streaks", + "crown: boldly striped with reddish-brown", + "forehead: light brown and slightly streaked", + "eyes: round, dark, delicate white eyering", + "legs: slender, grayish-brown", + "wings: warm brown with black and reddish-brown bars", + "nape: light and reddish-brown striped", + "tail: long, olive-brown, barred with darker bands", + "throat: creamy-white with sparse brown streaks" + ], + "siamese fireback": [ + "back: dark grey plumage with subtle blue-green iridescence", + "beak: short and strong, light horn-colored", + "belly: greyish-white with darker grey streaks", + "breast: orange-red feathers bordered with fine black lines", + "crown: bright blue crest with long, curved feathers", + "forehead: white colored with black face markings", + "eyes: bright yellow iris surrounded by black line", + "legs: long and slender, reddish-orange", + "wings: dark grey with white and blue streaks", + "nape: white and blue feathers covering the back of the head", + "tail: long with curved and elongated grey feathers", + "throat: grey with fine white streaks and dark grey markings" + ], + "siamese pied starling": [ + "back: sleek black feathers", + "beak: sharp, black, slightly curved", + "belly: creamy white plumage", + "breast: smooth white transition from belly", + "crown: glossy black with iridescent sheen", + "forehead: smooth black blending with crown", + "eyes: dark, alert, and intelligent", + "legs: strong, black, and scaly", + "wings: black with a flash of white at the sides", + "nape: iridescent black extending to the back", + "tail: long, black, and slightly fanned", + "throat: white feathers transitioning from the breast" + ], + "siau pitta": [ + "back: vibrant green feathers", + "beak: short, stout, and black", + "belly: bright blue with dark flecks", + "breast: rich azure gradient", + "crown: brilliant blue crest", + "forehead: deep blue merging with crown", + "eyes: black with a surrounding white patch", + "legs: dark grey with strong claws", + "wings: striking green with hints of blue", + "nape: green-blue feathers connecting crown to back", + "tail: long, green-blue feathers with wide ends", + "throat: bold, deep blue feathers" + ], + "siberian accentor": [ + "back: brownish-gray with subtle streaks", + "beak: short and conical, dark in color", + "belly: light, warm buff with grayish flanks", + "breast: orange-brown with dark streaks", + "crown: rusty-brown with a noticeable crest", + "forehead: similar to the crown, rusty-brown", + "eyes: small, round, dark", + "legs: thin, with a grayish hue", + "wings: brownish-gray with lighter edges on feathers", + "nape: grayish with brownish streaks", + "tail: dark brown with white outer feathers", + "throat: white with bold dark streaks" + ], + "siberian blue robin": [ + "back: vibrant blue feathers with dark speckles", + "beak: small, slender, and black", + "belly: light gray to white plumage", + "breast: rich blue gradient blending into the belly", + "crown: deep blue coloration with a hint of azure", + "forehead: bright blue and smoothly transitions to the crown", + "eyes: dark and alert, surrounded by blue feathers", + "legs: thin and dark grey, hidden by the plumage", + "wings: long, blue feathers with visible darker markings", + "nape: striking blue hue, continuous with the crown", + "tail: short, fanned blue feathers with darker streaks", + "throat: vivid blue feathers fading into the breast" + ], + "siberian crane": [ + "back: pale gray feathers with a slight sheen", + "beak: long, straight, and pointed with a dark reddish-pink color", + "belly: white and fluffy feathers", + "breast: white feathers merging with the belly", + "crown: smooth, white feathers with a rounded shape", + "forehead: prominent and white with a red patch at the base of the beak", + "eyes: dark brown with a black border, expressive gaze", + "legs: long, dark pinkish-red color, slender and sturdy", + "wings: wide, white feathers with elongated wingtips for migration", + "nape: white feathers with a slender and arched neck", + "tail: short and fan-shaped with white feathers, slightly pointed tips", + "throat: white feathers connecting to the breast and belly" + ], + "siberian grouse": [ + "back: dark gray feathers with pale edging", + "beak: stout, medium-length, and slightly curved", + "belly: light gray with faint white markings", + "breast: pale gray with white flecks and streaks", + "crown: dark gray with white streaks", + "forehead: smooth gray feathers with white streaks", + "eyes: round and large, with a dark brown iris", + "legs: feathered, dark gray, and strong", + "wings: large, rounded, dark gray with lighter edging", + "nape: medium gray with faint white markings", + "tail: fan-shaped, dark gray with pale banding", + "throat: pale gray with white streaks" + ], + "siberian jay": [ + "back: soft grayish-brown feathers", + "beak: short, strong, blackish", + "belly: light grayish-white plumage", + "breast: pale gray feathers", + "crown: grayish-brown head", + "forehead: smooth grayish-brown", + "eyes: dark, alert, and intelligent", + "legs: sturdy, dark gray", + "wings: grayish-brown with white wing bars", + "nape: grayish-brown, continuous with the crown", + "tail: long, graduated, grayish-brown with white outer edges", + "throat: pale gray plumage" + ], + "siberian rubythroat": [ + "back: olive-brown with subtle streaks", + "beak: straight, thin, dark colored", + "belly: white to creamy white", + "breast: vibrant red patch on male, pale on female", + "crown: olive-brown, slightly darker than back", + "forehead: olive-brown, blending with crown", + "eyes: dark, encircled with faint pale ring", + "legs: slender, pinkish-brown", + "wings: olive-brown, with slight wingbars", + "nape: olive-brown, consistent with crown and back", + "tail: olive-brown, slightly darker with shallow fork", + "throat: bright red in male, pale in female, bordered by white moustache stripe" + ], + "siberian stonechat": [ + "back: dark brown plumage", + "beak: short and black", + "belly: white to pale gray", + "breast: vibrant orange chest patch", + "crown: brown with slight streaking", + "forehead: brown with a lighter stripe", + "eyes: small, dark, and surrounded by white ring", + "legs: thin and black", + "wings: dark brown with white patches", + "nape: brown with lighter streaks", + "tail: dark brown with white outer feathers", + "throat: white to pale gray" + ], + "siberian thrush": [ + "back: grayish-brown with subtle streaks", + "beak: straight, slender, and dark-colored", + "belly: white or pale gray", + "breast: white with dark spots and streaks", + "crown: deep gray or slate-colored", + "forehead: grayish-brown, blending into crown", + "eyes: black with pale eyering", + "legs: long, thin, and pinkish-brown", + "wings: grayish-brown with light wing bars", + "nape: grayish-brown, similar to back", + "tail: slate-gray, with distinct white tips", + "throat: white, unmarked or with faint streaks" + ], + "sibilant sirystes": [ + "back: olive-brown with slight streaks", + "beak: long, slim, blackish-grey", + "belly: white with faint brown spots", + "breast: buff or pale brown, streaked feathering", + "crown: olive-brown, slightly raised crest", + "forehead: light olive-brown, narrow white supercilium", + "eyes: dark brown with pale eye-ring", + "legs: robust, pale greyish-blue", + "wings: olive-brown, distinct pale wing-bars", + "nape: olive-brown, streaked pattern", + "tail: brownish-grey, slightly forked", + "throat: pale white, streaked with brown" + ], + "sichuan bush warbler": [ + "back: olive-brown with faint streaks", + "beak: thin, pointed, and black", + "belly: buffy-white with slight brownish hue", + "breast: pale rufous with faint streaks", + "crown: rich brown with subtle streaks", + "forehead: warm brown blending into the crown", + "eyes: medium-sized, dark, and alert", + "legs: long and pinkish-brown", + "wings: olive-brown with faint barring", + "nape: warm brown, similar to the crown", + "tail: olive-brown and slightly forked", + "throat: creamy-white and unmarked" + ], + "sichuan jay": [ + "back: dark blue-grey feathers", + "beak: strong, black, curved", + "belly: white with grey-blue edges", + "breast: white with blue-grey sides", + "crown: blue-grey crest feathers", + "forehead: pale blue-grey", + "eyes: round, dark, alert", + "legs: dark grey, powerful", + "wings: deep blue-grey with white markings", + "nape: bluish-grey feathers", + "tail: long, blue-grey with white tips", + "throat: white, sharply defined" + ], + "sichuan leaf warbler": [ + "back: olive-green with darker streaks", + "beak: thin, sharp, and black", + "belly: pale yellow with subtle streaks", + "breast: bright yellow with brownish streaks", + "crown: olive-brown with a faint pale stripe", + "forehead: buffy-white and unmarked", + "eyes: dark with a faint, pale eyering", + "legs: long, thin, and pinkish-brown", + "wings: olive-green with a strong, yellow wing-bar", + "nape: olive-green, similar to the back", + "tail: long, dark, and squared with white outer feathers", + "throat: bright yellow and unmarked" + ], + "sichuan partridge": [ + "back: brownish-grey with reddish-brown markings", + "beak: short, strong, and pale greyish-brown", + "belly: whitish with bold reddish-brown bars", + "breast: buff and brown with dark crescent markings", + "crown: warm brown with a black-and-white stripe near the eyes", + "forehead: warm brown with tiny white specks", + "eyes: dark brown with a partial eye ring", + "legs: orange-red with strong, sharp claws", + "wings: brown with rust-colored and black markings", + "nape: warm brown with streaks of black and white", + "tail: long and brown with dark bars and reddish-brown tips", + "throat: white with crescent-shaped brown markings" + ], + "sichuan thrush": [ + "back: dark brown with olive tinge", + "beak: thin, black, slightly curved", + "belly: pale grey-white with slight speckling", + "breast: greyish-white with dark streaks", + "crown: dark brown, slightly ruffled", + "forehead: smooth, dark brown, blending into crown", + "eyes: black, small, with narrow white eye-ring", + "legs: pinkish-brown, relatively short", + "wings: dark brown with faint white markings", + "nape: dark brown, transitioning to back", + "tail: dark brown, slightly forked", + "throat: pale grey, unmarked" + ], + "sichuan tit": [ + "back: olive-green with light streaks", + "beak: short, strong, and dark gray", + "belly: white with brownish flanks", + "breast: white with distinct black central band", + "crown: black extending to nape, forming a \"v\" shape", + "forehead: vivid yellow patch", + "eyes: large, dark, and expressive", + "legs: slender, pale pinkish-gray", + "wings: rich blue and black pattern", + "nape: black connected to crown, encircling yellow patch", + "tail: long, bicolored with blue and black feathers", + "throat: white blending into breast" + ], + "sichuan treecreeper": [ + "back: brownish-gray with fine streaks", + "beak: long and slender, slightly curved", + "belly: white with light gray sides", + "breast: pale white to light gray", + "crown: brownish-gray with streaks", + "forehead: slightly paler than the crown", + "eyes: dark brown, small size", + "legs: pinkish-brown, short and strong", + "wings: brownish-gray with light bars and streaks", + "nape: similar to the crown, brownish-gray", + "tail: brownish-gray, short and stiff", + "throat: white to pale gray" + ], + "sick swift": [ + "back: hunched and weak", + "beak: brittle and chipped", + "belly: bloated and tender", + "breast: shallow breathing", + "crown: ruffled feathers", + "forehead: feverish to touch", + "eyes: watery and dull", + "legs: swollen and limp", + "wings: drooping and tired", + "nape: thin and strained", + "tail: ragged and dirty", + "throat: raspy and labored" + ], + "sickle billed vanga": [ + "back: beautiful slate-grey color", + "beak: distinctive long, curved, narrow sickle shape", + "belly: light greyish-white hue", + "breast: rich grey plumage", + "crown: darker grey shading on the head", + "forehead: slate grey with short feathers", + "eyes: striking circular, orange-yellow rings", + "legs: sturdy, pale pinkish-grey limbs", + "wings: broad, slate-grey feathers with slight barring", + "nape: continuous grey hue on the neck's area", + "tail: elongated, slate-grey feathers with subtle barring", + "throat: light greyish-white, blending with the breast color" + ], + "sickle winged chat": [ + "back: sleek, dark-feathered upper body", + "beak: small, sharp-pointed, black-colored", + "belly: off-white with light streaks", + "breast: grayish-white with faint stripes", + "crown: black with visible white patch", + "forehead: dark feathers meeting at a v-shape", + "eyes: large, round, dark-centered with white eye-ring", + "legs: slender, grayish-brown, strong", + "wings: elongated, curved shape with black and white feathers", + "nape: smoothly blending black and gray feathers", + "tail: medium-length, black feathers with white outer tips", + "throat: grayish-white, blending into breast color" + ], + "sickle winged guan": [ + "back: olive-brown plumage", + "beak: small, curved, dark-grey", + "belly: creamy, light-grey feathers", + "breast: dark-greyish brown plumage", + "crown: glossy dark-blue cap", + "forehead: small white patch above beak", + "eyes: bright red, round iris", + "legs: strong, greyish with white scales", + "wings: long, curved, brownish-black feathers", + "nape: dark-grey, smooth plumage", + "tail: long, broad, dark-grey feathers", + "throat: spotted white and dark-grey feathers" + ], + "sickle winged nightjar": [ + "back: subtly patterned with brown and gray hues", + "beak: small, pointed, and black in color", + "belly: pale gray with black spots", + "breast: mottled grayish-brown feathers", + "crown: camouflaged with mottled gray-brown plumage", + "forehead: light gray with fine speckling", + "eyes: large, dark with a hint of metallic sheen", + "legs: thin, feathered, and pale brown", + "wings: long, sickle-shaped, and patterned with intricate gray and brown markings", + "nape: grayish-brown with darker streaks", + "tail: long, rounded edges, with fine gray-brown and black barring", + "throat: pale gray with light brown speckles" + ], + "sierra de lema flycatcher": [ + "back: olive-green feathers", + "beak: small and pointed, black", + "belly: pale yellow underside", + "breast: light olive tinge", + "crown: dark grayish-brown", + "forehead: slightly lighter gray-brown", + "eyes: small, black, surrounded by faint white eye-ring", + "legs: slender, dark gray", + "wings: olive-green with darker flight feathers", + "nape: grayish-brown merging with olive-green back", + "tail: olive-green, medium-length, slightly forked", + "throat: pale yellow, extending to breast" + ], + "sierra leone prinia": [ + "back: olive-brown with slight streaks", + "beak: thin, pointed, and black", + "belly: pale yellow with light streaks", + "breast: yellowish-white with light streaks", + "crown: rufous-brown with light streaks", + "forehead: rufous-brown and slightly crested", + "eyes: dark, beady, and surrounded by a pale eye-ring", + "legs: slim and pinkish-brown", + "wings: olive-brown with faint barring", + "nape: olive-brown with light streaks", + "tail: long, narrow, and brown with white outer tips", + "throat: whitish-yellow with faint streaks" + ], + "sierra madre ground warbler": [ + "back: brownish-gray feathers", + "beak: short, thin, black", + "belly: cream-colored underside", + "breast: yellowish-brown with streaks", + "crown: brownish-gray", + "forehead: pale and short eyebrows", + "eyes: small, black, with white outline", + "legs: slender, pale pinkish", + "wings: brownish-gray with light markings", + "nape: brownish tint", + "tail: short, dark brown", + "throat: creamy-white with faint streaks" + ], + "sierra madre sparrow": [ + "back: dark brown with white streaks", + "beak: short and conical, blackish-brown", + "belly: pale buff-white with dark streaks", + "breast: whitish with dark streaks", + "crown: dark brown with white streaks, bordered by a buff-white stripe", + "forehead: dark brown with thin white streaks", + "eyes: dark brown, surrounded by a white eyering", + "legs: thin, pale pinkish-brown", + "wings: dark brown with white markings, long and pointed", + "nape: dark brown with white streaks", + "tail: dark brown, short and rounded", + "throat: whitish, unmarked" + ], + "sierra nevada antpitta": [ + "back: olive-brown plumage", + "beak: short, curved bill", + "belly: pale yellowish-white", + "breast: yellowish-brown with faint streaks", + "crown: olive-brown with light streaks", + "forehead: light olive-brown", + "eyes: dark brown with white eye-ring", + "legs: long and slender, pale pink", + "wings: short, rounded, with olive-brown feathers", + "nape: light olive-brown with faint streaks", + "tail: short, olive-brown, with white tips", + "throat: pale yellow with brown streaks" + ], + "sierra nevada brushfinch": [ + "back: olive-green covering the upper body", + "beak: short, conical, black bill", + "belly: yellowish-gray lower body", + "breast: yellowish-gray fading to lighter shades", + "crown: dark gray with an orange or reddish crest", + "forehead: dark gray with streaks of orange", + "eyes: dark brown with a pale eye-ring", + "legs: pale pink or fleshy-gray long legs", + "wings: olive-green with black flight feathers", + "nape: olive-green with fine gray streaks", + "tail: black with olive-green edges, slightly forked", + "throat: whitish-gray with fine dark streaks" + ], + "sierran elaenia": [ + "back: olive-brown with faint streaks", + "beak: relatively short, thin, and pale", + "belly: pale yellowish-white", + "breast: light olive-gray with slight streaks", + "crown: olive-gray with pale feather edges", + "forehead: smooth olive-gray", + "eyes: dark with pale eye-ring", + "legs: slender with pale grayish-brown color", + "wings: olive-brown with pale wing-bars", + "nape: olive-gray with subtle streaks", + "tail: brownish-gray with slightly forked shape", + "throat: pale yellowish-white" + ], + "siffling cisticola": [ + "back: light brown with fine streaks", + "beak: short and pointed, dark grey", + "belly: pale cream with light streaking", + "breast: beige with dark streaks", + "crown: brownish with streaks, paler in the center", + "forehead: pale buff with fine streaks", + "eyes: dark, surrounded by pale eye-ring", + "legs: slender, pale pinkish-grey", + "wings: brown with rufous edges, dark flight feathers", + "nape: brown with fine streaks, slightly rufous", + "tail: short, dark with buff outer feathers and white tips", + "throat: pale cream, slightly streaked" + ], + "sikkim treecreeper": [ + "back: mottled brown and white", + "beak: slender curved bill", + "belly: creamy white with faint streaks", + "breast: pale buff with brown spots", + "crown: rufous-brown with white speckles", + "forehead: mottled brown and white", + "eyes: dark brown with a white eye-ring", + "legs: strong, scaly, pinkish-gray", + "wings: brown with white feather edges", + "nape: rufous-brown with white speckles", + "tail: brown, short, and rigid with paler tips", + "throat: creamy white with light streaking" + ], + "sikkim wedge billed babbler": [ + "back: olive-brown feathers coating", + "beak: strong, dark grey hue", + "belly: whitish-grey plumage", + "breast: chestnut-brown coloration", + "crown: deep brownish-black cap", + "forehead: dark brown with fine streaks", + "eyes: piercing pale eye-ring", + "legs: sturdy, greyish-blue limbs", + "wings: olive-brown with subtle black bars", + "nape: shadowy olive-brown shading", + "tail: enlarged chestnut-brown feathers", + "throat: whitish-grey with fine streaks" + ], + "silky tailed nightjar": [ + "back: smooth feathery texture", + "beak: short, slightly curved", + "belly: soft and fluffy plumage", + "breast: creamy white speckles", + "crown: brownish-grey with streaks", + "forehead: pale and spotted", + "eyes: prominent, wide-open gaze", + "legs: long and slender", + "wings: elongated, dark feathers", + "nape: striped, pale markings", + "tail: fan-like, silky feathers", + "throat: light, intricately patterned" + ], + "sillem rosefinch": [ + "back: dark reddish-brown feathers", + "beak: short, conical-shaped and grayish-black", + "belly: pinkish undertones on white feathers", + "breast: rose-pink chest feathers", + "crown: reddish-brown with streaks", + "forehead: pinkish-red hue", + "eyes: small, black, and piercing", + "legs: thin, grayish-black", + "wings: dark brown with light pink edges", + "nape: reddish-brown streaks", + "tail: dark brown with pinkish undertones", + "throat: rose-pink feathers" + ], + "silver gull": [ + "back: sleek, gray feathers", + "beak: thin, orange-red with black tip", + "belly: pure white plumage", + "breast: white, soft feathers", + "crown: smooth, gray-white", + "forehead: delicate white feathers", + "eyes: dark, round with red ring", + "legs: strong, pink-orange", + "wings: elongated, gray with black tips", + "nape: white, blending with crown", + "tail: short, white with black band", + "throat: silky white feathers" + ], + "silver oriole": [ + "back: sleek, silver-toned feathers", + "beak: slim, slightly curved, and black", + "belly: light silver under-feathers", + "breast: iridescent silver plumage", + "crown: smooth, silver-feathered crest", + "forehead: glistening silver feathers", + "eyes: sharp, black, and intelligent", + "legs: slender, black, and long", + "wings: wide, silver-striped feathers", + "nape: shimmering, silver-mantled couverture", + "tail: elongated, silver-tipped feathers", + "throat: delicate, silver-scaled feathers" + ], + "silver pheasant": [ + "back: black and white streaked feathers", + "beak: sharp, small, and light grey", + "belly: white with subtle black streaks", + "breast: pure white and fluffy", + "crown: a metallic silver crest", + "forehead: silver feathers meeting black", + "eyes: dark, beady, and alert", + "legs: sturdy grey with sharp claws", + "wings: white, black, and blue barring", + "nape: elongated silver feathers", + "tail: long, striped black and white feathers", + "throat: soft, white feathered" + ], + "silver teal": [ + "back: dark greyish-brown feathers with fine white speckles", + "beak: black and blue-grey with a white patch at the base", + "belly: creamy-white with light grey-white speckles", + "breast: silvery-grey with fine black speckles", + "crown: grayish-brown with light streaks", + "forehead: white with black speckles near the eyes", + "eyes: dark brown, surrounded by a distinct white eye-ring", + "legs: orange-yellow with webbed feet", + "wings: silvery-blue with black and white striped markings", + "nape: brownish-grey, transitioning into silver-grey on the upper neck", + "tail: dark greyish-brown with thin, white horizontal stripes", + "throat: white, bordered by a black and white speckled band" + ], + "silver backed butcherbird": [ + "back: silvery-grey plumage", + "beak: sturdy, hooked bill", + "belly: pale grey feathers", + "breast: light grey plumage", + "crown: smooth silver-grey feathers", + "forehead: sleek silver-grey feathers", + "eyes: alert, dark orbs", + "legs: strong, grey limbs", + "wings: broad, silvery-grey wingspan", + "nape: silver-grey feathered region", + "tail: long, grey feathers", + "throat: pale grey, slender area" + ], + "silver backed needletail": [ + "back: sleek silver feathers", + "beak: sharp, pointed black", + "belly: light gray plumage", + "breast: silvery-gray chest", + "crown: smooth silver crest", + "forehead: glistening silver", + "eyes: small, dark beads", + "legs: slender black stalks", + "wings: elongated silver-gray feathers", + "nape: silver feathers meeting the crown", + "tail: short, forked with gleaming silver highlights", + "throat: soft gray plumage" + ], + "silver beaked tanager": [ + "back: vibrant bluish-black shades", + "beak: slightly curved, silver-grey", + "belly: brilliant red-orange hue", + "breast: rich crimson coloration", + "crown: black smooth feathers", + "forehead: sleek black area", + "eyes: small, dark, and circular", + "legs: slim, greyish-black limbs", + "wings: glossy blue-black feathers", + "nape: black curved neckline", + "tail: elongated, bluish-black feathers", + "throat: contrasting crimson shade" + ], + "silver breasted broadbill": [ + "back: sleek, silver-gray feathers", + "beak: stubby, black, and sharply-pointed", + "belly: pristine white with silver sheen", + "breast: glimmering silver plumage", + "crown: silver-gray, rounded crest", + "forehead: smooth silver-gray feathers", + "eyes: round, piercing black orbs", + "legs: sturdy, black, and scaly", + "wings: silver-gray with hints of blue", + "nape: silver-gray, transitioning to the crown", + "tail: elongated, iridescent blue feathers", + "throat: silvery-white, complementing breast" + ], + "silver capped fruit dove": [ + "back: glowing emerald green", + "beak: petite, curved orange", + "belly: delicate white feathers", + "breast: luminous light green", + "crown: gleaming silvery-blue", + "forehead: iridescent silver", + "eyes: piercing dark orbs", + "legs: slender, coral pink", + "wings: vibrant green with streaks of blue", + "nape: glistening deep blue feathers", + "tail: shimmering green and blue", + "throat: soft, whitish-grey" + ], + "silver crowned friarbird": [ + "back: light-grey feathers covering the upper body", + "beak: long, curved, black beak for feeding on nectar", + "belly: pale-grey feathers on lower abdomen", + "breast: white to light-grey feathers on chest area", + "crown: striking silver plumage on top of the head", + "forehead: slightly lighter grey feathers on the front of the head", + "eyes: small, dark, and alert, surrounded by grey feathers", + "legs: thin, black, and sturdy for perching on branches", + "wings: grey with black flight feathers for agile movement", + "nape: grey feathers connecting the head and back", + "tail: a mix of white and grey feathers forming a fan-like shape", + "throat: light-grey to white feathers, sometimes with a faint mottled pattern" + ], + "silver eared honeyeater": [ + "back: sleek gray feathers", + "beak: slender, curved, black", + "belly: light silver feathers", + "breast: silver-gilded plumage", + "crown: radiant silver stripe", + "forehead: dark gray markings", + "eyes: round, focused, black", + "legs: sturdy, dark branches", + "wings: elegant, metallic sheen", + "nape: smooth gray transition", + "tail: elongated, forked silver", + "throat: shimmering silver patch" + ], + "silver eared laughingthrush": [ + "back: olive-green feathers covering the upper body", + "beak: short, curved, black beak for foraging insects", + "belly: soft light-gray feathers across the lower abdomen", + "breast: slightly darker gray feathers than the belly, creating a contrast", + "crown: silver-white feathers on the head, resembling ears", + "forehead: silver-white feathers, blending smoothly into the crown", + "eyes: round, shiny black eyes with an alert expression", + "legs: thin, strong, dark gray legs supporting the bird's body", + "wings: olive-green feathers with hints of silver, suited for brief flight", + "nape: olive-green feathers cascading down the back of the neck", + "tail: long, olive-green and splayed, providing balance during movement", + "throat: light gray feathers, similar to the belly color, merging with the breast" + ], + "silver eared mesia": [ + "back: olive-green upper body", + "beak: short, curved, black", + "belly: bright yellow underside", + "breast: vibrant orange chest", + "crown: striking silver-white stripe", + "forehead: black plumage", + "eyes: small, dark, expressive", + "legs: slender, pinkish-gray", + "wings: greenish-blue feathers", + "nape: olive-green to silver transition", + "tail: black, short, slightly forked", + "throat: dark black contrasting with yellow" + ], + "silver rumped needletail": [ + "back: sleek and dark gray", + "beak: short and pointy, black", + "belly: light gray, smooth feathers", + "breast: dark grey blending into the belly", + "crown: dark gray, rounded", + "forehead: smooth, dark gray plumage", + "eyes: small, beady, black", + "legs: short, dark gray with sharp claws", + "wings: long, curved, dark grey, built for swift flight", + "nape: dark gray, well-defined plumage", + "tail: short, silver-rumped, sharp-pointed", + "throat: dark gray, slightly lighter than the crown" + ], + "silver throated tanager": [ + "back: vibrant emerald green", + "beak: short, black and conical", + "belly: pale silver-gray", + "breast: iridescent turquoise", + "crown: shimmering blue-green", + "forehead: vivid green", + "eyes: small, black, and alert", + "legs: slate-gray and slender", + "wings: rich green with black edges", + "nape: bright green", + "tail: contrasting black with green feathers", + "throat: silvery-white and delicate" + ], + "silver throated tit": [ + "back: slate grey and white striped feathers", + "beak: small, sharp, and black", + "belly: white with light grey streaks", + "breast: silver-white with black markings", + "crown: black with white spots", + "forehead: black with white streaks", + "eyes: small, round, and black", + "legs: slender grey-blue", + "wings: black with white spots and grey-edged feathers", + "nape: black with white markings", + "tail: long, black with white outer feathers", + "throat: silver-white with delicate black markings" + ], + "silver tipped imperial pigeon": [ + "back: light gray feathered", + "beak: short and sturdy, white-tipped", + "belly: pale gray with a white patch", + "breast: slightly darker gray than belly", + "crown: smooth, silver-gray crest", + "forehead: light silver-gray feathers", + "eyes: dark with a thin, white eye-ring", + "legs: reddish-pink with strong claws", + "wings: broad, gray-blue with white-tipped flight feathers", + "nape: silver-gray feathers, lighter than back", + "tail: short and fan-shaped, white-tipped", + "throat: pale gray, slightly lighter than breast" + ], + "silverbird": [ + "back: sleek, shiny silver feathers", + "beak: slim, pointed, metallic gray", + "belly: soft, silver-white plumage", + "breast: smooth, silvery-white feathers", + "crown: shimmery silver head crest", + "forehead: gleaming, silver-gray", + "eyes: bright, intense black", + "legs: slim, long, steel-gray", + "wings: expansive, silver-tipped feathers", + "nape: shimmering silver-gray plumage", + "tail: elongated, silver-plumed feathers", + "throat: lustrous, silver-white fur" + ], + "silvered antbird": [ + "back: grayish-brown with silvered sheen", + "beak: short and straight, black in color", + "belly: soft off-white with light gray streaks", + "breast: pale brown with delicate silvered markings", + "crown: dark gray with silvered tints", + "forehead: smooth slate gray blending into crown", + "eyes: beady and dark, surrounded by light gray feathers", + "legs: black with strong, sharp claws", + "wings: grayish-brown with silvered fringe and intricate patterns", + "nape: silvered gray, fading to lighter colors near throat", + "tail: elongated, grayish-brown with silvered accents on feathers", + "throat: light gray, blending into off-white on the belly" + ], + "silvereye": [ + "back: olive-green feathers", + "beak: short, pointed, black", + "belly: pale gray-white", + "breast: grayish-white plumage", + "crown: greenish-gray with light streaks", + "forehead: white crescent shape above eyes", + "eyes: bright white eye-ring, dark pupil", + "legs: slender, black", + "wings: olivaceous-gray with hints of yellow", + "nape: greenish-gray feathers", + "tail: dark gray with a slight greenish tinge", + "throat: whitish to pale gray" + ], + "silvery grebe": [ + "back: light gray feathers with darker streaks", + "beak: slender, slightly upturned, and black", + "belly: whitish-gray with fine dark streaks", + "breast: pale gray with a tinge of pinkish-brown", + "crown: blackish with a hint of green sheen", + "forehead: black, blending into the crown", + "eyes: small, dark, and surrounded by a white eyering", + "legs: short and set far back, with lobed, gray feet", + "wings: silvery-gray with darker tips and white patches", + "nape: dark grayish-green blending into the crown", + "tail: short, pointed, and dark gray", + "throat: white, contrasting with the surrounding plumage" + ], + "silvery tanager": [ + "back: vibrant turquoise-green feathers", + "beak: short, black, and conical", + "belly: silvery-blue plumage", + "breast: bright turquoise-blue feathers", + "crown: shimmering turquoise-blue crest", + "forehead: glistening blue-green hue", + "eyes: small, black, and alert", + "legs: slender with black-gray claws", + "wings: iridescent green-blue covering", + "nape: radiant greenish-blue feathers", + "tail: long, tapered, with blue-green feathers", + "throat: brilliant silver-blue plumage" + ], + "silvery wood pigeon": [ + "back: silvery-gray feathers, slightly iridescent", + "beak: short and strong, curved tip, dark gray", + "belly: pale gray, soft and fluffy feathers", + "breast: lilac to silvery-gray, subtle pinkish hue", + "crown: smooth gray, rounded crest", + "forehead: flat, pale silvery-gray", + "eyes: dark brown, black outline, gentle gaze", + "legs: reddish-pink, short and sturdy", + "wings: broad, silvery-gray, dark tips, short flight feathers", + "nape: pale gray, smooth feathers, slight curve", + "tail: dark gray, fan-shaped, long central feathers", + "throat: soft, silvery-white, delicate feathers" + ], + "silvery cheeked antshrike": [ + "back: silver-grey with subtle streaks", + "beak: black and sharp, medium length", + "belly: white with grey wash", + "breast: light grey with white flecks", + "crown: slate grey with a blackish stripe", + "forehead: pale grey transitioning into the crown", + "eyes: dark with a distinct white eyering", + "legs: strong and black, adapted for perching", + "wings: silver-grey with black bars and white edges", + "nape: light silver-grey blending into the crown", + "tail: long, grey with black bars and white tips", + "throat: white, bright contrast to the breast" + ], + "silvery cheeked hornbill": [ + "back: dark brownish-black feathers", + "beak: large, curved, and cream-colored, with casque on top", + "belly: dark brown with fine white streaks", + "breast: dark brown with delicate silver-white bands", + "crown: dark brownish-black with silvery-white feathers at the base of the bill", + "forehead: predominantly dark with silvery-white streaks along the base of the beak", + "eyes: encircled by bare blue or yellow skin, with white feathered-eyebrows", + "legs: strong, dark grayish, with sharp, black claws", + "wings: primarily dark brownish-black, with some white stripes visible on folded wings", + "nape: dark brown with silver-white streaks", + "tail: dark brownish-black with elongated central feathers", + "throat: dark brown with silver-white bands forming a 'necklace' pattern" + ], + "silvery fronted tapaculo": [ + "back: dark gray with silver flecks", + "beak: short and dark", + "belly: lighter gray with white streaks", + "breast: pale gray with black spots", + "crown: dark gray with silver highlights", + "forehead: smooth gray with white lines", + "eyes: black with white eye-ring", + "legs: short and dark gray", + "wings: dark gray with silver bars", + "nape: slate gray with fine white streaks", + "tail: short, dark gray with white tips", + "throat: silver-gray with fine black streaks" + ], + "silvery throated jay": [ + "back: sleek blue feathers with white streaks", + "beak: short, sharp black tip", + "belly: smooth white underbelly", + "breast: striking blue feathers", + "crown: blue plumage with slight crest", + "forehead: light blue hues", + "eyes: piercing black orbs", + "legs: thin, gray-colored limbs", + "wings: flexible blue and white feathers", + "nape: subtle blue neck feathers", + "tail: long blue-white gradient tailfeathers", + "throat: delicate silvery strands" + ], + "silvery throated spinetail": [ + "back: olive-brown feathers", + "beak: slender and dark", + "belly: pale gray with soft streaks", + "breast: light grayish-brown", + "crown: rufous-brown with narrow streaks", + "forehead: buffy or beige, narrow band", + "eyes: dark brown with pale eye-ring", + "legs: grayish-brown and slender", + "wings: olive-brown with rufous-edged flight feathers", + "nape: rufous-brown with thin streaks", + "tail: long and dull brown with white-tipped outer feathers", + "throat: silvery-grayish and unmarked" + ], + "simeulue scops owl": [ + "back: well-camouflaged, brown-buff plumage", + "beak: short, sharp, dark gray hooked bill", + "belly: light, buff-colored, spotted and striped", + "breast: pale brown with dark streaks", + "crown: mottled brown, buff and dark grey spots", + "forehead: feathered, merging with prominent facial disk", + "eyes: large, dark brown, with expressive quality", + "legs: strong, gray-brown feathered legs", + "wings: rounded, brown, mottled with black and buff spots", + "nape: brown with light buff streaks", + "tail: short, brown, with pale bands across feathers", + "throat: pale, off-white, with dark streaks" + ], + "simple greenbul": [ + "back: sleek, olive-green feathers", + "beak: short, pale, slightly curved", + "belly: soft, whitish-gray plumage", + "breast: light greenish hues", + "crown: olive-brown feathers, rounded head", + "forehead: smooth, pale green feathers", + "eyes: round, dark, alert gaze", + "legs: slender, pale, adapted for perching", + "wings: medium-length, greenish-brown", + "nape: gently sloping, olive-toned", + "tail: long, straight, greenish-brown feathers", + "throat: pale, lightly streaked with green" + ], + "sinai rosefinch": [ + "back: dusty brown with slight pinkish hue", + "beak: short, conical, pale gray", + "belly: soft grayish-pink feathers", + "breast: pale pink with grayish tinges", + "crown: bright crimson with faded edges", + "forehead: deep pink merging into crimson crown", + "eyes: small, dark, surrounded by faint pink circle", + "legs: strong and slender, pale gray-pink", + "wings: brownish-gray with pale pink edges on some feathers", + "nape: rosy pink fading into brown on the back", + "tail: grayish with small hints of pink and white outer feathers", + "throat: vivid pink merging into the pale pink breast" + ], + "sinaloa crow": [ + "back: sleek, black feathers", + "beak: long, curved black beak", + "belly: black feathers with slight sheen", + "breast: smooth black plumage", + "crown: shiny black feathers with slight crest", + "forehead: sleek black feathers transitioning into beak", + "eyes: piercing dark brown or black", + "legs: slender black legs", + "wings: broad, black, and strong", + "nape: black feathers with subtle sheen", + "tail: elongated black fan-like feathers", + "throat: glossy black feathers under beak" + ], + "sinaloa martin": [ + "back: glossy blue-black feathers", + "beak: pointed, black, and strong", + "belly: pale gray, fading to white", + "breast: shades of gray", + "crown: bright blue-black with sheen", + "forehead: prominent with iridescent blue-black feathers", + "eyes: dark, small, and alert", + "legs: slim, black, and sturdy", + "wings: long, blue-black, with a metallic sheen", + "nape: shimmery blue-black feathers", + "tail: forked with dark-blue-black feathers", + "throat: pale gray merging to white" + ], + "sinaloa wren": [ + "back: dark brown with faint white streaks", + "beak: slender and slightly curved, dark grey", + "belly: white with faint brown streaks", + "breast: warm brown with light spots", + "crown: dark brown with light streaks", + "forehead: light brown, blending to dark brown on the crown", + "eyes: dark, round, with white eye-ring", + "legs: long and slender, grey", + "wings: brown with light bars and white spots", + "nape: brown with light streaks, blending with the crown", + "tail: long, dark brown with white corners on feathers", + "throat: light beige, blending to white on the belly" + ], + "sincora antwren": [ + "back: dark gray feathers with paler streaks", + "beak: slender, black, and slightly curved", + "belly: light beige or white with subtle markings", + "breast: gray with faint dark streaks", + "crown: black or dark gray with brownish edges", + "forehead: dark gray blending into the crown", + "eyes: small, black, and encircled with white feathers", + "legs: thin, light gray, and sturdy", + "wings: dark gray with brownish or tan edging", + "nape: grayish-brown with faint streaks", + "tail: long and narrow, dark gray with white tips", + "throat: pale gray, seamlessly merging with the breast" + ], + "sind sparrow": [ + "back: streaked brown and gray feathers", + "beak: short, conical, and pale gray", + "belly: buff-white with dark streaks", + "breast: buffy-gray with light streaking", + "crown: brown with dark central stripe", + "forehead: pale gray-brown", + "eyes: small, black, and round", + "legs: pinkish-brown and thin", + "wings: brown with pale wingbars", + "nape: streaked gray-brown", + "tail: short, brown, and forked", + "throat: pale gray-white" + ], + "sind woodpecker": [ + "back: striped black and white pattern", + "beak: sturdy, chisel-like shape", + "belly: buff-white color", + "breast: light brown with black spots", + "crown: red patch on the head", + "forehead: white with black markings", + "eyes: dark with a white eyering", + "legs: strong, greyish-blue", + "wings: black with white barring", + "nape: red with black markings", + "tail: black with white bands", + "throat: white with black streaks" + ], + "singing cisticola": [ + "back: light brown with subtle streaks", + "beak: thin, pointed and black", + "belly: off-white with light brown streaks", + "breast: buff-colored with fine streaks", + "crown: warm brown with streaked pattern", + "forehead: smooth, light brown blending with crown", + "eyes: small, dark brown with white eye-ring", + "legs: slender and grayish-pink", + "wings: brownish with bold, darker streaks", + "nape: light brown with streaked pattern", + "tail: fan-shaped, brown with dark bars", + "throat: pale off-white, blending with breast" + ], + "singing honeyeater": [ + "back: light olive-green feathers", + "beak: long, thin curved black bill", + "belly: pale yellow-cream", + "breast: greyish-brown streaked", + "crown: olive-green with yellow streaks", + "forehead: pale yellow stripe", + "eyes: dark with white eyering", + "legs: slender grey", + "wings: olive-brown with yellow edges", + "nape: light olive-green", + "tail: long, brownish with white tips", + "throat: creamy-white with fine streaks" + ], + "singing parrot": [ + "back: vibrant green feathers", + "beak: curved, strong, orange", + "belly: light, lime green plumage", + "breast: mix of yellow, orange, and red feathers", + "crown: rich blue crest atop the head", + "forehead: bright blue feathers transitioning to green", + "eyes: intelligent, round, black eyes", + "legs: grayish-blue, sturdy limbs", + "wings: large, multicolored feathers in green, blue, and yellow", + "nape: green feathers at the back of the neck", + "tail: long, bright red, with blue and yellow feathers", + "throat: mix of green and light blue feathers" + ], + "singing quail": [ + "back: brownish-gray feathers", + "beak: short, curved, and black", + "belly: creamy white with black markings", + "breast: light brown with dark spots", + "crown: dark with a white stripe", + "forehead: short black feathers", + "eyes: dark, round, and expressive", + "legs: slender and grayish-blue", + "wings: brownish-gray with patterned feathers", + "nape: dark brown with white streaks", + "tail: short and pointed with black and brown bars", + "throat: white with dark markings and distinct throat patches" + ], + "singing starling": [ + "back: sleek, glossy feathers", + "beak: pointed, slender structure", + "belly: round, slightly puffed area", + "breast: broad, mottled chest", + "crown: top of head, shades of green and purple", + "forehead: subtly iridescent plumage", + "eyes: small, round, dark orbs", + "legs: thin, pinkish-grey appendages", + "wings: medium-length, patterned feathers", + "nape: back of neck, iridescent plumage", + "tail: dark, fan-shaped feathers", + "throat: delicately flecked, gleaming feathers" + ], + "sira tanager": [ + "back: vibrant green upper body", + "beak: short, slightly curved black beak", + "belly: bright yellow underbelly", + "breast: eye-catching yellow chest", + "crown: blue-violet iridescent head", + "forehead: continuing blue-violet coloration", + "eyes: small, black beady eyes", + "legs: slender, black bird legs", + "wings: mix of green and blue-violet feathers", + "nape: green feathers transitioning to blue-violet head", + "tail: long, green central tail feathers", + "throat: striking yellow plumage" + ], + "sirkeer malkoha": [ + "back: olive-brown with fine black accents", + "beak: short, light gray, hooked tip", + "belly: pale yellowish-brown with fine dark stripes", + "breast: grayish-brown with black streaks", + "crown: olive-brown with sparse black markings", + "forehead: olive-green to olive-brown", + "eyes: dark brown with a blue outline", + "legs: grayish-brown with strong claws", + "wings: olive-brown with hints of green and black", + "nape: olive-brown with subtle black markings", + "tail: long olive-brown tail with white tips", + "throat: grayish-brown with black streaks" + ], + "sj\u00f6stedt greenbul": [ + "back: olive green feathers", + "beak: curved, pale yellow", + "belly: light green tinge", + "breast: greenish-grey plumage", + "crown: olive green with slight crest", + "forehead: paler green", + "eyes: dark, small, and round", + "legs: slender, greyish-brown", + "wings: olive green with greyish-edged flight feathers", + "nape: olive green, blending with crown", + "tail: long, greenish-grey feathers", + "throat: pale grey, slightly darker than breast" + ], + "sj\u00f6stedt owlet": [ + "back: dark brown with white speckles", + "beak: short and sharp, pale grayish", + "belly: light brown with white speckles", + "breast: chestnut-brown with white spots", + "crown: dark brown with white flecks", + "forehead: dark brown with slight white speckles", + "eyes: large and dark, surrounded by white rings", + "legs: feathered, light brown with dark bands", + "wings: brown with white speckles and pale bands", + "nape: dark brown with white flecks", + "tail: short and brown, with white spots and indistinct bands", + "throat: light brown with white speckles" + ], + "sladen barbet": [ + "back: greenish-yellow with dense white spots", + "beak: short, orange, and robust", + "belly: bright yellow with scattered white markings", + "breast: vibrant yellow blending into green", + "crown: greenish-yellow with dense white spots", + "forehead: greenish-yellow with dense white spots", + "eyes: small, round, with a thin white eye-ring", + "legs: short and strong, grayish in color", + "wings: greenish-yellow with white spots and blue tinge on borders", + "nape: greenish-yellow with dense white spots", + "tail: short, greenish-yellow with white spots", + "throat: bright yellow with sporadic white markings" + ], + "slate colored antbird": [ + "back: deep gray with subtle olive tinge", + "beak: strong, black, and slightly hooked", + "belly: grayish white with pale streaks", + "breast: pale slate gray with darker undertones", + "crown: dark gray with faint olive tint", + "forehead: smooth gray with slight olive-green shade", + "eyes: small, dark, and alert", + "legs: black and sturdy", + "wings: slate gray with brown edging on flight feathers", + "nape: soft gray blending into crown", + "tail: long, dark gray with white feather tips", + "throat: pale gray, almost white, with fine streaks" + ], + "slate colored boubou": [ + "back: dark slate-grey feathers", + "beak: sharp, black, hooked tip", + "belly: ash-grey underparts", + "breast: pale grey plumage", + "crown: dark slate-grey head", + "forehead: smooth, slate-grey feathers", + "eyes: small, dark, and bright", + "legs: long, slender, black", + "wings: slate-grey with white patch", + "nape: dark-grey feathered transition", + "tail: long, dark-grey, slightly forked", + "throat: pale grey plumage" + ], + "slate colored coot": [ + "back: slate-grey feathers covering the upper body", + "beak: white, elongated, and slightly curved", + "belly: lighter grey feathers on the underside", + "breast: grey plumage, smooth-textured", + "crown: slate-grey feathers atop the head", + "forehead: white frontal shield extending from beak", + "eyes: bright red surrounded by grey feathers", + "legs: greenish-yellow, long and thin with large, lobed feet", + "wings: grey feathered with a slight blue tint, broad and rounded", + "nape: slate-grey feathers on the back of the neck", + "tail: short and stiff, grey-black feathers", + "throat: light grey feathers, blending with breast and belly" + ], + "slate colored grosbeak": [ + "back: steel-blue feathers with hints of slate gray", + "beak: thick, short and silver-gray", + "belly: light gray with subtle streaks", + "breast: pale gray with blurry streaks", + "crown: slate gray feathers with a smooth finish", + "forehead: flat, slate gray area above the beak", + "eyes: dark, round, and outlined in silver-gray", + "legs: sturdy and grayish-blue", + "wings: steel-blue with prominent white patches", + "nape: slate gray feathers with a soft curve", + "tail: dark gray with a narrow white band at the tip", + "throat: clear gray without streaks" + ], + "slate colored hawk": [ + "back: slate gray with dark striations", + "beak: piercing black, hooked tip", + "belly: light gray, finely barred", + "breast: mottled slate and white", + "crown: dark slate gray, sleek", + "forehead: light gray, smooth", + "eyes: piercing yellow, sharp gaze", + "legs: yellowish, strong with talons", + "wings: slate gray, broad, and powerful", + "nape: dark gray, feathered line", + "tail: long, gray, banded striping", + "throat: light gray, clear" + ], + "slate colored seedeater": [ + "back: slate gray feathers", + "beak: short, conical, and pale", + "belly: whitish-gray plumage", + "breast: light gray feathers", + "crown: dark gray crest", + "forehead: smooth, pale gray", + "eyes: small, black, and bright", + "legs: slender, pale gray", + "wings: slate gray with white trimming", + "nape: dark gray plumage", + "tail: long, gray feathers with white tips", + "throat: pale gray with slight streaking" + ], + "slate colored solitaire": [ + "back: smooth, gray feathers", + "beak: short, sharp, black", + "belly: light gray underbelly", + "breast: slate-gray feathers", + "crown: dark gray, rounded head", + "forehead: slate-gray plumage", + "eyes: small, black, and watchful", + "legs: thin, black, and sturdy", + "wings: gray with white accents", + "nape: darker gray feathers, merging with crown", + "tail: medium length, fan-shaped, gray", + "throat: lighter gray plumage" + ], + "slate crowned antpitta": [ + "back: olive-grey with streaked patterns", + "beak: short and stout, light brown", + "belly: pale greyish-white with subtle scaling", + "breast: olive-grey, slightly spotted", + "crown: dark slate-grey, distinct", + "forehead: lighter slate-grey, blending with crown", + "eyes: small, dark, alert", + "legs: long, powerful, pale pinkish", + "wings: olive-grey with light brown accents", + "nape: olive-grey, smooth transition from crown", + "tail: short, fan-like, olive-grey", + "throat: pale greyish-white, blending with belly" + ], + "slate headed tody flycatcher": [ + "back: slate-colored feathers with a slight green sheen", + "beak: short, black, and stout", + "belly: pale yellow with faint streaks", + "breast: bright yellow with some spotting", + "crown: slate gray with slightly darker shades", + "forehead: lighter slate gray, transitioning into the crown", + "eyes: small, round, and dark with a white eye-ring", + "legs: short and black, with sharp claws for perching", + "wings: slate-colored feathers with hints of green and yellow edging", + "nape: continuation of slate gray from the crown, slightly lighter", + "tail: long and dark slate with yellow edges, often fanned when perched", + "throat: bright yellow with thin black streaks" + ], + "slate throated gnatcatcher": [ + "back: slate-gray upper body", + "beak: thin, straight, black", + "belly: whitish-gray underside", + "breast: light gray chest", + "crown: dark gray head", + "forehead: slate gray hue", + "eyes: small, beady, black", + "legs: slender, black", + "wings: slate-gray with black edges", + "nape: slate-gray nape area", + "tail: black with white outer feathers", + "throat: pale gray coloration" + ], + "slate throated redstart": [ + "back: olive-green hue", + "beak: thin, pointy, dark-colored", + "belly: light grayish-white", + "breast: vibrant orange-red", + "crown: black with slate-blue coloring", + "forehead: black with slate-blue tinge", + "eyes: beady, black, expressive", + "legs: gray, slender, tough", + "wings: black, wide, impressive", + "nape: black, blends into olive-green back", + "tail: black with white, striking patterns", + "throat: slate-blue, captivating" + ], + "slaty antwren": [ + "back: slate-gray feathers", + "beak: small and black", + "belly: lighter gray underbelly", + "breast: slightly darker gray chest area", + "crown: dark gray feathers on top of head", + "forehead: slate-gray feathers on front of head", + "eyes: small and dark with a white-eye ring", + "legs: thin, black legs", + "wings: slate-gray feathers with black wing bars", + "nape: slightly paler gray feathers on the back of the neck", + "tail: long and dark gray with a white tip", + "throat: lighter gray feathers with faint black markings" + ], + "slaty becard": [ + "back: slate gray plumage", + "beak: short, hooked, black", + "belly: paler gray feathering", + "breast: medium gray feathers", + "crown: darker gray plumage", + "forehead: slate gray feathering", + "eyes: small, round, black", + "legs: sturdy, grayish-blue", + "wings: slate gray with darker flight feathers", + "nape: medium gray plumage", + "tail: long, gray, with dark tips", + "throat: pale gray feathers" + ], + "slaty bristlefront": [ + "back: dark slate gray feathered coverage", + "beak: short, slender, and curved", + "belly: pale gray with subtle streaks", + "breast: slate gray shading to paler gray", + "crown: slate gray with brush-like bristles", + "forehead: slightly ruffled gray feathers", + "eyes: small, dark, encircled by gray feathers", + "legs: sturdy, pale grayish-brown", + "wings: slate gray, mid-length, rounded", + "nape: smooth gray transitioning from crown", + "tail: dark gray, short, and square-tipped", + "throat: paler gray, strewn with faint streaks" + ], + "slaty brushfinch": [ + "back: slate-grey feathers", + "beak: sharp, conical beak", + "belly: lighter grey plumage", + "breast: greyish-white feathers", + "crown: dark slate-grey crest", + "forehead: lighter grey feathers", + "eyes: round, black eyes", + "legs: slim, dark legs", + "wings: slate-grey with hints of white", + "nape: greyish slate-colored nape", + "tail: long and narrow, slate-grey feathers", + "throat: white with grey streaks" + ], + "slaty bunting": [ + "back: slate-gray feathers with subtle streaks", + "beak: short, sharp, blackish-gray", + "belly: light grayish-white, smooth", + "breast: slate-gray with soft, pale streaks", + "crown: deep slate-gray, slightly darker than back", + "forehead: slightly paler gray with small feathers", + "eyes: small, dark, expressive", + "legs: thin, black, wiry", + "wings: slate-gray with thin, black streaks", + "nape: slate-gray, blending into crown and back", + "tail: slightly darker gray with blackish tips", + "throat: pale grayish-white, smooth" + ], + "slaty cuckoo dove": [ + "back: slate-grey feathers covering the upper body", + "beak: short, stout, and curved beak in a dark grey shade", + "belly: pale greyish-white underside with a soft texture", + "breast: subtly barred with buff-colored feathers, gently blending into the belly", + "crown: smoothly rounded greyish-blue head with a slight sheen", + "forehead: flat, unmarked slate-grey setting up the distinction from the crown", + "eyes: dark brown beads surrounded by an unobtrusive, thin eyering", + "legs: strong, scaled grayish-purple legs with clawed feet for gripping branches", + "wings: medium length, slate-grey with subtle reddish-brown accents on the secondary feathers", + "nape: slightly darker shade of slate-grey transitioning to the back", + "tail: long, fan-shaped with darker grey at the base and silvery-white tips", + "throat: paler, barred patch just under the beak, harmonizing with the breast's pattern" + ], + "slaty cuckooshrike": [ + "back: slate-grey feathers", + "beak: dark, sharply pointed", + "belly: lighter grey plumage", + "breast: soft grey feathers", + "crown: darker grey feathers", + "forehead: smooth grey plumage", + "eyes: black, piercing", + "legs: black, slender", + "wings: slate-grey with flight feathers", + "nape: grey with contrasting plumage", + "tail: long, grey feathers with white tips", + "throat: soft grey, slightly paler" + ], + "slaty egret": [ + "back: slate-grey plumage", + "beak: thick, yellow-tipped", + "belly: white with grey shading", + "breast: smooth, slate-grey feathers", + "crown: dark grey with streaks", + "forehead: white stripe above beak", + "eyes: pale yellow with dark outlines", + "legs: long, yellow-green", + "wings: slate-grey with white stripes", + "nape: dark grey, feathers overlapping", + "tail: short, slate-grey, white edges", + "throat: white with grey streaks" + ], + "slaty elaenia": [ + "back: slate-gray feathers", + "beak: small and sharp", + "belly: light grayish-white", + "breast: pale grayish-white", + "crown: grayish-black with a crest", + "forehead: light gray", + "eyes: dark with white eye-ring", + "legs: slender and grayish", + "wings: slate-gray with two wing-bars", + "nape: slate-gray", + "tail: grayish-black with white edges", + "throat: pale gray" + ], + "slaty finch": [ + "back: slate grey feathers covering the upper body", + "beak: small, pointed, and black", + "belly: lighter grey feathers with subtle white markings", + "breast: bluish-grey feathers blending into the belly", + "crown: smooth slate grey feathers extending from the forehead to the nape", + "forehead: slate grey feathers blending seamlessly into the crown", + "eyes: small, black, and alert, surrounded by grey feathers", + "legs: slender and black, ending in three forward-facing and one backward-facing toes", + "wings: rounded and slate grey, with faint white markings and short covert feathers", + "nape: continuation of the crown, with slate grey feathers covering the back of the neck", + "tail: long and tapered, featuring darker grey feathers with white tips", + "throat: bluish-grey feathers extending from the lower beak to the breast" + ], + "slaty flowerpiercer": [ + "back: slate-colored feathers", + "beak: slightly hooked, black, needle-like tip", + "belly: bluish-gray plumage", + "breast: pale grayish-blue feathers", + "crown: dark slate-blue crest", + "forehead: slightly lighter blue hue", + "eyes: small, black with white rings", + "legs: slender, black", + "wings: slate-blue with black flight feathers", + "nape: bluish-gray, connecting crown and back", + "tail: short, dark blue-gray with white edges", + "throat: pale gray with hints of blue" + ], + "slaty gnateater": [ + "back: dark gray feathers", + "beak: short, hooked, black", + "belly: lighter gray, almost white", + "breast: gray with slight silver tint", + "crown: dark gray, smooth feathers", + "forehead: same gray as the crown", + "eyes: small, round, black", + "legs: thin, dark gray", + "wings: ash-gray with white streaks", + "nape: smooth, dark gray feathers", + "tail: long, gray, layered feathers", + "throat: soft, pale gray" + ], + "slaty monarch": [ + "back: slate-grey feathered back", + "beak: short, sharp, and hooked", + "belly: pale grey plumage", + "breast: smoky grey feathers", + "crown: dark gray feathered crest", + "forehead: smooth slate-grey", + "eyes: dark, alert eyes", + "legs: long, slender, and grey", + "wings: slate-grey with lighter edges", + "nape: slightly darker gray plumage", + "tail: long and gray with white tips", + "throat: pale grey with thin white streaks" + ], + "slaty spinetail": [ + "back: slate-gray feathers covering the upper body", + "beak: short, stout, and conical in shape", + "belly: pale gray underparts", + "breast: light gray plumage", + "crown: dark gray feathers with a distinct crest", + "forehead: smooth gray area above the beak", + "eyes: small, round, and dark in color", + "legs: thin, long, and light gray", + "wings: slate-gray with rounded shape", + "nape: gray feathers at the back of the neck", + "tail: long, dark gray, and slightly forked", + "throat: light gray plumage with slight contrast to the breast" + ], + "slaty tanager": [ + "back: bluish-gray feathers", + "beak: sharp, black, and pointed", + "belly: light gray plumage", + "breast: slate-blue coloration", + "crown: darker blue crest", + "forehead: smooth, bluish-gray feathers", + "eyes: small, black, with white eye-ring", + "legs: slender, dark gray", + "wings: bluish-gray with darker tips", + "nape: subtle, darker blue feathers", + "tail: long, blackish-blue with rounded end", + "throat: pale gray plumage" + ], + "slaty vireo": [ + "back: slate gray upper body", + "beak: small, strong, slightly hooked", + "belly: pale white with grayish undertones", + "breast: grayish with whitish streaks", + "crown: slate gray with well-defined borders", + "forehead: narrow whitish to grayish line", + "eyes: dark with prominent pale eyering", + "legs: thin, light-colored", + "wings: gray with white or light gray wing bars", + "nape: slate gray, compact feathers", + "tail: dark gray, slender, and long", + "throat: grayish-white with clear cut border" + ], + "slaty backed flycatcher": [ + "back: slate-gray feathered cover", + "beak: small and sharp-pointed", + "belly: pale gray-white coloration", + "breast: soft gray plumage", + "crown: dark gray cap on the head", + "forehead: slightly lighter gray shade", + "eyes: black beady appearance", + "legs: thin and dark colored", + "wings: charcoal gray with white bars", + "nape: transition from dark crown to lighter gray back", + "tail: long, dark gray with white edges", + "throat: white-gray underside" + ], + "slaty backed forest falcon": [ + "back: slate-gray feathers with subtle barring patterns", + "beak: sharp, hooked, black with a yellow cere", + "belly: white with gray streaks and darker gray spots", + "breast: white with gray streaks", + "crown: dark gray with lighter edges", + "forehead: smooth, dark gray", + "eyes: large, dark brown with a prominent yellow orbital ring", + "legs: sturdy, yellow with sharp, black talons", + "wings: slate-gray with darker barring, rounded tips", + "nape: dark gray with light streaks", + "tail: long, slate-gray with broad, dark bands", + "throat: white with gray streaks" + ], + "slaty backed forktail": [ + "back: slate-gray with pale streaks", + "beak: straight and dark-colored", + "belly: white with dark spots", + "breast: slate-gray with white speckling", + "crown: dark gray with faint streaks", + "forehead: sleek slate-gray", + "eyes: dark and rounded, with white eye-ring", + "legs: black and slender", + "wings: slate-gray with white bars", + "nape: pale gray and streaked", + "tail: long and forked, with white tips", + "throat: white with gray speckles" + ], + "slaty backed hemispingus": [ + "back: slate-gray feathered upper body", + "beak: short, conical black bill", + "belly: pale grayish-white underbelly", + "breast: grayish-white chest plumage", + "crown: dark gray head feathers", + "forehead: slate-gray feathered front head", + "eyes: small, circular black eyes", + "legs: short, dark grey legs", + "wings: slate-gray feathered wings with white bars", + "nape: slate-gray feathered neck area", + "tail: dark gray, fan-shaped tail feathers", + "throat: grayish-white feathered throat area" + ], + "slaty backed nightingale thrush": [ + "back: dark slate gray with subtle olive tones", + "beak: short, black, and slightly curved", + "belly: pale buffy or gray-white with soft spotting", + "breast: light gray with faint spotted pattern", + "crown: smooth dark slate gray", + "forehead: dark slate gray continuing from crown", + "eyes: dark brown with faint white eye-ring", + "legs: long, pale pinkish-gray", + "wings: dark gray with slightly contrasting flight feathers", + "nape: dark slate gray blending into back", + "tail: dark gray with faint barring, extending slightly beyond wings", + "throat: pale gray with minimal spotting" + ], + "slaty backed thornbill": [ + "back: slate-gray, slightly rounded", + "beak: thin, sharp, black", + "belly: light gray, soft feathers", + "breast: pale gray, delicate feathering", + "crown: slate-gray with subtle streaks", + "forehead: smooth, light gray", + "eyes: small, dark, well-spaced", + "legs: slender, black, powerful", + "wings: slate-gray, broad, rounded tip", + "nape: grayish, blending into back", + "tail: long, narrow, dark gray", + "throat: pale gray, smooth feathering" + ], + "slaty backed thrush": [ + "back: slate gray with subtle dark scaling", + "beak: pale yellow with darker upper mandible", + "belly: whitish or pale buff with gray sides", + "breast: lightly spotted gray with grayish streaks", + "crown: slate gray with faint dark scaling", + "forehead: slate gray with minimal markings", + "eyes: dark brown with pale eye-ring", + "legs: bright yellow-orange", + "wings: slate gray with dark tips and whitish edging", + "nape: slate gray with faint dark scaling", + "tail: slate gray with dark tips and white outer feathers", + "throat: pale gray with lighter central stripe" + ], + "slaty bellied tesia": [ + "back: slate-grey feathered back", + "beak: small, pointed, dark beak", + "belly: light grayish-green belly", + "breast: olive-brown breast plumage", + "crown: dark, rounded head crown", + "forehead: smooth, grayish-olive forehead", + "eyes: dark, rounded, piercing eyes", + "legs: slender, pale legs with strong claws", + "wings: short, round, olive-brown wings", + "nape: grayish-olive nape with fine feathering", + "tail: short, slightly fanned, olive-brown tail", + "throat: light grayish throat with fine feathers" + ], + "slaty blue flycatcher": [ + "back: slate blue feathered with a slight purple sheen", + "beak: slim, dark and pointed", + "belly: light gray, soft plumage", + "breast: gray-blue, smooth feathers", + "crown: deep blue, continuous with the back", + "forehead: slightly paler blue than the crown", + "eyes: dark, with a pale eye-ring", + "legs: thin, grayish-black", + "wings: slate gray with a dark blue edging", + "nape: glossy blue-gray, connecting the back and crown", + "tail: slightly forked, dark blue-gray", + "throat: pale gray, blending into the breast" + ], + "slaty breasted rail": [ + "back: slate-gray with streaks of olive-brown", + "beak: short and stout, olive-green", + "belly: pale gray with faint barring", + "breast: slaty gray with white speckles", + "crown: dark olive-brown", + "forehead: pale gray transitioning to brown", + "eyes: dark, beady with a thin white eye-ring", + "legs: strong and yellowish-green", + "wings: olive-brown with barred patterns", + "nape: olive-brown streaked with gray", + "tail: dark brown with blackish bars", + "throat: pale gray, unmarked" + ], + "slaty breasted tinamou": [ + "back: slate-grey plumage", + "beak: short and stout, blackish-brown", + "belly: pale greyish-white with fine barring", + "breast: greyish-brown with dark barring", + "crown: dark grey with slight crest", + "forehead: smooth and grey", + "eyes: dark brown, slightly protruding", + "legs: feathered, greyish-brown", + "wings: short and rounded, slate-grey with dark barring", + "nape: slightly lighter grey, well-blended with the back", + "tail: short and squared-off, dark grey with faint barring", + "throat: pale grey with light barring" + ], + "slaty breasted wood rail": [ + "back: dark slate-blue feathers with white streaks", + "beak: long and slightly curved, yellowish-green color", + "belly: pale gray with white and black bars", + "breast: slate-gray with white streaks and black speckles", + "crown: deep slate-blue with a pale blue stripe", + "forehead: dark slate-blue merging with the crown", + "eyes: bright reddish-orange with a black pupil", + "legs: long and slender, yellowish-green", + "wings: short and rounded, slate-blue with white streaks", + "nape: slate-blue feathers with a pale blue stripe", + "tail: fan-shaped with dark gray and white barred feathers", + "throat: white with black speckles, blending into breast color" + ], + "slaty capped flycatcher": [ + "back: slaty-gray upperpart", + "beak: short and black", + "belly: pale yellow and grayish", + "breast: light gray with slight yellow blend", + "crown: dark gray with a slate-colored cap", + "forehead: dark gray to match the crown", + "eyes: black with white eye-ring", + "legs: slender and black", + "wings: dark gray with white bars", + "nape: slaty gray with yellow tinge", + "tail: dark gray with white outer feathers", + "throat: pale gray-yellow with thin streaks" + ], + "slaty capped shrike vireo": [ + "back: olive-green feathers", + "beak: short, sharp, hooked", + "belly: pale yellowish-white undertones", + "breast: light olive-green", + "crown: dark slate-gray cap", + "forehead: slightly paler gray", + "eyes: dark brown, white eye-ring", + "legs: sturdy, pale gray-brown", + "wings: olive-green, faint wing-bars", + "nape: olive-green, blending with back", + "tail: olive-green, slightly darker edges", + "throat: pale yellowish-white" + ], + "slaty chinned longbill": [ + "back: slate-colored feathers with a slight sheen", + "beak: long, slender, slightly curved, dark grey", + "belly: creamy, light-colored feathers with hints of yellow", + "breast: slate grey-feathered plumage with a slight greenish sheen", + "crown: bluish-grey plumage on top of the head", + "forehead: same bluish-grey color as the crown", + "eyes: medium size with black pupil surrounded by a light brown ring", + "legs: medium length, thin, greyish-brown", + "wings: slate-colored feathers with faint stripes on edge of primaries", + "nape: slate grey, blending into crown and back", + "tail: long, narrow tail feathers with dark grey barring and white tips", + "throat: slightly paler grey than the breast, blending to creamy white towards the belly" + ], + "slaty headed parakeet": [ + "back: slate-gray feathers", + "beak: striking red-orange color", + "belly: light green fading to yellow", + "breast: vibrant green plumage", + "crown: slate-gray with a slight blue tint", + "forehead: whitish-gray bordering the beak", + "eyes: dark, round with a white eye-ring", + "legs: sturdy, grayish feet with sharp claws", + "wings: bright green with blue-tinted edges", + "nape: slate-gray blending into green", + "tail: long, tapered, deep blue and green feathers", + "throat: bright green, sometimes showing yellow undertones" + ], + "slaty legged crake": [ + "back: slate gray with faint barring", + "beak: short, stout, and pale greenish-yellow", + "belly: dark gray with white barring", + "breast: gray with faint white spotting", + "crown: dark gray with fine white streaks", + "forehead: slate gray", + "eyes: deep brown-black", + "legs: slate gray with greenish tinge", + "wings: dark gray with fine white barring", + "nape: slate gray with fine white streaks", + "tail: dark gray with narrow white bands", + "throat: pale gray with white barring" + ], + "slaty tailed trogon": [ + "back: slate-grey feathers with a slight greenish sheen", + "beak: short, straight, and black", + "belly: rich crimson red", + "breast: light grey with a thin dark grey stripe", + "crown: black and glossy with a light green-blue sheen", + "forehead: black with a light blue-green iridescence", + "eyes: dark brown with a small black pupil", + "legs: short and sturdy, covered in greyish-white scales", + "wings: dark slate-grey with thin white feather tips", + "nape: greenish-black leading into the crown", + "tail: long and broad, with slate-grey feathers and white tips", + "throat: light grey with black streaks" + ], + "slaty winged foliage gleaner": [ + "back: slate-grey, streaked feathers", + "beak: short, hooked, sharp", + "belly: whitish with greyish markings", + "breast: greyish-olive feathers", + "crown: mottled grey and brown", + "forehead: slightly paler grey", + "eyes: dark, beady and alert", + "legs: strong, greyish-brown", + "wings: slate-colored, barred pattern", + "nape: grey with olive-green tint", + "tail: long, slate-grey, fan-shaped", + "throat: pale grey, slightly ruffled" + ], + "slender antbird": [ + "back: sleek feathers in varying shades of brown", + "beak: thin, pointed, and black", + "belly: pale white or cream with delicate streaks", + "breast: light brown with faint striping", + "crown: chestnut-colored with a sleek appearance", + "forehead: light brown, smoothly transitioning into the crown", + "eyes: small, round, and black", + "legs: long and thin, gray or pale brown", + "wings: brown with faint black bars", + "nape: chestnut-colored, connecting the crown to the back", + "tail: long, straight, and brown with fine black bars", + "throat: whitish or pale cream, fading into the belly color" + ], + "slender sheartail": [ + "back: elongated and slender", + "beak: long and needle-like", + "belly: soft and light-colored", + "breast: sleek and smooth", + "crown: slightly raised, with short feathers", + "forehead: narrow and finely feathered", + "eyes: small and dark", + "legs: thin and delicate", + "wings: pointed and agile", + "nape: subtly curved, connecting head and back", + "tail: forked and slender", + "throat: smooth and pale" + ], + "slender billed babbler": [ + "back: smooth, elongated feathers in earthy tones", + "beak: slim, slightly curved and pointed bill", + "belly: delicate, pale-colored feathers", + "breast: soft, light brownish-grey plumage", + "crown: muted brownish-grey feathers, slight crest", + "forehead: subdued, pale grey feathers", + "eyes: small, round, black, and alert", + "legs: long, thin, and twig-like, clawed feet", + "wings: elongated, narrow, featuring brownish-grey feathers", + "nape: soft, pale, brownish-grey feathers", + "tail: slender, slightly forked with muted grey undertones", + "throat: delicate, pale, grey-brown feathers" + ], + "slender billed crow": [ + "back: sleek black feathers", + "beak: long and slender black bill", + "belly: lighter grayish-black feathers", + "breast: glossy black plumage", + "crown: smooth black feathers on top of the head", + "forehead: slightly raised with black feathers", + "eyes: dark, piercing gaze", + "legs: strong black limbs with sharp claws", + "wings: broad black feathers with a moderate wingspan", + "nape: curved transition from head to back with black feathers", + "tail: long and narrow black feathers with a slightly forked end", + "throat: smooth black feathers covering the vocal area" + ], + "slender billed curlew": [ + "back: pale brown with faint stripes", + "beak: long, thin, and curved downward", + "belly: light buff color with light streaks", + "breast: pale brown with darker speckles", + "crown: dark brown with a pale central stripe", + "forehead: pale brown blending into the crown", + "eyes: dark, small, and surrounded by pale feathers", + "legs: long and pale grayish-blue", + "wings: pale brown with dark brown barring", + "nape: pale brown blending into the back", + "tail: dark brown with a white edge and several narrow bands", + "throat: light buff color, contrasting with the breast" + ], + "slender billed finch": [ + "back: light brown with faint streaks", + "beak: elongated slender bill", + "belly: creamy white with light streaks", + "breast: buff-white with light streaks", + "crown: grayish-brown with pale edges", + "forehead: slightly paler than crown", + "eyes: dark with thin pale eye-ring", + "legs: pinkish-gray", + "wings: light brown with white wing bars", + "nape: grayish-brown with pale edges", + "tail: long and slightly forked", + "throat: creamy white" + ], + "slender billed flufftail": [ + "back: brown with light feather markings", + "beak: slender, slightly curved, dark gray", + "belly: off-white with russet speckles", + "breast: pale russet with light feather lines", + "crown: rusty-brown with black central stripe", + "forehead: lighter brown with faint streaks", + "eyes: dark, small, with pale eye-ring", + "legs: long, grayish-yellow with slight barring", + "wings: brown with white and rust-colored markings", + "nape: brown with slight feather streaks", + "tail: short, brown with faint horizontal barring", + "throat: pale russet with thin brown stripes" + ], + "slender billed greenbul": [ + "back: olive-green feathers", + "beak: long, slender, and curved", + "belly: pale yellow", + "breast: yellowish-green", + "crown: olive-green with faint streaks", + "forehead: faint streaks on olive-green base", + "eyes: dark with pale eyering", + "legs: bluish-gray", + "wings: olive-green with light wing bars", + "nape: olive-green with faint streaks", + "tail: long, olive-green feathers", + "throat: pale yellow" + ], + "slender billed gull": [ + "back: light grey plumage", + "beak: long, thin, black-tipped", + "belly: white feathering", + "breast: soft-white coloration", + "crown: unmarked greyish-white", + "forehead: smooth white feathers", + "eyes: dark round eyes with thin black ring", + "legs: reddish-pink and medium-length", + "wings: pale grey with dark black tips", + "nape: white with subtle transitioning to grey", + "tail: white feathers with black terminal band", + "throat: clean white plumage" + ], + "slender billed kite": [ + "back: sleek, grayish-brown feathers", + "beak: slender, sharp, hooked", + "belly: light, cream-colored feathers", + "breast: pale whitish-gray", + "crown: grayish-brown with faint streaks", + "forehead: light grayish-brown", + "eyes: dark, intense gaze", + "legs: long, slender, yellowish", + "wings: elongated, grayish-brown feathers with black tips", + "nape: light grayish-brown with streaks", + "tail: long, narrow, grayish-brown with black bands", + "throat: slightly paler grayish-brown" + ], + "slender billed miner": [ + "back: light brown with faint markings", + "beak: long and slender, slightly curved", + "belly: pale cream with grayish undertones", + "breast: light gray with subtle streaks", + "crown: brownish-gray with faint streaks", + "forehead: pale gray, blending into crown", + "eyes: small, black, surrounded by white feathers", + "legs: strong and sturdy, pale pinkish-grey", + "wings: light brown with darker flight feathers", + "nape: grayish-brown with thin, white streaks", + "tail: long and forked, grayish-brown with pale edges", + "throat: white with light gray streaks" + ], + "slender billed oriole": [ + "back: vibrant golden-yellow feathers", + "beak: long, slender, and curved black beak", + "belly: bright golden-yellow hue", + "breast: vivid golden-yellow feathers", + "crown: sleek glossy black cap", + "forehead: shining black plumage", + "eyes: dark, piercing gaze surrounded by black", + "legs: thin, strong, dark-colored limbs", + "wings: black with golden-yellow highlights", + "nape: black transitioning to golden-yellow", + "tail: elongated black feathers with yellow edges", + "throat: striking golden-yellow plumage" + ], + "slender billed parakeet": [ + "back: vibrant green feathers", + "beak: curved, slender, pale orange", + "belly: bright green plumage", + "breast: lighter green feathers", + "crown: green with subtle blue tint", + "forehead: bluish-green hue", + "eyes: dark, round with white eye-ring", + "legs: strong, gray with zygodactyl toes", + "wings: long, green with blue flight feathers", + "nape: green-blue with darker streaks", + "tail: long, green-blue with dark tips", + "throat: pale greenish-yellow" + ], + "slender billed prion": [ + "back: light blue-grey with a streamlined shape", + "beak: thin, long, and hooked, black in color", + "belly: soft white with a slight hint of blue", + "breast: light grey with a delicate white blend", + "crown: bluish-grey, smooth, and slightly raised", + "forehead: pale grey blending into the crown", + "eyes: small, black, and bright, surrounded by a thin white circle", + "legs: short, pale pinkish-grey with webbed feet", + "wings: long, pointed, and blue-grey with black tips", + "nape: blue-grey, transitioning into the back", + "tail: short and wedge-shaped, blue-grey with black edges", + "throat: white with a hint of pale blue towards the breast" + ], + "slender billed scimitar babbler": [ + "back: olive-brown with faint streaks", + "beak: long, curved, and pale grey", + "belly: light greyish-white", + "breast: warm brownish-grey", + "crown: rufous-brown with faint streaks", + "forehead: rufous-brown, blending with crown", + "eyes: dark, encircled by pale eyering", + "legs: sturdy, pale gray", + "wings: olive-brown, slightly rounded", + "nape: rufous-brown, streaked with olive-brown", + "tail: long, graduated, and rufous-brown", + "throat: whitish, bordered by dark crescent" + ], + "slender billed starling": [ + "back: sleek black-blue feathers", + "beak: slender, yellow-tipped bill", + "belly: pale, silvery-white plumage", + "breast: iridescent black-blue feathers", + "crown: glossy, dark head plumage", + "forehead: smooth black-blue sheen", + "eyes: round, dark, and piercing", + "legs: long, thin, dark-grey limbs", + "wings: black-blue, elongated flight feathers", + "nape: shimmering black-blue transition", + "tail: long, elegant, black-blue feathers", + "throat: silvery-white, contrasting plumage" + ], + "slender billed thornbill": [ + "back: light brown with streaks", + "beak: thin and long; curved sharp point", + "belly: pale white with light streaks", + "breast: soft grey with light streaks", + "crown: dark brown fading to lighter shades", + "forehead: light brown with small streaks", + "eyes: small, dark with white eye-ring", + "legs: slender, pale with strong toes", + "wings: light brown; streaked with darker edges", + "nape: light brown with minute streaks", + "tail: slightly forked, dark with light tips", + "throat: pale white with subtle streaks" + ], + "slender billed tyrannulet": [ + "back: olive-green upper layer", + "beak: thin, pointy black bill", + "belly: whitish lower side", + "breast: pale yellowish-green", + "crown: muted olive-green", + "forehead: slightly paler green", + "eyes: dark eyes, white eye-ring", + "legs: slender, grayish-brown", + "wings: olive-green, faint bars", + "nape: consistent olive-green", + "tail: slightly forked, olive-green", + "throat: whitish-yellow patch" + ], + "slender billed vulture": [ + "back: greyish-brown feathers", + "beak: long, slender, hooked", + "belly: pale whitish-grey feathers", + "breast: light grey, sparse feathers", + "crown: dark brown feathers, slightly raised", + "forehead: smooth, pale grey", + "eyes: small, dark, surrounded by bare skin", + "legs: sturdy, pale yellow, featherless", + "wings: broad, long, greyish-brown", + "nape: lighter brown-tinted feathers", + "tail: short, square, brown feathers", + "throat: bare, wrinkled, pale bluish-grey skin" + ], + "slender billed weaver": [ + "back: golden olive-green feathers", + "beak: long, slender, and curved", + "belly: pale yellow with light streaks", + "breast: bright yellow feathers", + "crown: orange-brown with black streaks", + "forehead: black masked area", + "eyes: small and dark brown", + "legs: fairly long, dark gray", + "wings: golden olive with black feathers on the tips", + "nape: orange-brown with black streaks", + "tail: long and dark gray-black", + "throat: bright yellow feathers" + ], + "slender billed white eye": [ + "back: sleek, greenish-gray feathers", + "beak: thin, elongated, and curved", + "belly: pale, cream-colored feathers", + "breast: soft, light gray plumage", + "crown: smooth, grayish-green feathers", + "forehead: slightly lighter than the crown, pale gray", + "eyes: large, striking white ring around dark, round eye", + "legs: slender, grayish-brown", + "wings: long, greenish-gray with distinct white bars", + "nape: pale gray, blending into the back and crown", + "tail: elongated, narrow, greenish-gray feathers with white tips", + "throat: light gray, blending into the breast and belly" + ], + "slender billed xenops": [ + "back: olive grey feathering", + "beak: elongated, thin, and slightly upturned", + "belly: light beige, soft feathers", + "breast: paler greyish brown plumage", + "crown: streaked with brown and white", + "forehead: whitish, with a dark creamy hue", + "eyes: dark, with white eye rings", + "legs: short, powerful, and sandy grey", + "wings: olive grey with brownish bars", + "nape: streaked, with a mixture of brown and whitish feathers", + "tail: long, narrow, and slightly forked", + "throat: pale, creamy white coloration" + ], + "slender footed tyrannulet": [ + "back: light olive-green feathers", + "beak: thin, slightly curved, blackish-gray", + "belly: off-white with pale yellow tint", + "breast: pale yellow-green plumage", + "crown: grayish-olive with faint streaks", + "forehead: subtle yellowish-olive tone", + "eyes: dark with white eye-ring", + "legs: long, slender, dull pinkish-gray", + "wings: olive-green with light wing bars", + "nape: pale olive-green with slight streaks", + "tail: long, pointy, olive-green feathers", + "throat: soft whitish-yellow hue" + ], + "slender tailed nightjar": [ + "back: soft feathered with earthy-brown mottling", + "beak: short, dark-colored, and slightly curved", + "belly: light beige with sparse dark streaks", + "breast: brownish-grey, finely speckled with dark marks", + "crown: dull brown, finely speckled with lighter shades", + "forehead: slightly paler, small black speckles", + "eyes: large, dark, for good night vision", + "legs: slender, pale grey, with dark clawed feet", + "wings: long, patterned with various shades of brown", + "nape: brown, thin whitish streak behind eye", + "tail: elongated, slender, and patterned like wings", + "throat: lighter brown with faint dark streaks" + ], + "slender tailed woodstar": [ + "back: iridescent green with subtle streaks", + "beak: thin, straight, and black", + "belly: light gray and fluffy", + "breast: vibrant lavender hue", + "crown: shining green with hints of purple", + "forehead: bright emerald green", + "eyes: small, round, and black", + "legs: thin, agile, with dark gray claws", + "wings: elongated, curved, and narrow", + "nape: greenish-blue with a metallic sheen", + "tail: long, slender, and forked", + "throat: brilliant magenta with feather tufts" + ], + "small blue kingfisher": [ + "back: vibrant turquoise feathers", + "beak: long, narrow, dark grey", + "belly: white, feathery underside", + "breast: bright orange feathers", + "crown: rich blue feathers, slightly crested", + "forehead: bold blue plumage", + "eyes: large, round, dark brown", + "legs: short, grey, with strong feet", + "wings: shimmering blue-green feathers", + "nape: brilliant metallic blue feathers", + "tail: long, deep blue, graduated feathers", + "throat: white, soft feathery texture" + ], + "small buttonquail": [ + "back: brownish plumage with streaks", + "beak: short, stout, and conical", + "belly: pale cream with subtle black markings", + "breast: buff-colored with dark spots", + "crown: rufous or brown, streaked with black", + "forehead: lighter brown with black stripe", + "eyes: small dark bead-like orbs", + "legs: short with three forward-facing toes", + "wings: rounded, brown with white spots", + "nape: brown with black streaks", + "tail: short, fan-shaped brown feathers", + "throat: pale cream or white with minimal markings" + ], + "small ground finch": [ + "back: olive-brown with dark feathers", + "beak: short and stout, black", + "belly: light chestnut-brown", + "breast: pale with slight streaks", + "crown: dark grayish-brown", + "forehead: slightly lighter brown", + "eyes: dark brown, small", + "legs: short and strong, black", + "wings: olive-brown with dark feather tips", + "nape: grayish-brown", + "tail: short and square, brown", + "throat: pale chestnut-brown with faint streaks" + ], + "small lifou white eye": [ + "back: vibrant green feathers", + "beak: short, curved, black", + "belly: pale greyish-white", + "breast: delicate whitish-yellow", + "crown: bright olive-green", + "forehead: lighter green patch", + "eyes: large, dark, encircled by white rings", + "legs: thin, pale grey", + "wings: green with yellowish edges", + "nape: greenish-yellow with smooth feathering", + "tail: short, olive-green, slightly forked", + "throat: soft white with faint yellow tinge" + ], + "small minivet": [ + "back: olive-yellow with contrasting black streaks", + "beak: slim, dark gray or black, and slightly curved", + "belly: lemon-yellow hue with some grayish markings", + "breast: warm yellow, blending into the belly", + "crown: contrasting black cap on the head", + "forehead: a blend of black crown and yellow face", + "eyes: round, dark, and well-defined", + "legs: slender, grayish-black with sharp claws", + "wings: bright yellow and black pattern, with distinct white edges", + "nape: yellow, blending into the black crown and back", + "tail: elongated with black and white markings on feathers", + "throat: lemon-yellow, seamlessly blending with breast" + ], + "small niltava": [ + "back: vibrant blue feathers", + "beak: small, sharp, and black", + "belly: white and blue gradient", + "breast: striking blue hue", + "crown: deep blue plumage", + "forehead: electric blue feathers", + "eyes: round and black, piercing gaze", + "legs: slender and grey", + "wings: bright blue with shades of cobalt", + "nape: mix of blue and grey feathers", + "tail: long and blue with white tips", + "throat: intense blue, fading to white" + ], + "small pratincole": [ + "back: brownish-grey with pale feather edges", + "beak: short, black, and pointed", + "belly: whitish with some grey tint", + "breast: light brownish-grey", + "crown: dark brown with faint streaks", + "forehead: whitish, blending into brown crown", + "eyes: dark and round, surrounded by pale feathering", + "legs: slender and yellowish", + "wings: pointed with dark brown and grey feathers", + "nape: brownish-grey with pale feather edges", + "tail: slightly forked, dark brown and white-edged", + "throat: white with a fine black border" + ], + "small sparrowhawk": [ + "back: slate gray feathers with thin, white edges", + "beak: sharp, hooked, yellow-orange with a black tip", + "belly: creamy-white with thin, reddish-brown bars", + "breast: white with reddish-brown streaks", + "crown: blue-gray with faint, darker streaks", + "forehead: pale gray blending into the crown", + "eyes: piercing, bright yellow-orange with black pupils", + "legs: long, slender, yellow-orange with sharp talons", + "wings: broad, rounded, gray-blue with dark barring", + "nape: gray-blue with thin, white edges on feathers", + "tail: long, gray-blue with dark bands and white tip", + "throat: white with fine, reddish-brown streaks" + ], + "small tree finch": [ + "back: brownish-olive feathers", + "beak: short, stout, and slightly curved", + "belly: pale cream-colored", + "breast: light greyish-brown", + "crown: darker olive-brown", + "forehead: smooth, mottled feathers", + "eyes: black, alert orbs", + "legs: slender, pale grey", + "wings: brown, triangular, and symmetrical", + "nape: brown, sleek feathers", + "tail: short, rounded, olive-brown", + "throat: creamy white with faint brown streaks" + ], + "small billed elaenia": [ + "back: light olive-green", + "beak: thin, pointy, dark gray", + "belly: pale yellowish-white", + "breast: softly streaked, grayish-white", + "crown: dusky olive, hidden crest", + "forehead: smooth, pale gray", + "eyes: dark, round, surrounded by faint eye-ring", + "legs: slender, grayish-brown", + "wings: dark gray, feathered with pale edges", + "nape: olive-green, continuous with back", + "tail: dusky gray, forked with white tail tips", + "throat: unstreaked, pale grayish-white" + ], + "small billed tinamou": [ + "back: sleek, light brown feathers", + "beak: short, curved, and slender", + "belly: soft, cream-colored feathers", + "breast: pale brown, speckled with darker spots", + "crown: rounded with brownish-gray feathers", + "forehead: light brown with faint markings", + "eyes: small, black, and bright", + "legs: strong, grayish-blue with three forward-facing toes", + "wings: rounded, brown with barred pattern", + "nape: light brown with faint streaks", + "tail: short, brown, and slightly curved", + "throat: smooth, cream-colored feathers" + ], + "small headed elaenia": [ + "back: olive-green feathers", + "beak: thin and pointy", + "belly: off-white/light gray", + "breast: pale grayish-white", + "crown: dusky gray", + "forehead: pale, light gray", + "eyes: small and black", + "legs: thin and dark gray", + "wings: olive-brown, tapering", + "nape: pale gray-brown", + "tail: short and slightly forked", + "throat: light grayish-white" + ], + "smew": [ + "back: sleek white and gray feathers", + "beak: thin and pointed, dark color", + "belly: bright white plumage", + "breast: predominantly white with gray markings", + "crown: black with a white crest", + "forehead: white blending into the black crown", + "eyes: dark and round, set in white face", + "legs: orange-red with webbed feet", + "wings: white with black patches, streamlined", + "nape: black, extending into crown", + "tail: short, black and white feathers", + "throat: white, continues from belly and breast" + ], + "smoke colored pewee": [ + "back: grayish smoky hue", + "beak: slender, black, and slightly curved", + "belly: pale gray-white", + "breast: smoky gray with faint streaks", + "crown: dark gray and crested", + "forehead: lighter gray, blending into darker crown", + "eyes: dark and alert, surrounded by blackish eyeline", + "legs: thin and blackish", + "wings: smoky gray with faint white wing bars", + "nape: gray, blending with crown and back", + "tail: dark gray with white outer tail feathers", + "throat: pale gray, contrasting with the breast" + ], + "smoky bush tyrant": [ + "back: grayish-brown feathers with a smoky hue", + "beak: short, strong, and hooked, with a dark color", + "belly: lighter grayish-brown feathers with a pale tint", + "breast: subtle smoky-color feathers transitioning to the belly", + "crown: slightly darker grayish-brown feathers than the back", + "forehead: a touch of dull chestnut color when viewed at certain angles", + "eyes: small and dark with a keen gaze", + "legs: sturdy and featherless, with a dark color", + "wings: long, grayish-brown feathers with a smoky tint", + "nape: lighter grayish-brown than the crown, blending in with the back", + "tail: medium-length with smoky-gray feathers, slightly darker edges", + "throat: modest light grayish-brown, paler than the rest of the body" + ], + "smoky honeyeater": [ + "back: dark gray feathers with slight green sheen", + "beak: sturdy, black, and slightly curved", + "belly: dull gray with a lighter hue", + "breast: smoky gray with subtle green gloss", + "crown: deep gray with a hint of metallic green", + "forehead: dark grayish-green feathers", + "eyes: small, round, and black", + "legs: black, robust, and scaly", + "wings: long and dark grayish-green", + "nape: smoky gray with a slight green sheen", + "tail: long, tapered, and deep gray with green undertones", + "throat: lighter gray with a bit of iridescence" + ], + "smoky robin": [ + "back: smoky gray with subtle brown hues", + "beak: sleek, thin and black", + "belly: pale grayish-white", + "breast: light smoky gray with a hint of rust", + "crown: smoky gray with a slight brown tint", + "forehead: grayish-brown with a smooth curve", + "eyes: dark, bright, and alert", + "legs: slender and black", + "wings: smoky gray with distinct white wing-bars", + "nape: smoky gray seamlessly merging with the crown", + "tail: medium-length, smoky gray with a touch of brown", + "throat: pale grayish-white blending into the breast" + ], + "smoky warbler": [ + "back: smoky gray with subtle feather patterns", + "beak: small, slender, and black", + "belly: light smoky gray with pale streaks", + "breast: smoky gray with faint darker streaks", + "crown: dark gray with a hint of blue", + "forehead: lighter gray with a slight curve", + "eyes: small, dark, and well-defined", + "legs: thin, dark gray, with delicate talons", + "wings: smoky gray with faint black bars", + "nape: smoky gray with a slight sheen", + "tail: long, smoky gray with white outer edges", + "throat: light smoky gray with indistinct darker streaks" + ], + "smoky brown woodpecker": [ + "back: smoky brown plumage with faint barring", + "beak: sturdy, straight and dark in color", + "belly: light smoky brown with a subtle hue", + "breast: slightly paler brown with a smooth texture", + "crown: rich smoky brown with a sleek appearance", + "forehead: lighter brown with fine dense feathers", + "eyes: small, dark, and expressive", + "legs: strong and grayish-brown", + "wings: smoky brown with distinct light barring", + "nape: soft brown transitioning from the crown", + "tail: long, smoky brown with faint barring", + "throat: pale brown with delicate feathers" + ], + "smoky fronted tody flycatcher": [ + "back: smoky-gray feathers", + "beak: short, black, and pointed", + "belly: pastel yellow plumage", + "breast: pale gray with subtle yellow undertones", + "crown: dark gray feathers with slight crest", + "forehead: smoky gray, blending with the crown", + "eyes: dark brown with a small white eye-ring", + "legs: thin, gray, and sturdy", + "wings: gray with black flight feathers and white edging", + "nape: smoky-gray, transitioning from the crown", + "tail: dark gray with white outer tail feather tips", + "throat: pale gray, softly contrasting with the breast" + ], + "smooth billed ani": [ + "back: sleek black feathers", + "beak: sturdy, smooth black bill", + "belly: soft, black underbelly", + "breast: glossy black plumage", + "crown: shiny black head feathers", + "forehead: smooth black contour", + "eyes: piercing white-rimmed, black-round eyes", + "legs: long, slender black legs", + "wings: broad, well-feathered black wings", + "nape: shiny black neck feathers", + "tail: long, fan-like black tail feathers", + "throat: slender black throat plumage" + ], + "snares island snipe": [ + "back: brown and striped with dense cover of feathers", + "beak: long, slender, and slightly curved downward", + "belly: white with faint brown bars", + "breast: white with dark horizontal streaks", + "crown: brown with a central, paler stripe", + "forehead: light brown with dark brown streaks", + "eyes: small and dark, surrounded by light brown feathers", + "legs: long, thin and yellowish-orange", + "wings: brown with white and dark brown stripes, rounded shape", + "nape: brown with lighter streaks on either side", + "tail: short and squared off, brown with white outer feathers", + "throat: white with streaks of brown" + ], + "snares penguin": [ + "back: sleek, black feathers forming a streamlined dorsal surface", + "beak: strong, slightly curved, and sharp for catching fish", + "belly: soft, white feathers for underbelly insulation", + "breast: white, rounded, and puffed out for added warmth", + "crown: smooth black feathers covering the top of the head", + "forehead: black feathers above the eyes merging with the crown", + "eyes: comparatively large, round, and dark for enhanced underwater vision", + "legs: short, strong, and paddle-like for swimming and waddling", + "wings: sturdy, paddle-like flippers for underwater propulsion", + "nape: black feathers at the back of the neck between the crown and the back", + "tail: short, wedge-shaped feathers for steering in the water", + "throat: feathered, white, and slightly tucked in for protection" + ], + "snethlage antpitta": [ + "back: olive-brown feathers with paler streaks", + "beak: short, stout, and slightly hooked", + "belly: grayish-white with faint brown speckling", + "breast: pale gray with subtle barring", + "crown: olive-brown with a reddish tinge", + "forehead: slightly paler than the crown", + "eyes: dark, almond-shaped, with white eye-ring", + "legs: long, slender, and pale pink", + "wings: short, rounded, with subtle olive-brown bars", + "nape: olive-brown with reddish tinge, like the crown", + "tail: short, fan-shaped, with pale brown bars", + "throat: whitish-gray with faint streaks" + ], + "snethlage tody tyrant": [ + "back: olive-green with slight sheen", + "beak: black, short and stout", + "belly: off-white to pale yellow, fluffy", + "breast: light olive-green, soft feathers", + "crown: olive-green with slightly darker streaks", + "forehead: light olive-green, smooth feathers", + "eyes: dark brown, bold expression", + "legs: pale pink to grey, slender and long", + "wings: olive-green with dark brown feather edges", + "nape: olive-green with darker streaks, connecting crown and back", + "tail: olive-green, short and fan-shaped", + "throat: pale grey, smooth feathers" + ], + "snoring rail": [ + "back: vibrant, striped plumage", + "beak: sharp, slender, and slightly curved", + "belly: soft, pale, speckled feathers", + "breast: rounded, covered in light plumage", + "crown: dark iridescent feathers forming a crest", + "forehead: smooth, sleek feathers", + "eyes: round, dark, and alert", + "legs: long, thin, and strong for wading", + "wings: wide, rounded for short flights", + "nape: distinct color markings around the neck", + "tail: long, slim, with elongated feathers", + "throat: delicate, lighter-colored plumage" + ], + "snow mountain munia": [ + "back: dark brown feathers with light spiraling pattern", + "beak: short, conical, and silver-grey", + "belly: pale grey with slight brownish tint", + "breast: whitish-grey plumage", + "crown: dark brown feathers with light streaks", + "forehead: brown with a light streak pattern", + "eyes: black, round, set within white eye-ring", + "legs: short, sturdy, black legs with grey scaling", + "wings: dark brown with white feather edges", + "nape: dark brown with small white stripes", + "tail: long and tapering, dark brown with white edges", + "throat: light grey with pale brown edges" + ], + "snow mountain quail": [ + "back: sleek, camouflaged feathers", + "beak: short, stout, conical", + "belly: light, speckled plumage", + "breast: soft, grayish-brown feathers", + "crown: dark, distinct crest", + "forehead: lighter feathers, blending into crown", + "eyes: small, black, alert", + "legs: feathered, well-adapted for cold habitats", + "wings: strong, sturdy, rounded", + "nape: smooth, transition from crown to back", + "tail: short, fan-shaped, patterned", + "throat: unmarked, lighter-colored feathers" + ], + "snow mountain robin": [ + "back: soft, greyish-white feathers", + "beak: small, pointed, black", + "belly: white, with light grey speckles", + "breast: lightly speckled grey", + "crown: blueish-grey feathered crest", + "forehead: blue-grey, smooth feathers", + "eyes: round, dark, alert", + "legs: thin, black, elongated", + "wings: blue-grey, with white patches", + "nape: smooth, blue-grey feathers", + "tail: short, blue-grey feathers", + "throat: white, with light grey speckles" + ], + "snow petrel": [ + "back: sleek, white plumage", + "beak: black, hooked tip", + "belly: white, feathered", + "breast: snowy white fluff", + "crown: smooth, white feathers", + "forehead: white, gently sloping", + "eyes: black, beady gaze", + "legs: black, webbed feet", + "wings: long, white, angular", + "nape: white, slender neck", + "tail: short, white, fan-like", + "throat: white, softly feathered" + ], + "snow pigeon": [ + "back: light gray feathers with smooth texture", + "beak: short, stout, and black", + "belly: pale gray with a white undertone", + "breast: soft gray with a faint white hue", + "crown: slightly darker gray feathers on the top of the head", + "forehead: pale gray and smooth feathers above the beak", + "eyes: small, round, and dark with a white eye-ring", + "legs: short and pinkish-gray with black talons", + "wings: light gray with darker flight feathers and a white bar", + "nape: pale gray feathers transitioning into the back", + "tail: gray with a black band and white end tips", + "throat: white feathers extending from beak to upper breast" + ], + "snow capped manakin": [ + "back: vibrant green plumage", + "beak: short and black", + "belly: pale yellow underside", + "breast: bright yellow feathers", + "crown: snowy white crest", + "forehead: white plumage blending into green", + "eyes: small and black", + "legs: dark gray with strong feet", + "wings: green with flight feathers", + "nape: green with hints of white", + "tail: green and well-rounded", + "throat: white, contrasting with breast" + ], + "snowcap": [ + "back: greenish-black feathers", + "beak: short and slender, black", + "belly: white, with a few black streaks", + "breast: snow-white plumage", + "crown: bright red cap", + "forehead: red feathers meeting the beak", + "eyes: round and black, with a white ring", + "legs: short and sturdy, grayish-black", + "wings: green-black with lighter edges", + "nape: greenish-black feathers, lighter than the back", + "tail: long and forked, green-black feathers", + "throat: white, blending into the breast" + ], + "snowy cotinga": [ + "back: soft pale blue-gray plumage", + "beak: short and black, finch-like", + "belly: white to pale blue soft feathers", + "breast: pale blue with a subtle gradient to white", + "crown: splendid sky-blue feathers", + "forehead: vibrant sky-blue plumage", + "eyes: small and black, with a slight white ring", + "legs: slender black legs and feet", + "wings: pale blue-gray with white flight feathers", + "nape: soft blue transitioning to sky-blue", + "tail: long and white, with a slight blue hue", + "throat: white with a pale blue gradient" + ], + "snowy bellied hummingbird": [ + "back: iridescent green feathers", + "beak: slender, straight, and black", + "belly: snowy white shade", + "breast: bright white hue", + "crown: shimmering green tones", + "forehead: luminous green appearance", + "eyes: small, black, and beady", + "legs: delicate, dark grey limbs", + "wings: rapid, agile, and iridescent", + "nape: glistening green patch", + "tail: blackish-green, forked feathers", + "throat: glinting green, subtle coloration" + ], + "snowy browed flycatcher": [ + "back: olive-green upperparts", + "beak: thin and pointy black beak", + "belly: white lower belly", + "breast: pale orange upper breast", + "crown: bluish-gray head", + "forehead: snowy white eyebrows", + "eyes: dark, round eyes with white eye-ring", + "legs: long and thin gray legs", + "wings: dark gray with pale feather edgings", + "nape: bluish-gray nape", + "tail: dark gray with white outer feathers", + "throat: white throat" + ], + "snowy browed nuthatch": [ + "back: slate blue-grey plumage", + "beak: sturdy and pointy", + "belly: white with chestnut markings", + "breast: white, slightly barred", + "crown: snowy white with thick black line", + "forehead: snowy white", + "eyes: dark, beady with white eye-ring", + "legs: short and strong", + "wings: blue-grey with white-barred flight feathers", + "nape: black line extending from the crown", + "tail: slate blue-grey with white tips", + "throat: white, unmarked" + ], + "snowy cheeked laughingthrush": [ + "back: dark brown with faint blackish markings", + "beak: strong, black curved bill", + "belly: creamy-white with black streaks", + "breast: white with distinctive black streaks", + "crown: dark brown with a slight crest", + "forehead: dark brown, slightly fluffy appearance", + "eyes: dark, surrounded by thin white eyering", + "legs: strong, pale pinkish-grey", + "wings: dark brown with white and black edged feathers", + "nape: dark brown, continuous with the crown", + "tail: long, dark brown with white tips", + "throat: white, contrasting with the streaked breast" + ], + "snowy crowned robin chat": [ + "back: olive-brown feathers", + "beak: short, curved, black", + "belly: white and golden-yellow", + "breast: bright, orange-red", + "crown: snow-white feathers", + "forehead: white bordered with black", + "eyes: dark, expressive", + "legs: long, slender, gray", + "wings: olive-brown with black markings", + "nape: black and white stripes", + "tail: olive-brown with white tips", + "throat: white transitioning to orange-red breast" + ], + "snowy crowned tern": [ + "back: sleek, white feathers", + "beak: long, thin, pointed, and black", + "belly: pristine white and soft", + "breast: white, slightly puffed", + "crown: snowy white plume", + "forehead: white feathers with a hint of black", + "eyes: dark, sharp, inquisitive", + "legs: slender, long, black", + "wings: white with a wingspan perfect for gliding", + "nape: white with fine feather texture", + "tail: white, central tail feathers elongated", + "throat: pure white and smooth" + ], + "snowy throated babbler": [ + "back: light brown with subtle markings", + "beak: relatively small, black and curved", + "belly: white with light brown streaks", + "breast: white with light brown streaks", + "crown: distinct grayish-blue color", + "forehead: faint grayish-blue color", + "eyes: small, round, and dark", + "legs: slender, medium length, pale-colored", + "wings: light brown with faint patterning", + "nape: grayish-blue with light feather texture", + "tail: elongated, light brown with faint markings", + "throat: striking white color, giving the bird its name" + ], + "snowy throated kingbird": [ + "back: grayish-green plumage", + "beak: long, black, and pointed", + "belly: white and fluffy feathers", + "breast: white with a faint grayish hue", + "crown: deep gray with a slight crest", + "forehead: light gray feathers", + "eyes: round, small, and black", + "legs: thin, black, and scaly", + "wings: grayish-green with white-edged secondary feathers", + "nape: light gray transitioning from the crown", + "tail: long, black with white outer feathers", + "throat: distinctive snowy white patch" + ], + "sociable lapwing": [ + "back: olive-brown with white streaks", + "beak: short, black, and pointed", + "belly: white, lightly streaked", + "breast: white with black border", + "crown: black and white pattern", + "forehead: white stripe above eyes", + "eyes: dark, with white eye-ring", + "legs: long, yellowish-green", + "wings: broad, rounded, brown with white patches", + "nape: white, separating black cap from back", + "tail: black and white, with prominent banding", + "throat: white and unmarked" + ], + "sociable weaver": [ + "back: light brown and gray feathers", + "beak: short, hooked, gray", + "belly: soft white feathers", + "breast: cream-colored plumage", + "crown: brownish-gray feathers", + "forehead: pale brown with fine streaks", + "eyes: small, dark, and expressive", + "legs: thin, gray, and strong", + "wings: brown with black barring", + "nape: gray-brown with fine streaks", + "tail: short, square, dark brown", + "throat: white with light streaks" + ], + "social flycatcher": [ + "back: olive-green feathered upper body", + "beak: short, thick, black and hooked", + "belly: pale yellow lower body", + "breast: creamy white chest area", + "crown: grayish head with slight crest", + "forehead: yellow patch above beak", + "eyes: dark, round, and alert", + "legs: sturdy, dark-colored limbs", + "wings: olive-green, short and rounded", + "nape: grayish transition from crown to back", + "tail: long, dark, and slightly forked", + "throat: white and unmarked" + ], + "society kingfisher": [ + "back: iridescent azure blue", + "beak: long, sturdy, and dagger-like", + "belly: orange-yellow hue", + "breast: vibrant orange-red color", + "crown: bright blue with an eye-catching crest", + "forehead: metallic blue band", + "eyes: large, dark, and expressive", + "legs: short with sharp claws", + "wings: vivid blue with dark black tips", + "nape: bright azure blue, connecting crown and back", + "tail: long, banded blue and black feathers", + "throat: deep orange hue with white borders" + ], + "socorro dove": [ + "back: smooth, light brown feathers", + "beak: short, stout, and pale pinkish-gray", + "belly: pale buff with a hint of pinkish-orange", + "breast: creamy, pale pinkish-brown with subtle streaks", + "crown: warm reddish-brown, darker than back", + "forehead: slightly lighter reddish-brown than crown", + "eyes: dark brown with thin, pale eyering", + "legs: pinkish-gray, sturdy with short toes", + "wings: light brown with darker brown covert feathers", + "nape: slightly lighter reddish-brown than crown", + "tail: light brown with dark brown tips and white outer tail feathers", + "throat: soft, pale buff coloration" + ], + "socorro mockingbird": [ + "back: grayish-brown with a slight olive tint", + "beak: long, dark, slightly curved", + "belly: off-white with faint streaks", + "breast: pale gray with faint streaks", + "crown: grayish-brown with olive tint", + "forehead: paler gray than the crown", + "eyes: dark with a pale eye-ring", + "legs: dark gray with long, thin legs", + "wings: grayish-brown with white streaks", + "nape: grayish-brown, slightly darker than the crown", + "tail: long and dark with white outer feathers", + "throat: off-white, accentuating the bird's dark beak" + ], + "socorro parakeet": [ + "back: vibrant green feathers", + "beak: short and hooked, light grey", + "belly: pale green transitioning to yellow", + "breast: bright green plumage", + "crown: deep green feathers with blue tinge", + "forehead: yellowish-green with faint blue markings", + "eyes: black with small white eye-ring", + "legs: grey and slender with strong claws", + "wings: green with sky blue and teal coloration", + "nape: yellowish-green with blue wash", + "tail: long and tapered, blue-green with yellowish tips", + "throat: greenish-yellow plumage" + ], + "socorro wren": [ + "back: brownish-gray feathers and markings", + "beak: slender, slightly curved, black", + "belly: pale buff underside", + "breast: light gray-brown with small streaks", + "crown: reddish-brown with streaks", + "forehead: brownish-gray with faint streaks", + "eyes: dark with white eyering", + "legs: slender, black or gray", + "wings: brownish-gray with rufous bars", + "nape: reddish-brown with streaks", + "tail: long, brown, with faint bars", + "throat: pale gray-brown with subtle streaks" + ], + "socotra bunting": [ + "back: brownish-gray with prominent streaks", + "beak: strong, conical, and silver-gray", + "belly: light buff with faint streaks", + "breast: warm brownish-gray with subtle streaks", + "crown: dark brown with clear streaks", + "forehead: slightly paler brown with faint streaks", + "eyes: small, dark, and surrounded by a faint eye-ring", + "legs: slender and pale pinkish-gray", + "wings: brown with white-tipped coverts forming two wing-bars", + "nape: streaked brown, blending with the crown", + "tail: dark brown with white outer tail feathers", + "throat: creamy-white with sparse streaks" + ], + "socotra buzzard": [ + "back: light brown with dark streaks", + "beak: dark, hooked tip with a yellow base", + "belly: white with brown streaks", + "breast: white with brown streaks and spots", + "crown: light brown with dark streaks", + "forehead: light brown with dark streaks", + "eyes: dark brown, piercing gaze", + "legs: yellow with orange tinges, strong talons", + "wings: broad, light brown with dark spots and streaks", + "nape: light brown with dark streaks", + "tail: brown with dark bands, square-shaped", + "throat: white, unmarked" + ], + "socotra cisticola": [ + "back: golden-brown with faint streaking", + "beak: thin, pointed, black upper, pale lower", + "belly: pale buff, light ventral region", + "breast: golden-brown with streaked detail", + "crown: rufous, heavily streaked brown-black", + "forehead: pale buff blending into crown", + "eyes: dark brown, surrounded by pale eyering", + "legs: pale pinkish-gray, slender", + "wings: golden-brown with darker brown flight feathers", + "nape: golden-brown with slight streaking", + "tail: rufous-brown, slightly forked with dark banding", + "throat: lightly streaked, pale buff color" + ], + "socotra cormorant": [ + "back: dark glossy feathers", + "beak: long and slightly curved", + "belly: blackish-brown plumage", + "breast: smooth dark feathers", + "crown: black with minimal crest", + "forehead: glossy black and uncrested", + "eyes: emerald-green and bright", + "legs: short and sturdy", + "wings: lengthy and dark-colored", + "nape: black with slight curve", + "tail: long and wedge-shaped", + "throat: black and slender" + ], + "socotra grosbeak": [ + "back: rusty brown with dark streaks", + "beak: thick, conical, silver-gray", + "belly: pale white with brown streaks", + "breast: pale white with brown streaks", + "crown: rusty brown with dark streaks", + "forehead: silvery-gray", + "eyes: black with white eye-ring", + "legs: pale pinkish-gray", + "wings: rusty brown with white streaks", + "nape: rusty brown", + "tail: rusty brown with dark bands", + "throat: pale white" + ], + "socotra scops owl": [ + "back: brownish-grey feathers with black streaks", + "beak: hooked and dark grey", + "belly: buff with bold black streaks", + "breast: pale beige with dark streaks", + "crown: greyish-brown and streaked", + "forehead: pale grey and streaked", + "eyes: large, vibrant yellow", + "legs: feathered and greyish-brown", + "wings: dark brown with buff spots", + "nape: greyish-brown with black markings", + "tail: long and barred with brown and buff", + "throat: pale buff with streaks" + ], + "socotra sparrow": [ + "back: brownish-grey with dark streaks", + "beak: short, conical, and black", + "belly: pale greyish-white", + "breast: light brown with dark streaks", + "crown: chestnut with a thin black stripe", + "forehead: chestnut colored", + "eyes: dark, surrounded by a pale eyering", + "legs: sturdy, pinkish-brown", + "wings: brownish-grey with white-tipped feathers", + "nape: chestnut brown", + "tail: brownish-grey with blackish outer feathers", + "throat: white with fine dark streaks" + ], + "socotra starling": [ + "back: dark gray plumage", + "beak: sturdy, black, and slightly curved", + "belly: white with gray streaks", + "breast: grayish-white feathers", + "crown: smooth, dark gray", + "forehead: slightly lighter gray than crown", + "eyes: small and black", + "legs: strong, dark legs with sharp talons", + "wings: blackish-gray with white-tipped feathers", + "nape: dark gray, continuous with crown", + "tail: long, black, and slightly forked", + "throat: grayish-white, matching breast" + ], + "socotra sunbird": [ + "back: deep olive-green with a slight sheen", + "beak: long, curved, and blackish", + "belly: creamy-yellow fading to white", + "breast: vibrant orange-red", + "crown: glossy dark green", + "forehead: slightly lighter green than crown", + "eyes: dark, round, and bead-like", + "legs: grayish-black and slender", + "wings: olive-green with a bluish sheen", + "nape: olive-green, connecting to crown", + "tail: long, forked with outer feathers tipped white", + "throat: bright yellow-orange, contrasting with breast" + ], + "socotra warbler": [ + "back: olive-brown with subtle streaks", + "beak: black and pointy for catching insects", + "belly: pale, cream-colored underside", + "breast: light, brownish cream plumage", + "crown: reddish-brown cap on head", + "forehead: olive-brown, slightly paler than crown", + "eyes: round with a white eye-ring", + "legs: long, pinkish-gray, good climbers", + "wings: olive-brown with faint streaks, rounded tips", + "nape: reddish-brown, blending with crown", + "tail: olive-brown with dark barring, slightly forked", + "throat: cream-colored, blending with breast" + ], + "socotra white eye": [ + "back: olive-brown with slight sheen", + "beak: short and sharp, pale grayish-blue", + "belly: pale yellowish-white", + "breast: light olive-gray", + "crown: grayish olive-green", + "forehead: brighter olive-green", + "eyes: large and white-rimmed, dark brown iris", + "legs: slender grayish-blue", + "wings: olive-brown with paler edges", + "nape: grayish olive-green", + "tail: long and slim, olive-brown with white tips", + "throat: pale grayish-white" + ], + "soft plumaged petrel": [ + "back: grayish-black feathers", + "beak: dark, hooked tip", + "belly: soft, white underparts", + "breast: white, fluffy feathers", + "crown: dark, smooth feathers", + "forehead: white-to-gray gradient", + "eyes: black, round, and alert", + "legs: pinkish-gray and slender", + "wings: long, narrow, and blackish-gray", + "nape: white-to-gray transition", + "tail: dark, forked feathers", + "throat: white, smooth feathers" + ], + "sokoke pipit": [ + "back: brownish, streaked plumage", + "beak: thin, straight, and pointed", + "belly: pale, buff-colored with minimal streaks", + "breast: buffy-brown, slightly streaked", + "crown: brown with distinct streaks", + "forehead: buffy-brown, blending with crown", + "eyes: dark with white eye-ring", + "legs: long, slender, and pale", + "wings: brown, streaked with coverts", + "nape: brown, matching crown color", + "tail: moderately long, notched, brown with white outer feathers", + "throat: pale, buff with subtle streaks" + ], + "sokoke scops owl": [ + "back: grayish-brown with darker markings", + "beak: small, curved, and light gray", + "belly: pale buff with dark streaks", + "breast: grayish-buff with dark markings", + "crown: dark gray with lighter speckles", + "forehead: light grayish-brown", + "eyes: bright yellow with dark outlines", + "legs: feather-covered with strong talons", + "wings: mottled gray and brown with distinct barring", + "nape: grayish-brown with lighter markings", + "tail: long, narrow, and dark brown with light bands", + "throat: light gray with pale streaks" + ], + "solitary black cacique": [ + "back: sleek black feathers", + "beak: strong, slightly curved", + "belly: smooth dark plumage", + "breast: full black chest feathers", + "crown: glossy dark head feathers", + "forehead: black plumage fading to the beak", + "eyes: piercing and dark", + "legs: long, thin, and black", + "wings: elegant dark feathers", + "nape: perfectly adorned black feathers", + "tail: elongated dark plumes", + "throat: black feathers connecting breast and face" + ], + "solitary eagle": [ + "back: dark brown feathers with slight shimmer", + "beak: strong, sharp, black hooked beak", + "belly: lighter brown feathers, slightly mottled", + "breast: dark brown feathers with white speckles", + "crown: smooth, dark brown plumage", + "forehead: sleek dark brown feathers", + "eyes: piercing yellow eyes with a sharp gaze", + "legs: yellow, powerful legs with sharp talons", + "wings: broad, dark brown wings with fingered tips", + "nape: dark brown feathers with white speckles", + "tail: wide, fan-shaped, dark brown with light banding", + "throat: dark brown with slight white speckling" + ], + "solitary snipe": [ + "back: dark brown with white stripes and bars", + "beak: long, straight and dark-tipped", + "belly: pale white with fine speckles", + "breast: brownish-grey with white and dark streaks", + "crown: dark brown with white streaks", + "forehead: brownish-grey", + "eyes: dark and small", + "legs: yellowish-green and long", + "wings: dark brown with white and buff markings", + "nape: brown with finely streaked whitish markings", + "tail: dark brown with white bars", + "throat: pale buff-white" + ], + "solitary tinamou": [ + "back: earthy brown, slightly curved", + "beak: short and stout, pale yellow", + "belly: soft under feathers, creamy color", + "breast: light brown, rounded shape", + "crown: subtle crest, dark brown", + "forehead: smooth, lighter brown", + "eyes: small, dark brown, round", + "legs: strong, greyish-blue, 3-toed", + "wings: short, rounded, brown with speckles", + "nape: brownish-grey, gently sloping", + "tail: short, pointed, dark brown", + "throat: lighter brown, smooth plumage" + ], + "solomons cuckooshrike": [ + "back: olive-brown plumage", + "beak: short, hooked, and dark gray", + "belly: pale grayish-white", + "breast: light gray with faint streaks", + "crown: olive-brown feathers", + "forehead: slightly paler olive-brown", + "eyes: small, round, with black irises", + "legs: sturdy, dark gray", + "wings: olive-brown with white wing bars", + "nape: olive-brown, blending with the crown", + "tail: long, olive-brown with slightly rounded tip", + "throat: pale gray, faded streaks" + ], + "solomons frogmouth": [ + "back: dark brownish-grey with intricate patterns", + "beak: short, wide, and hooked", + "belly: soft, pale greyish-brown with faint streaks", + "breast: buff or grey-brown with blackish streaks", + "crown: dark brownish-grey, finely speckled", + "forehead: pale creamy-brown with black speckles", + "eyes: large, forward-facing, yellow-orange", + "legs: short, feathered with strong feet", + "wings: rounded, camouflaged with intricate patterns", + "nape: finely mottled with pale highlights", + "tail: broad, medium-length, barred with dark bands", + "throat: pale greyish-brown with fine streaks" + ], + "solomons nightjar": [ + "back: mottled brown and gray plumage", + "beak: short, wide, and pointed", + "belly: pale buff with brown pattern", + "breast: light brown with dark markings", + "crown: flat, grayish-brown with streaks", + "forehead: light grayish-brown with streaks", + "eyes: large, dark, and prominent", + "legs: short, feather-covered with strong feet", + "wings: long, pointed, and mottled with brown and gray", + "nape: brownish-gray with streaks", + "tail: long, pointed, and patterned with brown and buff", + "throat: light buff with pale streaks" + ], + "solomons white eye": [ + "back: vibrant green feathers", + "beak: thin, pointy, and black", + "belly: pale yellow plumage", + "breast: soft white feathers", + "crown: bright yellow stripe", + "forehead: white with olive-green edging", + "eyes: large, dark, and round with white eye-ring", + "legs: slim, gray, and strong", + "wings: greenish-yellow with bold black markings", + "nape: olive green with yellow tinge", + "tail: short and sprightly, green and black banding", + "throat: delicate white feathers" + ], + "somali bee eater": [ + "back: vibrant green feathers with a slight sheen", + "beak: curved, slender, and black", + "belly: bluish-green feathers transitioning from breast", + "breast: yellow-orange feathers with greenish tinge near wings", + "crown: bright blue-green with dark border", + "forehead: striking bright blue", + "eyes: dark and round, encircled with light blue feathers", + "legs: short and black, with small sharp claws", + "wings: green with blue edges and hints of brown", + "nape: blue-green, merging with the colors of the crown and back", + "tail: long, thin feathers; dark green at the base and light blue at the tips", + "throat: yellow, blending into the breast coloration" + ], + "somali bunting": [ + "back: olive brown with dark streaks", + "beak: short, stout, conical, bluish-grey", + "belly: white with slight grey tint", + "breast: ashy grey with dark streaks", + "crown: chestnut with black streaks", + "forehead: reddish-brown with fine black streaks", + "eyes: black, small, rounded", + "legs: pinkish brown, slender", + "wings: olive brown, black streaks, white tips", + "nape: chestnut-brown with dark streaks", + "tail: olive brown, black bands, white outer feathers", + "throat: white, contrasting with grey breast" + ], + "somali courser": [ + "back: sandy brown color with a streamlined shape", + "beak: short, curved and powerful, greyish hue", + "belly: light cream colored with minimal patterning", + "breast: pale, sandy brown blending seamlessly with the belly", + "crown: soft brown with a smooth transition to the nape", + "forehead: slight intensity of brown hue, prominent eyes", + "eyes: large, striking, and black, surmounted by a slight eyebrow", + "legs: extended and thin, light grey color adapted for running", + "wings: long and pointed with brown and cream feathers, sleek in flight", + "nape: subtle transition from the brownish crown to a creamier hue", + "tail: elegant, slightly elongated, blending from a brown hue to white tips", + "throat: smooth, pale cream, creating a contrast with the sandy brown breast" + ], + "somali crombec": [ + "back: light brownish-grey feathers", + "beak: tiny, slightly curved, and black", + "belly: soft white or greyish-white plumage", + "breast: pale grey with a hint of brown", + "crown: olive-grey feathers with faint streaks", + "forehead: slightly paler grey compared to crown", + "eyes: small, round, and dark", + "legs: delicate, greyish-brown limbs", + "wings: olive-brown with greyish-white tips", + "nape: light olive-grey feathers", + "tail: short, fan-shaped, and pale greyish-brown", + "throat: white or pale grey feathers" + ], + "somali crow": [ + "back: dark grey feathers", + "beak: black, slightly curved", + "belly: light grey plumage", + "breast: dark grey feathers", + "crown: black with shaggy appearance", + "forehead: black, merging with crown", + "eyes: dark brown, piercing gaze", + "legs: black, slender, and strong", + "wings: blackish-grey with elongated feathers", + "nape: greyish-black with shaggy feather texture", + "tail: black, long, and fan-like", + "throat: dark grey with slightly lighter feathers" + ], + "somali fiscal": [ + "back: bluish-grey upper body plumage", + "beak: sharp, slender, black curve", + "belly: vibrant white underside", + "breast: soft white feathers", + "crown: dark blue-black crown", + "forehead: sleek black prominence", + "eyes: round, black, bold gaze", + "legs: long, thin, and grey", + "wings: elegant flight feathers, bluish-grey in color", + "nape: bluish-grey neck plumage", + "tail: long, grayish-blue streamers", + "throat: bright white foreground" + ], + "somali long billed lark": [ + "back: light brown with streaks of white", + "beak: elongated, curved, and dark grey", + "belly: pale cream with subtle striping", + "breast: off-white with brown streaks", + "crown: greyish-brown with faint stripes", + "forehead: light grey blending into crown", + "eyes: small black with white eyelids", + "legs: slender, greyish-brown", + "wings: light brown with white edges and dark markings", + "nape: greyish-brown with a hint of white streaks", + "tail: short and brown with white edges", + "throat: white with light brown streaks" + ], + "somali ostrich": [ + "back: long, strong feathers in a mix of grey and white shades", + "beak: large, sturdy and flat, with a dull grayish-pink hue", + "belly: round and strong, covered in grey and white feathers", + "breast: broad and rounded, with thick, soft feather covering", + "crown: adorned with an array of dense, short feathers in a fan shape", + "forehead: spacious and crested with small, sturdy greyish feathers", + "eyes: dark, round with thick, long lashes, inquisitive gaze", + "legs: long, robust, brownish-grey, with powerful claws and scaly skin", + "wings: relatively small, containing strong, flightless feathers", + "nape: sloping line of feathers connecting the crown to the back", + "tail: short and fan-like, formed by stiff, dark-tipped feathers", + "throat: partially exposed, smooth and light-colored skin, with limited feather coverage" + ], + "somali pigeon": [ + "back: light blue-gray with a smooth texture", + "beak: short, dark gray, curved at the tip", + "belly: soft white feathers with a slight pink tinge", + "breast: rosy pink fading into gray-blue", + "crown: smooth, shiny, and blue-gray colored", + "forehead: slightly lighter shade of blue-gray", + "eyes: bright orange-red with a narrow black ring", + "legs: strong and scaly, reddish-pink in color", + "wings: blue-gray with black bars and white edges", + "nape: darker blue-gray feathers, smoothly transitioning from the crown", + "tail: long, dark gray with white outer feathers and a black band near the tip", + "throat: light gray with a pinkish hue, soft feathers" + ], + "somali short toed lark": [ + "back: light brown with subtle streaks", + "beak: short, sharp, and pale", + "belly: whitish with faint markings", + "breast: buff-white with light streaks", + "crown: brown with subtle feather pattern", + "forehead: pale, blending into crown", + "eyes: small with a dark ring", + "legs: long, slender, and light gray", + "wings: brown with white-tipped feathers", + "nape: light brown blending into the back", + "tail: short and brown with white edges", + "throat: pale with faint streaks" + ], + "somali sparrow": [ + "back: brownish-gray with black streaks", + "beak: conical and silver-gray", + "belly: off-white with black streaks", + "breast: pale buff with black streaks", + "crown: reddish-brown with black streaks", + "forehead: pale gray-white", + "eyes: dark brown with pale gray-white eyering", + "legs: pale pinkish-gray", + "wings: brownish-gray with black streaks and white wing bars", + "nape: reddish-brown with black streaks", + "tail: brown with dark gray-black and white-tipped feathers", + "throat: off-white with black streaks" + ], + "somali starling": [ + "back: iridescent green-blue feathers", + "beak: thick, slightly curved, yellow-orange", + "belly: pale gray-white plumage", + "breast: light blue-gray feathers", + "crown: glossy bluish-green plumage", + "forehead: metallic green sheen", + "eyes: dark brown with white feathered eyering", + "legs: yellowish-orange, sturdy", + "wings: bluish-green feathers with white edges", + "nape: blue-green with a lighter collar", + "tail: shimmering blue-green color", + "throat: grayish-white feathering" + ], + "somali thrush": [ + "back: olive-brown with subtle streaks", + "beak: thin and blackish", + "belly: creamy-white and lightly streaked", + "breast: grayish-white with faint spots", + "crown: gray-brown with faint streaks", + "forehead: gray-brown blending into the crown", + "eyes: brown with a faint white eyering", + "legs: pale pinkish-gray", + "wings: olive-brown with light fringing", + "nape: gray-brown, blending with crown", + "tail: olive-brown with pale edges", + "throat: creamy-white with light streaks" + ], + "somali tit": [ + "back: olive-brown with faint streaks", + "beak: short, conical, blackish-gray", + "belly: off-white with faint dark brown streaking", + "breast: yellowish-brown with distinct dark brown streaks", + "crown: bluish-gray with slight crest", + "forehead: bluish-gray, like the crown", + "eyes: pale brown, small and circular", + "legs: fairly long, slender, blueish-gray", + "wings: olive-brown, with a small distinct white wing patch", + "nape: bluish-gray, like the crown", + "tail: long, dark brown, with a slight fork", + "throat: off-white, with blackish streaks along each side" + ], + "somali wheatear": [ + "back: rusty brown, lightly spotted", + "beak: dark, slender, and slightly curved", + "belly: creamy white, with pale buff hints", + "breast: buffer orange-tan, fading to white belly", + "crown: light brown and well-defined", + "forehead: pale sandy brown, blending with crown", + "eyes: dark, surrounded by white eyering", + "legs: slender and black", + "wings: sandy brown, featuring black tips and white patches", + "nape: orange-buff, blending with back", + "tail: black and white, with distinct white outer feathers", + "throat: white, contrasting with buff breast" + ], + "sombre greenbul": [ + "back: olive-green feathers", + "beak: short and sharp, pale gray-blue", + "belly: lighter greenish-yellow plumage", + "breast: vibrant lime-green feathers", + "crown: dark green, slightly raised crest", + "forehead: smooth, green hue", + "eyes: small and dark, contrast with green face", + "legs: thin, grayish-brown with noticeable scales", + "wings: long and pointed, dark green with hints of blue", + "nape: green, connecting crown to back feathers", + "tail: long and wide, green and subtly fanned", + "throat: yellowish-green, slightly paler than breast" + ], + "sombre hummingbird": [ + "back: dark green feathers", + "beak: long, slender, and black", + "belly: grayish-white with iridescent green patches", + "breast: grayish-white fading to green", + "crown: dark green plumage", + "forehead: iridescent green feathers", + "eyes: small, black, and bright", + "legs: short and black with tiny feet", + "wings: rapid motion with metallic blue-green feathers", + "nape: dark green feathers curving to join the crown", + "tail: forked with iridescent green and dark feathers", + "throat: grayish-white with a hint of iridescent green" + ], + "sombre kingfisher": [ + "back: dark blue-black feathers", + "beak: long, heavy, and black", + "belly: cream-colored feathers, tinged with blue", + "breast: bright orange hue", + "crown: deep blue feathers", + "forehead: iridescent blue shine", + "eyes: black, bead-like", + "legs: short and sturdy, orange", + "wings: blue-black with thin white stripes", + "nape: deep blue-black feathers", + "tail: long, blue-black with white tips", + "throat: bright orange coloration" + ], + "sombre nightjar": [ + "back: brownish-colored, covered in small feathers", + "beak: short, hooked, for catching insects", + "belly: light brown with white speckles", + "breast: grayish-brown with dark streaks", + "crown: dark brown, elongated feathers on top of the head", + "forehead: dark brown with slight white streaks", + "eyes: large, black, adapted for nocturnal vision", + "legs: thin, strong, and gray", + "wings: long, broad, with dark brown and white speckles", + "nape: brown with lighter streaks and markings", + "tail: dark brown, fan-shaped with white bands and spots", + "throat: grayish-brown with white speckles" + ], + "sombre pigeon": [ + "back: smooth, grayish-brown feathers", + "beak: short, curved, and black", + "belly: light gray with faint, dark markings", + "breast: subtle grayish-purple tone", + "crown: grayish-brown with a hint of iridescence", + "forehead: smooth, light gray feathers", + "eyes: orange or reddish-orange with a black pupil", + "legs: short, reddish-pink with scaly texture", + "wings: dark gray feathers with black bands", + "nape: continuing grayish-brown of the crown", + "tail: dark gray feathers with broad, black band at the end", + "throat: light gray, gently blending into breast color" + ], + "sombre rock chat": [ + "back: dark grey feathers", + "beak: short, black and pointed", + "belly: slightly lighter grey", + "breast: dark grey plumage", + "crown: blackish-grey feathers", + "forehead: dark grey shading to black", + "eyes: round, dark in color", + "legs: black and slender", + "wings: broad dark grey, sometimes with lighter edges", + "nape: blackish-grey feathers", + "tail: long and dark grey with possible lighter tips", + "throat: dark grey, sometimes with a black bib" + ], + "sombre tit": [ + "back: grayish-brown feathers", + "beak: small, black, triangular shape", + "belly: off-white, lightly streaked", + "breast: light greyish-brown", + "crown: dark gray, almost black", + "forehead: gentle slope, gray feathers", + "eyes: small, black, round", + "legs: light grey, thin", + "wings: grayish-brown, slightly rounded", + "nape: darker grey, narrow band", + "tail: long, blackish, slightly forked", + "throat: whitish-grey, faint streaks" + ], + "song thrush": [ + "back: olive-brown with subtle spots", + "beak: thin, dark, and pointed", + "belly: pale, cream-colored with dark spots", + "breast: buff with dark spots and streaks", + "crown: smooth, olive-brown", + "forehead: uniform, brownish color", + "eyes: dark, round, with small white eye-ring", + "legs: long, pinkish-brown", + "wings: olive-brown with faint feather edges", + "nape: olive-brown with pale streaks", + "tail: dark brown, squared-off", + "throat: lightly speckled, pale buff" + ], + "song wren": [ + "back: light brown with fine barring", + "beak: thin, slightly curved, dark colored", + "belly: pale buff with faint markings", + "breast: warm brown with darker speckles", + "crown: reddish-brown with fine dark streaks", + "forehead: light brown blending into crown", + "eyes: small, dark with white eyering", + "legs: slender with medium length, pale brown", + "wings: short, barred with dark brown and buff", + "nape: rich brown with fine dark streaks", + "tail: short, fan-shaped with dark brown and buff barring", + "throat: cream-colored with subtle dark markings" + ], + "sooretama slaty antshrike": [ + "back: dark grey slate-colored feathers", + "beak: short and hooked, blackish in color", + "belly: whitish-grey with slight barring", + "breast: dark grey with faint feather edges", + "crown: dark gray slate-colored head feathers", + "forehead: slightly paler grey, smooth feathers", + "eyes: dark brown with black outline", + "legs: pale greyish, sturdy legs", + "wings: dark grey with white fringes", + "nape: dark grey, continuous with the crown", + "tail: long, dark grey with broad white tip", + "throat: pale grey, blending with breast color" + ], + "sooty ant tanager": [ + "back: dark gray feathers with a slight sheen", + "beak: short, black, and pointed", + "belly: charcoal gray with lighter under-feathering", + "breast: smoky gray, less intense than belly", + "crown: deep, slate gray with a subtle crest", + "forehead: smooth, dark gray transitioning to face", + "eyes: small, black, and beady with a little white ring", + "legs: thin, black, and sturdy", + "wings: broad and tapered with dark gray feathers", + "nape: sooty gray, merging with the crown and back", + "tail: long, subtly fan-shaped, dark gray", + "throat: slightly lighter shade of gray than breast and belly" + ], + "sooty antbird": [ + "back: dark brownish-grey feathering", + "beak: strong, black, and slightly curved", + "belly: pale grey with minimal streaking", + "breast: greyish-brown with faint barring", + "crown: blackish with slight rufous tint", + "forehead: smooth dark grey feathers", + "eyes: small and black, set against grey face", + "legs: sturdy light pink or greyish legs", + "wings: dark grey-brown with faint rufous edging", + "nape: subtly rufous-brown, blending into back", + "tail: long, narrow, dark grey-brown with faint rufous tips", + "throat: light grey, contrasting with darker head" + ], + "sooty babbler": [ + "back: dark gray plumage", + "beak: short and curved, black", + "belly: light grayish-white feathers", + "breast: slightly darker gray than belly", + "crown: dark gray, nearly black", + "forehead: same coloration as crown", + "eyes: small, round, and black", + "legs: short, gray-black, and sturdy", + "wings: dark gray feathers", + "nape: blending of gray to dark gray feathers", + "tail: long and dark gray", + "throat: lighter gray plumage" + ], + "sooty barbet": [ + "back: dark green feathers", + "beak: strong, black, slightly curved", + "belly: olive-green plumage", + "breast: dark green with yellow streaks", + "crown: blue-green cap", + "forehead: bright blue patch", + "eyes: black with white eye-ring", + "legs: short and black", + "wings: vibrant green with blue edges", + "nape: green-yellow banding", + "tail: shorter, green with blue tips", + "throat: greenish-yellow underbelly" + ], + "sooty barbthroat": [ + "back: dark, sooty grayish-brown with a slight green tinge", + "beak: slender, slightly curved with a dark color", + "belly: lighter shade of grayish-brown, almost smoky-gray", + "breast: pale grayish-brown with a faint green sheen", + "crown: sooty-gray with a slight metallic-green gloss", + "forehead: dark grayish-brown, blending into the crown", + "eyes: dark brown with a grayish eye-ring", + "legs: relatively short, grayish-black", + "wings: darker grayish-brown, long and pointed", + "nape: sooty-gray, blending into the back with a green sheen", + "tail: grayish-brown with subtle greenish-brown iridescence, slightly forked", + "throat: darker grayish-brown with hints of metallic green" + ], + "sooty chat": [ + "back: dark sooty-grey feathers", + "beak: short, strong, black", + "belly: slightly paler grey hue", + "breast: deep charcoal tone", + "crown: blackish cap", + "forehead: smooth, dark grey", + "eyes: beady, dark brown", + "legs: sturdy, blackish-grey", + "wings: dark grey, rounded edges", + "nape: darker grey transition to back", + "tail: long, blackish-grey feathers", + "throat: dark grey, slightly lighter than breast" + ], + "sooty falcon": [ + "back: slate gray feathering", + "beak: sharp, hooked, dark gray", + "belly: light gray, smooth feathers", + "breast: pale gray with slight streaks", + "crown: dark gray feathers, rounded", + "forehead: lighter gray, slightly raised", + "eyes: large, dark, intense gaze", + "legs: thin, yellow, powerful", + "wings: long, pointed, dark gray", + "nape: dark gray, short feathered", + "tail: slender, gray with darker bands", + "throat: pale gray, soft feathering" + ], + "sooty flycatcher": [ + "back: dark gray feathers with a subtle sheen", + "beak: short and pointed, black color", + "belly: light gray plumage, slightly paler than back", + "breast: gray feathers with a very light speckling", + "crown: dark gray, almost black plumage with a slight crest", + "forehead: dark gray, blending into the crown", + "eyes: small, dark brown or black, surrounded by faint eye-ring", + "legs: long and thin, dark gray to black", + "wings: dark gray with noticeable white wingbars", + "nape: dark gray, continuous color from the crown", + "tail: long with dark gray feathers, white edges on outermost feathers", + "throat: light gray, matching the belly and breast color" + ], + "sooty grassquit": [ + "back: olive gray feathers", + "beak: short, sharp, conical", + "belly: pale gray-white", + "breast: dark grayish-brown", + "crown: dull blackish-brown", + "forehead: sooty black", + "eyes: dark brown, with a white eye-ring", + "legs: thin, gray-brown", + "wings: olive-brown with faint wing-bars", + "nape: gray-brown", + "tail: short, blackish-brown", + "throat: dark gray" + ], + "sooty gull": [ + "back: dark grey feathers", + "beak: black with a red spot on lower mandible", + "belly: white with grey streaks", + "breast: greyish-white feathers", + "crown: dark grey with a black streak behind the eye", + "forehead: black streak from beak to eye", + "eyes: dark, with a white eye-ring", + "legs: black, medium length", + "wings: blackish-grey primary feathers, white-tipped secondary feathers", + "nape: dark grey, blending into the back", + "tail: white with a black band near the tip", + "throat: white with grey streaks" + ], + "sooty melidectes": [ + "back: dark brown to black plumage", + "beak: curved black bill", + "belly: pale brownish-grey feathers", + "breast: dark brown with subtle greyish streaks", + "crown: sooty black head", + "forehead: coal-black feathers", + "eyes: dark beady eyes", + "legs: sturdy greyish-brown limbs", + "wings: dark brown feathers with a hint of gloss", + "nape: deep brown to black plumage", + "tail: long, blackish-brown with few white tips", + "throat: rich dark brown with a greyish tinge" + ], + "sooty myzomela": [ + "back: dark, sooty black plumage", + "beak: slender, slightly curved shape", + "belly: deep black, smooth feathers", + "breast: intense, sooty black hue", + "crown: black, velvety texture", + "forehead: small, pitch-black area", + "eyes: alert, dark brown color", + "legs: thin, gray-black limbs", + "wings: dark, slightly glossy black feathers", + "nape: inky black, smooth plumage", + "tail: sturdy, jet-black feathers", + "throat: rich, sooty black region" + ], + "sooty owl": [ + "back: dark grey feathers, slightly mottled", + "beak: sharp, black with a subtle hook", + "belly: lighter grey, fading to almost white", + "breast: medium-dark grey, densely spotted", + "crown: dark grey with subtle markings", + "forehead: dark grey, smoother than crown", + "eyes: large, yellow, and piercing", + "legs: feathered grey, strong and sturdy", + "wings: broad, dark grey with lighter barring", + "nape: grey feathers, blending with other head feathers", + "tail: long, dark grey and barred", + "throat: white to light grey feathers, sooty markings" + ], + "sooty oystercatcher": [ + "back: sleek black feathers", + "beak: long, sharp, bright orange", + "belly: dark black underbelly", + "breast: smooth black plumage", + "crown: black, rounded head", + "forehead: smooth black and sleek", + "eyes: beady, black, piercing", + "legs: long, sturdy, pinkish-gray", + "wings: wide, black, powerful", + "nape: black feathers, sleek", + "tail: black, short, and fan-shaped", + "throat: smooth black, continuous with breast" + ], + "sooty shearwater": [ + "back: dark grey-brown feathers", + "beak: long, slender, hooked at tip", + "belly: white underparts", + "breast: smoky grey-brown plumage", + "crown: dark brown to black hue", + "forehead: slightly paler grey-brown", + "eyes: dark, small, and round", + "legs: pinkish, webbed feet", + "wings: long, narrow, and pointed", + "nape: smooth grey-brown transition", + "tail: slim, wedge-shaped, dark feathers", + "throat: light grey-white shading" + ], + "sooty swift": [ + "back: sleek, dark gray feathers", + "beak: short, slightly curved, and black", + "belly: grayish-black with slight iridescence", + "breast: smooth, dark gray feathers", + "crown: sleek, black with a slightly raised crest", + "forehead: black, blending seamlessly into the crown", + "eyes: small, round, and dark", + "legs: thin, black, with strong feet for clinging", + "wings: long, slender, with dark gray primaries and secondaries", + "nape: smooth, dark gray feathers transitioning from the crown", + "tail: slightly forked, with dark gray feathers and black tips", + "throat: dark gray, blending into the breast and belly" + ], + "sooty tern": [ + "back: sleek, black upper feathers", + "beak: long, sharp, and black", + "belly: white, soft-feathered underbelly", + "breast: white feathers with a black edge", + "crown: dark black cap on head", + "forehead: smooth, black curve above eyes", + "eyes: round, small, and black", + "legs: thin, red-orange with webbed feet", + "wings: long, pointed, and black with a white stripe", + "nape: black feathers blending into the crown", + "tail: forked, black, and slender", + "throat: white feathers meeting the black beak" + ], + "sooty thicket fantail": [ + "back: dark-brown feathers with subtle sheen", + "beak: thin, pointed, blackish-gray", + "belly: light, brownish-gray plumage", + "breast: mottled brown-gray", + "crown: deep brown, slightly raised feathers", + "forehead: smooth, dark brown feathers", + "eyes: round, beady, black or dark brown", + "legs: slender, grayish-brown, long-toed", + "wings: fan-shaped, edged in white", + "nape: pale brownish-gray blending into darker back", + "tail: elongated, dark brown with white tips", + "throat: faintly spotted brown-gray" + ], + "sooty thrush": [ + "back: dark grey feathers with a slight brownish hue", + "beak: black, medium-length, and slightly curved", + "belly: dark grey with lighter grey streaks", + "breast: smoky grey with faint brownish tint", + "crown: dark grey with sleek feathers", + "forehead: smooth grey transition from the crown", + "eyes: black with a thin white eye-ring", + "legs: strong and black, with sharp claws", + "wings: dark grey feathers lined with a lighter grey edge", + "nape: grey with a smooth transition from the crown", + "tail: long, dark grey feathers with lighter grey tips", + "throat: slightly lighter grey than the breast, subtle streaks" + ], + "sooty tit": [ + "back: dark gray, uniform color", + "beak: thin, straight, blackish", + "belly: whitish, with gray streaks", + "breast: light gray, slight streaking", + "crown: dark gray, contrast with forehead", + "forehead: lighter gray, distinctive marking", + "eyes: small, black, alert", + "legs: sturdy, grayish, short", + "wings: dark gray, primary feathers frosted", + "nape: dark gray, continuous with the crown", + "tail: long, blackish-gray, outer feathers tipped in white", + "throat: light gray, unmarked" + ], + "sooty tyrannulet": [ + "back: grayish-brown upperparts", + "beak: thin, sharp, and black", + "belly: pale white underparts", + "breast: light grayish-white", + "crown: grayish-brown with slight crest", + "forehead: grayish-brown, blending with the crown", + "eyes: small, dark, encircled by faint white eyering", + "legs: thin, black or dark gray", + "wings: grayish-brown with faint wing bars", + "nape: grayish-brown, consistent with the back and crown", + "tail: quite long, grayish-brown with white outer feathers", + "throat: pale grayish-white, blending with breast" + ], + "sooty capped babbler": [ + "back: dark olive-green hue", + "beak: black and slightly curved", + "belly: pale and grayish-white", + "breast: grayish-white with olive tones", + "crown: blackish with a distinct sooty cap", + "forehead: sooty-black coloration", + "eyes: dark brown with pale eyering", + "legs: slender, grayish-brown", + "wings: olive-green with blackish flight feathers", + "nape: dark olive-green, blending with back", + "tail: long, dark olive-green with lighter tips", + "throat: off-white with faint gray streaks" + ], + "sooty capped chlorospingus": [ + "back: dark olive green feathers", + "beak: short, black, and conical", + "belly: pale grayish-yellow", + "breast: gray, fading into yellow", + "crown: sooty gray-black cap", + "forehead: dark gray, slightly less intense than the crown", + "eyes: black, surrounded by white eye-ring", + "legs: strong, dark gray", + "wings: olive green, barred with black", + "nape: dark olive green, matching the back", + "tail: long and olive green, with black bars", + "throat: grayish-white, blending into breast color" + ], + "sooty capped hermit": [ + "back: dark olive-green feathers", + "beak: long, slender, and curved", + "belly: pale grayish-white plumage", + "breast: lighter olive-green feathers", + "crown: sooty black cap", + "forehead: blackish-brown shading", + "eyes: beady, black orbs", + "legs: short, sturdy, and gray", + "wings: elongated, olive-green with white tips", + "nape: dark olive with black streaks", + "tail: long, graduated feathers with white tips", + "throat: whitish with slight grayish shading" + ], + "sooty capped puffbird": [ + "back: deep olive-green feathers", + "beak: stout, slightly curved black bill", + "belly: creamy white plumage", + "breast: soft, pale buff coloring", + "crown: dark sooty cap", + "forehead: blend of sooty and olive-green feathers", + "eyes: beady and black, surrounded by pale rings", + "legs: strong, grayish-blue with sharp claws", + "wings: olive-green with slightly darker flight feathers", + "nape: transition between sooty cap and olive-green back", + "tail: moderately long, olive-green with subtle dark banding", + "throat: pale creamy-buff, contrasting with sooty cap" + ], + "sooty crowned flycatcher": [ + "back: dark, sooty gray", + "beak: black and slender", + "belly: pale grayish-white", + "breast: smoky gray", + "crown: black and defined", + "forehead: distinctive black stripe", + "eyes: small, black and shiny", + "legs: slender, black", + "wings: smoky gray with black edges", + "nape: dark gray", + "tail: black, elongated with white tips", + "throat: pale grayish-white" + ], + "sooty faced finch": [ + "back: dark brown feathers", + "beak: short, conical black beak", + "belly: grayish underparts", + "breast: light gray with dark streaks", + "crown: dark brown with subtle streaks", + "forehead: matching dark brown color", + "eyes: small black eyes", + "legs: long, slender gray legs", + "wings: dark brown with slight white markings", + "nape: smooth dark brown", + "tail: long, dark brown feathers", + "throat: gray with light streaking" + ], + "sooty fronted spinetail": [ + "back: dark brown with streaks", + "beak: short, curved, pale gray", + "belly: light buff or gray", + "breast: grayish-brown", + "crown: brownish-gray with streaks", + "forehead: dusky gray", + "eyes: dark brown, round", + "legs: long, pale gray or yellowish", + "wings: dark brown, rounded, with rufous edges", + "nape: streaked grayish brown", + "tail: long, brown, with white tips", + "throat: pale gray or buff" + ], + "sooty headed bulbul": [ + "back: dark brown with slight greenish sheen", + "beak: sharp, straight, black", + "belly: whitish-grey", + "breast: pale brownish-grey", + "crown: black with slight blue sheen", + "forehead: sooty-grey to black", + "eyes: dark brown with pale yellow eye-ring", + "legs: long, slender, grey", + "wings: dark brown with contrasting white-edged feathers", + "nape: smoky grey", + "tail: long, dark brown with white-tipped feathers", + "throat: pale grey" + ], + "sooty headed tyrannulet": [ + "back: olive-green with subtle grayish tones", + "beak: short, slender, and pointed", + "belly: pale yellow with hints of gray", + "breast: light olive-gray with visible soft streaks", + "crown: sooty brown with a notable crest", + "forehead: dark grayish-brown with fine streaks", + "eyes: black with a white eye-ring", + "legs: pale gray with sturdy claws", + "wings: olive-green with distinct wing bars", + "nape: olive-green with a subtle grayish cast", + "tail: long and olive-green with fine white tips", + "throat: pale grayish-white with faint streaking" + ], + "sooty headed wren": [ + "back: dark brown with subtle streaks", + "beak: thin and pointy, dark gray", + "belly: creamy white with light brown streaks", + "breast: pale brown with faint barring", + "crown: sooty gray with distinct white eyebrow", + "forehead: sooty gray, merging into the crown", + "eyes: black with a white eye-ring", + "legs: slender and grayish-brown", + "wings: brown with fine streaks and white wing bars", + "nape: sooty gray, continuing the crown coloring", + "tail: brown with faint bars, slightly rounded", + "throat: pale buff, contrasting with darker breast" + ], + "souimanga sunbird": [ + "back: vibrant green with iridescent sheen", + "beak: long, slender, and black", + "belly: pale yellow with hints of orange", + "breast: bright, fiery orange-red", + "crown: glossy metallic blue-green", + "forehead: shining teal-blue", + "eyes: dark, watchful beads", + "legs: thin, wiry, and black", + "wings: iridescent green with darker flight feathers", + "nape: glistening turquoise-blue", + "tail: elongated, dark feathers with green-blue shimmer", + "throat: brilliant orange-red with metallic glint" + ], + "south african shelduck": [ + "back: brownish-grey with a slight sheen", + "beak: dark grey, stout and strong", + "belly: creamy white with soft pattern", + "breast: deep chestnut, extending up to neck", + "crown: dark greyish-brown, smooth", + "forehead: slightly paler grey-brown", + "eyes: dark brown, almond-shaped", + "legs: strong, dark grey with webbed feet", + "wings: grey with green iridescence, white patch", + "nape: subtly lighter shade of grey-brown", + "tail: short, dark greyish-brown feathers", + "throat: pale chestnut, blending into breast" + ], + "south african swallow": [ + "back: sleek, blue-black feathers", + "beak: thin, pointed, and black", + "belly: light cream undercoat", + "breast: iridescent blue-purple plumage", + "crown: shiny black feathers with a hint of blue", + "forehead: glossy blue-black plumage", + "eyes: dark and small", + "legs: slender, dark legs with small feet", + "wings: pointed, blue-black feathers with a white stripe", + "nape: steel-blue feathers merging with iridescence", + "tail: long, forked streamers with blue-black feathers", + "throat: striking violet-ruby throat patch contrasting with white ear feathers" + ], + "south american leaftosser": [ + "back: olive-brown with subtle feather patterns", + "beak: short, stout, and slightly curved", + "belly: light brownish with faint streaks", + "breast: pale brownish-grey with subtle markings", + "crown: slightly darker olive-brown than back", + "forehead: similar to crown, gradually fading to lighter shade", + "eyes: dark, beady, with faint white eye-ring", + "legs: slender, dull orange or brown", + "wings: olive-brown, short, and rounded", + "nape: uniform color with the back and crown", + "tail: olive-brown, short, and typically uplifted", + "throat: light grey with faint streaks" + ], + "south american painted snipe": [ + "back: wide and prominently patterned with shades of brown and black", + "beak: long and slightly curved downward", + "belly: light cream color with brownish spots", + "breast: chestnut colored with dark bands", + "crown: dark brown with a streaked pattern", + "forehead: creamy white blending into the crown", + "eyes: black and moderately sized", + "legs: olive-gray and slender", + "wings: patterned with intricate brown, cream, and black markings", + "nape: dark brown and streaked", + "tail: short and rounded with dark brown and white stripes", + "throat: creamy white with a subtle stripe pattern" + ], + "south american tern": [ + "back: streamlined, light grey feathers", + "beak: sharp, pointed, orange-yellow", + "belly: white, soft feathering", + "breast: white, merging with belly", + "crown: smooth, grey feathers", + "forehead: white, distinctive feathers", + "eyes: round, black, alert", + "legs: red-orange, thin, powerful", + "wings: long, pointed, grey-white", + "nape: grey and white transitioning", + "tail: forked, grey-white feathers", + "throat: white, smooth feathers" + ], + "south georgia diving petrel": [ + "back: blueish-grey feathers and streamlined", + "beak: short, wide, and dark-colored", + "belly: white and short-feathered", + "breast: white with bluish-grey streaks", + "crown: greyish-blue with slight streaks", + "forehead: steeper and white fading to blue-grey", + "eyes: small and black, surrounded by blue-grey feathers", + "legs: short, dark, and webbed feet", + "wings: long, pointed, and blueish-grey", + "nape: blue-grey with faint streaks", + "tail: short, fan-shaped, and blue-grey", + "throat: white, blending into breast and chin" + ], + "south georgia pipit": [ + "back: light brown with streaks", + "beak: slender and pointed", + "belly: pale buff-yellow", + "breast: light brown, streaked", + "crown: brown streaked with black", + "forehead: light brown", + "eyes: small, dark", + "legs: slender, brown-orange", + "wings: brown, mottled upperparts", + "nape: light brown streaks", + "tail: graduated, light brown", + "throat: pale with brown speckles" + ], + "south georgia shag": [ + "back: dark brown with glossy sheen", + "beak: long, slender, and hooked", + "belly: white with greyish-brown feathers", + "breast: white feathers with light brown streaks", + "crown: dark brown with slight crest", + "forehead: smooth and dark brown", + "eyes: small and dark, with a yellow eye-ring", + "legs: short and sturdy, with pink webbed feet", + "wings: long and narrow, dark brown with a white patch on the upper wing", + "nape: dark brown with a pale collar", + "tail: long and wedge-shaped, dark brown", + "throat: white with light brown streaks" + ], + "south island oystercatcher": [ + "back: sleek, black plumage", + "beak: long, straight, and bright orange", + "belly: solid black or black and white, depending on the subspecies", + "breast: black or white with sharp contrast to the belly", + "crown: shiny black, well-defined on the head", + "forehead: smoothly transitioning into black or white plumage", + "eyes: bright, with a yellow or orange ring around them", + "legs: long, strong, and pinkish-red", + "wings: black with a white trailing edge, providing sharp contrast during flight", + "nape: smooth, black, and connecting to the back", + "tail: short, black, with white outer feathers", + "throat: black or white, contrasts sharply with the breast" + ], + "south island robin": [ + "back: olive-brown plumage", + "beak: thin, dark, pointed", + "belly: pale grey", + "breast: light grey feathers", + "crown: dark grey-brown", + "forehead: slightly paler grey-brown", + "eyes: beady and dark", + "legs: long, thin, black", + "wings: compact, olive-brown", + "nape: grey-brown, blends with crown", + "tail: short, fan-shaped, olive-brown", + "throat: light grey, connecting to breast" + ], + "south island saddleback": [ + "back: dark brownish-black with iridescent sheen", + "beak: strong, thick, slightly curved", + "belly: dark charcoal grey, lighter than back", + "breast: dark grey, fading slightly near belly", + "crown: dark brownish-black, iridescent", + "forehead: rich chestnut brown, blending with crown", + "eyes: small and dark, surrounded by grey feather", + "legs: sturdy, pinkish-grey with strong feet", + "wings: dark brownish-black with glossy sheen", + "nape: chestnut brown, fading to dark towards the back", + "tail: dark brownish-black, long and fan-shaped", + "throat: charcoal grey, lighter than the rest of the head" + ], + "south island takahe": [ + "back: strong, greenish-blue feathers", + "beak: short, thick, and crimson red", + "belly: rounded, light blue feathering", + "breast: lush, greenish-blue plumage", + "crown: deep blue-black feathers", + "forehead: bright blue to deep blue feathers", + "eyes: small, black, alert gaze", + "legs: strong, pinkish-orange legs", + "wings: short, rounded, greenish-blue with dark marking", + "nape: bright blue to deep blue feathers", + "tail: short, with broad blue-green feathers", + "throat: lighter blue feathered area" + ], + "south island wren": [ + "back: light brown with subtle streaks", + "beak: slender and pointy", + "belly: creamy white or pale hue", + "breast: light chestnut color", + "crown: dark brown with slight greenish tinge", + "forehead: light brown with thin streaks", + "eyes: small and black", + "legs: slender and brownish-grey", + "wings: short, rounded, dark brown with lighter highlights", + "nape: dark brown with hints of green", + "tail: short and stubby, dark brown", + "throat: creamy white with faint streaks" + ], + "south melanesian cuckooshrike": [ + "back: olive-brown feathers", + "beak: dark, medium-length, hooked tip", + "belly: whitish-cream color", + "breast: grayish-white with brown streaks", + "crown: olive-brown with faint gray streaks", + "forehead: light grayish-white", + "eyes: dark with slight white eye-ring", + "legs: strong, dark gray", + "wings: olive-brown with grayish-white edges", + "nape: olive-brown with faint gray streaks", + "tail: long, dark with grayish-white tips", + "throat: pale grayish-white with light brown streaks" + ], + "south moluccan pitta": [ + "back: vibrant green-blue plumage", + "beak: short, strong, and curved", + "belly: bright red-orange feathers", + "breast: rich blue plumage", + "crown: deep blue-black with a touch of green", + "forehead: bright red area above the beak", + "eyes: dark and round with white eye-ring", + "legs: strong, sturdy, and gray", + "wings: vibrant green-blue with hints of red-orange", + "nape: bluish-green feathers blending into the back", + "tail: short and fan-like with blue-black feathers", + "throat: bright red-orange contrasting with the breast" + ], + "south pare white eye": [ + "back: light olive-green feathers", + "beak: petite, pointed, blackish-brown", + "belly: pale yellow with greyish-brown streaks", + "breast: vibrant yellow with subtle silver-white streaks", + "crown: olive-yellow with a bright white eye-ring", + "forehead: pale olive-green blending into the crown", + "eyes: large, dark, expressive surrounded by a distinct white eye-ring", + "legs: slender greyish-blue with strong, sharp claws", + "wings: olive-green with lighter edges, excellent for swift flight", + "nape: olive-green feathers continuing from crown", + "tail: long, narrow, olive-green with a slight blue-grey hue", + "throat: soft white with faint greyish-brown streaks" + ], + "south polar skua": [ + "back: dark grayish-brown feathers", + "beak: sharp, hooked, blackish-brown", + "belly: pale and streaked with gray-brown", + "breast: mottled gray and white", + "crown: grayish-brown, smooth feathers", + "forehead: grayish-brown, blending with crown", + "eyes: dark, piercing gaze", + "legs: strong, webbed, blackish", + "wings: elongated, grayish-brown with white markings", + "nape: grayish-brown, seamless with back", + "tail: short, pointed, dark gray", + "throat: lighter gray, slight streaking" + ], + "southern anteater chat": [ + "back: olive-brown with white streaks", + "beak: short, stout, and black", + "belly: off-white and streaked", + "breast: creamy-white with dark streaks", + "crown: dark brown, well-defined", + "forehead: thin white stripe above eyes", + "eyes: dark, beady, black ring", + "legs: long and dark gray", + "wings: brown with white patches", + "nape: brown with white streaks", + "tail: dark brown, long, and forked", + "throat: creamy-white, contrasting" + ], + "southern antpipit": [ + "back: olive-brown with faint streaks", + "beak: thin, straight, and blackish", + "belly: pale yellowish-white", + "breast: light buff with faint streaks", + "crown: grayish-brown with indistinct streaks", + "forehead: pale gray-brown with fine streaks", + "eyes: dark with pale white eye-ring", + "legs: long, slender, and pale pinkish-gray", + "wings: olive-brown with buff wingbars", + "nape: grayish-brown with narrow streaks", + "tail: long, olive-brown with faint barring", + "throat: buffy white with faint streaks" + ], + "southern bald ibis": [ + "back: dark metallic green feathering", + "beak: long, curved, and red", + "belly: glossy greenish-black plumage", + "breast: iridescent purple-black feathers", + "crown: bald, red with a purple-blue wattle", + "forehead: hairless with a red patch and black crest", + "eyes: encircled by a ring of bare skin", + "legs: lengthy, dark red to grayish-black", + "wings: glossy black plumage with iridescent green tones", + "nape: a small patch of long, sleek black feathers", + "tail: elongated and strong black feathers", + "throat: featherless with deep red skin" + ], + "southern beardless tyrannulet": [ + "back: olive-green coloration", + "beak: thin and pointed", + "belly: yellowish-white hue", + "breast: light yellowish-green", + "crown: olive-green with central stripe", + "forehead: slightly lighter olive-green", + "eyes: dark and round with white eyering", + "legs: long and slender, pale pink", + "wings: olive-green with pale wingbars", + "nape: olive-green tint", + "tail: long and narrow, olive-green with pale tips", + "throat: white and unmarked" + ], + "southern bentbill": [ + "back: olive-green with a slightly darker hue", + "beak: short, curved, and black", + "belly: creamy-white with faint olive-brown streaks", + "breast: pale olive-brown merging into white", + "crown: dark olive-brown with hints of reddish-brown", + "forehead: slightly paler olive-brown than the crown", + "eyes: dark brown, encircled by a thin white eye-ring", + "legs: slender, pale pinkish-gray", + "wings: olive-brown with darker flight feathers", + "nape: olive-brown, similar to the crown", + "tail: slightly forked, olive-brown with faint darker bars", + "throat: white with a faint grayish tinge" + ], + "southern black flycatcher": [ + "back: dark, glossy black plumage", + "beak: short and sturdy, black", + "belly: slightly lighter black feathers", + "breast: deep black with faint gloss", + "crown: glossy black with a smooth look", + "forehead: deep black with a slight sheen", + "eyes: dark brown, small and alert", + "legs: long and slender, black", + "wings: black with slight glossy sheen, well-defined feathers", + "nape: black and glossy, connects head to back", + "tail: long, black with a slight gloss, fanned when in flight", + "throat: black feathers transitioning to the breast" + ], + "southern black tit": [ + "back: dark grey feathers", + "beak: small, black, pointed", + "belly: light grey plumage", + "breast: dusky grey feathers", + "crown: black with white streaks", + "forehead: black and sleek", + "eyes: small, dark brown", + "legs: thin, black", + "wings: black and white, streaked pattern", + "nape: black with white streaks", + "tail: long, black with white outer feathers", + "throat: black and smooth" + ], + "southern boobook": [ + "back: brown with white spots", + "beak: small and hooked", + "belly: cream with brown streaks", + "breast: pale with brown spots", + "crown: brown with white markings", + "forehead: brown and slightly speckled", + "eyes: large and yellow", + "legs: off-white and feathered", + "wings: brown with white speckles", + "nape: brown with white spots", + "tail: brown with white bands", + "throat: cream with brown streaks" + ], + "southern boubou": [ + "back: dark brown with slight olive sheen", + "beak: short and hooked, blackish", + "belly: off-white to pale gray", + "breast: rufous to grayish-red", + "crown: black or dark brown, blending with back", + "forehead: blackish, blending with crown", + "eyes: dark brown with a white eye ring", + "legs: long, slender, and blackish", + "wings: dark brown with rufous edges on flight feathers", + "nape: dark brown, blending with back and crown", + "tail: long and dark brown with rufous edges", + "throat: off-white, blending with breast" + ], + "southern bristle tyrant": [ + "back: olive-green with subtle streaks", + "beak: short, strong, and hooked", + "belly: pale yellowish underparts", + "breast: pale yellow with greenish streaks", + "crown: olive-green with distinctive crest", + "forehead: olive-green blending with crown", + "eyes: dark, surrounded by thin eye-ring", + "legs: grayish, with strong grasping toes", + "wings: greenish-blue with faint wing-bars", + "nape: olive-green, connecting with the back", + "tail: long and dark with greenish-blue edges", + "throat: pale yellow, contrasting with breast" + ], + "southern brown kiwi": [ + "back: dark reddish-brown with short, bristly feathers", + "beak: long, thin, and slightly curved, pale grayish-brown color", + "belly: slightly lighter reddish-brown compared to the back, with thinner, softer feathers", + "breast: similar color and texture to the belly, distinct cloaca", + "crown: rounded with closely-packed, dark reddish-brown feathers", + "forehead: merging with the crown, same dark reddish-brown feathers", + "eyes: small, black, and beady, set on either side of the base of the beak", + "legs: short, stout, and featherless with dark gray color and scaly texture", + "wings: vestigial, almost hidden under body feathers, dark reddish-brown and small", + "nape: slightly lighter in color than the crown, still reddish-brown", + "tail: very short and hidden beneath the body feathers, dark reddish-brown", + "throat: similar in color to the belly, but with a slightly paler hue and sparse feathers" + ], + "southern brown throated weaver": [ + "back: olive-brown with faint streaks", + "beak: conical-shaped, dark gray", + "belly: creamy-white with brown streaks", + "breast: pale yellowish-brown", + "crown: bright golden-yellow", + "forehead: yellowish-green", + "eyes: dark brown with thin white eye-ring", + "legs: pale pinkish-grey", + "wings: olive-brown with yellowish edges on feathers", + "nape: olive-brown with faint streaks", + "tail: short, dark brown with yellowish edges", + "throat: warm yellow-brown" + ], + "southern carmine bee eater": [ + "back: vibrant carmine-pink feathers", + "beak: long, slender, slightly curved black beak", + "belly: soft pinkish-white underbelly", + "breast: bright carmine-pink plumage", + "crown: carmine-pink with a slight crest", + "forehead: vivid pink-feathered slope", + "eyes: dark, piercing eyes with thin black eye-line", + "legs: short and grayish-black", + "wings: brilliant carmine-pink feathers with elongated flight feathers", + "nape: rich pink with smooth feathering", + "tail: streamlined forked tail with greenish-blue feathers", + "throat: white patch surrounded by radiant pink plumage" + ], + "southern cassowary": [ + "back: dark blue, feathered body", + "beak: large, straight, blackish-grey", + "belly: dark blue feathers, rounded", + "breast: thick, dark blue feathers", + "crown: prominent, helmet-like casque", + "forehead: blue, featherless skin", + "eyes: small, dark, piercing gaze", + "legs: long, muscular, greyish-blue", + "wings: small, vestigial, dark blue", + "nape: blue, featherless, with some red accents", + "tail: short, fan-like, dark blue feathers", + "throat: red, wattled, featherless skin" + ], + "southern citril": [ + "back: olive-green with slight streaks", + "beak: sharp, blackish-grey", + "belly: yellowish hue with faint stripes", + "breast: rich yellow color", + "crown: bright-yellow with defined lines", + "forehead: vibrant yellow shade", + "eyes: small, black, piercing gaze", + "legs: thin, dark in color, strong", + "wings: olive-green with pale yellow bars", + "nape: well-defined yellowish-green", + "tail: medium-length, greenish-yellow", + "throat: bright yellow, smooth appearance" + ], + "southern cordonbleu": [ + "back: delicate blue-gray plumage", + "beak: small and cone-shaped, silver-gray", + "belly: white with light blue-gray flecks", + "breast: soft blue-gray coloration", + "crown: light blue-gray plumage", + "forehead: blue-gray with subtle white", + "eyes: black, surrounded by faint white eye-ring", + "legs: slender and grayish-pink", + "wings: blue-gray with white-bordered feathers", + "nape: light blue-gray, connects to back", + "tail: bluish-gray with white outer tail feathers", + "throat: white, leading into breast area" + ], + "southern crested guineafowl": [ + "back: dark gray feathers with white spots", + "beak: strong, curved, ivory-colored", + "belly: light gray with fine dark speckles", + "breast: pale gray speckled with dark spots", + "crown: reddish-brown crest feathers", + "forehead: bare blue skin with red wattle", + "eyes: bright, round eyes surrounded by bare skin", + "legs: short, sturdy, blue-gray", + "wings: dark gray feathers with white spots", + "nape: wide, dark gray with white spots", + "tail: long and dark with contrasting white spots", + "throat: smooth, bare blue skin with red wattle" + ], + "southern double collared sunbird": [ + "back: vibrant green and iridescent", + "beak: long, slender, and curved", + "belly: pale yellow or white feathering", + "breast: bright red band across the chest", + "crown: glossy green or blue head feathers", + "forehead: metallic green or violet sheen", + "eyes: small, round, and dark", + "legs: thin, gray, and strong", + "wings: iridescent green with blue highlights", + "nape: emerald green or golden sheen", + "tail: elongated, dark green or blue feathers", + "throat: brilliant metallic blue hue" + ], + "southern emerald toucanet": [ + "back: vibrant green feathers", + "beak: large, brightly-colored, curved beak", + "belly: pale yellow feathers", + "breast: rich blue plumage", + "crown: dark green, glossy feathers", + "forehead: bright green plumage", + "eyes: large, black with white surrounding", + "legs: short, stout legs with grey claws", + "wings: vivid green with blue-tipped feathers", + "nape: deep green, glossy feathers", + "tail: long, green plumes with blue markings", + "throat: distinct blue-black band" + ], + "southern emuwren": [ + "back: pale blue-gray with streaks", + "beak: slender, black, and slightly curved", + "belly: rich rufous-orange hue", + "breast: vibrant blue transitioning to rufous-orange", + "crown: deep lustrous blue on the male, gray-blue on the female", + "forehead: iridescent blue on the male, grayish on the female", + "eyes: dark brown, surrounded by a blue-gray circle", + "legs: long, slender, and black", + "wings: blue-gray with faint streaking", + "nape: rufous-orange extending to the back", + "tail: long, wispy, and black with a white base", + "throat: bright blue on the male, grayish on the female" + ], + "southern fiscal": [ + "back: dark bluish-gray, sleek feathers", + "beak: sharp, hooked, black", + "belly: soft white plumage", + "breast: gray-white, slightly fluffy", + "crown: black, smooth feathers", + "forehead: black, sleek feathers", + "eyes: sharp, round, yellow-rimmed", + "legs: strong, grey, scaled", + "wings: black, sizeable with a hint of blue", + "nape: dark gray, connected to crown", + "tail: long, black with white tips", + "throat: white, slightly fluffy feathers" + ], + "southern fulmar": [ + "back: light grey feathers with a subtle white streak", + "beak: strong, hooked, yellow-orange tip", + "belly: soft, white feathers", + "breast: white, fluffy plumage", + "crown: smooth grey feathers with white lines", + "forehead: light grey with a white streak", + "eyes: dark, encircled by pale grey feathers", + "legs: scaly, blue-grey with webbed feet", + "wings: broad, grey with white edges", + "nape: pale grey feathers blending into the back", + "tail: short, fan-shaped, grey and white feathers", + "throat: white, soft-feathered plumage" + ], + "southern giant petrel": [ + "back: dark grey-brown, mottled feathers", + "beak: pale yellowish-green, hooked tip", + "belly: white with grey-brown streaks", + "breast: white, lightly speckled with grey-brown", + "crown: dark grey-brown, mottled feathers", + "forehead: slightly paler grey-brown, smooth feathers", + "eyes: dark brown, black circular outline", + "legs: robust, pale pinkish-grey, webbed feet", + "wings: long, grey-brown with contrasting white leading edges", + "nape: dark grey-brown, mottled feathers", + "tail: fan-shaped, short, grey-brown feathers", + "throat: pale white with some grey-brown streaks" + ], + "southern gray headed sparrow": [ + "back: pale brown with dark streaks", + "beak: short, conical, blackish", + "belly: light grayish-white", + "breast: gray with a white center", + "crown: dark gray to black", + "forehead: slightly paler gray", + "eyes: black, surrounded by a white ring", + "legs: short, dark gray", + "wings: brown with white on the outer part", + "nape: light gray", + "tail: brown, with white outer feathers", + "throat: white with black streaks" + ], + "southern grosbeak canary": [ + "back: vibrant green feathers", + "beak: short, cone-shaped, silver-gray", + "belly: soft, pale yellow underbelly", + "breast: bright yellow and rounded", + "crown: vivid yellowish-green head crest", + "forehead: slightly raised with greenish-yellow feathers", + "eyes: small, expressive black eyes", + "legs: slim, grayish-blue legs with strong grip", + "wings: brilliant green feathers with black streaks", + "nape: greenish-yellow, connecting head and back", + "tail: long, fan-shaped, yellow-green tail feathers with dark markings", + "throat: yellow, merges seamlessly with breast" + ], + "southern ground hornbill": [ + "back: black plumage with slight metallic sheen", + "beak: large, elongated, curved, and reddish-orange", + "belly: black feathers with faint hints of white", + "breast: black plumage with slight iridescence", + "crown: black feathers with an elongated, crest-like appearance", + "forehead: red, orange, or yellow-skinned patch, no feathers", + "eyes: bright, piercing yellow or light brown", + "legs: long, powerful, black, and featherless", + "wings: black with broad, powerful flight feathers", + "nape: black feathers transitioning to the back", + "tail: long, black, and white-tipped feathers", + "throat: fleshy, wattle-like skin, red or yellow hues" + ], + "southern hill myna": [ + "back: dark greenish-black with distinct metallic sheen", + "beak: bright orange-yellow, slightly curved", + "belly: deep black, glossy feathers", + "breast: shiny greenish-black plumage", + "crown: greenish-black with metallic gleam", + "forehead: glossy, greenish-black feathers extending to eye area", + "eyes: small and dark, surrounded by bright orange-yellow skin", + "legs: strong and yellowish, suited for perching", + "wings: dark greenish-black, capable of agile flight", + "nape: iridescent green-black plumage", + "tail: long, greenish-black with shining appearance", + "throat: bright greenish-black, with metallic gloss and yellow wattles" + ], + "southern hyliota": [ + "back: olive-green with slight streaks", + "beak: slender and slightly curved", + "belly: yellowish with hints of white", + "breast: bright yellow", + "crown: grayish-brown with faint streaks", + "forehead: pale gray or white", + "eyes: small, dark, and circular", + "legs: slender and grayish", + "wings: brown with faint white markings", + "nape: olive-green blending into gray", + "tail: grayish-brown with white edges", + "throat: light yellow or white" + ], + "southern lapwing": [ + "back: greenish-bronze feathers with a slight sheen", + "beak: short, sharp, and black", + "belly: white feathers with a grayish tinge", + "breast: grayish-white feathers with a subtle band", + "crown: black feathers forming a crest", + "forehead: white patch above the beak", + "eyes: bright red with a distinctive eye-ring", + "legs: long, slender, and pinkish-gray", + "wings: broad with black and white feathers, and a prominent flick at the wrist", + "nape: white stripe extending from the eye to the crown", + "tail: long, black feathers with white outer edges", + "throat: white feathers meeting the breast area" + ], + "southern marquesan reed warbler": [ + "back: olive-brown with streaks", + "beak: thin, pointed, and black", + "belly: whitish-yellow with brown streaks", + "breast: golden-buff and streaked", + "crown: olive-brown, fading to creamy", + "forehead: olive-brown with a slight yellow tint", + "eyes: surrounded by a thin, pale eye-ring", + "legs: long, thin, and pale grey", + "wings: olive-brown with darker edges and white wing bars", + "nape: olive-brown with a slight yellowish tinge", + "tail: long with dark brown feathers and white edges", + "throat: light cream with brown streaks" + ], + "southern martin": [ + "back: sleek dark blue-gray feathers", + "beak: short, pointed black bill", + "belly: crisp white underparts", + "breast: smooth white plumage", + "crown: glossy blue-black coloring", + "forehead: dark blue-gray shading", + "eyes: small, beady black eyes", + "legs: relatively long legs with dark pink tinge", + "wings: long, dark blue-gray, pointed feathers", + "nape: deep blue-gray with slight iridescence", + "tail: forked, blackish-blue tail feathers", + "throat: clean white, contrasting with darker head" + ], + "southern masked weaver": [ + "back: golden-yellow feathers", + "beak: strong, pointed black", + "belly: yellow-orange plumage", + "breast: bright yellow feathers", + "crown: black, mask-like pattern", + "forehead: black, mask-like pattern", + "eyes: small, black, and expressive", + "legs: black, slender, with sharp claws", + "wings: golden-yellow with black edges", + "nape: yellow feathers blending into black at the crown", + "tail: medium-length, dark feathers", + "throat: golden-yellow plumage" + ], + "southern mouse colored tyrannulet": [ + "back: pale olive-brown", + "beak: short and black", + "belly: dull white", + "breast: pale grayish-yellow", + "crown: grayish-brown", + "forehead: light gray", + "eyes: dark and round", + "legs: slender with dark claws", + "wings: olive-brown with thin wing bars", + "nape: grayish-brown", + "tail: long and olive-brown", + "throat: pale grayish-white" + ], + "southern penduline tit": [ + "back: light, brownish-grey with fine streaks", + "beak: short, pointed, blackish-grey", + "belly: creamy-white, fluffy feathers", + "breast: pale greyish-brown, soft texture", + "crown: pale grey with streaks, smoothly rounded", + "forehead: slightly darker grey, slight streaks", + "eyes: small, black, bright expression", + "legs: slender, bluish-grey, strong for perching", + "wings: light brownish-grey, bold white wingbar", + "nape: pale grey, merging into back coloration", + "tail: fairly short, squared-off, brownish-grey", + "throat: soft, creamy-white, smooth feathers" + ], + "southern pied babbler": [ + "back: brownish-grey plumage", + "beak: short, curved, black", + "belly: white with grayish sides", + "breast: white, feathers sometimes fluffed", + "crown: dark grey, finely streaked", + "forehead: smooth grey blending to crown", + "eyes: dark with white eyering", + "legs: long, slender, black", + "wings: brownish-grey, white-tipped feathers", + "nape: dark grey, sleek texture", + "tail: long, black-tipped, white feathers", + "throat: white, contrasting with head" + ], + "southern pochard": [ + "back: reddish-brown feathers", + "beak: bluish-grey with black tip", + "belly: light creamy white", + "breast: chestnut-red with darker feathers", + "crown: dark brown with slight reddish tones", + "forehead: slightly lighter brown than crown", + "eyes: bright red-orange", + "legs: greyish-blue with webbed feet", + "wings: dark brown with white secondary feathers", + "nape: reddish-brown blending to crown", + "tail: short and dark brown", + "throat: light brown fading to white on lower throat" + ], + "southern red bishop": [ + "back: rich red-orange with black patterns", + "beak: small, pointed black cone", + "belly: bright red-orange hue", + "breast: vibrant red-orange color", + "crown: intense red-orange crest", + "forehead: brilliant red-orange patch", + "eyes: black, small, alert orbs", + "legs: thin, dark-gray spindles", + "wings: black with red feather tips", + "nape: radiant red-orange plumage", + "tail: short, black, fan-like feathers", + "throat: fiery red-orange hue" + ], + "southern red billed hornbill": [ + "back: dark grey-brown feathers", + "beak: long, curved, vibrant red", + "belly: off-white feathering", + "breast: off-white feathers, blending with belly", + "crown: mottled grey-brown feathers", + "forehead: reddish, slightly mottled", + "eyes: large, dark brown, encircled in light blue skin", + "legs: sturdy, grey-brown", + "wings: dark grey-brown feathers, elongated primary feathers", + "nape: mottled grey-brown feathering", + "tail: dark grey-brown, elongated central feathers", + "throat: off-white feathers blending with breast" + ], + "southern rockhopper penguin": [ + "back: black, dense feathers covering the dorsal side", + "beak: short, thick, and orange-red with a dark tip", + "belly: white underbelly with smooth feathers", + "breast: rounded and covered with white feathers", + "crown: black, feathery cap extending to the eyes", + "forehead: black and white feathers meeting above the beak", + "eyes: round, dark eyes accentuated by bold white markings", + "legs: short, strong legs with pink, webbed feet", + "wings: small, black, elongated flippers used for swimming", + "nape: transition from black to white at the back of the head", + "tail: short, black feathers forming a stiff, streamlined shape", + "throat: white, meeting the black chest feathers in a v-shape" + ], + "southern rough winged swallow": [ + "back: pale brown with some dark streaks", + "beak: short, dark, pointed", + "belly: light beige or cream", + "breast: beige with faint streaks", + "crown: dark brown", + "forehead: pale brown", + "eyes: small, black, centrally placed", + "legs: short and slim, dark color", + "wings: long and pointed, dark brown with some beige feathers", + "nape: light brown with faint streaks", + "tail: forked, dark brown with beige outer feathers", + "throat: cream-colored with slight streaks" + ], + "southern screamer": [ + "back: dark grey feathers with lighter edges", + "beak: short, hooked, pale greyish-white", + "belly: light grey with thin feathering", + "breast: thick, grey-white feathers", + "crown: black feathers with small tuft", + "forehead: white feathered blending into the crown", + "eyes: small, piercing, dark brown", + "legs: long, grey, scaly, strong", + "wings: wide, long, grey-white, dark primary feathers", + "nape: thick grey-white feathers, blending with the crown", + "tail: short, fan-shaped, grey-white feathers", + "throat: fluffy white-yellow feathers" + ], + "southern scrub flycatcher": [ + "back: olive-grey feathers", + "beak: thin, black, straight", + "belly: pale yellowish-white", + "breast: light grey with slight yellow tint", + "crown: dusky grey, slightly crested", + "forehead: smooth, greyish-brown", + "eyes: dark, medium-sized, alert", + "legs: long, slender, pale grey", + "wings: brownish-grey with faint white edges", + "nape: grey-brown, smooth feathers", + "tail: dark greyish-brown with narrow white tips", + "throat: pale grey with a slight yellowish hue" + ], + "southern scrub robin": [ + "back: olive-brown with subtle streaks", + "beak: short and sturdy, dark gray", + "belly: off-white with light gray streaks", + "breast: pale gray with light streaks", + "crown: reddish-brown with faint streaks", + "forehead: pale gray-brown", + "eyes: black, beady with white eye-ring", + "legs: long and slender, gray-brown", + "wings: olive-brown with faint barring", + "nape: reddish-brown blending into back", + "tail: olive-brown with faint barring, slightly forked", + "throat: off-white, blending into breast" + ], + "southern shrikebill": [ + "back: gray-brown with irregular streaks", + "beak: long, slender, and slightly hooked", + "belly: pale gray with faint streaks", + "breast: dark gray with a lighter center", + "crown: olive-brown with faint streaks", + "forehead: pale, blending into the crown", + "eyes: large, dark brown, with white eyering", + "legs: medium length, yellow-gray", + "wings: gray-brown with darker bars", + "nape: olive-brown with faint streaks", + "tail: long, dark gray with lighter edges", + "throat: pale gray with slight streaking" + ], + "southern silvery kingfisher": [ + "back: vibrant blue and streaked", + "beak: long, black, and pointed", + "belly: white and slightly fluffy", + "breast: white with a hint of blue tint", + "crown: bright blue with silver highlights", + "forehead: blue with silver streaks", + "eyes: black with a thin white eye-ring", + "legs: short and bright orange", + "wings: blue and silver with black flight feathers", + "nape: blue with silver flecking", + "tail: long, blue, and slightly forked", + "throat: white with a touch of blue" + ], + "southern sooty woodpecker": [ + "back: dark charcoal gray feathers", + "beak: strong, chisel-like, black", + "belly: lighter gray, almost smoky", + "breast: dark gray, blending with belly", + "crown: slightly darker gray than back", + "forehead: smooth, charcoal gray", + "eyes: dark, with black markings", + "legs: sturdy, dark gray", + "wings: dark gray, nearly black with white spots", + "nape: charcoal gray, slightly lighter than crown", + "tail: dark gray, almost black, with white outer feathers", + "throat: light gray, contrast to breast" + ], + "southern tchagra": [ + "back: olive-brown with slight streaks", + "beak: black, strong, and slightly hooked", + "belly: creamy white with pale russet flanks", + "breast: orange-brown with subtle streaks", + "crown: chestnut-brown with a small crest", + "forehead: chestnut-brown, blending with the crown", + "eyes: dark brown with a white eye-ring", + "legs: pale pinkish-brown with strong, slender toes", + "wings: olive-brown with dark flight feathers and pale edges", + "nape: olive-brown, continuous with the back", + "tail: dark brown with prominent white tips", + "throat: creamy white, transitioning to the breast" + ], + "southern tropical pewee": [ + "back: olive-brown with slight yellowish hue", + "beak: slender, dark grayish-black", + "belly: pale yellow with light streaking", + "breast: light olive-yellow with faint streaking", + "crown: olive-brown with a slight crest", + "forehead: olive-brown, blending into crown", + "eyes: dark, medium-sized, surrounded by pale eye-ring", + "legs: grayish-black, sturdy, and slender", + "wings: olive-brown with two pale wing bars", + "nape: olive-brown, blending into back", + "tail: dark grayish-black with a slight fork", + "throat: pale yellowish-white, blending into breast" + ], + "southern variable pitohui": [ + "back: orange-brown plumage", + "beak: sharp, pointed, black", + "belly: salmon-orange hue", + "breast: bold rusty-orange", + "crown: dark reddish-brown", + "forehead: deep russet colored", + "eyes: beady, black, piercing", + "legs: thin, grayish-blue", + "wings: orange-brown, dark-tipped feathers", + "nape: lighter rusty-orange", + "tail: long, rectangular, orange-brown", + "throat: bright orange with white streaks" + ], + "southern white faced owl": [ + "back: light grey feathers with white markings", + "beak: short, sharp, black curved beak", + "belly: pale grey with white barring", + "breast: whitish-grey with dark streaks", + "crown: rounded grey head with white facial disk", + "forehead: grey with white streaks above eyes", + "eyes: large, round, dark brown eyes", + "legs: feathered grey with sharp black talons", + "wings: light grey with darker barring and white spots", + "nape: light grey with white speckles", + "tail: grey with dark bands and white tips", + "throat: white and lightly streaked with grey" + ], + "southern whiteface": [ + "back: light brown with white markings", + "beak: short and greyish", + "belly: white with some grey streaks", + "breast: white with light brown patches", + "crown: light grey with some white streaks", + "forehead: pale grey, slightly lighter than crown", + "eyes: surrounded by white feathers, dark eye", + "legs: dull grey with strong, sharp claws", + "wings: light brown with white tips and markings", + "nape: light grey with white streaks", + "tail: short, light brown with white markings", + "throat: pale grey, slightly lighter than breast" + ], + "southern yellow white eye": [ + "back: olive-green upper body", + "beak: sharp, black, slightly curved", + "belly: pale yellow underside", + "breast: vibrant yellow chest", + "crown: greenish-yellow head", + "forehead: bright yellow strip above eyes", + "eyes: large, dark, encircled by white eye-ring", + "legs: slim, grayish-blue legs", + "wings: olive-green with dark flight feathers", + "nape: greenish-yellow at the back of the head", + "tail: olive green, long, and pointed", + "throat: soft yellow merging into breast" + ], + "southern yellow billed hornbill": [ + "back: feathered in dark shades ranging from grey to black", + "beak: large, curvy, and yellow with a prominent casque", + "belly: white or pale-colored feathering", + "breast: light grey or white plumage", + "crown: dark grey to black feathers with a slight crest", + "forehead: smooth transition from dark grey to the yellow beak", + "eyes: bright, piercing eyes with a dark iris", + "legs: long, thin legs with greyish-colored scales", + "wings: broad and rounded with dark-grey to black feathers", + "nape: dark grey feathering connecting the crown to the back", + "tail: dark grey or black long, rectangular feathers", + "throat: light grey or white feathers meeting the lower edge of the beak" + ], + "southern yellowthroat": [ + "back: olive-green with a slightly darker shade towards the wings", + "beak: thin, dark, and pointed", + "belly: pale yellow and slightly lighter than breast", + "breast: vibrant yellow extending across the throat", + "crown: black mask with a narrow white border", + "forehead: blending with the black mask and white border on the crown", + "eyes: dark brown or black, surrounded by white border of crown", + "legs: slender and pinkish-gray", + "wings: olive-green, appearing darker than the back", + "nape: lighter olive-green than the back", + "tail: slightly darker shade of olive-green with thin white edges", + "throat: vibrant yellow blending with the breast" + ], + "souza shrike": [ + "back: sleek and tawny brown", + "beak: short and sharp, hooked at the tip", + "belly: pale cream with some light streaks", + "breast: cream-colored with faint banding", + "crown: rusty brown with a hint of gray", + "forehead: narrow and tawny", + "eyes: dark, surrounded by a white eye-ring", + "legs: slender and grayish", + "wings: tawny-brown with black bars and white patches", + "nape: tawny brown, blending into the back", + "tail: long and graduated with black bars and white tips", + "throat: pale cream, blending into the breast" + ], + "spangle cheeked tanager": [ + "back: vibrant emerald green", + "beak: sharp, slightly curved black", + "belly: deep royal blue", + "breast: bright turquoise blue", + "crown: radiant gold and green", + "forehead: shimmering golden forehead", + "eyes: small black eyes surrounded by vibrant feathers", + "legs: slim gray legs and clawed feet", + "wings: bold green and blue hues, patterned feather tips", + "nape: green and gold feather transition", + "tail: long, tapered tail with bright blue and green feathers", + "throat: iridescent blue-green feathers" + ], + "spangled coquette": [ + "back: green iridescent plumage", + "beak: long, slender, and black", + "belly: white ruffled feathers", + "breast: vibrant green with spangled spots", + "crown: bright green feathers with purple sheen", + "forehead: dotted with spangled coloration", + "eyes: dark with white eyelid outline", + "legs: thin and delicate grayish-brown", + "wings: greenish-brown with white-tipped spangled feathers", + "nape: iridescent green with spangled details", + "tail: curved and elongated, white-tipped feathers", + "throat: bright orange-red ruff with green spotting" + ], + "spangled drongo": [ + "back: dark glossy-black feathers", + "beak: long, slightly curved, black", + "belly: black with iridescent sheen", + "breast: dark black, glossy plumage", + "crown: flattened black feathers, shimmering", + "forehead: black with glossy feathers", + "eyes: deeply dark, piercing gaze", + "legs: thin, black, strong", + "wings: black with hints of iridescence, elongated", + "nape: black, glossy feathers with slight curve", + "tail: forked, long, black with white spots", + "throat: sleek black, sheened" + ], + "spangled honeyeater": [ + "back: olive green with spangled white spots", + "beak: long, slender, and curved", + "belly: pale yellowish-grey", + "breast: grey with white speckles", + "crown: bright yellow with spangled black markings", + "forehead: yellow with black streaks", + "eyes: dark and small, with white markings around them", + "legs: slender light pink legs and feet", + "wings: olive green with white-tipped feathers, creating a spangled pattern", + "nape: olive green with white streaks", + "tail: long and olive-green, with spangled white markings", + "throat: pale yellow with a grey speckled pattern" + ], + "spangled kookaburra": [ + "back: light brown with subtle white spots", + "beak: large, robust, and dark gray", + "belly: white with some horizontal black bars", + "breast: pale brown and covered in light blue speckles", + "crown: brownish-green with blue spangles", + "forehead: greenish tint with blue spots or speckles", + "eyes: dark, piercing, surrounded by light blue markings", + "legs: short, strong, dark gray in color", + "wings: brown with blue speckles and white spots on the tips", + "nape: greenish-brown with blue speckling", + "tail: long, brown with bright blue patches and white tips", + "throat: white with fine black lines or striations" + ], + "spanish eagle": [ + "back: dark brown feathers covering the top portion", + "beak: powerful, curved yellowish-gray beak for tearing prey", + "belly: creamy white with scattered dark spots", + "breast: brownish-white feathers with subtle horizontal streaks", + "crown: distinct golden-brown crest atop the head", + "forehead: golden-brown feathers transitioning to white on face", + "eyes: sharp, piercing yellow eyes with black pupils", + "legs: strong, yellow legs with scaly texture and sharp talons for gripping", + "wings: long, broad wings with dark brown feathers and lighter tips for soaring and hunting", + "nape: golden-brown feathers covering the back of the neck", + "tail: fan-shaped brown tail feathers with horizontal dark stripes for stability in flight", + "throat: white feathers blending into the brown plumage on the rest of the body" + ], + "spanish sparrow": [ + "back: brownish-grey with dark streaks", + "beak: conical and stout, black in males and yellowish in females", + "belly: whitish-grey with fine streaks", + "breast: light greyish-brown with black streaks", + "crown: chestnut brown with a white supercilium (eyebrow", + "forehead: chestnut brown with a black patch in males", + "eyes: black with a thin white ring", + "legs: pale pinkish-brown", + "wings: dark brown with white streaks and rufous stripe", + "nape: grey-brown with dark streaks", + "tail: brownish-grey with white edges", + "throat: whitish with fine grey streaks" + ], + "sparkling violetear": [ + "back: vibrant green with a metallic sheen", + "beak: black, long, and slightly curved", + "belly: light green with iridescent glimmers", + "breast: striking blue-violet with a shimmering effect", + "crown: deep purple-blue with a sparkly glow", + "forehead: glistening violet-blue iridescence", + "eyes: small, round, and dark", + "legs: grayish-black and slender", + "wings: iridescent green with slightly curved tips", + "nape: shiny green with a hint of blue", + "tail: radiant green with a touch of blue hues", + "throat: dazzling violet with a glittery shine" + ], + "sparkling tailed hummingbird": [ + "back: iridescent green with shimmering hues", + "beak: long, slender, and slightly curved", + "belly: pale gray with a soft sheen", + "breast: vibrant green, transitioning from the throat", + "crown: luminous green, tapering to the nape", + "forehead: bright green, complementing the crown", + "eyes: small, dark, and expressive", + "legs: delicate and short, with tiny feet", + "wings: swift, translucent, and shimmering in flight", + "nape: smooth transition from the crown, with lighter green", + "tail: elongated, dazzling with a gradient of blues and greens", + "throat: radiant green, shifting with movement" + ], + "speckle breasted antpitta": [ + "back: olive-green with subtle feather patterns", + "beak: short, stout, and dark grey", + "belly: white with a touch of buff", + "breast: speckled with black and rusty spots", + "crown: olive-grey with little sheen", + "forehead: pale grey with a slight curve", + "eyes: dark and round against a feathered olive face", + "legs: long, thin, and light pinkish grey", + "wings: rounded olive-brown with paler feather edges", + "nape: smooth olive-grey transitioning from crown", + "tail: short, fan-shaped in a muted olive-brown", + "throat: pale ochre blending into white belly" + ], + "speckle breasted woodpecker": [ + "back: olive-brown with white speckles", + "beak: chisel-like and black", + "belly: pale beige with brown speckles", + "breast: white with black speckles", + "crown: vibrant red or dull brown, depending on sex", + "forehead: beige with brown speckles", + "eyes: black, surrounded by beige areas", + "legs: gray-blue with strong claws", + "wings: brown with white spots and black bars", + "nape: beige with brown speckles", + "tail: stiff and black with white spots", + "throat: white with some speckling" + ], + "speckle breasted wren": [ + "back: brownish-grey with subtle speckling", + "beak: small, slender, and sharp", + "belly: light beige with faint streaks", + "breast: white with prominent speckles", + "crown: grey-brown, slightly rounded", + "forehead: light grey, blending into the crown", + "eyes: small, black, and alert", + "legs: thin and twig-like, with sharp claws", + "wings: greyish-brown with speckled patterns", + "nape: brownish-grey, in line with back color", + "tail: greyish-brown, long and narrow with slight fan shape", + "throat: white, leading down to the speckled breast" + ], + "speckle chested piculet": [ + "back: olive-green with subtle streaks", + "beak: short, slender, and straight", + "belly: white with fine speckles", + "breast: white with dense speckles", + "crown: reddish-brown with white flecks", + "forehead: bright red in males, brownish in females", + "eyes: dark with white eye-ring", + "legs: grayish with sharp claws", + "wings: olive-green with white spots", + "nape: olive-green with white streaks", + "tail: short and rigid with olive-green and white bars", + "throat: white with sparse speckles" + ], + "speckle faced parrot": [ + "back: vibrant green feathers", + "beak: curved, strong, beige", + "belly: creamy white with speckles", + "breast: light green with speckles", + "crown: bright green plumage", + "forehead: green with red speckles", + "eyes: dark, round with white rings", + "legs: sturdy, grey with sharp claws", + "wings: vivid green with blue tips", + "nape: green with subtle speckles", + "tail: long, green with blue streaks", + "throat: pale green, speckled" + ], + "speckle fronted weaver": [ + "back: olive-yellow with black streaks", + "beak: cone-shaped, black", + "belly: creamy-white color", + "breast: yellowish with black speckles", + "crown: golden-yellow, slightly streaked", + "forehead: bright yellow", + "eyes: dark brown, surrounded by yellow", + "legs: pale pink, with long, slender toes", + "wings: olive-yellow with black streaks and spots", + "nape: olive-yellow, slightly streaked", + "tail: long, black, and narrow, with white markings", + "throat: creamy-yellow, with black speckles" + ], + "speckled boobook": [ + "back: light brown with white speckles", + "beak: short, sharp, and curved", + "belly: pale with dark brown spots", + "breast: creamy-white with brown streaks", + "crown: brown with small white spots", + "forehead: light brown with small white speckles", + "eyes: large, yellow, and piercing", + "legs: feathered with sharp talons", + "wings: brown with white speckles and faint barring", + "nape: light brown with white spots", + "tail: brown with faint white bands", + "throat: pale with brown streaks" + ], + "speckled chachalaca": [ + "back: brown feathers with subtle speckling", + "beak: short, stout, and curved", + "belly: light gray with distinct speckling", + "breast: pale gray with intermingled white speckles", + "crown: dark brown center transitioning into lighter tan", + "forehead: tan colored with slight speckling", + "eyes: black with subtle white outline", + "legs: gray legs with scaled texture and sharp claws", + "wings: brown with a mix of mottled and speckled patterns", + "nape: grayish-brown transitioning into crown", + "tail: long, brownish-gray feathers with white speckling", + "throat: light gray, blends into breast" + ], + "speckled hummingbird": [ + "back: greenish-bronze feathers", + "beak: long, slender, and straight", + "belly: whitish-gray with speckles", + "breast: iridescent green and gray", + "crown: shiny green with a purple hue", + "forehead: bright, metallic green", + "eyes: small, round, and dark", + "legs: short and delicate", + "wings: rapid, shimmering, and curved", + "nape: greenish-bronze with speckles", + "tail: short, rounded, and feathered", + "throat: iridescent green with spotted gray" + ], + "speckled mourner": [ + "back: olive-brown with subtle speckles", + "beak: short and hooked, dark grey", + "belly: creamy white with irregular brown spots", + "breast: subdued buff-yellow with fine speckles", + "crown: olive-brown with fine white streaks", + "forehead: smoothly blending into crown coloration", + "eyes: dark with a thin pale eye-ring", + "legs: sturdy and blue-grey", + "wings: olive-brown with faint wingbar", + "nape: smoothly transitioned from crown", + "tail: long and olive-brown, faintly barred", + "throat: unmarked pale-yellow" + ], + "speckled mousebird": [ + "back: grayish-brown with faint speckles", + "beak: black, elongated, and curved", + "belly: creamy white with light speckles", + "breast: grayish-white with speckled pattern", + "crown: grayish-brown with a slightly raised crest", + "forehead: pale gray with light speckles", + "eyes: dark brown with white eye-ring", + "legs: dark gray with scaly appearance", + "wings: grayish-brown with white speckles and dark flight feathers", + "nape: grayish-brown with speckled pattern", + "tail: long, thin, and grayish-brown with white-tipped feathers", + "throat: creamy white with faint speckles" + ], + "speckled nightingale thrush": [ + "back: olive-brown with distinct speckles", + "beak: slender and straight, dark gray", + "belly: white with bold black speckles", + "breast: white with heavy dark speckling", + "crown: olive-brown with a slight crest", + "forehead: smooth olive-brown", + "eyes: dark, surrounded by pale eyering", + "legs: strong and grayish-pink", + "wings: olive-brown with faint wingbars", + "nape: speckled olive-brown", + "tail: brownish with narrow white tips", + "throat: white with dark speckles" + ], + "speckled piculet": [ + "back: light brown with white speckles", + "beak: short, straight, and black", + "belly: pale buff with brownish streaks", + "breast: light brown with faint speckles", + "crown: olive-brown with white spots", + "forehead: olive-brown with white speckles", + "eyes: dark with pale eye-ring", + "legs: grayish with sturdy feet", + "wings: olive-brown with white spots and streaks", + "nape: light brown with white speckles", + "tail: short, olive-brown with faint barring", + "throat: pale buff with light streaks" + ], + "speckled pigeon": [ + "back: gray-brown feathers with white speckles", + "beak: short and stout, pale pinkish color", + "belly: pale gray with faint white markings", + "breast: light-purple hue with white speckles", + "crown: dark gray with white speckles", + "forehead: smooth gray with faint white markings", + "eyes: bright orange-red with dark pupil", + "legs: red, sturdy with sharp claws", + "wings: gray-brown with white speckles and black bars", + "nape: gray with white speckles blending into the back", + "tail: dark gray with white-tipped feathers and black bars", + "throat: pale gray with faint white markings" + ], + "speckled rail": [ + "back: streaked brown and black patterns", + "beak: short and slightly curved, yellowish-brown", + "belly: light beige with dark brown spots", + "breast: grayish-white with brown and black speckles", + "crown: rusty red with lighter streaks", + "forehead: pale reddish-brown with dark streaks", + "eyes: small, black, and round", + "legs: long and slender, yellowish-green", + "wings: brown and black speckled plumage, rounded shape", + "nape: rusty red with dark streaks", + "tail: short and square, dark brown with white-tipped feathers", + "throat: white with dark brown speckles" + ], + "speckled spinetail": [ + "back: mottled brown and gray feathers", + "beak: sharp, pointed, and black", + "belly: spotted chesnut and white feathers", + "breast: creamy white with brown spots", + "crown: streaked brown and beige", + "forehead: narrow chesnut forehead band", + "eyes: small, dark, and expressive", + "legs: scaly, brown, and strong", + "wings: brownish-gray with light speckles", + "nape: beige with brown streaking", + "tail: long and brownish with white tips", + "throat: white with delicate brown markings" + ], + "speckled tanager": [ + "back: vibrant green with speckled black markings", + "beak: short, pointed, and black", + "belly: bright yellow with speckled pattern", + "breast: yellowish-green and speckled", + "crown: green with subtle speckling", + "forehead: green and smoothly merging with the crown", + "eyes: black, surrounded by a green mask-like marking", + "legs: short, grey, and powerful", + "wings: green with black spots and white-edged feathers", + "nape: green with minimal speckling", + "tail: long, green feathers with black bands", + "throat: bright yellow, continuing onto the belly" + ], + "speckled tinkerbird": [ + "back: mottled brown and cream feathers", + "beak: small, pointed, black", + "belly: creamy-white with light brown speckles", + "breast: beige with fine brown speckles", + "crown: dark brown with black streaks", + "forehead: light brown with fine speckles", + "eyes: small, black, beady", + "legs: slender, grayish-brown", + "wings: brown with cream speckles and black stripes", + "nape: light brown with black and white markings", + "tail: long, brown, with white speckles and black bands", + "throat: pale creamy-yellow with faint speckles" + ], + "speckled warbler": [ + "back: brownish-grey with white speckles", + "beak: short and pointed, pale greyish-brown", + "belly: creamy white with dark speckles", + "breast: beige with thin black streaks", + "crown: grey-brown with faint white streaks", + "forehead: pale grey-brown with fine white speckles", + "eyes: dark brown, surrounded by faint white eye-ring", + "legs: slender and greyish-pink", + "wings: brownish-grey with black and white markings", + "nape: grey-brown with faint white streaks", + "tail: long and brownish-grey, pale tips on outer feathers", + "throat: off-white with light streaks" + ], + "speckled wood pigeon": [ + "back: mottled brown and greenish feathers", + "beak: short and sturdy, pale grey", + "belly: creamy white with light speckling", + "breast: pale grey with darker speckles", + "crown: dark slate-grey with faint white spots", + "forehead: pale grey blending into the crown", + "eyes: bright orange with a thin grey eye-ring", + "legs: reddish-pink with short, curved talons", + "wings: mottled brown, green and grey feathers with white spots", + "nape: slate-grey with faint white spots", + "tail: mixture of greenish-brown and grey feathers with white outer edges", + "throat: off-white with subtle speckling" + ], + "spectacled barwing": [ + "back: olive-green with dark bars", + "beak: short and stout, pale grayish-blue", + "belly: whitish with pale gray and light brown streaks", + "breast: grayish-brown with pale streaks", + "crown: slate gray with a white line above the eye", + "forehead: grayish-brown blending into the crown", + "eyes: dark brown with bold white spectacles", + "legs: strong and sturdy, dull pinkish-gray", + "wings: blackish-brown with greenish-blue edges", + "nape: slate gray continuing from the crown", + "tail: blackish-brown with greenish-blue edges, slightly forked", + "throat: whitish-gray with pale streaks" + ], + "spectacled bristle tyrant": [ + "back: greenish-brown with fine streaks", + "beak: short and pale", + "belly: dull, grayish-white", + "breast: grayish-white with subtle streaking", + "crown: olive-brown", + "forehead: moderately-sized white spectacles", + "eyes: black with white rings", + "legs: pale and thin", + "wings: greenish-brown with two light wingbars", + "nape: olive-brown", + "tail: greenish-brown and moderately long", + "throat: grayish-white" + ], + "spectacled duck": [ + "back: dark brown feathers with faint white speckles", + "beak: short, black and rounded", + "belly: creamy white with brown spots", + "breast: black with white striations", + "crown: dark brown feathers transitioning to black", + "forehead: black feathers with white spectacles outline", + "eyes: small, dark, framed by distinctive white spectacles", + "legs: short, orange with webbed feet", + "wings: brown-black with vibrant blue-green speculum", + "nape: dark brown feathers with white spectacles continuing", + "tail: brown-black feathers with slight upward curve", + "throat: black feathers fading into white on the breast" + ], + "spectacled eider": [ + "back: dark brown feathers with soft texture", + "beak: stout, sloping black bill with creamy white spots", + "belly: golden-yellow feathers with white side patches", + "breast: black and white barred feathers", + "crown: dark green feathers with lighter green highlights", + "forehead: pale green and white feathers above beak", + "eyes: bright yellow irises surrounded by striking white \"spectacles\" markings", + "legs: short and sturdy with thick black webbed feet", + "wings: dark brown feathers with white trailing edges", + "nape: black and white striped feathers leading to the dark green crown", + "tail: short and dark brown with white-tipped feathers", + "throat: white feathers, dropping down from beak" + ], + "spectacled finch": [ + "back: light brown with subtle black streaks", + "beak: conical and dark grey", + "belly: creamy white with soft gray markings", + "breast: pale gray with paler streaks", + "crown: light gray with black border", + "forehead: grayish-white with black framed rim", + "eyes: black with distinctive white eyering", + "legs: dark grey to black, slender and strong", + "wings: mixture of brown and gray feathers with white streaks", + "nape: light gray with black edge", + "tail: dark brown with white outer edges", + "throat: light gray merging with breast color" + ], + "spectacled fulvetta": [ + "back: olive-green feathers", + "beak: small and black", + "belly: pale gray with slight yellow tinge", + "breast: gray-white with yellow tinges", + "crown: dark gray with white streaks", + "forehead: dark gray", + "eyes: black with white eye-ring (spectacles", + "legs: pinkish-gray and slender", + "wings: olive-green with subtle white markings", + "nape: gray with white streaks", + "tail: olive-green with white tips", + "throat: light gray" + ], + "spectacled guillemot": [ + "back: dark charcoal grey feathers", + "beak: short, sharp-edged, black", + "belly: white with soft grey spots", + "breast: white blending into grey", + "crown: blackish-grey plumage", + "forehead: charcoal grey with white spectacles", + "eyes: small, black, encircled by white rings", + "legs: webbed, dark grey", + "wings: dark grey with white edges", + "nape: charcoal grey blending into white", + "tail: short and pointed, dark grey", + "throat: white with grey streaks" + ], + "spectacled imperial pigeon": [ + "back: dark gray, slightly glossy feathers", + "beak: short, curved, pale gray with yellow tip", + "belly: greyish-white, soft plumage", + "breast: light grey, blending with belly", + "crown: dark gray, smooth feathers", + "forehead: white, prominent eye-ring", + "eyes: bright, red-orange iris", + "legs: strong, pale pinkish-gray", + "wings: dark gray, wide and rounded", + "nape: white collar, contrast with gray head", + "tail: dark gray, long and slightly rounded", + "throat: greyish-white, leading to breast" + ], + "spectacled longbill": [ + "back: greenish-brown with dark markings", + "beak: long, slender, curved", + "belly: pale and feathered", + "breast: greenish-brown with slight barring", + "crown: black and white stripes", + "forehead: white band above eyes", + "eyes: encircled with thin white rings ('spectacles", + "legs: short and strong, greyish-blue", + "wings: greenish-brown with darker flight feathers", + "nape: striped black and white", + "tail: long and curved, greenish-brown", + "throat: white feathers with dark barring" + ], + "spectacled monarch": [ + "back: blue-grey plumage", + "beak: strong, black, slightly hooked", + "belly: pale yellow feathers", + "breast: vibrant yellow marking", + "crown: dark grey-blue with yellow edges", + "forehead: prominent yellow eyebrow line", + "eyes: alert, dark with yellow eyering", + "legs: strong, dark grey", + "wings: blue-grey feathers with yellow patches on coverts", + "nape: blue-grey transitioning to yellow on upper back", + "tail: long, dark grey-blue feathers with yellow edges", + "throat: bright yellow extending down to breast" + ], + "spectacled owl": [ + "back: dark brown with white speckles", + "beak: sharp, black, and hooked", + "belly: creamy white with brown bars", + "breast: white with brown cross-like markings", + "crown: dark brown with white speckles", + "forehead: dark brown with faint speckles", + "eyes: striking yellow surrounded by bold white outlines", + "legs: feathered with rich brown plumage", + "wings: dark brown with white bars and speckles", + "nape: white with dark brown barring", + "tail: dark brown with broad white bands", + "throat: pure white area around the base of the beak" + ], + "spectacled parrotbill": [ + "back: olive-green feathered", + "beak: stout, black, slightly hooked", + "belly: cream-colored", + "breast: light gray with black streaks", + "crown: rusty-red with a silver-white band", + "forehead: silver-white band above the eyes", + "eyes: black with white spectacles-like ring", + "legs: pale pinkish-gray", + "wings: olive-green with black secondary feathers", + "nape: silver-white band connecting to crown", + "tail: long, dark olive-green", + "throat: grayish-white" + ], + "spectacled parrotlet": [ + "back: vibrant green feathers covering the upper body", + "beak: small, hooked, light-colored with a dark tip", + "belly: pale lime green feathers with a smooth appearance", + "breast: bright green feathers blending into the belly area", + "crown: bluish-green feathers with a slight sheen at the top of the head", + "forehead: striking blue feathers above the beak and between the eyes", + "eyes: dark, round with a white eye-ring resembling spectacles", + "legs: short, gray, scaly, with zygodactyl feet for grasping branches", + "wings: green feathers tinged with a hint of blue at the edges", + "nape: green feathers transitioning from the crown to the back", + "tail: relatively short, blue-green feathers with a squared-off appearance", + "throat: pale green feathers, lighter than the breast and belly" + ], + "spectacled petrel": [ + "back: dark grey feathers with a black tinge", + "beak: sharp, hooked, blackish with light grey or blue base", + "belly: white with grey edges on flanks", + "breast: white with occasional light grey shading", + "crown: dark grey with black tinge, extending to sides of head", + "forehead: similar color to crown, merging with eye region", + "eyes: dark brown, surrounded by distinctive white 'spectacle' markings", + "legs: flesh-colored with webbed feet and black claws", + "wings: long, narrow, and blackish-grey with a white trailing edge", + "nape: continuation of crown, with dark grey plumage", + "tail: dark grey, long, and wedge-shaped", + "throat: white, blending seamlessly with the breast area" + ], + "spectacled prickletail": [ + "back: olive-brown with narrow shaft streaks", + "beak: short and stout, hooked at the tip", + "belly: buffy-white with dark brown barring", + "breast: rufous-chestnut with brown bars", + "crown: grayish-brown with buffy streaks", + "forehead: pale whitish-buff eyering", + "eyes: dark brown with yellow eyering", + "legs: sturdy and grayish-pink", + "wings: rounded with brown and rufous pattern", + "nape: grayish-brown with pale buff streaks", + "tail: long, rufous-chestnut with dark barring", + "throat: pale grayish-white with fine streaks" + ], + "spectacled redstart": [ + "back: olive-green with a slight sheen", + "beak: sharp, black, and pointed", + "belly: bright yellow contrasting with the breast", + "breast: reddish-orange in color", + "crown: dark gray with a white patch", + "forehead: white spectacles feature on its dark gray face", + "eyes: dark and round, surrounded by white rings", + "legs: long, slender, and black", + "wings: grayish-black with white edges on the feathers", + "nape: dark gray with a faint white border", + "tail: long and grayish-black with white outer tail feathers", + "throat: bright red bordering the breast and lower face" + ], + "spectacled spiderhunter": [ + "back: olive-green feathered", + "beak: yellowish, curved, and slender", + "belly: light ochre hue", + "breast: pale yellow", + "crown: olive-green with yellow streaks", + "forehead: yellow and slightly rounded", + "eyes: black surrounded by white eyering", + "legs: pale gray and slender", + "wings: olive-green with yellowish edges", + "nape: olive-yellow feathered", + "tail: long, yellowish-green with white tips", + "throat: creamy yellow" + ], + "spectacled tetraka": [ + "back: olive-green with subtle streaks", + "beak: short and sturdy, silver-grey", + "belly: pale yellow with greyish-brown streaks", + "breast: yellowish-green with a distinct white band", + "crown: dark grey, bordered by a white stripe", + "forehead: silvery-grey leading into the crown", + "eyes: large and white-rimmed, giving a \"spectacled\" appearance", + "legs: slim and pale grey", + "wings: olive-green with indistinct brownish markings", + "nape: dark grey, connecting the crown and back", + "tail: medium length, olive-green with grey-brown striping", + "throat: white, contrasting with the surrounding plumage" + ], + "spectacled thrush": [ + "back: olive-brown with faint streaks", + "beak: yellow-orange with dark tip", + "belly: white with dark spots", + "breast: white with black crescent-shaped markings", + "crown: olive-brown with speckled edges", + "forehead: olive-brown with thin white stripe", + "eyes: black surrounded by white eye-ring", + "legs: yellow-orange", + "wings: olive-brown with faint light-colored bars", + "nape: olive-brown with white speckles", + "tail: olive-brown with white-tipped feathers", + "throat: white with black crescent-shaped markings" + ], + "spectacled tyrannulet": [ + "back: light olive-green feathers", + "beak: short, sharp, black", + "belly: pale yellowish-white plumage", + "breast: white with light gray streaks", + "crown: dark gray with white streaks", + "forehead: white spectacles-like marking", + "eyes: small, black, lively", + "legs: strong, grayish-black", + "wings: short, olive-green with white markings", + "nape: grayish-white with darker streaks", + "tail: long, olive-green with black and white lines", + "throat: clean white, unmarked" + ], + "spectacled tyrant": [ + "back: olive-green with slight yellowish hues", + "beak: black, thin, and sharp-edged", + "belly: pale yellow with faint streaks", + "breast: light gray with thin black streaks", + "crown: dark gray with a slight crest", + "forehead: white patch above the beak, creating \"spectacles\" appearance", + "eyes: dark brown with distinctive white eyering", + "legs: long, thin, and black", + "wings: olive-green with white-edged feathers", + "nape: grayish-olive blending with the back", + "tail: blackish with white outer tail feathers, moderately forked", + "throat: light gray, blending with the breast" + ], + "spectacled weaver": [ + "back: vibrant green feathers", + "beak: dark, sturdy, cone-shaped", + "belly: lemon-yellow hue", + "breast: bright yellow feathers", + "crown: green with black eyestripe", + "forehead: green, blending into eyestripe", + "eyes: white spectacles-like markings", + "legs: long, slender, and dark", + "wings: green with black streaks", + "nape: deep green coloration", + "tail: green, long and pointed", + "throat: contrasting yellow patch" + ], + "speke weaver": [ + "back: olive-green feathers", + "beak: cone-shaped and black", + "belly: light underbelly, cream-colored", + "breast: yellowish-olive hue", + "crown: olive-green feathers with dark center", + "forehead: dark olive color fading into yellow", + "eyes: dark and round, black pupils", + "legs: grayish-black, thin and sturdy", + "wings: greenish-brown with darker feather tips", + "nape: olive-green, continuation of the crown", + "tail: long and pointed, olive-brown color", + "throat: light, yellowish-cream color" + ], + "spice imperial pigeon": [ + "back: light bluish-gray feathers", + "beak: short, hooked, pale yellow", + "belly: whitish-gray plumage", + "breast: light grayish-white feathers", + "crown: bluish-gray head feathers", + "forehead: slightly paler gray feathers", + "eyes: dark, round, encircled with light skin", + "legs: short, strong, reddish-pink", + "wings: broad with grayish-blue feathers", + "nape: pale gray with a hint of blue", + "tail: moderately long, bluish-gray feathers", + "throat: whitish-gray, slightly fluffy plumage" + ], + "spike heeled lark": [ + "back: streaked brown with white spots", + "beak: short, straight, and sharp", + "belly: creamy white with brown streaks", + "breast: rich buff-brown with dark spotting", + "crown: dark brown with buff edges", + "forehead: pale buff with dark streaks", + "eyes: deep-set, black and shiny", + "legs: long and slender, pale pinkish-brown", + "wings: elongated, dark brown with white speckles", + "nape: brown with white spots and streaks", + "tail: short and sturdy, dark brown with white spots", + "throat: creamy white with dark brown streaks" + ], + "spillmann tapaculo": [ + "back: dark grey with blackish streaks", + "beak: short, black, and slightly curved", + "belly: dark grey with some black scaling", + "breast: sooty grey with blackish spots", + "crown: dark grey with subtle black patterns", + "forehead: slightly lighter grey than crown", + "eyes: small black beads with white eye-ring", + "legs: experienced and powerful, blackish-grey", + "wings: covertly grey, flanking black streaks", + "nape: smooth dark grey", + "tail: short and stubby, patterned dark grey feathers", + "throat: pale grey slightly spotted with black" + ], + "spinifex pigeon": [ + "back: reddish-brown with dark brown spots", + "beak: short and greyish-brown", + "belly: light grey with dark brown markings", + "breast: reddish-brown with dark brown spots", + "crown: elongated reddish-brown crest feathers", + "forehead: white patch above the beak", + "eyes: dark with prominent white eye-ring", + "legs: dark grey and slender", + "wings: reddish-brown with dark spots and white tips", + "nape: greyish-brown with dark brown spots", + "tail: short and barred with white tips", + "throat: white patch surrounded by dark markings" + ], + "spinifexbird": [ + "back: light brown with fine streaks", + "beak: slender and curved, blackish-grey", + "belly: buff-colored with some dark streaks", + "breast: pale brown with dense streaks", + "crown: warm brown with prominent crest", + "forehead: lighter brown with fine streaks", + "eyes: dark with pale eye-ring", + "legs: long and slender, pale brown", + "wings: brown with blackish flight feathers and pale edges", + "nape: warm brown with fine streaks", + "tail: long, narrow, and dark brown with pale tips", + "throat: pale brown with sparse streaks" + ], + "spiny babbler": [ + "back: covered in brown and gray feathers", + "beak: strong, slender, and slightly curved", + "belly: light gray or white feathers with faint streaks", + "breast: white or pale gray feathers with dark streaks", + "crown: brown feathers with darker streaks", + "forehead: brown with faint gray streaks", + "eyes: small and dark, surrounded by a pale eye-ring", + "legs: strong, grayish-brown, adapted for hopping and perching", + "wings: brown with dark bars, rounded for short flights", + "nape: grayish-brown feathers transitioning from the crown", + "tail: long, brown with dark bars, used for balance and display", + "throat: white or pale gray feathers with fine streaks" + ], + "spiny cheeked honeyeater": [ + "back: reddish-brown with faint streaks", + "beak: long, curved, black", + "belly: pale yellow with brown streaks", + "breast: light yellow with fine striations", + "crown: reddish-brown, slightly streaked", + "forehead: pale cream with thin brown stripes", + "eyes: dark, surrounded by pale cream eye-ring", + "legs: strong, dark gray", + "wings: reddish-brown with white-tipped feathers", + "nape: reddish-brown with faint streaks", + "tail: long, dark brown with white edges", + "throat: pale cream with thin brown streaks" + ], + "spiny faced antshrike": [ + "back: olive-brown feathers", + "beak: long, hooked, black", + "belly: pale grayish-white", + "breast: gray-white plumage", + "crown: gray crest, small spines", + "forehead: lightly speckled gray", + "eyes: dark, piercing gaze", + "legs: long, sturdy, gray", + "wings: brownish-gray, edged white", + "nape: grayish-brown transition", + "tail: slender, black with white tips", + "throat: white with fine gray streaks" + ], + "spix guan": [ + "back: dark blue-gray plumage", + "beak: short, strong, ivory-colored", + "belly: lighter gray-blue feathers", + "breast: bluish-gray feathered chest", + "crown: dark blue-gray crest", + "forehead: lighter gray-blue plumage", + "eyes: small, dark brown", + "legs: long, slender, red-orange", + "wings: dark blue-gray, rounded", + "nape: grayish-blue feathered neck", + "tail: long, dark blue-gray feathers with white tips", + "throat: light gray-blue plumage" + ], + "spix spinetail": [ + "back: bluish-gray feathers and streaked texture", + "beak: dark, straight, and sharp", + "belly: pale gray with thin stripes", + "breast: white with black barring", + "crown: tawny-orange with a fine crest", + "forehead: tawny-orange like the crown", + "eyes: dark with pale eyering", + "legs: relatively long and brownish-gray", + "wings: bluish-gray with darker primary feathers", + "nape: bluish-gray with streaks like the back", + "tail: long and dark with outer white feathers", + "throat: unmarked and pale gray" + ], + "spix warbling antbird": [ + "back: dark grey with subtle streaking", + "beak: sharp, black, and slender", + "belly: creamy white with faint barring", + "breast: pale grey with faint streaks", + "crown: deep black with a blue sheen", + "forehead: blackish-blue fading into grey", + "eyes: dark, beady, and expressive", + "legs: long, slender, and black", + "wings: dark grey with light feather edges", + "nape: bluish-grey with slight streaking", + "tail: long, dark grey, with a faint blue sheen", + "throat: pale grey with vague streaks" + ], + "spix woodcreeper": [ + "back: brownish feathers with faint streaks", + "beak: long, slim, and curved", + "belly: light buff-colored with fine streaks", + "breast: warm brown with soft striping", + "crown: reddish-brown with faint streaks", + "forehead: light brown, blending into the crown", + "eyes: small, black, and alert", + "legs: strong, light gray with sharp claws", + "wings: brownish-grey with subtle barring", + "nape: light brown with faint streaks", + "tail: long, narrow, with brown and black bars", + "throat: pale buff with fine darker streaks" + ], + "splendid astrapia": [ + "back: iridescent green and blue plumage", + "beak: slender, black curved bill", + "belly: velvety black feathers", + "breast: bright green iridescent plumage", + "crown: glossy violet-blue feathers", + "forehead: reflective green-blue sheen", + "eyes: dark, round with a white eyering", + "legs: thin, dark gray with sharp claws", + "wings: rich green-blue with black edges", + "nape: bronze-green iridescent feathers", + "tail: long, ribbon-like black feathers", + "throat: shimmering deep blue plumage" + ], + "splendid fairywren": [ + "back: bright blue plumage on the male, dull brown on the female", + "beak: small, pointed, black beak for catching insects", + "belly: whitish to pale grey feathers on both sexes", + "breast: vibrant blue on males, dull brownish-grey on females", + "crown: iridescent blue feathers on the male, dull brown on the female", + "forehead: electric blue tuft above eyes on males, brown on females", + "eyes: small, round, dark eyes with a white eye-ring", + "legs: long, thin, dark grey legs for hopping and perching", + "wings: rich blue on males with contrasting black flight feathers, dull brown on females", + "nape: brilliant blue connecting from the crown to the back on males, brown on females", + "tail: long, black tail with blue feathers at the base, held upright", + "throat: vivid blue patch in males, plain brown in females" + ], + "splendid starling": [ + "back: vibrant blue-green feathers", + "beak: sharp, straight, and yellow", + "belly: metallic purple hue", + "breast: shimmering green and blue feathers", + "crown: glossy turquoise patch", + "forehead: bright blue feathers", + "eyes: round, black, and expressive", + "legs: sturdy and yellowish", + "wings: iridescent blue-green with black tips", + "nape: shimmering green-blue transition", + "tail: long, black, and fan-shaped", + "throat: dazzling purple and blue feathers" + ], + "splendid sunbird": [ + "back: iridescent green and blue plumage", + "beak: long, slender, and curved for nectar extraction", + "belly: dull, dark grey feathers", + "breast: bright metallic blue with a purple sheen", + "crown: glossy violet with a peaked crest", + "forehead: vibrant emerald green", + "eyes: small and dark, surrounded by feathered eye-ring", + "legs: short and dark grey, with slender claws for perching", + "wings: iridescent blue-green, with black and white streaks", + "nape: brilliant turquoise transitioning to green", + "tail: elongated, with vivid blue and green feathers, and white tips", + "throat: intense fiery red feathers, contrasting with the breast" + ], + "splendid white eye": [ + "back: vibrant green feathers", + "beak: small, pointed, black", + "belly: soft light-yellow plumage", + "breast: bright yellow feathers", + "crown: bluish-purple head stripe", + "forehead: greenish-yellow feathers", + "eyes: striking white eye-ring", + "legs: slender, grayish-pink", + "wings: green with blue-black edging", + "nape: green with yellow tinge", + "tail: long, dark blue-black", + "throat: yellow with green tinge" + ], + "spoon billed sandpiper": [ + "back: pale brown with dark feather edges", + "beak: long, spoon-shaped tip", + "belly: white with faint streaks", + "breast: light brown, spotted", + "crown: brown with streaks", + "forehead: pale buff", + "eyes: dark, with white eyering", + "legs: grayish-yellow", + "wings: pale brown, heavily streaked", + "nape: brown, streaked", + "tail: dark brown, rounded", + "throat: white, unmarked" + ], + "spot backed antbird": [ + "back: black and white spots pattern", + "beak: short, black, and pointed", + "belly: white with black spots", + "breast: white with black spots", + "crown: solid black with slight crest", + "forehead: black, smooth finish", + "eyes: small, dark with white eyering", + "legs: short, gray and strong", + "wings: black with white spots, medium length", + "nape: black with a white pattern", + "tail: black with white tips, medium length", + "throat: white with black spots" + ], + "spot backed antshrike": [ + "back: olive-green with black streaks", + "beak: short, curved, and black", + "belly: off-white with grayish streaks", + "breast: grayish-white with light streaks", + "crown: black with white spots", + "forehead: black with fine, white streaks", + "eyes: dark brown, slightly enlarged", + "legs: long, slender, grayish-black", + "wings: black with bold white spots", + "nape: black with white spots, transitioning into olive-green", + "tail: long, black with white tips", + "throat: white, unmarked" + ], + "spot backed antwren": [ + "back: olive-green with small white spots", + "beak: short, sharp, black", + "belly: lightly-streaked, pale yellow", + "breast: white with black spots", + "crown: gray with black streaks", + "forehead: smooth, gray", + "eyes: dark brown with small white eye-ring", + "legs: slender, grayish", + "wings: black with white bands", + "nape: gray with black streaks", + "tail: long, black with white-tipped feathers", + "throat: white with fine black streaks" + ], + "spot backed puffbird": [ + "back: olive-brown with white spots", + "beak: short, black, and slightly hooked", + "belly: white with black banding", + "breast: white with black speckles", + "crown: olive-brown with black spots", + "forehead: olive-brown with white streak", + "eyes: dark with a white orbital ring", + "legs: short and grayish", + "wings: olive-brown with light edging", + "nape: olive-brown with white spots", + "tail: olive-brown with white tips", + "throat: white" + ], + "spot bellied eagle owl": [ + "back: dark brown with pale spots", + "beak: strong, black hooked beak", + "belly: white with dark brown spots", + "breast: white with brown streaks", + "crown: dark brown feathers with lighter edges", + "forehead: dark brown with pale markings", + "eyes: large, forward-facing, orange-yellow", + "legs: feathered, dark brown with streaks", + "wings: broad, brown with white spots", + "nape: dark brown with lighter feather edges", + "tail: wide, dark brown with white bands", + "throat: white with brown streaks" + ], + "spot billed ground tyrant": [ + "back: light greyish-brown with a subtle pattern", + "beak: blackish, medium-length, slightly hooked tip", + "belly: creamy white, sometimes with faint streaks", + "breast: pale grey with tiny white flecks", + "crown: dull grey-brown, streaked with black", + "forehead: pale grey, blending with crown coloration", + "eyes: dark brown, surrounded by a thin white eye-ring", + "legs: long and slender, grey or dark brown", + "wings: grey-brown with lighter edges, inconspicuous barring", + "nape: grey-brown, blending with crown and back coloration", + "tail: grey-brown, slightly darker than the wings, fairly short", + "throat: pale grey with faint streaks, contrasting with breast" + ], + "spot billed pelican": [ + "back: light grey feathers with spotted pattern", + "beak: long, hooked tip, yellow with a black spot", + "belly: white feathers with subtle grey spots", + "breast: pale pinkish-white feathers", + "crown: light grey plumage", + "forehead: smooth greyish-white feathers", + "eyes: small, dark and expressive", + "legs: short, pinkish-grey webbed feet", + "wings: large, grey with a black and white pattern on feather tips", + "nape: pale grey with elongated plumes", + "tail: short, greyish-white feathers with a fan-like appearance", + "throat: white and slightly puffy with a gular pouch" + ], + "spot billed toucanet": [ + "back: vibrant green feathers covering the upper body", + "beak: large, hooked, black and yellow spotted", + "belly: light greenish-yellow plumage", + "breast: brilliant green feathers transitioning to yellow", + "crown: deep emerald green tuft above the head", + "forehead: bright green feathers framing the face", + "eyes: large, dark, and expressive with a blue eye-ring", + "legs: strong, short, and black with sharp claws", + "wings: wide, green feathers with blue and red accents", + "nape: rich green feathers at the back of the neck", + "tail: long, green, and blue tipped feathers with red underside", + "throat: bright yellow feathers transitioning to green" + ], + "spot breasted antvireo": [ + "back: olive-brown and plain", + "beak: short, hooked, dark gray", + "belly: white with black spots", + "breast: white with black spots", + "crown: pale gray", + "forehead: pale gray", + "eyes: dark, encircled with white rings", + "legs: light gray, strong", + "wings: olive-brown, large", + "nape: light gray", + "tail: olive-brown, long", + "throat: white, unpatterned" + ], + "spot breasted fantail": [ + "back: olive-brown hues with slight variations", + "beak: short, thin, and pointed for insect-catching", + "belly: off-white with small spots or streaks", + "breast: white with contrasting brownish spots", + "crown: olive-brown, rounded, with a slight crest", + "forehead: olive-brown, slightly lighter than crown", + "eyes: dark with faint eye-rings, appearing alert", + "legs: slim, grayish-brown, strong for perching", + "wings: olive-brown with lighter wing bars, designed for short, fluttery flights", + "nape: olive-brown, blending with the back and crown", + "tail: long, fan-shaped, often fanned out and expressive", + "throat: white or off-white, blending into breast" + ], + "spot breasted ibis": [ + "back: dark, glossy green hue", + "beak: long, downward curving and yellowish-brown", + "belly: white scales with black spots intermingled", + "breast: cream-colored with dense black spots", + "crown: dark green, smooth crest", + "forehead: light blue-grey color, slightly domed", + "eyes: deep brown encircled by thin white ring", + "legs: slender and dull greenish-yellow", + "wings: dark green, wide and rounded, scaly texture", + "nape: greenish-black, tinged with bronze", + "tail: dark green with a slight glossy sheen, moderately long", + "throat: cream-toned with a few black spots on the sides" + ], + "spot breasted lapwing": [ + "back: light brown with black spots", + "beak: short, black, and robust", + "belly: white with black spots", + "breast: white with distinct black spots", + "crown: black with white sides", + "forehead: white, separating crown from black eyes", + "eyes: black with white outlines", + "legs: long, thin, and yellow", + "wings: brown with black spots, white patches", + "nape: black, connecting crown to back", + "tail: black, white-tipped with white outer feathers", + "throat: white, bordered by black spots" + ], + "spot breasted laughingthrush": [ + "back: olive-brown plumage", + "beak: short, curved, and black", + "belly: white with black spots", + "breast: light grayish-white with dark spots", + "crown: olive-gray with dark streaks", + "forehead: pale gray", + "eyes: dark brown with pale eyering", + "legs: long, sturdy, and gray", + "wings: olive-brown with faint streaks", + "nape: grayish-brown with dark streaks", + "tail: long, olive-brown, and slightly forked", + "throat: pale grayish-white" + ], + "spot breasted oriole": [ + "back: olive-green hue, smooth feathers", + "beak: slender, curved, black", + "belly: white with black streaks", + "breast: white with black spots", + "crown: black, sleek feathers", + "forehead: black, continuous from crown", + "eyes: round, dark brown with thin eye-ring", + "legs: slender, gray with sharp claws", + "wings: olive-green, black-tipped feathers", + "nape: olive-green blending into black", + "tail: long, black with slight white edges", + "throat: white with black streaks" + ], + "spot breasted parrotbill": [ + "back: olive-green with brown shades", + "beak: short, stout, and slightly curved", + "belly: off-white with light brown streaks", + "breast: creamy white with distinct brown spots", + "crown: reddish-brown", + "forehead: rufous-brown", + "eyes: small, dark brown with pale eye-ring", + "legs: dark gray and slender", + "wings: olive-brown with white tips on wing-bars", + "nape: olive-brown", + "tail: long, reddish-brown", + "throat: creamy white" + ], + "spot breasted scimitar babbler": [ + "back: olive-brown with light streaks", + "beak: slightly curved, light gray", + "belly: white with black spots", + "breast: white with black spots", + "crown: brown with light streaks", + "forehead: brown with light streaks", + "eyes: dark with white eyering", + "legs: sturdy, pale gray", + "wings: olive-brown with light streaks", + "nape: brown with light streaks", + "tail: long and graduated, olive-brown with light streaks", + "throat: white with black spots" + ], + "spot breasted thornbird": [ + "back: light brown with faint streaks", + "beak: curved, sharp and dark gray", + "belly: creamy white with black spots", + "breast: white with bold black spots", + "crown: grayish-brown with streaks", + "forehead: pale gray-brown", + "eyes: dark with a white eye-ring", + "legs: long and slender gray", + "wings: light brown with black streaks and white bars", + "nape: gray-brown with fine streaks", + "tail: brown with black bands and white tips", + "throat: white, unmarked" + ], + "spot breasted woodpecker": [ + "back: black-and-white striped pattern", + "beak: long, slender, and pointed", + "belly: white with black spots", + "breast: white with bold black spots", + "crown: red with black borders", + "forehead: white with black markings", + "eyes: black and beady", + "legs: sturdy and grayish", + "wings: black with white bars", + "nape: black-and-white striped pattern", + "tail: black with white bars and rufous undertail coverts", + "throat: white with black streaks" + ], + "spot breasted wren": [ + "back: brown with faint spots", + "beak: thin, pointed, black", + "belly: creamy white with large spots", + "breast: cream-colored with black spots", + "crown: uniform brown with subtle streaks", + "forehead: light brown", + "eyes: dark, medium-sized, with white eye-ring", + "legs: strong, thin, gray", + "wings: brown with faint barring", + "nape: light brown", + "tail: long, brown with faint barring", + "throat: creamy white" + ], + "spot crowned antvireo": [ + "back: olive-brown coloration", + "beak: pale grayish-yellow, slightly hooked", + "belly: lighter grayish color", + "breast: grayish-white plumage", + "crown: distinct black and white spots", + "forehead: black and white spots continuing from crown", + "eyes: dark brown with a white eye-ring", + "legs: long, light pinkish-gray", + "wings: olive-brown with faint white wing bars", + "nape: olive-brown feathers blending into spots on crown", + "tail: long, olive-brown with pale tips", + "throat: white with grayish-white breast blending into belly" + ], + "spot crowned barbet": [ + "back: emerald green with small black spots", + "beak: sharp, stout, and black", + "belly: pale yellow with black streaks", + "breast: bright yellow with black barring", + "crown: bright red with distinct black spots", + "forehead: vibrant red with fine black markings", + "eyes: dark brown surrounded by pale blue rings", + "legs: grayish-blue and sturdy", + "wings: green with bold black bars", + "nape: green with dark black spots", + "tail: black with greenish-blue tinge and white tips", + "throat: white with a hint of yellow and black streaks" + ], + "spot crowned euphonia": [ + "back: olive-green with faint streaks", + "beak: short and thick, pale color", + "belly: vibrant yellow hue", + "breast: bright yellow, slightly paler than belly", + "crown: deep black with contrasting white spots", + "forehead: black with white spotted patterns", + "eyes: small, round, and shiny black", + "legs: slender and grayish-brown", + "wings: olive-green, tinged with blue", + "nape: black merging into olive-green", + "tail: short, olive-green with bluish tones", + "throat: gleaming yellow, intensifying towards the breast" + ], + "spot crowned woodcreeper": [ + "back: vertical brownish-black streaks", + "beak: long, decurved, and stout", + "belly: buff-colored with dark brown bars", + "breast: creamy-white with black spots", + "crown: dark brown with prominent white spots", + "forehead: white spots against a dark background", + "eyes: dark-brown surrounded by thin, white eye-ring", + "legs: grayish-blue with strong claws", + "wings: bright rufous with slightly curved tips", + "nape: dark brown with white spots", + "tail: long, rufous, and prominently barred", + "throat: white with dark brown chevron markings" + ], + "spot flanked barbet": [ + "back: olive-green with yellow streaks", + "beak: short, strong, and cone-shaped", + "belly: pale yellow with dark spots", + "breast: yellow with bold black spots", + "crown: red head with black band", + "forehead: red and black striped pattern", + "eyes: small, dark, surrounded by pale yellow ring", + "legs: short, grey, and sturdy", + "wings: greenish-yellow with black markings", + "nape: olive-green with yellow streaks", + "tail: short, dark green with yellow markings", + "throat: pale yellow with black spots" + ], + "spot flanked gallinule": [ + "back: olive-brown with white streaks", + "beak: pale blue with reddish tip", + "belly: grayish-white", + "breast: grayish-blue", + "crown: dark brown", + "forehead: pale blue with a red shield", + "eyes: bright red", + "legs: long, greenish-yellow", + "wings: olive-brown with white speckles", + "nape: dark brown", + "tail: black with white stripes", + "throat: pale blue-gray" + ], + "spot fronted swift": [ + "back: sleek and shiny feathers", + "beak: thin and pointed", + "belly: light colored with minimal markings", + "breast: soft gray and white mix", + "crown: dark slate gray", + "forehead: pale grayish-white", + "eyes: small and dark", + "legs: short and thin", + "wings: long and slender", + "nape: gray with fine white streaks", + "tail: forked with white edging", + "throat: white with gray streaks" + ], + "spot necked babbler": [ + "back: olive-green with subtle streaks", + "beak: short and sturdy, pale-brown", + "belly: creamy-white with light spotting", + "breast: grayish-white, mottled", + "crown: dark brown with lighter streaks", + "forehead: pale brown with fine streaks", + "eyes: deep black with white eye-ring", + "legs: strong and brownish-gray", + "wings: dark brown with pale-edged feathers", + "nape: spotted with brown and gray shades", + "tail: dark brown with pale tips", + "throat: white with distinct black spots" + ], + "spot necked bulbul": [ + "back: olive-green with pale streaks", + "beak: sharp, slightly curved, dark-colored", + "belly: pale yellow, slightly feathered", + "breast: yellowish with grayish-white spots", + "crown: brownish-grey with a slight crest", + "forehead: brownish-grey, blending with the crown", + "eyes: dark, alert, encircled with white", + "legs: short, strong, light brown", + "wings: olive-green with primary feathers tipped in white", + "nape: light brown with a characteristic spot-neck pattern", + "tail: long, tapered, dark green with white tips", + "throat: pale yellow with grayish-white streaks" + ], + "spot tailed antwren": [ + "back: olive-brown with fine blackish streaks", + "beak: slim and pointed, black in color", + "belly: yellowish-white", + "breast: pale gray with fine blackish streaks", + "crown: olive-brown with darker streaks", + "forehead: pale grayish-brown", + "eyes: dark brown with thin white eyerings", + "legs: pale flesh-colored", + "wings: olive-brown with blackish spots on coverts", + "nape: olive-brown with dark streaks", + "tail: olive-brown with distinct white spots", + "throat: pale gray with blackish streaks" + ], + "spot tailed goshawk": [ + "back: sleek, brown-feathered", + "beak: sharp, hooked, pale yellow", + "belly: creamy white with brown speckles", + "breast: white with russet streaks", + "crown: dark brown with lighter streaks", + "forehead: light brown with fine streaks", + "eyes: piercing, amber-orange", + "legs: sturdy, yellow-taloned", + "wings: broad, striped with dark brown and white patches", + "nape: reddish-brown with fine streaks", + "tail: long, white-tipped with prominent dark bars", + "throat: white with subtle brown speckles" + ], + "spot tailed nightjar": [ + "back: mottled brown and gray feathers", + "beak: short, wide, and hooked", + "belly: light brown with dark streaks", + "breast: pale gray-brown with black spots", + "crown: grayish-brown with streaks and spots", + "forehead: light gray with dark lines", + "eyes: large and dark, adapted for night vision", + "legs: short, feathered, and cryptically colored", + "wings: long, pointed, with brown and black patterns", + "nape: grayish-brown with darker streaks", + "tail: brown with white spots and barring", + "throat: pale gray with fine streaks" + ], + "spot throated babbler": [ + "back: grayish-brown with subtle streaks", + "beak: short, thin, slightly curved", + "belly: off-white with light gray accents", + "breast: pale gray blending to the white belly", + "crown: grayish-brown adorned with white streaks", + "forehead: creamy-white coloration", + "eyes: small, dark, encircled by a light ring", + "legs: slender, pale grayish-blue", + "wings: grayish-brown with white bars", + "nape: grayish-brown with faint streaks", + "tail: long, grayish-brown with white tips", + "throat: white spot surrounded by grayish-brown" + ], + "spot throated flameback": [ + "back: olive-brown with dark streaks", + "beak: long, slender, ivory-yellow", + "belly: white with thin black bars", + "breast: white with dark stripes", + "crown: red in males, black in females", + "forehead: reddish in males, black in females", + "eyes: dark brown with white eye-ring", + "legs: grayish-blue, sturdy", + "wings: blackish-brown with white spots", + "nape: yellowish-orange with black streaks", + "tail: dark brown with white bands", + "throat: whitish-yellow spot on chin and throat" + ], + "spot throated hummingbird": [ + "back: vibrant green feathers", + "beak: elongated, slender, and straight", + "belly: soft yellowish-white plumage", + "breast: pale greyish-white feathers", + "crown: glossy green head feathers", + "forehead: iridescent green patch", + "eyes: small, dark, and alert", + "legs: short and delicate", + "wings: rapid fluttering, iridescent green", + "nape: greenish-bronze feathers", + "tail: rounded, green and white feathers", + "throat: distinctive spotted pattern" + ], + "spot throated woodcreeper": [ + "back: brownish streaked feathers", + "beak: long and slightly curved", + "belly: creamy white with faint brown streaks", + "breast: white with brown spots", + "crown: dark brown with an orange tint", + "forehead: slightly lighter brown", + "eyes: dark, round, and small", + "legs: sturdy and grayish-brown", + "wings: mottled brown with white markings", + "nape: brown with orangish hue", + "tail: long, rigid, and dark brown", + "throat: pale with dark spotting" + ], + "spot winged antbird": [ + "back: brownish-grey plumage", + "beak: small, straight, and black", + "belly: white with fine grey streaks", + "breast: pale grey with faint brown spots", + "crown: dark grey with black speckles", + "forehead: slightly lighter grey than the crown", + "eyes: small, black, and shiny", + "legs: short, pale pink-gray with strong black claws", + "wings: brownish-grey with white spots on wing coverts", + "nape: greyish-brown with a slight rufous tinge", + "tail: long, brownish-grey with broad white tips", + "throat: white with fine grey streaks" + ], + "spot winged antshrike": [ + "back: olive-brown with black streaks", + "beak: short, black, and hooked", + "belly: off-white with dark bars", + "breast: grayish-brown, streaked with black", + "crown: black with white spots", + "forehead: pale eyebrow blending into cheeks", + "eyes: dark with white eye-ring", + "legs: long, grayish-brown", + "wings: black with white spots", + "nape: grayish-brown, matching back", + "tail: black with white tips", + "throat: off-white with dark bars" + ], + "spot winged falconet": [ + "back: sleek, dark feathers with white spots", + "beak: short, curved, and sharp for hunting", + "belly: creamy white with light streaks", + "breast: slightly ruffled, blending in with the belly", + "crown: dark-colored feathers with a white stripe", + "forehead: prominent white stripe between eye and beak", + "eyes: large, piercing, and deep brown in color", + "legs: slim and long with sharp, curved talons", + "wings: dark with white spotting, well-suited for agile flight", + "nape: white band separating the crown from the back", + "tail: short with horizontal barring and white tips", + "throat: pale with light streaking, transitioning to the belly" + ], + "spot winged grosbeak": [ + "back: olive-green with pale spots", + "beak: strong, conical, ivory-white", + "belly: pale yellowish-white", + "breast: buff-orange with black streaks", + "crown: olive-green and black patch", + "forehead: olive-green highlighted", + "eyes: black with white eye-ring", + "legs: sturdy and grayish-brown", + "wings: black with white spots", + "nape: olive-green with black patch", + "tail: black with white-tipped feathers", + "throat: black with fine white streaks" + ], + "spot winged monarch": [ + "back: olive-brown with a slight sheen", + "beak: slender, slightly curved, and dark-colored", + "belly: creamy yellow with black spots", + "breast: orange-rust with black barring", + "crown: glossy black with hidden blue spots", + "forehead: black with visible blue spots", + "eyes: bright, with white eye-ring", + "legs: long, slim, and dark gray", + "wings: black with bold white spots", + "nape: olive-brown, transitioning from the crown", + "tail: long, black with white edges", + "throat: yellow-orange, matching the breast" + ], + "spot winged parrotlet": [ + "back: olive green with subtle barring", + "beak: short, curved, light gray", + "belly: pale green, slightly yellowish", + "breast: light green with barely visible spotting", + "crown: blue-green with faint black streaks", + "forehead: pale blue with some black markings", + "eyes: dark brown, surrounded by thin white eyering", + "legs: short, gray, strong", + "wings: greenish-blue with darker blue spots on secondaries", + "nape: olive green with blue tint", + "tail: long, bluish-green, slightly forked", + "throat: blue-green, fading into lighter green on breast" + ], + "spot winged pigeon": [ + "back: grayish-brown feathers with subtle iridescence", + "beak: short and sturdy, pale yellowish-brown", + "belly: soft grayish-white feathers", + "breast: rosy-pinkish hue with gray undertones", + "crown: pale gray with a slight iridescent sheen", + "forehead: smooth gray feathers transitioning to the crown", + "eyes: dark, round, and expressive with a thin eye-ring", + "legs: reddish-purple, strong and scaly with sharp claws", + "wings: grayish-brown with distinct black spots on white wing coverts", + "nape: smooth gray feathers blending into the back", + "tail: long, dark gray feathers with a wide black band at the tip", + "throat: light gray feathers transitioning to the rosy breast area" + ], + "spot winged rosefinch": [ + "back: reddish-brown with streaks", + "beak: short, conical, and pale pinkish-gray", + "belly: pale grey with a pinkish hue", + "breast: rosy pink with streaks", + "crown: deep pinkish-red with streaks", + "forehead: bright pinkish-red", + "eyes: black, surrounded by white eye-ring", + "legs: sturdy, dark gray", + "wings: brownish-black with distinct white spots", + "nape: reddish-brown with streaks", + "tail: dark brown with white corners", + "throat: rosy pink with streaks" + ], + "spot winged starling": [ + "back: sleek, dark feathers", + "beak: pointed, yellowish", + "belly: slightly paler feathers", + "breast: dark, spotted feathers", + "crown: glossy, iridescent black", + "forehead: slightly raised, dark feathers", + "eyes: dark, round with a white ring", + "legs: light gray, slender", + "wings: black with prominent white spots", + "nape: dark, glossy feathers", + "tail: long, dark with white tip", + "throat: dark, iridescent plumage" + ], + "spot winged thrush": [ + "back: dark brown feathers with white spots", + "beak: thin and curved with blackish color", + "belly: cream-colored with black streaks", + "breast: orange-brown with dark spots", + "crown: dark brown with pale streaks", + "forehead: light brown with a buff tone", + "eyes: round and black surrounded by a white ring", + "legs: pale pink with strong, slender claws", + "wings: dark brown with large white spots", + "nape: brownish-gray with a hint of green", + "tail: dark brown with white tips and spots", + "throat: pale cream with fine black streaks" + ], + "spot winged wood quail": [ + "back: dark brown with subtle spots", + "beak: short and grayish", + "belly: white with black markings", + "breast: soft brown with faint spots", + "crown: dark and slightly reddish-brown", + "forehead: gray fading to brown", + "eyes: black surrounded by a white ring", + "legs: short and grayish-brown", + "wings: dark brown, gray, and white spots", + "nape: pale gray feather marks", + "tail: short with white-tipped dark feathers", + "throat: white with scattered black markings" + ], + "spotless crake": [ + "back: dark brown with subtle streaks", + "beak: slim and black", + "belly: off-white or pale gray", + "breast: pale gray with faint barring", + "crown: dark brown", + "forehead: pale gray", + "eyes: small, dark brown", + "legs: pale yellow-green", + "wings: short, brown with some white streaks", + "nape: dark brown", + "tail: dark brown with faint barring", + "throat: off-white or light gray" + ], + "spotless starling": [ + "back: glossy greenish-black feathers", + "beak: black, medium-length, and pointed", + "belly: shiny, dark iridescent plumage", + "breast: gleaming, dark green sheen", + "crown: shimmering blue-green feathers", + "forehead: glossy black with slight iridescent shine", + "eyes: dark brown, piercing gaze", + "legs: black, thin, and strong", + "wings: dazzling, dark greenish-black, pointed tips", + "nape: radiant, blue-green tinged feathers", + "tail: long, dark, slightly forked feathers", + "throat: iridescent black with a hint of purple" + ], + "spotted antbird": [ + "back: brown with black streaks", + "beak: sharp, black, and hook-tipped", + "belly: cream with brown spots", + "breast: greyish white with light spots", + "crown: black with white dots", + "forehead: black with white speckles", + "eyes: dark and rounded", + "legs: slender, grayish-brown", + "wings: brown with white spots and bars", + "nape: black with white flecks", + "tail: long and brown with white tips", + "throat: cream-colored with faint spots" + ], + "spotted antpitta": [ + "back: olive-brown with subtle spots", + "beak: short, black, curved", + "belly: cream-colored with black spots", + "breast: yellowish with black spots", + "crown: ruddy brown with faint streaks", + "forehead: olive-brown, spotted", + "eyes: black with off-white eyering", + "legs: long, pinkish-gray", + "wings: olive-brown with black bars", + "nape: olive-brown with fine streaks", + "tail: short, olive-brown with black bars", + "throat: creamy white with black spots" + ], + "spotted bamboowren": [ + "back: olive-brown with dark spots", + "beak: short and conical", + "belly: whitish with black spots", + "breast: grayish-white, spotted", + "crown: rufous-brown, slightly streaked", + "forehead: medium olive-brown", + "eyes: dark, piercing gaze", + "legs: slender and gray", + "wings: brown with light edging, dotted", + "nape: olive-brown, dark streaks", + "tail: long and brown with light tips, spotted", + "throat: grayish-white, scattered spots" + ], + "spotted barbtail": [ + "back: olive-brown with fine, pale spots", + "beak: short and straight, dark color", + "belly: creamy-white with brown streaks", + "breast: buffy-white with dark, crescent-shaped spots", + "crown: rufous-brown with pale spots", + "forehead: rufous with paler streaks", + "eyes: dark eyes with thin white eye-ring", + "legs: strong and grayish-pink", + "wings: olive-brown with white-tipped covert feathers", + "nape: rufous-brown with pale spots", + "tail: long, barred with alternating rufous and black bands", + "throat: buffy-white with streaks and crescent-shaped spots" + ], + "spotted berrypecker": [ + "back: olive-green with faint spots", + "beak: short, curved, and black", + "belly: pale yellow with black spots", + "breast: yellowish-green with dark spots", + "crown: dark olive-green adorned with spots", + "forehead: deep olive-green with scattered black spots", + "eyes: dark brown with pale eye-ring", + "legs: grayish-black slender limbs", + "wings: olive-green with black spots", + "nape: slightly lighter olive-green with minimal spots", + "tail: long, olive-green with distinctive black spots", + "throat: yellowish-green with prominent dark spots" + ], + "spotted bowerbird": [ + "back: light brown with white spots", + "beak: black, slender, and slightly curved", + "belly: pale cream with faint spotting", + "breast: light brown with dense white spots", + "crown: light brown with fine white spots", + "forehead: light brown with sparse white spots", + "eyes: dark brown surrounded by a thin, white eye-ring", + "legs: dark grey and strong", + "wings: light brown with white spots and dark brown flight feathers", + "nape: light brown with fine white spots", + "tail: long and brown with white spots and a dark brown band near the tip", + "throat: pale cream with light brown speckling" + ], + "spotted bush warbler": [ + "back: olive-brown with black streaks", + "beak: short and thin, blackish-brown", + "belly: light white with brownish spots", + "breast: off-white with dark spots and streaks", + "crown: olive-brown with faint streaks", + "forehead: pale olive with fine streaks", + "eyes: small and dark, encircled by a light eyering", + "legs: long and slender, pale pinkish-brown", + "wings: olive-brown with black streaks, short and rounded", + "nape: olive-brown with faint streaks", + "tail: olive-brown with faint barring, short and rounded", + "throat: off-white with brownish spots" + ], + "spotted buttonquail": [ + "back: brown with white streaks", + "beak: short and stout, grayish-brown", + "belly: buff with fine streaks", + "breast: cream-colored with dark spots", + "crown: dark brown with white flecks", + "forehead: whitish with brown streaks", + "eyes: dark, surrounded by light feathers", + "legs: short and strong, gray-brown", + "wings: rounded, brown with white spots", + "nape: dark brown with white markings", + "tail: short and barred, brownish-black", + "throat: pale with fine streaks" + ], + "spotted crake": [ + "back: brownish-grey with dark spots", + "beak: short, sharp, yellowish-green", + "belly: white with dark streaks", + "breast: beige with smaller dark streaks", + "crown: dark brown with white streaks", + "forehead: pale brown, less streaky", + "eyes: small, dark beady", + "legs: greenish-yellow, thin, long", + "wings: short, dark spotted, brownish-grey", + "nape: brownish-grey with white streaks", + "tail: short, slightly fan-shaped, dark barred", + "throat: pale, off-white with faint streaks" + ], + "spotted crocias": [ + "back: grayish-brown feathers with faint spots", + "beak: short, sharp, and black", + "belly: white with dark spots", + "breast: bright yellow with dark streaks", + "crown: grayish-brown with faint spots", + "forehead: white streak above the beak", + "eyes: small and round, with a black iris", + "legs: slender and black", + "wings: brown with faint white streaks", + "nape: grayish-brown with faint spots", + "tail: long and brown with white tips", + "throat: white with dark spots" + ], + "spotted dove": [ + "back: earthy brown feathers with white spots", + "beak: light gray, slightly curved, and slim", + "belly: pale buff-gray with subtle spots", + "breast: rosy-brown with white spotting", + "crown: blue-gray feathers with spiky appearance", + "forehead: pale gray transitioning to blue-gray crown", + "eyes: dark brown with thin pale gray eye-ring", + "legs: reddish-pink, slender with grasping toes", + "wings: brown feathers with white spots and black primary tips", + "nape: black feathers with white half-collared band", + "tail: long, gray-brown feathers with white tipping", + "throat: clean pale gray with slight spotting" + ], + "spotted eagle owl": [ + "back: mottled brown and white feathers", + "beak: sharp, black, hooked tip", + "belly: white with brown spots and streaks", + "breast: creamy white with dark brown bars and spots", + "crown: brownish with faint white streaks", + "forehead: pale with dark brown markings", + "eyes: large, round, piercing yellow", + "legs: feathered, long and strong", + "wings: broad, dark brown with white spots", + "nape: white with brown streaks and spots", + "tail: medium length, barred with dark brown and white bands", + "throat: white, slightly speckled with brown" + ], + "spotted elachura": [ + "back: brownish with subtle dark spots", + "beak: short, fine, dark colored", + "belly: pale grayish-white with dark spots", + "breast: light brown with dark spots", + "crown: chestnut-brown with black streaks", + "forehead: chestnut-brown, blending with crown", + "eyes: small, black, surrounded by light feathers", + "legs: slender, brownish-pink", + "wings: brownish-black with pale bars", + "nape: chestnut-brown with black streaks, like crown", + "tail: short, dark brown with light outer edges", + "throat: pale grayish-white, blending with belly" + ], + "spotted fantail": [ + "back: olive-brown with spots", + "beak: short, durable, and curved", + "belly: white with subtle spot pattern", + "breast: white with faint gray spots", + "crown: olive-brown with fine spots", + "forehead: light gray with white streaks", + "eyes: round and black, surrounded by a white ring", + "legs: thin and gray, with strong feet", + "wings: olive-brown with white spots and bars", + "nape: light gray with faint spotting", + "tail: long, fan-shaped, and spotted with white tips", + "throat: white with small gray spots" + ], + "spotted flycatcher": [ + "back: olive-brown with faint streaks", + "beak: short and pointed, dark greyish", + "belly: pale off-white, minimally spotted", + "breast: whitish-grey with faint streaking", + "crown: pale brown with faint streaks", + "forehead: slightly lighter brown with fine streaks", + "eyes: small and dark", + "legs: thin and greyish", + "wings: brown with light and dark streaks, long and pointed", + "nape: slightly lighter olive-brown", + "tail: brown and moderately long, squared or notched at the end", + "throat: off-white with fine streaks" + ], + "spotted forktail": [ + "back: olive-brown with blackish spots", + "beak: slender, straight, black", + "belly: white with dark bars", + "breast: white with black streaks", + "crown: black and white speckled", + "forehead: black with white streaks", + "eyes: dark with white eye-ring", + "legs: long, orange-brown", + "wings: black with white spots", + "nape: olive-brown with blackish spots", + "tail: long, black with white bands", + "throat: white with black streaks" + ], + "spotted greenbul": [ + "back: olive-green with subtle spots", + "beak: pale grayish-brown, slightly curved", + "belly: pale yellowish-green with faint spotting", + "breast: bright yellow-green with darker spots", + "crown: yellow-green with small dark spots", + "forehead: smooth yellowish-green", + "eyes: dark brown with tiny white eye-ring", + "legs: grayish-brown, slender with scaly texture", + "wings: greenish-brown with faint spots and barring", + "nape: yellowish-green with scattered spots", + "tail: long, olive-brown with faint spots and broad white tips", + "throat: pale yellow-green with subtle streaks" + ], + "spotted ground thrush": [ + "back: olive-brown with bold black spots", + "beak: slender, slightly curved, dark gray", + "belly: creamy white with black spots", + "breast: warm buff tone with black spots", + "crown: olive-brown with black streaks", + "forehead: slightly paler olive-brown than crown", + "eyes: dark, surrounded by pale plumage", + "legs: strong and sturdy, pinkish-brown", + "wings: olive-brown, spotted with black", + "nape: similar to crown, olive-brown with black streaks", + "tail: olive-brown with faint black barring", + "throat: creamy white with dark spots" + ], + "spotted harrier": [ + "back: mottled brown and gray feathers", + "beak: sharp, hooked, black", + "belly: creamy white with brown streaks", + "breast: white, barred with brown", + "crown: brown with pale streaks", + "forehead: pale brown with darker streaks", + "eyes: large, yellow-ringed, piercing", + "legs: long, yellow, featherless", + "wings: long, brown and gray with white spots", + "nape: grayish-brown with a white band", + "tail: long, barred with dark and light brown", + "throat: pale, streaked with brown" + ], + "spotted honeyguide": [ + "back: olive green with white spots", + "beak: dark, short, and pointed", + "belly: off-white with black spots", + "breast: pale gray with subtle streaks", + "crown: olive green", + "forehead: lighter green with fine streaks", + "eyes: dark brown", + "legs: grayish pink", + "wings: olive green spotted with white", + "nape: spots transitioning from crown to nape", + "tail: olive green with white barring", + "throat: light gray with faint streaks" + ], + "spotted imperial pigeon": [ + "back: light gray with dark spots", + "beak: short and strong, pale yellow", + "belly: whitish-gray and slightly spotted", + "breast: pale gray with a mixture of white and spotting", + "crown: dark gray with light spots", + "forehead: pale gray and slightly spotted", + "eyes: dark with bright, reddish-orange eye-ring", + "legs: short, pinkish-red with strong, curved claws", + "wings: light gray with dark spots and white tips", + "nape: dark gray with light spots, blending to the back", + "tail: long, light gray with dark bands and white tips", + "throat: whitish-gray, spotted, and blending to the breast" + ], + "spotted jewel babbler": [ + "back: black and white mottled pattern", + "beak: short, dark grey, slightly curved", + "belly: bright white with some dark speckles", + "breast: dense speckling of black and white", + "crown: dark with light speckles, continuing down the nape", + "forehead: black and white speckles, blending into crown", + "eyes: small, dark gaze with a thin white eyering", + "legs: strong, grey legs with sharp, black claws", + "wings: spotted white feathers mixed with black", + "nape: continued speckled pattern from crown", + "tail: long, black feathers with white spots", + "throat: white with some black speckling" + ], + "spotted kestrel": [ + "back: brownish-grey with dark spots", + "beak: short, curved, and black", + "belly: pale buff with dark brown spots", + "breast: whitish with brown streaks", + "crown: rufous-brown with dark streaks", + "forehead: whitish with fine, dark streaks", + "eyes: large, dark, and piercing", + "legs: yellow with sharp talons", + "wings: brownish-grey with black barring", + "nape: rufous-brown with dark streaks", + "tail: long and slender, with dark bands and white tail tips", + "throat: white with light brown streaking" + ], + "spotted kingfisher": [ + "back: vibrant blue with black streaks", + "beak: long, sharp, black", + "belly: white with rufous spots", + "breast: white with black streaks", + "crown: bright blue, black-streaked", + "forehead: blue with small black spots", + "eyes: dark, intense gaze", + "legs: short, strong, red-orange", + "wings: blue-black with white spots", + "nape: blue with black streaks", + "tail: long, blue-green, black-banded", + "throat: white with black spots" + ], + "spotted laughingthrush": [ + "back: olive-brown with black streaks", + "beak: stout, curved, and black", + "belly: white with black spots", + "breast: white with black spots", + "crown: rufous-red with black streaks", + "forehead: rufous-red with black streaks", + "eyes: dark with white eye-ring", + "legs: pale pinkish-gray", + "wings: olive-brown with black bars", + "nape: rufous-red with black streaks", + "tail: rufous-brown with black bars", + "throat: white with black spots" + ], + "spotted morning thrush": [ + "back: olive-brown with faint spots", + "beak: yellowish-brown with a black tip", + "belly: creamy white with dark brown spots", + "breast: light brown with dark spots", + "crown: greyish-brown with faint spots", + "forehead: rich rufous color", + "eyes: large with a white eye-ring", + "legs: pinkish-brown", + "wings: grey-brown with black spots and white wing bars", + "nape: olive-brown with sparse spots", + "tail: dark grey with white edges", + "throat: creamy white with small dark spots" + ], + "spotted nothura": [ + "back: brown with blackish spots", + "beak: short, strong, and pale gray", + "belly: whitish with blackish spots", + "breast: buffy-brown with blackish bars", + "crown: brown with pale streaks", + "forehead: buffy-white", + "eyes: dark brown with white eyelids", + "legs: strong, grayish-yellow", + "wings: short; brown with buffy-white spots", + "nape: brown with paler streaks", + "tail: short, brown with black bars", + "throat: pale buffy-white" + ], + "spotted piculet": [ + "back: olive-green with white speckles", + "beak: thin, black, pointed", + "belly: whitish with brown spots", + "breast: pale brown, lightly spotted", + "crown: reddish-brown, thick stripes", + "forehead: olive-green, speckled", + "eyes: black, surrounded by white rings", + "legs: grayish, slender", + "wings: olive-green, white-spotted feathers", + "nape: olive-brown, lightly spotted pattern", + "tail: short, curved, dark brown with white bars", + "throat: creamy-white, spotted brown" + ], + "spotted puffbird": [ + "back: olive-brown color with scattered white spots", + "beak: short, strong, and black", + "belly: white with faint brown streaks", + "breast: white with distinct dark spots", + "crown: olive-brown with a small crest and white spots", + "forehead: olive-brown with smaller white spots", + "eyes: dark and round, surrounded by white eye-ring", + "legs: short and yellowish-gray", + "wings: olive-brown with white spots and broad black bars", + "nape: olive-brown with bold white spots", + "tail: olive-brown with black bands and white-tipped feathers", + "throat: white with faint brown streaking" + ], + "spotted quail thrush": [ + "back: reddish-brown with white spots", + "beak: short, strong, and slightly curved", + "belly: pale cream with bold black spots", + "breast: warm buff with distinct black spotting", + "crown: reddish-brown with small white spots", + "forehead: pale gray with faint spotting", + "eyes: dark brown, encircled by pale gray feathers", + "legs: slender, long, and olive-gray", + "wings: dark brown with white spots and buff edges", + "nape: reddish-brown with faint white spotting", + "tail: dark brown with white tips and outer feathers", + "throat: white with fine black streaks" + ], + "spotted rail": [ + "back: brownish-black with spots and streaks", + "beak: sharp, slender, and yellowish", + "belly: creamy-white with black spots", + "breast: grayish-brown with dark streaks", + "crown: reddish-brown with black markings", + "forehead: pale grayish-yellow", + "eyes: dark brown surrounded by a grayish-white ring", + "legs: greenish-yellow, long, and thin", + "wings: short, rounded, and brownish-black with white spots", + "nape: brownish-red with black streaks", + "tail: short, black, and spotted with a white band at the tip", + "throat: grayish-white with dark streaks" + ], + "spotted redshank": [ + "back: dark grey with light spots", + "beak: long, straight, and black", + "belly: white with grey streaks", + "breast: greyish-white with dark speckles", + "crown: black with small white spots", + "forehead: black with white markings", + "eyes: bright and black", + "legs: long and vibrant red", + "wings: dark with white spots and bars", + "nape: grey with white speckles", + "tail: black and white with distinct barring", + "throat: white with grey streaks" + ], + "spotted sandgrouse": [ + "back: sandy brown feathers with dark spotting", + "beak: short, conical, and blackish", + "belly: pale beige with small dark spots", + "breast: light brown with distinct black spots", + "crown: sandy brown with fine dark streaks", + "forehead: pale beige with some dark streaks", + "eyes: small black with narrow pale eyering", + "legs: short, grayish-yellow with long toes", + "wings: mottled brown, buff, and black feathers", + "nape: sandy brown with faint dark streaks", + "tail: brownish, barred black and white", + "throat: light buff with darker spots at sides" + ], + "spotted scrubwren": [ + "back: olive-brown with faint white streaks", + "beak: slim, pale, and slightly curved", + "belly: pale grey with faint white spotting", + "breast: soft grey with white markings", + "crown: dull brown with subtle white streaks", + "forehead: pale grey with indistinct streaks", + "eyes: round, dark, and encircled with a white eyering", + "legs: long, slender, and greyish-blue", + "wings: olive-brown with white spots and dark flight feathers", + "nape: brownish-grey with sparse white streaks", + "tail: long, brown with white spots, and rounded feathers", + "throat: light grey with fine white markings" + ], + "spotted shag": [ + "back: greenish-black with a glossy sheen", + "beak: long, slender, and pointed", + "belly: pale grey with spots", + "breast: grey with white spots", + "crown: dark greenish-black, slightly crested", + "forehead: medium greenish-black, blending into the crown", + "eyes: dark, encircled by a thin blue eye-ring", + "legs: pinkish-grey, webbed feet", + "wings: medium length, greenish-black with a sheen", + "nape: greenish-black, blending in with the crown and back", + "tail: long, greenish-black, and slightly forked", + "throat: grey with white spots" + ], + "spotted tanager": [ + "back: vibrant green with scattered black spots", + "beak: short, sturdy, and black", + "belly: bright yellow with dark speckles", + "breast: yellow with scattered black spots", + "crown: deep blue with black speckles", + "forehead: bright blue with subtle spotting", + "eyes: small and black, encircled by blue", + "legs: slim, grayish, and strong", + "wings: mixture of green and blue with black spots", + "nape: rich blue with scattered black marks", + "tail: long and blue, with black accents and spots", + "throat: yellow with dark speckles and stripes" + ], + "spotted thick knee": [ + "back: brown with white speckles", + "beak: short, stout, and pale yellow", + "belly: white with dark spots", + "breast: mottled brown and white", + "crown: brown with white streaks", + "forehead: white stripe above eye", + "eyes: large, round, and dark", + "legs: long, slender, and yellowish", + "wings: brown with white spots and streaks", + "nape: brown with white streaks", + "tail: short and brown, semi-concealed under the wings", + "throat: white with a thin brown collar" + ], + "spotted tody flycatcher": [ + "back: brown with faint white spots", + "beak: short and black, slightly curved", + "belly: pale yellow with light streaks", + "breast: whitish-yellow with darker streaks", + "crown: olive-brown with small white spots", + "forehead: light olive-brown", + "eyes: dark brown, surrounded by thin white eye-ring", + "legs: short and grayish", + "wings: brown with white spots, rounded edges", + "nape: olive-brown with faint white streaks", + "tail: brown with white tip, often fanned out", + "throat: pale yellow, unmarked" + ], + "spotted wood owl": [ + "back: brownish feathers with white spots", + "beak: short, hooked, and grayish", + "belly: white with brown streaks", + "breast: rich brown with white speckles", + "crown: dark brown and white streaked", + "forehead: paler brown with white spots", + "eyes: large, dark, and framed by white feathers", + "legs: feathered, brown, and sturdy", + "wings: broad, dark brown with white spotting", + "nape: brown with white streaks", + "tail: long, dark brown with white bars", + "throat: white with thin brown streaks" + ], + "spotted wood quail": [ + "back: brown with white speckles", + "beak: short, grayish-black", + "belly: creamy white with brown spots", + "breast: reddish-brown with white streaks", + "crown: dark brown with light stripes", + "forehead: pale with dark striped pattern", + "eyes: deep black with white eye-ring", + "legs: sturdy, grayish-brown", + "wings: brown with intricate white markings", + "nape: dark brown with light striations", + "tail: short, brown with white spotting", + "throat: buff-colored with faint brown markings" + ], + "spotted woodcreeper": [ + "back: brownish streaks on olive-green feathers", + "beak: long, slightly curved, black", + "belly: creamy-white with dark brown spots", + "breast: off-white with brown spots and streaks", + "crown: olive-green with faint streaks", + "forehead: soft olive-green feathers", + "eyes: dark brown with faint white eyering", + "legs: strong and grayish-brown", + "wings: olive-green with light brown barring", + "nape: olive-green with faint streaks", + "tail: long, rigid, brown with faint bars", + "throat: off-white with light brown streaks" + ], + "spotted wren": [ + "back: brown with black spots", + "beak: sharp, pointed, and greyish-brown", + "belly: off-white with faint brown speckles", + "breast: pale brown with dark brown spots", + "crown: reddish-brown with fine black streaks", + "forehead: light brown with some black speckling", + "eyes: small, black, and shiny", + "legs: slender and greyish-brown", + "wings: brown with darker bars and white spots", + "nape: brown with black streaks", + "tail: brown with dark bars and white tips", + "throat: off-white with light brown speckles" + ], + "sprague pipit": [ + "back: streaked buffy-brown with dark markings", + "beak: slender, pointed, and pale", + "belly: pale with light streaks", + "breast: buff-colored with dark streaks", + "crown: brown with fine streaks", + "forehead: light with darker streaks", + "eyes: dark, surrounded by faint eye-ring", + "legs: long, thin, and pinkish", + "wings: brown with pale edges on flight feathers", + "nape: streaked brown and buff", + "tail: brown with white outer feathers", + "throat: whitish with light streaks" + ], + "spur winged goose": [ + "back: sleek black feathers", + "beak: elongated, dark grey hooked beak", + "belly: whitish-grey plumage", + "breast: lightly speckled grey feathers", + "crown: glossy black feathers with slight crest", + "forehead: smooth black transition to beak", + "eyes: small, dark brown, near beak", + "legs: strong dark grey, webbed feet", + "wings: large, black feathers with distinctive white wing spurs", + "nape: glossy black, connecting crown and back", + "tail: short, black fan-like feathers", + "throat: white plumage, smooth transition to breast" + ], + "spur winged lapwing": [ + "back: brown, sleek feathers", + "beak: black, slightly curved", + "belly: white feathers, undersides", + "breast: gray-brown, soft feathers", + "crown: black, contrasting feathers", + "forehead: white, striking stripe", + "eyes: dark, piercing gaze", + "legs: long, pinkish-red", + "wings: brown, visible spur", + "nape: black, defined feathers", + "tail: white and black, contrastingly short", + "throat: white feathers, distinct shape" + ], + "squamate antbird": [ + "back: olive-grey feathers with white streaks", + "beak: black, short, and stout", + "belly: creamy-white with light grey spots", + "breast: white with greyish-brown spots", + "crown: dark grey with a lighter grey stripe", + "forehead: light grey blending into the crown", + "eyes: black, set in a white eyering", + "legs: long, slender, and grey", + "wings: olive-brown with white and grey spots", + "nape: light grey with white streaks", + "tail: long, greyish-brown with white-tipped feathers", + "throat: white with grey speckles" + ], + "square tailed bulbul": [ + "back: greenish-brown with slight sheen", + "beak: short, curved, greyish-black", + "belly: pale white with scaling effect", + "breast: greyish-white, slightly mottled", + "crown: black with raised crest", + "forehead: slightly paler black than crown", + "eyes: dark, encircled with thin white ring", + "legs: medium-length, greyish-black", + "wings: greenish-brown with white-tipped feathers", + "nape: black, contrasting with back color", + "tail: square-shaped, black with white tips", + "throat: light grey blending into breast" + ], + "square tailed drongo cuckoo": [ + "back: sleek black feathers", + "beak: slightly curved dark gray beak", + "belly: lighter gray with faint streaks", + "breast: grayish with soft streaking", + "crown: smooth black head", + "forehead: black with slight gray gradient", + "eyes: piercing black eyes", + "legs: strong black legs and claws", + "wings: long, black, and streamlined", + "nape: black with some gray shading", + "tail: squared-off black feathers with white tips", + "throat: grayish, slightly lighter than breast" + ], + "square tailed kite": [ + "back: sleek gray-brown feathers", + "beak: sharp, hooked black beak", + "belly: soft, greyish-white feathers", + "breast: light grey plumage", + "crown: dusky grey with a slight crest", + "forehead: pale gray feathering", + "eyes: piercing dark brown eyes", + "legs: long, yellow talons", + "wings: broad, dark gray with white markings", + "nape: grayish-white feathered base of the neck", + "tail: square-shaped, dark gray with white tips", + "throat: pale gray-white plumage" + ], + "square tailed nightjar": [ + "back: mottled brown, white, and gray feathers", + "beak: short, wide, and black, slightly hooked tip", + "belly: pale gray with brown speckles and markings", + "breast: buff and gray streaked plumage", + "crown: grayish-brown and buff-speckled feathers", + "forehead: smooth and rounded, grayish-brown", + "eyes: large with dark brown iris, encircled with white", + "legs: short and grayish-brown, partially feathered", + "wings: mottled brown with white and gray patches, long and pointed", + "nape: grayish-brown, buff-speckled feathers", + "tail: square-shaped, brown with white bands and spots", + "throat: white with grayish-brown streaks" + ], + "square tailed sawwing": [ + "back: dark plumage with iridescent sheen", + "beak: short and stout, black in color", + "belly: light grey to white underside", + "breast: greyish-white, merging with belly", + "crown: black with metallic green gloss", + "forehead: black with slight green shine", + "eyes: dark with thin white eye-ring", + "legs: sturdy, black or dark grey", + "wings: elongated, pointed with dark feathers", + "nape: black with greenish-blue gloss", + "tail: square-shaped, dark with slight metallic sheen", + "throat: white, contrasting with darker head" + ], + "squatter pigeon": [ + "back: pale grey with brown speckles", + "beak: short, light grey, a sturdy, downward curve", + "belly: soft grey with faint speckles", + "breast: creamy beige with a light scattering of speckles", + "crown: mottled grey and brown blending into the forehead", + "forehead: smooth continuation of the crown's grey-brown pattern", + "eyes: large, dark, round eyes surrounded by thin beige rings", + "legs: sturdy, short, greyish-pink", + "wings: greyish-brown with distinct, darker brown markings", + "nape: a gentle merging of mottled grey from crown to back", + "tail: tapered grey-brown feathers with darker bands", + "throat: warm beige that seamlessly joins the breast's hue" + ], + "squirrel cuckoo": [ + "back: reddish-brown with black streaks", + "beak: long, slim, and slightly curved", + "belly: pale gray with faint dark markings", + "breast: reddish-brown and grayish-white", + "crown: reddish-brown with slight crest", + "forehead: smooth and reddish-brown", + "eyes: large and dark brown", + "legs: strong, grayish-brown", + "wings: elongated, reddish-brown with black and white tips", + "nape: reddish-brown with black streaks", + "tail: long, fan-shaped, reddish-brown with black and white markings", + "throat: pale gray with faint dark markings" + ], + "sri lanka bay owl": [ + "back: complex pattern of rust, brown, and cream with blackish streaks", + "beak: curved and sharp, dusky yellowish", + "belly: buff to creamy white with dark brown markings", + "breast: brownish buff with dark brown streaks", + "crown: soft brown with speckled pattern", + "forehead: creamy white with dark brown spots", + "eyes: large and dark, encircled by distinct white facial disk", + "legs: feathered, pale yellow with strong talons", + "wings: mottled brown, cream, and buff with dark barring", + "nape: rusty-brown with fine cream speckling", + "tail: alternating bands of dark and light brown with buff speckles", + "throat: creamy white with sparse brown streaks" + ], + "sri lanka bush warbler": [ + "back: olive-brown color with streaks", + "beak: short, thin, and pointed", + "belly: pale yellowish-brown", + "breast: light brown with some faint streaks", + "crown: rich brown with darker streaks", + "forehead: olive-brown color, blending with the crown", + "eyes: small, dark, and well-defined", + "legs: long and pinkish-brown", + "wings: rounded, with olive-brown feathers and white wing bars", + "nape: olive-brown with darker streaks", + "tail: short, dark brown with white edges", + "throat: buff-white with some faint streaks" + ], + "sri lanka drongo": [ + "back: sleek, metallic blue-black plumage", + "beak: curved, strong and black", + "belly: slightly lighter blue-black", + "breast: iridescent, metallic blue-black", + "crown: glossy blue-black with a crest", + "forehead: prominent, blue-black, short feathers", + "eyes: black, large, and inquisitive", + "legs: black, slender, and long", + "wings: iridescent, blue-black with a swish-like arc", + "nape: smooth, shiny blue-black plumage", + "tail: deeply forked, shimmering blue-black feathers", + "throat: iridescent, metallic blue-black plumes" + ], + "sri lanka frogmouth": [ + "back: dark brown with fine white streaks", + "beak: hooked, broad, yellowish-gray", + "belly: grayish-brown, paler than the back", + "breast: brown spattered with white spots", + "crown: grayish-brown with faint white streaks", + "forehead: grayish-brown with white speckles", + "eyes: large, outlined in light gray, and forward-facing", + "legs: short, hidden by feathers, grayish-blue", + "wings: broad, rounded, barred with dark and light brown", + "nape: brown with pale streaks", + "tail: long, fan-shaped, brown with lighter mottled patterns", + "throat: pale gray with white speckling" + ], + "sri lanka gray hornbill": [ + "back: dark grey plumage with greenish sheen", + "beak: large, curved, and yellowish-white", + "belly: pale grey with white undertail feathers", + "breast: light grey, slightly darker than the belly", + "crown: dark grey with smooth feathers", + "forehead: dark grey, merging with the crown", + "eyes: surrounded by a patch of white bare skin", + "legs: short, dark brown or black", + "wings: dark grey with white streaks on flight feathers", + "nape: dark grey, connecting to the back", + "tail: long, dark grey with white tips on outer feathers", + "throat: pale grey, extending to the breast" + ], + "sri lanka green pigeon": [ + "back: vibrant green plumage", + "beak: short, hooked, pale bluish-gray", + "belly: light green with a yellow tinge", + "breast: bright green feathers", + "crown: green with a slight blue iridescence", + "forehead: brilliant green coloration", + "eyes: dark brown, surrounded by a pale eyering", + "legs: short and strong, grayish-blue", + "wings: rich green with darker flight feathers", + "nape: green with a bluish iridescence", + "tail: long, green feathers with a yellowish tip", + "throat: bright green, blending smoothly with breast" + ], + "sri lanka hanging parrot": [ + "back: vibrant green with blue hues", + "beak: short, curved, reddish-orange", + "belly: light green fading into yellow", + "breast: bright green, slightly paler than back", + "crown: orange-red feathers with bluish streaks", + "forehead: blue or purplish-blue patch above the beak", + "eyes: small, dark with a white eye-ring", + "legs: short, grayish with strong claws", + "wings: rich green with blue-tipped flight feathers", + "nape: bright green, seamlessly connecting crown to back", + "tail: greenish-blue with elongated central feathers", + "throat: bluish patch, extending down from the lower beak" + ], + "sri lanka junglefowl": [ + "back: rich reddish-brown feathers with golden highlights", + "beak: sharp, curved, grayish-blue beak", + "belly: ivory white or cream white underparts", + "breast: vivid golden-orange feathers with spiky edges", + "crown: red-orange crest with a wavy appearance", + "forehead: red-orange feathers extending to the head", + "eyes: bright, alert eyes with a white ring around", + "legs: strong, grayish-blue legs with sharp claws", + "wings: wide and rounded, with brown and black patterns", + "nape: brown feathers transitioning from the back to the head", + "tail: long, arching feathers in shades of brown and black with alternating barring", + "throat: white or pale ruff separating the breast from the head" + ], + "sri lanka myna": [ + "back: olive-brown feathers with a slight gloss", + "beak: bright yellow, curved and sharp", + "belly: whitish-cream with brown streaks", + "breast: yellow-orange with dark brown speckles", + "crown: shining blue-black with a crest", + "forehead: yellow patch above beak", + "eyes: piercing yellow with a dark pupil", + "legs: strong yellow with sharp claws", + "wings: olive-brown with a blue-purple sheen", + "nape: olive-brown with a slight gloss", + "tail: long, blue-black feathers with a white tip", + "throat: whitish-cream with brown streaks" + ], + "sri lanka scimitar babbler": [ + "back: olive-brown feathers", + "beak: de-curved, yellowish hue", + "belly: white, streaked with brown", + "breast: rufous-chestnut color", + "crown: russet-orange plumes", + "forehead: white supercilium", + "eyes: dark, medium size", + "legs: slender, grayish-brown", + "wings: olive-brown, elongated feathers", + "nape: white streaks on brown base", + "tail: long, brown and white tips", + "throat: white with brown streaks" + ], + "sri lanka spurfowl": [ + "back: dark brown with thin white streaks", + "beak: short and stout, pale gray", + "belly: light brownish-red with faint white marks", + "breast: rich chestnut with fine white spots", + "crown: dark brownish-black with red patch", + "forehead: rufous brown transitioning to black", + "eyes: dark brown with pale gray eye-ring", + "legs: strong and feathered, light gray", + "wings: reddish-brown with faint white streaks", + "nape: dark brown with white speckles", + "tail: long and broad, dusky brown with white tips", + "throat: dark brown with sparse white spots" + ], + "sri lanka swallow": [ + "back: dark blue-green with a metallic sheen", + "beak: small, black, and pointed", + "belly: light rust-colored with fine, dark streaks", + "breast: bright rust-orange, blending into the belly", + "crown: glossy blue-black with slight iridescence", + "forehead: dark blue-black, part of the continuous crown", + "eyes: dark brown with a thin black eyeline", + "legs: short, black, and sturdy", + "wings: long, pointed, and iridescent blue-green", + "nape: blending from blue-black crown to rust-orange breast", + "tail: slightly forked, dark blue-green with white tips", + "throat: vibrant rust-orange, contrasting with the blue-black head" + ], + "sri lanka thrush": [ + "back: dark olive-brown coloration", + "beak: pale orange-yellow hue, slightly curved", + "belly: light grey-white blended with faint buff shades", + "breast: rusty orange-brown plumage", + "crown: dark brown feathers smoothly merging into olive-brown back", + "forehead: dusky brown, matching the crown color", + "eyes: dark, piercing gaze encircled by a faint pale eyering", + "legs: strong, pale pinkish-grey with sharp claws", + "wings: olive-brown layered feathers with distinct white spotting", + "nape: dark olive-brown, continuing the coloration from the crown", + "tail: long, brownish-olive with prominent white streaks", + "throat: pale grey-white with delicate dark markings" + ], + "sri lanka whistling thrush": [ + "back: dark blue with slight greenish sheen", + "beak: strong, straight, black", + "belly: deep blue with hints of purple", + "breast: vibrant blue merging into belly", + "crown: dark blue with greenish highlights", + "forehead: bright blue fading to dark blue on the crown", + "eyes: dark with pale white eye-ring", + "legs: strong, dark grey", + "wings: iridescent blue, slightly elongated", + "nape: dark blue with greenish tinge", + "tail: long, deep blue with slight purplish touch", + "throat: rich blue, lighter than breast" + ], + "sri lanka white eye": [ + "back: light olive-green plumage", + "beak: short, slightly curved, black", + "belly: pale yellow underparts", + "breast: soft yellow-green feathers", + "crown: white ring around the eyes", + "forehead: green transition to the crown", + "eyes: large, dark, with white eye-ring", + "legs: grayish-blue, slender", + "wings: olive-green with short rounded wings", + "nape: pale green, smooth", + "tail: short, olive-green, slightly forked", + "throat: pale yellow, demarcating from breast" + ], + "sri lanka wood pigeon": [ + "back: grayish-brown feathers with white markings", + "beak: short and sturdy, pale grayish-white", + "belly: pale gray with some subtle white markings", + "breast: rosy-pink tinged feathers", + "crown: dark purple-blue plumage", + "forehead: same dark purple-blue as the crown", + "eyes: white eye-ring encircling a dark brown eye", + "legs: short, powerful, and reddish-pink", + "wings: grayish-brown with white and black bands", + "nape: purple-blue, blending with the crown", + "tail: medium length with dark banded feathers", + "throat: slightly paler gray than the belly" + ], + "sri lanka woodshrike": [ + "back: olive-brown with rufous highlights", + "beak: short, straight, and sharp-edged", + "belly: pale grayish-white", + "breast: soft buff-gray", + "crown: olive-brown with faint streaks", + "forehead: pale buff-brown", + "eyes: large and dark with a pale eye-ring", + "legs: slender and pale gray", + "wings: olive-brown with white wing bars and pale-edged feathers", + "nape: olive-brown with faint streaks", + "tail: olive-brown with white tips on the outer feathers", + "throat: pale grayish-white" + ], + "st. helena plover": [ + "back: light brown speckled feathers", + "beak: short, black and slightly curved", + "belly: white with light brown spots", + "breast: white with light brown speckles", + "crown: dark brown with defined white stripe", + "forehead: white stripe from beak to crown", + "eyes: large and dark", + "legs: long, slender and black", + "wings: light brown with dark brown stripes", + "nape: light brown with white stripe across the head", + "tail: dark brown feathers with white tips", + "throat: white with light brown speckles" + ], + "st. lucia black finch": [ + "back: dark black plumage", + "beak: short and strong, black", + "belly: black feathers slightly fading towards the vent", + "breast: black with a rich gloss", + "crown: sleek black and shining", + "forehead: smooth and black", + "eyes: dark and beady, surrounded by unfeathered black skin", + "legs: strong, dark gray, scaled appearance", + "wings: black and rounded, with a hint of dark brown", + "nape: black, blending into the crown", + "tail: short and black, square-shaped", + "throat: deep black, well-defined against the breast" + ], + "st. lucia oriole": [ + "back: black with greenish-yellow highlights", + "beak: black and slightly curved", + "belly: bright yellow", + "breast: yellow and unmarked", + "crown: black with streaks", + "forehead: black", + "eyes: dark brown, surrounded by black", + "legs: dark gray, sturdy", + "wings: black with greenish-yellow edges", + "nape: black", + "tail: black, medium length", + "throat: yellow and unmarked" + ], + "st. lucia parrot": [ + "back: vibrant green feathers", + "beak: large, robust, and hooked", + "belly: bright orange-yellow with green edging", + "breast: orange-yellow with scaling pattern", + "crown: deep blue with a metallic sheen", + "forehead: bright blue feathers", + "eyes: surrounded by white, unfeathered skin", + "legs: strong, scaled, grayish-black", + "wings: brilliant green with red and blue feathers", + "nape: deep violet-blue with a metallic luster", + "tail: long, broad, with red and blue feathers", + "throat: turquoise-green with feathered scales" + ], + "st. lucia warbler": [ + "back: olive-green hue with smooth feathers", + "beak: thin, pointed, and curved for insects", + "belly: light yellow with minimal markings", + "breast: pale yellow fading into white", + "crown: grayish-blue with pale stripe", + "forehead: grayish-blue, blending into crown", + "eyes: dark brown with white eye-ring", + "legs: pale, slender, and flexible for perching", + "wings: olive-green with white-edged feathers", + "nape: olive-green, transitioning to crown", + "tail: olive-green with white outer feathers", + "throat: whitish-gray, bordered by yellow breast" + ], + "st. vincent parrot": [ + "back: vibrant green feathers", + "beak: large, black hooked shape", + "belly: soft yellow-green feathers", + "breast: multicolored shades of blue, yellow, and green", + "crown: blue-violet feathers with a dash of yellow", + "forehead: bright yellow feathers meeting the base of the beak", + "eyes: dark and round, carrying a curious gaze", + "legs: strong, black, scaly limbs", + "wings: mixture of green and blue feathers with a red edge", + "nape: transitioning from yellow to blue-violet feathers", + "tail: long, elegant red feathers with blue tips", + "throat: yellow feathers shifting to green towards the belly" + ], + "standard winged nightjar": [ + "back: sleek, dark brown feathers", + "beak: short, wide, and pointed", + "belly: pale, speckled plumage", + "breast: gray-brown, densely mottled feathers", + "crown: dark gray with intricate patterning", + "forehead: subtle gray-brown plumage", + "eyes: large, dark orbs with reflective shine", + "legs: thin and twig-like", + "wings: broad and rounded, extending just beyond the tail", + "nape: brownish-gray with subtle banding", + "tail: long, wedge-shaped, and variably patterned", + "throat: buffy, lightly mottled plumage" + ], + "standardwing bird of paradise": [ + "back: vibrant green feathers", + "beak: small, sharp, and black", + "belly: light yellow plumes", + "breast: iridescent emerald green", + "crown: smooth, velvety black", + "forehead: bright blue markings", + "eyes: dark, round, and expressive", + "legs: slender and greyish-brown", + "wings: short and rounded, black with blue accents", + "nape: black feathers with blue shine", + "tail: long, wire-like extensions adorned with black disk-shaped feathers", + "throat: deep metallic blue color" + ], + "star finch": [ + "back: olive-green feathers with black streaks", + "beak: coral red with slight downward curve", + "belly: yellow-tinged underbelly with slight speckling", + "breast: yellow feathers, black-dot pattern covering", + "crown: bright yellow-green with black speckling", + "forehead: red face with distinct bright yellow border", + "eyes: black bead-like orbs, white eye-ring contrast", + "legs: slender, dull gray scales with sharp claws", + "wings: green-yellow feathers, black streaked pattern", + "nape: continuing yellow-green hue, black flecks present", + "tail: long, cinnamon-colored feathers, tip accents", + "throat: red patch, yellow-bordered and black flicks" + ], + "star spotted nightjar": [ + "back: mottled brown and black, resembling tree bark", + "beak: short and wide, adapted for catching insects", + "belly: pale cream with dark brown speckles", + "breast: mottled with brown, black, and white, providing camouflage", + "crown: dark brown with scattered white spots", + "forehead: creamy white with small dark brown markings", + "eyes: large and dark, adapted for night vision", + "legs: slender, feathered, and grayish-brown in color", + "wings: long and slim, mottled with brown and black for camouflage", + "nape: dark brown with white spots, blending into the crown", + "tail: mottled brown, black, and white, with distinct white corners for easy identification", + "throat: cream-colored with fine brown markings, creating a softly patterned look" + ], + "star throated antwren": [ + "back: olive-green plumage", + "beak: thin, pointed, and black", + "belly: yellowish with faint stripes", + "breast: grayish-white with subtle streaks", + "crown: dark gray with slight tuft", + "forehead: narrow black stripe", + "eyes: round, black, alert gaze", + "legs: thin, gray, strong for perching", + "wings: short olive-green with black barring", + "nape: grayish motif, blending with crown", + "tail: long, black, with white tips", + "throat: vibrant yellow, star-shaped patch" + ], + "stark lark": [ + "back: sleek, brownish-gray feathers", + "beak: sharp, pointed, and yellowish", + "belly: creamy white with light streaks", + "breast: pale buff with brown streaks", + "crown: smooth, reddish-brown with fine streaks", + "forehead: brownish-red with fine streaks", + "eyes: dark, round, and alert", + "legs: slim, yellowish, and strong", + "wings: long, pointed, with dark flight feathers", + "nape: reddish-brown with subtle streaks", + "tail: brownish-black with white outer feathers", + "throat: pale buff with fine streaks" + ], + "starred wood quail": [ + "back: olive-brown feathers with distinctive pattern", + "beak: short, sharp, and dark gray", + "belly: pale gray with faint black bars", + "breast: chestnut or rufous color with fine black bars", + "crown: blackish with gray-speckled pattern", + "forehead: pale gray or whitish stripe", + "eyes: dark brown with narrow pale eye-ring", + "legs: strong, grayish-blue with scaled pattern", + "wings: olive-brown with black spots and cinnamon-brown edging", + "nape: grayish-brown with subtle streaks and barring", + "tail: dark brownish-gray with broad black bars", + "throat: white or buffy-white with fine brown streaks" + ], + "starry owlet nightjar": [ + "back: black and white speckled plumage", + "beak: small, sharp, and slightly curved", + "belly: white with black spots", + "breast: grey and white feathered pattern", + "crown: dark with pale spots and streaks", + "forehead: dark and speckled, blending into the crown", + "eyes: large and dark, with a notable stare", + "legs: short and feathered, with sharp claws", + "wings: long, tapering, with bold black and white patterning", + "nape: darker and spotted, connecting to the wings", + "tail: long and narrow, with distinct black and white bands", + "throat: pale with dark streaks and speckles" + ], + "steel blue flycatcher": [ + "back: deep steel blue feathers", + "beak: thin, black, pointed", + "belly: soft grayish-blue plumage", + "breast: lighter steel blue feathers", + "crown: smooth blue cap", + "forehead: pale blue gradient", + "eyes: dark, round, with thin eye-ring", + "legs: slender black limbs", + "wings: steel blue with black wingtips", + "nape: deep blue transition", + "tail: long, sharp, blue-black feathers", + "throat: pale blue-gray area" + ], + "steel blue whydah": [ + "back: metallic steel-blue feathers", + "beak: dark pointed beak", + "belly: light whitish-grey underside", + "breast: shiny blueish-grey feathers", + "crown: contrasting black cap", + "forehead: black feathered extension", + "eyes: small with black pupil and white eye-ring", + "legs: slender dark legs and claws", + "wings: bluish-steel with black flight feathers", + "nape: smooth gradient to steel-blue", + "tail: elongated, dramatically crossed tail feathers", + "throat: pale grey with black detailing" + ], + "steely vented hummingbird": [ + "back: iridescent green feathers", + "beak: long, slender, and straight", + "belly: grayish-white underside", + "breast: shimmering green and blue feathers", + "crown: bright green shining head", + "forehead: greenish-blue with a touch of purple", + "eyes: small, round, and dark", + "legs: short with tiny feet", + "wings: fast-flapping and shimmering", + "nape: green and purple sheen", + "tail: dark blue, forked, and fanned", + "throat: bright shining blue" + ], + "steere liocichla": [ + "back: vibrant yellow-green feathers", + "beak: short, curved and black", + "belly: light-yellow plumage", + "breast: bright yellow-orange feathers", + "crown: deep red-orange patch", + "forehead: vivid yellow with dark stripes", + "eyes: dark, round, and alert", + "legs: grayish-blue with strong grip", + "wings: yellow-green with black markings", + "nape: slanted yellow-green hue", + "tail: long and yellow with black patterns", + "throat: bright yellow-orange undertone" + ], + "steinbach canastero": [ + "back: brownish with streaks", + "beak: slender, slightly curved", + "belly: pale with faint streaks", + "breast: buffy-brown with streaks", + "crown: rufous-brown with streaks", + "forehead: whitish-brown", + "eyes: dark with pale eyebrow", + "legs: long and slender", + "wings: brown, streaked with buff", + "nape: streaked with buff", + "tail: long, brown with pale tips", + "throat: pale, unstreaked" + ], + "stejneger petrel": [ + "back: sleek, dark grey feathers", + "beak: black, sharp, and hooked", + "belly: lighter grey with white undertones", + "breast: dark grey, blends into belly", + "crown: blackish-brown, rounded", + "forehead: smooth, dark grey", + "eyes: small, black, and well-defined", + "legs: black, strong, webbed feet", + "wings: long, pointed, dark grey with thin white patterns", + "nape: continuous dark grey from crown", + "tail: dark grey, long, and forked", + "throat: white, contrasting with darker grey breast" + ], + "stejneger scoter": [ + "back: dark feathered, subtle green sheen", + "beak: long, hooked, black with orange patch", + "belly: deep black, blending into legs", + "breast: dark black, slight green iridescence", + "crown: smoothly curved, deep black", + "forehead: black, transitioning into orange bill", + "eyes: small, dark, piercing", + "legs: black, strong, webbed feet", + "wings: dark, elongated, prominent white patches", + "nape: dark black, blending into back", + "tail: short, black, slightly spread", + "throat: deep black, contrasts with orange bill" + ], + "steller eider": [ + "back: dark green-feathered with white patches", + "beak: short, black, and stout", + "belly: white and fluffy", + "breast: chestnut-brown with white barring", + "crown: rounded, dark green with iridescent sheen", + "forehead: dark green, continuous with the crown", + "eyes: sharp and dark", + "legs: orangish-yellow, short and sturdy", + "wings: black with bold white patterns", + "nape: dark green, merging with the crown", + "tail: short, white-tipped and fan-like", + "throat: white with a black border" + ], + "steller sea eagle": [ + "back: dark brown plumage", + "beak: large, hooked, yellow-orange", + "belly: white and light gray feathers", + "breast: white with streaks of gray", + "crown: brown and sleek feathers", + "forehead: flat-feathered, brown", + "eyes: piercing, yellow-orange", + "legs: yellow, powerful, feathered", + "wings: broad, brown, white-tipped", + "nape: brown and dense feathers", + "tail: wide, white with dark stripe", + "throat: white, transitioning to gray" + ], + "stephan dove": [ + "back: smooth, grayish-brown feathers", + "beak: short and slightly curved, dark gray", + "belly: creamy-white to pale gray feathers", + "breast: light gray with pinkish-brown hue", + "crown: rounded grayish-brown, slightly darker than back", + "forehead: pale gray fading to white", + "eyes: dark brown with black pupils, white eye-ring", + "legs: strong, featherless, pinkish-gray", + "wings: grayish-brown with black flight feathers, rounded shape", + "nape: grayish-brown, lighter than crown", + "tail: medium length, grayish-brown with black band near the end", + "throat: white to pale gray feathers" + ], + "stephanie astrapia": [ + "back: long, black iridescent feathers", + "beak: slender, slightly curved, dark gray", + "belly: deep blue iridescent feathers", + "breast: vibrant turquoise plumage", + "crown: velvet black with iridescent sheen", + "forehead: blackish-brown merging into black crown", + "eyes: dark with light eye-rings", + "legs: dark gray with sharp claws", + "wings: elongated, iridescent black and blue feathers", + "nape: iridescent black with hints of blue", + "tail: elongated, ribbon-like central feathers with hues of blue and green", + "throat: dark iridescent blue feathers" + ], + "stephen lorikeet": [ + "back: vibrant green feathers covering the bird's spine area", + "beak: curved, orange-red beak for grasping fruits and seeds", + "belly: light green and yellow feathers on the lower abdomen", + "breast: bright green feathers on the upper chest region", + "crown: vivid blue feathers adorning the top of the head", + "forehead: green and sometimes blue feathers, just above the beak and eyes", + "eyes: dark, circular eyes with a discerning gaze", + "legs: short, gray scaly legs ending in sharp claws", + "wings: green feathers with red and blue accents, enabling strong, agile flight", + "nape: green feathers extending down the back of the neck", + "tail: long, tapered green feathers with hints of blue and red", + "throat: soft green feathers transitioning to yellow in the lower part" + ], + "steppe eagle": [ + "back: dark brown feathers covering dorsal area", + "beak: strong, sharp, and hooked with a yellow base", + "belly: lighter brown feathers covering the lower body", + "breast: thick feathers with variable shades of brown and white", + "crown: darker feathers on top of head, extending down the neck", + "forehead: lighter feathered area above beak and between eyes", + "eyes: sharp, piercing yellow or brown eyes surrounded by a pale yellow ring", + "legs: strong, feathered legs ending in sharp, curved talons", + "wings: large, broad wings with dark flight feathers and lighter, brownish coverts", + "nape: the back of the neck, covered in dark feathers", + "tail: dark, brown feathers in a broad, horizontal fan shape", + "throat: lightly feathered area below the beak, often paler than the rest of the head" + ], + "stewart island shag": [ + "back: dark turquoise feathers with a smooth texture", + "beak: slender, sharp, and hooked, with a pale hue", + "belly: light gray coloring with soft, downy feathers", + "breast: slate-gray plumage with a thick, cushiony feel", + "crown: sleek, shiny feathers in a deep turquoise shade", + "forehead: narrow, smooth, and adorned with iridescent feathers", + "eyes: rounded, alert, and encircled by a ring of light-colored feathers", + "legs: long, thin, and webbed, with scales and a dark gray hue", + "wings: wide and sturdy, with a mix of iridescent and matte feathers", + "nape: elegant slope transitioning from the crown to the back", + "tail: fan-shaped and razor-sharp, with dark gray to black feathers", + "throat: featherless, smooth skin in a pale hue, connecting to the breast" + ], + "stierling woodpecker": [ + "back: greenish-black with white spots", + "beak: strong, chisel-like, black", + "belly: creamy white with black bars", + "breast: crimson-red patch", + "crown: black with white stripes", + "forehead: red stripe", + "eyes: dark, piercing", + "legs: gray and sturdy", + "wings: black with white patches", + "nape: black with white stripes", + "tail: black with white bars", + "throat: white with black streaks" + ], + "stierling wren warbler": [ + "back: streaked with shades of brown", + "beak: thin, slightly curved", + "belly: white or pale shade", + "breast: light brown with subtle streaks", + "crown: greyish-brown and rounded", + "forehead: lighter, blending with crown", + "eyes: small and dark", + "legs: slim, brownish-gray", + "wings: brown with hints of white", + "nape: patterned with brown tones", + "tail: long and narrow, with dark barring", + "throat: pale, contrasting with breast" + ], + "stiles tapaculo": [ + "back: dark gray, slightly streaked", + "beak: small and curved, blackish", + "belly: grayish-brown, paler than back", + "breast: darker gray than belly, some streaking", + "crown: dark gray, smooth", + "forehead: grayish-black, short feathers", + "eyes: black with white eyering", + "legs: long, dark-colored", + "wings: dark gray, short and rounded", + "nape: gray, matching crown", + "tail: dark gray, long and narrow", + "throat: paler gray, clear feathering" + ], + "stitchbird": [ + "back: olive-green feathers for camouflage", + "beak: curved, sharp black bill for snagging insects", + "belly: pale yellow plumage for contrast", + "breast: bright yellow with black striping for striking appearance", + "crown: forest green and black fading for seamless coverage", + "forehead: black strip extending from beak to crown for continuity", + "eyes: dark inquisitive glints for keen observation", + "legs: strong and black for perching and hopping", + "wings: olive-green with black and white highlights for agile flight", + "nape: forest green with lush black gradients for consistency", + "tail: long black feathers with white tips for swift navigation", + "throat: radiant yellow with black patterns for a vivid display" + ], + "stock dove": [ + "back: slate grey with subtle feather patterns", + "beak: short, hooked, and light pinkish", + "belly: pale grey with faint white markings", + "breast: soft pinkish-grey with a lavender tint", + "crown: smooth bluish-grey with slight gradients", + "forehead: smooth bluish-grey, slightly lighter than the crown", + "eyes: dark brown with thin black outline", + "legs: pale pink, slender, with scaled texture", + "wings: grey with darker grey and black-tipped feathers, pale edging", + "nape: bluish-grey, blending with the crown and back", + "tail: dark grey with a black terminal band and white outer edges", + "throat: pale grey with a clean-cut dividing line from the breast" + ], + "stolid flycatcher": [ + "back: olive-green and sleek", + "beak: short, black, and pointed", + "belly: yellowish-white with subtle markings", + "breast: pale grayish-yellow with fine streaks", + "crown: uncrested, grayish-brown", + "forehead: smooth, blending into the crown", + "eyes: dark, watchful orbs", + "legs: sturdy, black", + "wings: long, dark gray, with white wing-bars", + "nape: olive-green transitioning from the crown", + "tail: forked, dark gray with white edges", + "throat: white, well-defined contrast to breast" + ], + "stone partridge": [ + "back: light brown with black speckles", + "beak: short and stout, light grey", + "belly: creamy white with black patterns", + "breast: reddish-brown with white spots", + "crown: dark brown with pale streaking", + "forehead: pale grey to white", + "eyes: small and dark, surrounded by a thin white ring", + "legs: sturdy and short, dull orange", + "wings: light brown with black and white markings", + "nape: reddish-brown with a pale stripe", + "tail: short and square, brown with black barring", + "throat: creamy white with black markings" + ], + "storm stork": [ + "back: sleek, grayish-blue feathers", + "beak: long, slender, and slightly curved", + "belly: smooth, white plumage", + "breast: soft, white feathers with a hint of gray", + "crown: dark gray to black crest of head feathers", + "forehead: smooth transition from crown to beak", + "eyes: intense, piercing gaze with dark brown or amber color", + "legs: long, sturdy, and grayish-blue", + "wings: wide, strong, with gray-blue and black tips", + "nape: continuation of dark crown feathers down the neck", + "tail: elongated, straight, with gray and black feathers", + "throat: white, smooth-feathered transition from beak to breast" + ], + "stout cisticola": [ + "back: brownish with streaks", + "beak: short and pointed", + "belly: light and buffy", + "breast: pale with some streaks", + "crown: rufous-orange with streaks", + "forehead: light brownish", + "eyes: dark, small and beady", + "legs: thin and greyish", + "wings: brown with rufous edges", + "nape: brownish with some streaks", + "tail: fairly short and rounded", + "throat: pale and unstreaked" + ], + "stout billed cinclodes": [ + "back: dark brown with subtle streaks", + "beak: strong, slightly curved, and black", + "belly: pale with dark brown barring", + "breast: grayish-brown with faint streaks", + "crown: dark brown with light streaks", + "forehead: similar to crown, dark brown with light streaks", + "eyes: dark, surrounded by light brown feathers", + "legs: sturdy, dark gray with strong toes and claws", + "wings: brown with paler edges on feathers", + "nape: dark brown with faint streaks", + "tail: long and brown with a slight fork", + "throat: pale gray-brown with sparse streaks" + ], + "stout billed cuckooshrike": [ + "back: short, grayish-blue feathers", + "beak: sturdy, slightly curved black bill", + "belly: creamy white with gray patches", + "breast: grayish-blue plumage", + "crown: dark grayish-blue feathers", + "forehead: lighter gray-blue feathers", + "eyes: black with white surrounding", + "legs: short and black", + "wings: broad, grayish-blue with white wingbars", + "nape: grayish-blue feathers", + "tail: long, dark gray with white tips", + "throat: light grayish-blue plumage" + ], + "straight billed earthcreeper": [ + "back: brownish streaked pattern", + "beak: long and straight, slightly pointed", + "belly: pale whitish shade", + "breast: buffy and brown, streaked appearance", + "crown: rufous-brown color, slightly flattened", + "forehead: brown and well-rounded", + "eyes: small, black and bright", + "legs: strong with elongated toes, brownish-gray color", + "wings: rounded, brown with earthy tones", + "nape: brownish with faint streaks", + "tail: long, fan-like, with brown and buffy stripes", + "throat: white, sometimes with light streaks" + ], + "straight billed hermit": [ + "back: olive-brown feathers", + "beak: long, straight, and black", + "belly: white and fluffy", + "breast: grayish-brown plumage", + "crown: dark olive-green", + "forehead: greenish-brown", + "eyes: small, round, and black", + "legs: light brown with sharp claws", + "wings: curved, long, and greenish-brown", + "nape: slightly lighter olive-green", + "tail: long, white-tipped, and bronze-green", + "throat: pale gray with fine streaks" + ], + "straight billed reedhaunter": [ + "back: olive-green upper body", + "beak: long, straight, dark-colored", + "belly: off-white and faintly striped", + "breast: pale brown with subtle streaks", + "crown: grayish-brown, flattened top", + "forehead: light gray-brown", + "eyes: black, small, surrounded by white eye-ring", + "legs: strong, grayish, suited for perching", + "wings: olive-green with dark flight feathers", + "nape: grayish-brown, fusing with crown", + "tail: long, slender, dark brown", + "throat: white, unmarked, contrasts with breast" + ], + "straight billed woodcreeper": [ + "back: brownish streaked feathers", + "beak: long, straight, and pointed", + "belly: buffy or light brown", + "breast: brown with fine streaks", + "crown: dark brown with slight rufous tint", + "forehead: slightly paler brown", + "eyes: dark brown surrounded by white ring", + "legs: grayish-brown and sturdy", + "wings: brown with thin white bars", + "nape: brown, continuum from crown and back", + "tail: long, stiff, and slightly curved", + "throat: pale with faint streaks" + ], + "straneck tyrannulet": [ + "back: olive-green upper feathering", + "beak: short, pointed, and dark grey", + "belly: pale white-yellowish hue", + "breast: light grey with yellowish tones", + "crown: olive-brownish coloration", + "forehead: slightly lighter olive-brown hue", + "eyes: dark, round, and well-defined", + "legs: dark grey, thin, and sturdy", + "wings: olive-green with faint wing-bars", + "nape: olive-brown hues blending with crown", + "tail: long, dark, with slightly forked feathers", + "throat: pale greyish-white coloring" + ], + "strange weaver": [ + "back: vibrant green plumage", + "beak: elongated, sharp, pale yellow", + "belly: feathered yellow-orange", + "breast: lime green with speckled markings", + "crown: spiked crest of blue feathers", + "forehead: contrastingly striking turquoise", + "eyes: beady, black, inquisitive gaze", + "legs: slender, gray, strong talons", + "wings: vivid purple, elongated feathers", + "nape: mix of iridescent green and blue", + "tail: long, forked, multi-colored feathers", + "throat: distinct red markings and patterns" + ], + "strange tailed tyrant": [ + "back: vibrant green feathers", + "beak: slender, black, and hooked", + "belly: light yellow with black streaks", + "breast: soft lemony-yellow plumage", + "crown: yellowish crest with black edge", + "forehead: bright yellow feathers", + "eyes: small, dark, and lively", + "legs: thin, black, and strong", + "wings: greenish with black edges", + "nape: soft yellow with a tinge of green", + "tail: elongated, black, and twisted, resembling two long streamers", + "throat: bold yellow with black throat patch" + ], + "straw headed bulbul": [ + "back: olive-brown with slight feather streaks", + "beak: black, slender, and slightly curved", + "belly: pale yellow with vague streaks", + "breast: bright yellow, blending with belly", + "crown: pale straw color, distinguishing feature", + "forehead: straw-colored, joining the crown", + "eyes: dark brown with a pale eyering", + "legs: bluish-gray, strong and perching", + "wings: olive-brown with white-edged feathers", + "nape: straw-colored, continuing from crown", + "tail: olive-brown with prominent white tips", + "throat: pale yellow, connecting to breast" + ], + "straw necked ibis": [ + "back: grayish-brown with iridescent sheen", + "beak: long, dark curved bill", + "belly: white with slight gray tinge", + "breast: white with gray-brown feathers", + "crown: dark brownish-gray cap", + "forehead: smooth, unfeathered and black", + "eyes: small, dark brown", + "legs: long, grayish-blue", + "wings: black with straw-colored plumes", + "nape: straw-colored wispy feathers", + "tail: long, black iridescent feathers", + "throat: white, covered in thin feathers" + ], + "straw tailed whydah": [ + "back: glossy black with a bluish sheen", + "beak: dark, slender, and conical-shaped", + "belly: white and slightly fluffy", + "breast: contrasting white against black plumage", + "crown: sleek black with iridescent shine", + "forehead: black feathers transitioning into the crown", + "eyes: small, black, and somewhat hidden by surrounding feathers", + "legs: long, thin, and dark gray", + "wings: glossy black with a sheen and strong feathers for flight", + "nape: deep black, blending seamlessly with surrounding feathers", + "tail: elongated, straw-like plumes that cascade in a fan-like shape", + "throat: black, smooth feathers leading to the breast" + ], + "streak backed antshrike": [ + "back: olive-green with black streaks", + "beak: stout and hooked, grayish-black", + "belly: creamy white with faint streaks", + "breast: olive-brown with dark streaks", + "crown: dark gray with white streaks", + "forehead: grayish-brown, slightly paler than crown", + "eyes: black, surrounded by pale eyering", + "legs: grayish pink, strong and sturdy", + "wings: olive-brown with blackish bars and white tips", + "nape: olive-gray with white streaks", + "tail: black with cream-colored edges and white tips", + "throat: white with gray streaks" + ], + "streak backed canastero": [ + "back: rusty-brown, streaked upperparts", + "beak: long, slender, curved", + "belly: pale grayish-brown, faint streaks", + "breast: grayish-brown, with fine streaks", + "crown: rusty-brown, streaked with black", + "forehead: whitish, with streaks near the beak", + "eyes: dark brown, surrounded by a pale eye-ring", + "legs: grayish-brown, strong and sturdy", + "wings: brownish, with paler feather edges", + "nape: rusty-brown, streaked with black", + "tail: long, slender, with black and brownish feathers", + "throat: whitish with fine streaks" + ], + "streak backed oriole": [ + "back: striking olive-green color", + "beak: long, curved, black beak", + "belly: bright yellow-orange hue", + "breast: vibrant yellow-orange shade", + "crown: rich orange with a black mask", + "forehead: bright orange extending to black mask", + "eyes: dark, piercing with black mask", + "legs: slender, grayish-black legs", + "wings: olive-green with black edgings", + "nape: bold orange transitioning to olive-green", + "tail: olive-green with black tips", + "throat: intense yellow-orange extending to breast" + ], + "streak breasted bulbul": [ + "back: olive-brown with streaks", + "beak: short and curved", + "belly: whitish with brown streaks", + "breast: pale brown with streaking", + "crown: brown with concealed crest", + "forehead: pale brown", + "eyes: black with pale eye-ring", + "legs: slender and grayish", + "wings: brown with wing-bars", + "nape: olive-brown", + "tail: long and brownish", + "throat: whitish with faint streaks" + ], + "streak breasted fantail": [ + "back: olive-brown feathers with faint streaks", + "beak: small, pointed, and black", + "belly: pale, off-white with light streaks", + "breast: whitish with distinct brownish streaks", + "crown: reddish-brown with faint streaks", + "forehead: light brown with subtle streaks", + "eyes: dark, encircled by a faint eye-ring", + "legs: slender and dark gray", + "wings: brownish, with white-tipped coverts", + "nape: brownish-red with faint streaks", + "tail: long, and fan-shaped with light tips", + "throat: pale, off-white with light streaks" + ], + "streak breasted honeyeater": [ + "back: olive-brown feathers with faint streaks", + "beak: long, slender, and black", + "belly: off-white with dark streaks", + "breast: pale brown with darker streaks", + "crown: greyish-brown with fine striations", + "forehead: transitioning from crown to pale eyebrow streak", + "eyes: dark brown with pale eyebrow streak", + "legs: bluish-grey, strong, and slender", + "wings: olive-brown with faint markings", + "nape: similar coloration to the crown", + "tail: long and olive-brown with indistinct bars", + "throat: off-white with faint streaks" + ], + "streak breasted scimitar babbler": [ + "back: olive brown with thin streaks", + "beak: long, curved, and black", + "belly: white with black streaks", + "breast: pale buff with dark streaks", + "crown: rufous-colored", + "forehead: reddish-brown", + "eyes: dark brown with a pale eyering", + "legs: pale pinkish-gray", + "wings: olive-brown with faint bars", + "nape: rufous with streaks", + "tail: long, rufous, and wedge-shaped", + "throat: white with black streaks" + ], + "streak breasted treehunter": [ + "back: olive-brown with subtle streaks", + "beak: sturdy, slightly curved, pale-gray", + "belly: creamy-white with brown streaks", + "breast: buff-white with bold streaks", + "crown: rufous-brown with narrow streaks", + "forehead: olive-brown, faintly streaked", + "eyes: dark, encircled by pale eye-ring", + "legs: strong, pale-grayish", + "wings: olive-brown with faint bars", + "nape: buff-brown with slight streaks", + "tail: brownish, narrow, and graduated", + "throat: creamy-white with fine streaks" + ], + "streak breasted woodpecker": [ + "back: brownish-black with white streaks", + "beak: long, sturdy, and chisel-like", + "belly: whitish with black streaks", + "breast: white streaks on a black background", + "crown: red or orange patch on top of the head", + "forehead: black with a hint of red", + "eyes: round, dark, and beady", + "legs: strong, grayish, and clawed", + "wings: checkered black and white pattern", + "nape: black with white streaks", + "tail: black with white spots and bristles", + "throat: white with faint black streaks" + ], + "streak capped antwren": [ + "back: olive-brown with streaks", + "beak: short, slender, and black", + "belly: pale yellowish-white", + "breast: greyish-white with streaks", + "crown: chestnut-colored with streaks", + "forehead: pale greyish-white", + "eyes: small and dark", + "legs: pale pinkish-grey", + "wings: olive-brown with white bars", + "nape: olive-brown with streaks", + "tail: long and dark with white tips", + "throat: greyish-white" + ], + "streak capped spinetail": [ + "back: streaked brown and black feathers", + "beak: short, thin, curved, and dark-colored", + "belly: off-white, lightly streaked with brown", + "breast: pale beige, marked with fine brown streaks", + "crown: reddish-brown, adorned with a distinctive streaked cap", + "forehead: pale, with light brown streaks", + "eyes: dark and beady, encircled by pale eyerings", + "legs: long, slender, and pale gray", + "wings: brown with faint black streaks, rufous-edged feathers", + "nape: streaked brown and black, merging with crown", + "tail: long, narrow, dark brown with subtle black barring", + "throat: whitish, with soft brown streaking" + ], + "streak capped treehunter": [ + "back: olive-brown with streaks", + "beak: long, slender, and curved", + "belly: buff-colored with streaks", + "breast: pale brown with streaks", + "crown: rufous with streaks", + "forehead: buff with streaks", + "eyes: black with pale eyering", + "legs: long and sturdy", + "wings: olive-brown with buff wing-bars", + "nape: olive-brown with streaks", + "tail: long, olive-brown, and graduated", + "throat: pale buff with streaks" + ], + "streak chested antpitta": [ + "back: olive-brown with streaks", + "beak: straight, thin, and pale", + "belly: creamy-white with streaks", + "breast: buff-white with dark streaks", + "crown: dark olive-brown", + "forehead: lighter olive-brown", + "eyes: large and dark", + "legs: long and pinkish", + "wings: olive-brown with faint bars", + "nape: olive-brown with streaks", + "tail: short and olive-brown", + "throat: buff-white with faint streaks" + ], + "streak crowned antvireo": [ + "back: olive-green with faint streaks", + "beak: short, hooked, grayish-black", + "belly: pale yellow with grayish flanks", + "breast: pale gray with a yellow tinge", + "crown: brownish-gray with streaks", + "forehead: smoky gray with pale streaks", + "eyes: dark, large, surrounded by pale eye-ring", + "legs: grayish with sturdy claws", + "wings: olive-green with two white wing-bars", + "nape: brownish-gray with fine streaks", + "tail: long, olive-green with faint barring", + "throat: pale gray with subtle streaks" + ], + "streak eared bulbul": [ + "back: olive-brown color with subtle streaks", + "beak: short, hooked, and sharp", + "belly: pale white with streaks", + "breast: white with brown streaks", + "crown: brown with gray streaks", + "forehead: pale with light streaking", + "eyes: black with small white eyering", + "legs: long, slender, and dark grey", + "wings: olive-brown with white edges", + "nape: gray-brown with light streaks", + "tail: long, olive-brown with white tips", + "throat: white with fine brown streaks" + ], + "streak fronted thornbird": [ + "back: brown and streaked with white", + "beak: slightly curved, elongated, and sharp", + "belly: whitish with brown streaks", + "breast: white with brown streaks", + "crown: grayish-brown with a slight crest", + "forehead: grayish-brown and smooth", + "eyes: small and black, surrounded by white feathers", + "legs: long and slender, pale gray", + "wings: brown with white streaks and edgings", + "nape: grayish-brown and streaked", + "tail: long, brown, and slightly forked", + "throat: white with a hint of brown streaks" + ], + "streak headed antbird": [ + "back: olive-green with subtle streaks", + "beak: short and stout, blackish-grey", + "belly: off-white with faint streaks", + "breast: pale greyish with fine streaks", + "crown: rufous-brown with a distinct crest", + "forehead: pale rufous with fine streaks", + "eyes: dark with pale grayish eyering", + "legs: long and slender, pinkish-grey", + "wings: olive-green with tawny-edged feathers", + "nape: olive-brown with fine streaks", + "tail: long and narrow, dark olive-brown", + "throat: whitish with faint streaks" + ], + "streak headed honeyeater": [ + "back: olive-green feathers", + "beak: slender, curved, black", + "belly: creamy-white with streaks", + "breast: off-white with streaks", + "crown: olive-green with streaks", + "forehead: pale eyebrow-like markings", + "eyes: round, dark, beady", + "legs: light grey, thin", + "wings: short, rounded, olive-green", + "nape: streaked olive-green", + "tail: olive-green, slender, forked", + "throat: white with streaks" + ], + "streak headed munia": [ + "back: brown with streaks", + "beak: short and conical, gray-blue", + "belly: white with gray streaks", + "breast: grayish-brown with streaks", + "crown: brown with streaks", + "forehead: reddish-brown or chestnut-colored", + "eyes: small and dark", + "legs: slender and gray-blue", + "wings: brown with a wide white band", + "nape: grayish-white with brown streaks", + "tail: long and dark brown", + "throat: gray-white with streaks" + ], + "streak headed white eye": [ + "back: greenish-yellow striped feathers", + "beak: short, pointed, black", + "belly: white with fine streaks", + "breast: pale yellow with fine streaks", + "crown: bright yellow with faint streaks", + "forehead: yellow with some streaks", + "eyes: large, white eye-ring encircling dark eyes", + "legs: slender, gray-black", + "wings: dark gray with yellow-green edging", + "nape: yellow-green with faint streaks", + "tail: dark gray, slightly forked", + "throat: whitish with fine streaks" + ], + "streak headed woodcreeper": [ + "back: brown, tree bark pattern", + "beak: long, slightly curved, brownish", + "belly: creamy white, streaked with brown", + "breast: pale brown with subtle streaks", + "crown: reddish-brown, streaked with black", + "forehead: fawn-colored with brown streaks", + "eyes: black, beady surrounded by pale ring", + "legs: slim, strong, grayish", + "wings: brown with prominent black barring", + "nape: brown, streaked with black", + "tail: sturdy, banded with brown and black", + "throat: white, slightly streaked with brown" + ], + "streak necked flycatcher": [ + "back: olive-brown with streaks", + "beak: short, sharp, black", + "belly: creamy-white with streaks", + "breast: buff-colored with streaks", + "crown: olive-brown with slight crest", + "forehead: olive-brown, blending with crown", + "eyes: large, black, white eye-ring", + "legs: grayish-blue, slender", + "wings: olive-brown, white wing bars", + "nape: olive-brown, blending with back", + "tail: olive-brown, black-tipped feathers", + "throat: pale buff, blending with breast" + ], + "streak throated barwing": [ + "back: olive-brown with black streaks", + "beak: short, curved, dark gray", + "belly: white with black streaks", + "breast: dull white and streaked", + "crown: rufous-brown with streaks", + "forehead: slightly paler with streaks", + "eyes: dark brown with white rings", + "legs: yellowish-gray, strong", + "wings: brown with rufous and white patches", + "nape: olive-brown with black streaks", + "tail: long, dark brown with rufous edges", + "throat: pale white with heavy dark streaks" + ], + "streak throated bush tyrant": [ + "back: olive-green feathers with brownish hues", + "beak: short, stout, and black with hooked tip", + "belly: pale yellow with light streaks", + "breast: creamy yellow with dark streaks", + "crown: slate gray with lighter streaks", + "forehead: grayish with subtle streaks", + "eyes: dark with pale eye-ring", + "legs: slender and black", + "wings: dark brown with slight rufous edges", + "nape: grayish-brown with faint streaks", + "tail: long and dark with light brown outer feathers", + "throat: white streaked with dark lines" + ], + "streak throated canastero": [ + "back: light brown with faint streaks", + "beak: short, thin, and pointed", + "belly: warm buff-colored", + "breast: buff with darker streaks", + "crown: brown with dull streaks", + "forehead: light brown and slightly streaked", + "eyes: dark with subtle eye-ring", + "legs: slender, pale grayish-brown", + "wings: brown with white-tipped feathers", + "nape: light brown with a streaked pattern", + "tail: long and fan-shaped with white tips", + "throat: pale buff with faint streaks" + ], + "streak throated fulvetta": [ + "back: olive-brown feathers", + "beak: short, sturdy, grayish", + "belly: pale, buffy-white", + "breast: off-white with brownish streaks", + "crown: reddish-brown feathers", + "forehead: smooth, light olive-brown", + "eyes: small, dark, and alert", + "legs: slender and grayish", + "wings: olive-brown with faint streaks", + "nape: warm brown with faint streaks", + "tail: olive-brown, medium length", + "throat: white with dark streaks" + ], + "streak throated hermit": [ + "back: olive-brown with faint streaks", + "beak: slender, curved, pale yellowish", + "belly: pale olive-gray with streaks", + "breast: light olive-gray with streaks", + "crown: olive-brown with a grayish tinge", + "forehead: pale grayish-white band", + "eyes: dark, round, and expressive", + "legs: delicate, pale pinkish-gray", + "wings: olive-brown with faint markings", + "nape: grayish olive-brown with slight streaks", + "tail: dark, long with white tips on the outer feathers", + "throat: grayish-white with distinct dark streaks" + ], + "streak throated swallow": [ + "back: sleek, blue-green feathers", + "beak: short, black, slightly curved", + "belly: white with some pale gray streaks", + "breast: white, lightly streaked with gray", + "crown: glossy blue-green plumage", + "forehead: bright blue-green feathers", + "eyes: small, black, and alert", + "legs: short, dark, thin", + "wings: long, pointed, blue-green with black streaks", + "nape: blue-green plumage transitioning to gray streaks", + "tail: forked, blue-black with white outer feathers", + "throat: off-white with faint gray streaks" + ], + "streak throated woodpecker": [ + "back: olive-brown with white streaks", + "beak: long, chisel-shaped, and black", + "belly: whitish with brown streaks", + "breast: pale buff with brown streaks", + "crown: red in males, black in females", + "forehead: pale buff with black streaks", + "eyes: dark brown with white eyering", + "legs: gray with strong claws", + "wings: olive-brown with white spots", + "nape: black in males, olive-brown in females", + "tail: stiff olive-brown feathers with white spots", + "throat: streaky white and brown" + ], + "streaked barwing": [ + "back: light brown with subtle streaks", + "beak: short, strong and conical", + "belly: creamy white with faint streaks", + "breast: buff-colored with distinct dark streaks", + "crown: warm brown with fine streaks", + "forehead: smooth light brown", + "eyes: small, dark, and alert", + "legs: slender and pale yellowish", + "wings: long, brown, streaked feathers with white patches", + "nape: light brown with thin streaks", + "tail: dark brown, rounded with white tips", + "throat: white with fine, dark streaks" + ], + "streaked berrypecker": [ + "back: olive-green, streaked with black", + "beak: short, hooked, black", + "belly: white with brown streaks", + "breast: white, streaked with brown", + "crown: dark olive-green", + "forehead: olive-green, black streaks", + "eyes: small, dark", + "legs: gray, slender", + "wings: olive-green, streaked with black", + "nape: olive-green, black streaks", + "tail: long, thin, olive-green, black streaks", + "throat: white, streaked with brown" + ], + "streaked bulbul": [ + "back: olive-green with streaks", + "beak: short and conical", + "belly: pale yellow with streaks", + "breast: light buff-colored with streaks", + "crown: greyish-brown with streaks", + "forehead: paler grey-brown", + "eyes: black with white eye-ring", + "legs: strong and grey", + "wings: olive-brown with white-tipped feathers", + "nape: greyish-brown with streaks", + "tail: long and olive-brown with white tips", + "throat: pale buff-colored" + ], + "streaked fantail": [ + "back: olive-green with streaks", + "beak: small, thin, and pointy", + "belly: light pale-yellow", + "breast: yellowish-brown with streaks", + "crown: olive-brown with a prominent crest", + "forehead: soft grayish-brown", + "eyes: round, black, and beady", + "legs: thin, strong, and gray", + "wings: greenish-brown with bars", + "nape: olive-brown with streaks", + "tail: long, fan-shaped with white tips", + "throat: pale gray with faint streaks" + ], + "streaked laughingthrush": [ + "back: brown streaked pattern", + "beak: strong and slightly curved", + "belly: whitish with brown streaks", + "breast: pale brown with dark streaks", + "crown: pale with dark streaks", + "forehead: subtle brown streaking", + "eyes: dark with white outer ring", + "legs: sturdy and pinkish-brown", + "wings: brown with dark barring", + "nape: pale brown with streaks", + "tail: long with dark barring", + "throat: whitish with brown streaks" + ], + "streaked reed warbler": [ + "back: olive-brown with faint streaks", + "beak: slender and slightly curved, blackish-brown", + "belly: pale buff or whitish, with light streaks", + "breast: light buff with dark streaks", + "crown: olive-brown with faint streaks", + "forehead: slightly lighter olive-brown", + "eyes: dark brown with pale eyering", + "legs: pale pinkish-brown", + "wings: olive-brown with blackish flight feathers", + "nape: olive-brown with faint streaks", + "tail: olive-brown with blackish edges and white tips", + "throat: light buff, unmarked" + ], + "streaked rosefinch": [ + "back: olive-brown with faint streaks", + "beak: short, conical, and pale pinkish", + "belly: off-white with pale brown streaks", + "breast: reddish-pink with light streaks", + "crown: grayish-brown with a subtle crest", + "forehead: grayish-brown, blending into crown", + "eyes: small, black, and surrounded by a faint eye-ring", + "legs: pale pinkish-gray and slender", + "wings: olive-brown with whitish wingbars", + "nape: grayish-brown, similar to crown", + "tail: olive-brown with faint white tips", + "throat: reddish-pink with minimal streaks" + ], + "streaked saltator": [ + "back: olive-green with streaks", + "beak: stout, conical, and grayish", + "belly: whitish with gray streaks", + "breast: gray with streaks", + "crown: olive-green", + "forehead: grayish", + "eyes: dark with pale eyering", + "legs: grayish-blue", + "wings: olive-green with two wing bars", + "nape: olive-green with streaks", + "tail: olive-green, notched", + "throat: white with gray streaks" + ], + "streaked shearwater": [ + "back: brownish-gray feathers with streak pattern", + "beak: long, slender, and hooked, dark gray color", + "belly: white plumage with light streaks", + "breast: white feathers with brownish streaks", + "crown: dark gray with brown streaks", + "forehead: grayish-white with fine streaks", + "eyes: encircled by thin white ring, black pupils", + "legs: pinkish-gray with webbed feet", + "wings: long, pointed, darker on top with lighter underside", + "nape: grayish-brown with streaks", + "tail: long, dark brown with individual feathers visible", + "throat: white with fine brown streaks" + ], + "streaked spiderhunter": [ + "back: olive-green and streaked", + "beak: long, dark, curved", + "belly: pale yellow with blurry streaks", + "breast: yellowish with dark streaks", + "crown: bright yellow-orange", + "forehead: yellow-orange with blue ring around eyes", + "eyes: black with blue eye-ring", + "legs: pale pinkish-gray", + "wings: olive-green with dark streaks", + "nape: yellow-orange", + "tail: olive-green with darker tips and streaks", + "throat: yellow-orange with thin dark streaks" + ], + "streaked tit spinetail": [ + "back: streaked brown and gray feathers", + "beak: short, pointed, and dark-colored", + "belly: whitish with brown streaks", + "breast: pale gray with darker streaks", + "crown: rufous-brown with gray streaks", + "forehead: gray-brown with fine streaks", + "eyes: small, dark, and alert", + "legs: strong and grayish-brown", + "wings: dark brown with fine gray streaks", + "nape: gray-brown with lighter streaks", + "tail: long and narrow, brownish-gray with dark banding", + "throat: whitish-gray with subtle streaking" + ], + "streaked tuftedcheek": [ + "back: streaked brown and white feathers", + "beak: short, sturdy, and conical shaped", + "belly: creamy white with faint streaks", + "breast: pale brown with dark streaks", + "crown: grayish-brown with prominent tuft", + "forehead: grayish-brown with slight streaks", + "eyes: small and dark, surrounded by faint eye-ring", + "legs: strong, pale pinkish-gray", + "wings: brown with white tips and streaks", + "nape: grayish-brown with streaks", + "tail: long and brown with white edges", + "throat: pale gray with faint streaks" + ], + "streaked weaver": [ + "back: olive-brown, streaked with dark feathers", + "beak: long, cone-shaped, and silver", + "belly: light creamy-yellow with blackish streaks", + "breast: pale yellowish-brown, streaked with black", + "crown: chestnut-red with black streaks", + "forehead: gold-orange with black lines", + "eyes: small, dark, and bead-like", + "legs: slender and pale gray", + "wings: olive-green with black and yellowish-brown bars", + "nape: chestnut-colored, striped with dark brown", + "tail: short and dark, with white-tipped feathers", + "throat: light yellow with faint brown streaks" + ], + "streaked wren babbler": [ + "back: brownish with faint streaks", + "beak: short and curved", + "belly: buffy-white with dark streaks", + "breast: pale with distinct streaks", + "crown: brown with black streaks", + "forehead: dusky with fine streaks", + "eyes: dark brown, medium-sized", + "legs: pinkish-brown, sturdy", + "wings: brown with faint bars", + "nape: brown with dark streaks", + "tail: long and rounded, brown with barring", + "throat: whitish with fine streaks" + ], + "streaked xenops": [ + "back: streaked olive-brown", + "beak: long, slender, and slightly upturned", + "belly: buff-white with light streaks", + "breast: pale with faint streaks", + "crown: brown with narrow white streaks", + "forehead: grayish-brown", + "eyes: surrounded by white eyering", + "legs: pale pinkish-gray", + "wings: olive-brown with white spots and streaks", + "nape: streaked brown and white", + "tail: dark brown with white tips", + "throat: white with fine, dark streaks" + ], + "streaky seedeater": [ + "back: streaked olive-green feathers", + "beak: sharp, narrow, and slightly curved", + "belly: pale buff to whitish color", + "breast: olive-green fading into the belly, with streaks", + "crown: olive-green feathers with streaks", + "forehead: pale olive-green with streaks", + "eyes: small, dark, and rounded", + "legs: slender and grayish-brown", + "wings: olive-green with dark feather edges", + "nape: streaked olive-green", + "tail: dark with pale edges, forked shape", + "throat: white with streaks on the sides" + ], + "streaky breasted flufftail": [ + "back: brownish-grey with streaks", + "beak: short, sharp, and curved", + "belly: white with fine brown streaks", + "breast: buffy-white with brown streaks", + "crown: reddish-brown with streaks", + "forehead: pale brown with darker streaks", + "eyes: small, black, and round", + "legs: long, slender, and greyish-brown", + "wings: rounded, brown with faint streaks", + "nape: reddish-brown with streaks", + "tail: short and square, brown with streaks", + "throat: pale grey with brown streaks" + ], + "streaky breasted spiderhunter": [ + "back: olive-green feathers with a slight sheen", + "beak: long, curved, black", + "belly: yellowish-olive with dark streaks", + "breast: streaked yellow with darker markings", + "crown: olive-green with light streaking", + "forehead: bright yellow feathers", + "eyes: small, black, beady", + "legs: grayish-brown and sturdy", + "wings: olive-green with dark edges", + "nape: greenish-olive with light streaks", + "tail: long, olive-green with dark banding", + "throat: yellow with bold streaks" + ], + "streaky headed seedeater": [ + "back: streaked brown and white", + "beak: short and conical", + "belly: creamy white with streaks", + "breast: beige with streaks", + "crown: greyish-brown", + "forehead: soft grey", + "eyes: small and black", + "legs: slender with dusky pink", + "wings: brown with white streaks", + "nape: greyish-brown with streaks", + "tail: brown and narrow", + "throat: white with streaks" + ], + "streamer tailed tyrant": [ + "back: sleek black feathers", + "beak: sharp, elongated, black", + "belly: white and fluffy", + "breast: white, prominent, slightly rounded", + "crown: black with slight crest", + "forehead: black and smooth", + "eyes: bright, piercing, dark", + "legs: thin, dark, strong", + "wings: black, elongated, powerful", + "nape: black, blending with crown", + "tail: extremely long, black streamers", + "throat: white, contrasting with black head" + ], + "stresemann bristlefront": [ + "back: olive-brown with fine streaks", + "beak: thin, straight, and black", + "belly: pale yellow with faint streaks", + "breast: gray with streaks, fading to buff-yellow", + "crown: black with long, bristled feathers", + "forehead: black with short bristles", + "eyes: black, surrounded by indistinct eye-ring", + "legs: gray, slender, and long", + "wings: olive-brown with black flight feathers", + "nape: streaked olive-brown", + "tail: blackish, long, and graduated", + "throat: grayish-white with darker streaks" + ], + "stresemann bush crow": [ + "back: dark grayish-blue feathers", + "beak: stout, black, slightly curved", + "belly: grayish-blue, lighter than back", + "breast: grayish-blue, blends with belly", + "crown: black feathers with slight crest", + "forehead: smooth, dark feathers extending to eyes", + "eyes: intense white eyering with dark pupils", + "legs: long, black, ending in sharp talons", + "wings: dark blue-gray with pale feather edging", + "nape: black, blends with crown and back", + "tail: dark blue-gray, long, and slightly forked", + "throat: pale grayish-blue, fading into breast" + ], + "striated antbird": [ + "back: dark grey with white streaks", + "beak: thin, slightly curved, black in color", + "belly: beige with light grey striations", + "breast: whitish-grey with thin grey striations", + "crown: dark grey with thin white streaks", + "forehead: smooth, light greyish-brown", + "eyes: dark, small and round, surrounded by faint white rings", + "legs: long, slender, pale grey", + "wings: dark grey with white striations, rounded in shape", + "nape: dark grey with white streaks", + "tail: long, grey with white streaks and black band at the tip", + "throat: pale greyish-white with soft grey striations" + ], + "striated antthrush": [ + "back: brown with blackish striations", + "beak: short, straight, and black", + "belly: buffy-white with dark streaks", + "breast: rufous-brown with fine striations", + "crown: rufous-brown with a short crest", + "forehead: rufous-brown and smoothly curved", + "eyes: dark brown with a thin white eyering", + "legs: sturdy, grayish-pink", + "wings: brown with faint blackish barring", + "nape: rufous-brown with blackish striations", + "tail: long, brown, and slightly rounded", + "throat: pale buff with fine brown streaks" + ], + "striated babbler": [ + "back: brownish-grey with faint streaks", + "beak: sturdy, pale-colored with a slight curve", + "belly: whitish-grey with faint streaks", + "breast: pale greyish-brown with slight streaks", + "crown: brownish-grey with faint streaks", + "forehead: gently sloping, greyish-brown", + "eyes: dark, encircled by a pale eye-ring", + "legs: strong, pale brown with scaly texture", + "wings: brownish-grey with faint barring", + "nape: brownish-grey with faint streaks", + "tail: long, greyish-brown with faint barring", + "throat: pale greyish-white with some streaks" + ], + "striated bulbul": [ + "back: sleek, striped feathers", + "beak: short, pointed, and curved", + "belly: cream-colored with faint striations", + "breast: pale yellow with fine streaks", + "crown: solid brownish-black", + "forehead: whitish, narrow eyebrows", + "eyes: beady and alert, dark brown", + "legs: slender, dark gray", + "wings: brown and slightly striped", + "nape: light cream with subtle striations", + "tail: brownish-black with thin white tips", + "throat: creamy white and unstreaked" + ], + "striated earthcreeper": [ + "back: brownish-gray with thin dark streaks", + "beak: long, slender, and slightly curved", + "belly: buffy-white with faint dark striations", + "breast: pale gray with distinct dark streaks", + "crown: rufous-brown with dark striations", + "forehead: pale grayish-brown with fine streaks", + "eyes: dark with white eye-ring", + "legs: sturdy and strong, grayish-brown", + "wings: brownish with dark barring and white-tipped coverts", + "nape: grayish-brown with fine dark streaks", + "tail: long, brown with dark barring and white outer tail feathers", + "throat: pale gray with subtle dark striations" + ], + "striated fieldwren": [ + "back: light brown with darker streaks", + "beak: thin and sharp with dark gray color", + "belly: creamy white with brown striations", + "breast: pale brown with dark streaks", + "crown: reddish-brown with black streaks", + "forehead: grayish-brown with darker streaks", + "eyes: small and deep black", + "legs: strong and gray with fine scales", + "wings: brownish-gray with black bands and white markings", + "nape: light brown with dark streaks", + "tail: short and fan-shaped with distinct black and white bars", + "throat: creamy white with subtle streaks" + ], + "striated grassbird": [ + "back: light brown with dark streaks", + "beak: small, sharp, and black", + "belly: pale white with brown streaks", + "breast: buff with black streaks", + "crown: rufous/brown with pale stripe", + "forehead: pale buff with dark streaks", + "eyes: dark with white eye-ring", + "legs: pale pinkish-gray", + "wings: dark brown with pale-edged feathers", + "nape: rufous with dark marks", + "tail: long, brown with dark bars", + "throat: pale buff with faint streaks" + ], + "striated grasswren": [ + "back: striped pattern of brown and beige feathers", + "beak: small and pointed, dark in color", + "belly: light beige with some subtle striations", + "breast: buff-colored with darker striations", + "crown: light brown, featuring stripe-like patterns", + "forehead: beige with fine brown stripes", + "eyes: small and black, surrounded by beige feathers", + "legs: slender and pale, often hidden by feathers", + "wings: short and rounded, brown and beige striations", + "nape: light brown with darker brown stripes", + "tail: short and fan-shaped, striated brown and beige", + "throat: pale buff-colored, lightly marked with thin stripes" + ], + "striated heron": [ + "back: olive-brown with light feather edges", + "beak: long, black, and pointed", + "belly: faint grayish-white with thin dark streaks", + "breast: pale gray with striated markings", + "crown: black with a blue-green sheen", + "forehead: white to pale gray, blending into the crown", + "eyes: bold yellow with a black pupil", + "legs: yellowish-green and sturdy", + "wings: olive-brown with white streaks on the shoulder", + "nape: black with blue-green gloss", + "tail: short, dark olive-brown with white tips", + "throat: pale gray with fine dark streaks" + ], + "striated laughingthrush": [ + "back: brownish-grey feathers with fine streaks", + "beak: short, curved, black", + "belly: creamy white with light brown streaks", + "breast: buff-colored, streaked with dark brown lines", + "crown: brown with black dashed streaks", + "forehead: light brown fading into buff towards eye line", + "eyes: dark, small, surrounded by off-white eye-ring", + "legs: sturdy and greyish-pink", + "wings: long, brownish-grey with faint barring", + "nape: light brown with fine streaks", + "tail: long, brownish-grey with a hint of barring", + "throat: white fading to buff with dark streaks" + ], + "striated pardalote": [ + "back: olive-green with black stripes", + "beak: short, sharp, grayish-black", + "belly: pale yellow with black markings", + "breast: whitish with faint black stripes", + "crown: black with white spots", + "forehead: yellow with black lines", + "eyes: dark with white eye-ring", + "legs: short, grayish-blue", + "wings: black with white-edged feathers", + "nape: black with white spots", + "tail: black with white tips", + "throat: creamy-white with black markings" + ], + "striated softtail": [ + "back: light brown with thin dark streaks", + "beak: small, pointed, and dark gray", + "belly: pale gray with fine dark striations", + "breast: soft gray with subtle striations", + "crown: solid brown with slight streaks", + "forehead: light brown blending into crown", + "eyes: small, round, and dark", + "legs: slender and grayish-brown", + "wings: brown with dark streaks and white edges", + "nape: light brown with thin dark streaks", + "tail: short, dark brown with white tips", + "throat: pale gray with subtle striations" + ], + "striated starling": [ + "back: dark glossy green feathers", + "beak: short, black, and strong", + "belly: light grey with black streaks", + "breast: grey-green with black striations", + "crown: metallic blue feathers", + "forehead: shiny blue with sleek feathers", + "eyes: small, black, and circular", + "legs: thin, light grey, and long", + "wings: dark green with white streaks", + "nape: greyish-green with fine stripes", + "tail: long, black, and narrow", + "throat: pale grey with black markings" + ], + "striated swallow": [ + "back: turquoise-green with black striations", + "beak: sleek, black, and pointed", + "belly: pale grey-white and lightly striped", + "breast: grey-blue with subtle striations", + "crown: iridescent black with a slight purple sheen", + "forehead: glossy black and smooth", + "eyes: small, beady, and black", + "legs: slender and dark grey", + "wings: elongated with dark stripes and a green-blue hue", + "nape: iridescent black with a flash of purple", + "tail: forked and striped, hues of blue and green", + "throat: pale grey with faint striations" + ], + "striated thornbill": [ + "back: olive-brown with fine streaks", + "beak: short and slender, curved", + "belly: whitish with faint streaks", + "breast: pale buff with darker streaks", + "crown: dark brown with white streaks", + "forehead: pale buff with thin streaks", + "eyes: small and dark, surrounded by light buff eyering", + "legs: slender and pale brown", + "wings: brown, edged with pale buff", + "nape: olive-brown, streaked with buff", + "tail: long and slender, brown with dark tips", + "throat: pale buff with faint streaks" + ], + "striated wren babbler": [ + "back: olive-brown with dark streaks", + "beak: small, curved, and dark-colored", + "belly: white with grayish-brown streaks", + "breast: grayish-white with dark streaks", + "crown: dark-brown with faint streaks", + "forehead: dark-brown with faint streaks", + "eyes: small, black, and surrounded by faint white ring", + "legs: sturdy, pale pinkish-brown", + "wings: olive-brown with dark streaks and faint white patch", + "nape: olive-brown with dark streaks", + "tail: short, broad, and olive-brown with dark streaks", + "throat: plain white with slight grayish streaks" + ], + "striated yuhina": [ + "back: olive-brown with faint streaks", + "beak: short, black, and pointed", + "belly: whitish with dark brown streaks", + "breast: chestnut-brown with heavy streaks", + "crown: rufous with black streaks", + "forehead: rufous and pronounced", + "eyes: small and dark, encircled by white eye-ring", + "legs: greyish, slender, and robust", + "wings: short with dark brown feathers and faint streaks", + "nape: olive-brown, blending with the crown", + "tail: long and slightly forked, with dark brown feathers", + "throat: creamy-white with sparse streaks" + ], + "strickland woodpecker": [ + "back: striped black and white pattern", + "beak: long, chisel-shaped, and gray", + "belly: creamy white with faint streaks", + "breast: white with black stripes on sides", + "crown: red in males, black in females", + "forehead: white with black lines", + "eyes: dark and prominent with a white ring", + "legs: gray and sturdy", + "wings: black with white spots and patches", + "nape: black with white streaks", + "tail: black with white barring", + "throat: white with black streaks" + ], + "striolated bunting": [ + "back: dark brown with light streaks", + "beak: short and conical, grayish-blue", + "belly: pale brown with soft streaks", + "breast: light brown with dark striations", + "crown: chestnut-brown with dark central stripe", + "forehead: pale grayish-brown", + "eyes: black with faint white eye-ring", + "legs: slender and grayish-pink", + "wings: dark brown with buff-white edges", + "nape: chestnut-brown with light streaks", + "tail: dark brown with white outer feathers", + "throat: off-white with brown streaks" + ], + "striolated manakin": [ + "back: olive-green with slight striations", + "beak: small, sharp-edged, blackish", + "belly: pale yellow with understated stripes", + "breast: bright yellow with thin gray streaks", + "crown: dark greenish-gray with faint streaks", + "forehead: paler greenish-gray", + "eyes: prominent, dark brown with narrow white eye-ring", + "legs: short, sturdy, grayish-brown", + "wings: olive-green, medium-sized with a white wing-bar", + "nape: olive-green with slight striations", + "tail: short, blackish with olive-green tips", + "throat: bright yellow with sparse striations" + ], + "striolated tit spinetail": [ + "back: olive-brown with dark streaks", + "beak: short, pointed, and pale-colored", + "belly: creamy buff with fine dark streaking", + "breast: pale brown with darker streaks", + "crown: brown with thin black stripes", + "forehead: light brown with a faint streak", + "eyes: dark, surrounded by a pale eye-ring", + "legs: pale pinkish-brown with strong claws", + "wings: dark brown with buff wingbars", + "nape: olive-brown with fine streaks", + "tail: long and dark brown with buff edges", + "throat: creamy-white with dark streaks" + ], + "stripe backed antbird": [ + "back: brownish with gray stripes", + "beak: long and slender, black in color", + "belly: creamy-white with fine gray streaks", + "breast: grayish with dark streaks", + "crown: solid dark gray", + "forehead: light gray with faint streaks", + "eyes: black with grayish-white eye-ring", + "legs: long and sturdy, gray in color", + "wings: brownish with gray stripes and slim white edgings", + "nape: dark gray with light streaks", + "tail: brownish with gray strips, light-tipped feathers", + "throat: white with fine gray streaks" + ], + "stripe backed bittern": [ + "back: brownish with dark stripes", + "beak: long and slender, black tip", + "belly: off-white with streaks", + "breast: warm brown with vertical stripes", + "crown: dark brown, slightly tufted", + "forehead: lighter brown with darker streaks", + "eyes: round, dark with faint eye-ring", + "legs: greenish-yellow, elongated", + "wings: brown with bold white stripes", + "nape: light brown with darker streaks", + "tail: brown with white transverse striping", + "throat: off-white, faint streaks" + ], + "stripe backed wren": [ + "back: brown with light streaks", + "beak: sharp, slender, and black", + "belly: off-white and lightly streaked", + "breast: beige with darker brown streaks", + "crown: rufous-brown with black streaks", + "forehead: light brown with black markings", + "eyes: dark brown with white eye-ring", + "legs: long, thin, and grayish", + "wings: brown with white and black bars", + "nape: rufous-brown with black streaks", + "tail: long, brown with white tips", + "throat: off-white with faint brown streaks" + ], + "stripe breasted rhabdornis": [ + "back: olive-brown with subtle streaks", + "beak: sharp, thin, and slightly curved", + "belly: creamy white with dark streaks", + "breast: white with thick black stripes", + "crown: dark brown with faint streaks", + "forehead: dark brown blending into crown", + "eyes: small, black, surrounded by white eyering", + "legs: sturdy, grayish-brown", + "wings: olive-brown with black bars", + "nape: olive-brown with faint streaks", + "tail: long, olive-brown with faint barring", + "throat: white, unmarked, contrasting with striped breast" + ], + "stripe breasted spinetail": [ + "back: brown with subtle streaks", + "beak: long and slender", + "belly: whitish with dense stripes", + "breast: heavily striped", + "crown: rufous with fine streaks", + "forehead: pale buff with streaking", + "eyes: dark with subtle eyelid ring", + "legs: strong and slender", + "wings: brownish with faint barring", + "nape: striped and contrasting", + "tail: long spinetail, dark with white tips", + "throat: white with fine streaks" + ], + "stripe breasted starthroat": [ + "back: vibrant green plumage", + "beak: long, slender, and straight", + "belly: white with faint streaks", + "breast: bold white stripes on green", + "crown: iridescent green shimmer", + "forehead: bright green feathers", + "eyes: small, dark with white outline", + "legs: thin, grayish-brown", + "wings: green and black pattern", + "nape: gorget of iridescent purple", + "tail: elongated, black, and white tips", + "throat: gleaming violet-blue patch" + ], + "stripe breasted tit": [ + "back: light brown feathers with faint white streaks", + "beak: short, sharp, and black", + "belly: pale cream with dark brown stripes", + "breast: cream-colored feathers with distinct brown stripes", + "crown: greyish-brown head with a slight crest", + "forehead: smooth greyish-brown feathers", + "eyes: small, dark, and alert", + "legs: slim, grey, and sturdy", + "wings: mottled brown with white spots and bars", + "nape: soft greyish-brown with white markings", + "tail: medium-length, brown, with white outer feathers", + "throat: light cream with faint brown stripes" + ], + "stripe breasted woodpecker": [ + "back: alternating black and white stripes", + "beak: long, slender, and pointed", + "belly: off-white with faint black streaks", + "breast: broad horizontal stripes in shades of brown and beige", + "crown: bright red patch with surrounding black feathers", + "forehead: black with small white spots", + "eyes: dark, round, and alert", + "legs: strong and grey, with sharp claws", + "wings: black with white bars and streaks", + "nape: black with a distinct white patch", + "tail: black with white outer feathers and prominent barring", + "throat: white with thin horizontal stripes" + ], + "stripe breasted wren": [ + "back: brown with dark streaks", + "beak: short and pointed", + "belly: white with black stripes", + "breast: white with bold black stripes", + "crown: dark brown", + "forehead: light brown", + "eyes: small with white eye-ring", + "legs: thin and gray", + "wings: brown with faint streaks", + "nape: chestnut-brown", + "tail: long and dark brown", + "throat: white with dark stripes" + ], + "stripe cheeked greenbul": [ + "back: olive-green covering the dorsal area", + "beak: short, sturdy, and slightly hooked at the tip", + "belly: pale yellow with faint streaks", + "breast: yellowish-green with some streaking", + "crown: greenish with faint lateral streaks", + "forehead: pale green merging into the crown", + "eyes: dark with a pale eye-ring", + "legs: grayish-brown supporting strong perching", + "wings: olive-green with some darker feathering", + "nape: greenish with slight streaking", + "tail: olive-green, medium-length, and slightly notched", + "throat: pale yellow with delicate streaking" + ], + "stripe cheeked woodpecker": [ + "back: brown with black streaks", + "beak: strong, chisel-like", + "belly: white speckled with brown", + "breast: white with dark streaks", + "crown: red with black base", + "forehead: black with white streaks", + "eyes: dark with black eyeline", + "legs: short and strong", + "wings: checkered black and white", + "nape: red with black base", + "tail: sharp and pointed, black and white", + "throat: whitish with brown streaks" + ], + "stripe chested antwren": [ + "back: olive-green with subtle striations", + "beak: slim, sharp, and black", + "belly: off-white with faint streaks", + "breast: white with distinctive black stripes", + "crown: grayish with white lines", + "forehead: gray with a hint of olive", + "eyes: black with an inconspicuous white eye-ring", + "legs: thin and dark gray", + "wings: olive-green with darkened edges", + "nape: gray with fine white lines", + "tail: long and black with white tips", + "throat: white with a faint gray wash" + ], + "stripe crowned spinetail": [ + "back: brown striped feathers", + "beak: slender and slightly curved", + "belly: buff-white with brown streaks", + "breast: whitish-buff with brown streaks", + "crown: brown with pale stripes", + "forehead: pale brown with slight streaking", + "eyes: dark with white eye-ring", + "legs: grayish-brown", + "wings: brown with buff wing-bars", + "nape: brown with pale streaking", + "tail: long, brown, and slightly forked", + "throat: pale buff with faint brown streaks" + ], + "stripe faced wood quail": [ + "back: brownish-black with fine white streaks", + "beak: short, sturdy, and curved", + "belly: white with black stripes", + "breast: rich chestnut brown", + "crown: deep black with white streaks", + "forehead: white and black streaks", + "eyes: dark brown with white eye-ring", + "legs: strong and feathered, light gray", + "wings: rounded, brown with white streaks", + "nape: black with white striping", + "tail: short, dark, and rounded", + "throat: whitish with delicate dark markings" + ], + "stripe headed antpitta": [ + "back: olive-brown feathers", + "beak: short, thick, and pale-colored", + "belly: white with black stripes", + "breast: white with black stripes", + "crown: olive-brown with bold black stripes", + "forehead: olive-brown with black stripes", + "eyes: small, black, and expressive", + "legs: long, slender, and pale-colored", + "wings: olive-brown with dark brown flight feathers", + "nape: olive-brown with bold black stripes", + "tail: short and olive-brown with faint black stripes", + "throat: white with black stripes" + ], + "stripe headed sparrow": [ + "back: streaked brown and grey plumage", + "beak: short, conical, and dark-colored", + "belly: pale grey or beige", + "breast: creamy-white with dark brown streaks", + "crown: chestnut-brown with black streaks", + "forehead: similar to crown, chestnut-brown with black streaks", + "eyes: dark brown or black, set against a white eye-ring", + "legs: pinkish or flesh-colored with strong, clawed toes", + "wings: brown with white or beige wing bars", + "nape: chestnut-brown with black streaks", + "tail: brown, white-tipped, and forked", + "throat: creamy-white or pale grey" + ], + "stripe necked tody tyrant": [ + "back: vibrant green hues", + "beak: short and pointed", + "belly: pale yellow", + "breast: yellow-olive tint", + "crown: dark green with grayish tips", + "forehead: yellow-green streaks", + "eyes: black with faint white circle", + "legs: thin and grayish", + "wings: green with yellow edges", + "nape: striped with black and white", + "tail: dark green with yellow markings", + "throat: white with fine black stripes" + ], + "stripe sided rhabdornis": [ + "back: olive-green feathers blending into wings", + "beak: long, slightly curved, sharp tip", + "belly: yellowish-white underside with fine streaks", + "breast: pale grey plumage, darker streaks", + "crown: blackish-blue feathers fading to olive-green", + "forehead: bluish-dark feathers above eyes", + "eyes: small, black with thin white eyering", + "legs: thin, bluish-grey with sharp claws", + "wings: olive-green with prominent white wing bars", + "nape: blackish-blue blending to olive-green", + "tail: long, olive-green with distinct white tips", + "throat: pale grey with dark streaks" + ], + "stripe tailed hummingbird": [ + "back: iridescent green with golden sheen", + "beak: long, straight, and slender black bill", + "belly: pale grayish-white with faint barring", + "breast: shimmering green fading into white", + "crown: shiny green with a small red patch", + "forehead: glittering green with a touch of blue", + "eyes: small, dark, and expressive", + "legs: short and sturdy, dark gray in color", + "wings: elongated, narrow, and dark with white patches", + "nape: striking iridescent green color", + "tail: coppery-bronze with white-tipped feathers", + "throat: vibrant fiery-red gorget" + ], + "stripe tailed yellow finch": [ + "back: olive-green with subtle stripes", + "beak: short and pointed, light gray", + "belly: whitish-yellow with faint streaks", + "breast: pale yellow with thin stripes", + "crown: bright yellow transitioning to olive-green", + "forehead: vibrant yellow", + "eyes: black beady with white eye ring", + "legs: slender grayish-blue", + "wings: olive-green with black and yellow patches", + "nape: olive-green fading to yellow", + "tail: black with white and yellow edges", + "throat: bright yellow" + ], + "stripe throated bulbul": [ + "back: olive-yellow with brownish tint", + "beak: short, dark and hooked", + "belly: pale cream with light streaks", + "breast: off-white with faint brown striping", + "crown: dark brown with slight crest", + "forehead: light olive, fading to pale on throat", + "eyes: dark surrounded by light eyestripe", + "legs: grayish-brown, slender and agile", + "wings: mottled brown and olive patterns", + "nape: pale-greyish above, brownish below", + "tail: long, olive-brown with white tips", + "throat: white with distinct brown stripes" + ], + "stripe throated hermit": [ + "back: vibrant green feathers covering the upper body", + "beak: elongated, slender, and curved downward", + "belly: soft pale grayish-white plumage", + "breast: light gray blending into belly", + "crown: green feathers similar to the back", + "forehead: slightly browner shade than crown", + "eyes: small, round, and dark-colored", + "legs: slender, pale, and short, with sharp claws for perching", + "wings: green with a mix of bronze tones, rounded in shape", + "nape: rich green feathers transitioning from the crown", + "tail: elongated, slender, and white-tipped feathers", + "throat: distinctive striped patterning in a mix of pale yellow and dark brown" + ], + "stripe throated jery": [ + "back: olive-brown with subtle streaks", + "beak: short, slightly curved, dark gray", + "belly: pale yellow with bold black stripes", + "breast: light yellow with thin black stripes", + "crown: olive-brown with faint streaks", + "forehead: olive-brown, slightly lighter than crown", + "eyes: dark, beady, surrounded by faint white eyering", + "legs: long, slender, dark gray", + "wings: olive-brown with faint black barring", + "nape: olive-brown, slightly lighter than back", + "tail: olive-brown with faint black bands, forked", + "throat: pale yellow with bold black stripes" + ], + "stripe throated wren": [ + "back: brown with subtle striping", + "beak: small and slender", + "belly: creamy white with light striping", + "breast: buff with faint streaks", + "crown: dark brown with striped pattern", + "forehead: brown with light streaks", + "eyes: dark, round, and alert", + "legs: slender and pinkish-brown", + "wings: brown with distinct striping", + "nape: brown with faint striping", + "tail: long, brown with faint striping", + "throat: white with distinct stripes" + ], + "stripe throated yuhina": [ + "back: light brown with subtle streaks", + "beak: short and curved, blackish color", + "belly: soft off-white with faint brownish stripes", + "breast: pale brown with feathery texture", + "crown: rich brown with a crest-like appearance", + "forehead: light brown, merging with the crown", + "eyes: round and dark, framed by light grey rings", + "legs: long and slender, bluish-grey in color", + "wings: brownish-grey with black and white streaks", + "nape: light brown, connecting the crown to the back", + "tail: long and fan-shaped, brown with black and white markings", + "throat: white with distinct blackish-grey stripes" + ], + "striped crake": [ + "back: dark brown with thin white stripes", + "beak: short, slightly curved, pale yellow", + "belly: white with faint black speckles", + "breast: light brown with faint black streaks", + "crown: black with narrow white stripes", + "forehead: white with dark brown vertical stripes", + "eyes: dark, surrounded by a thin white ring", + "legs: long, slender, pale yellow-green", + "wings: dark brown with thin white stripes and slight curve", + "nape: black with narrow white stripes", + "tail: long, brown, with white stripes and outer feathers", + "throat: white with sparse brown speckles" + ], + "striped cuckoo": [ + "back: light and dark-striped pattern", + "beak: medium-length, slender, and curved", + "belly: white with dark, thin stripes", + "breast: heavily striped with brown and white bars", + "crown: dark with lighter stripes, prominent crest", + "forehead: lighter coloration, striped with fine lines", + "eyes: dark, alert, surrounded by lighter feathers", + "legs: strong, slate-grey, adapted for perching", + "wings: long, slightly rounded, striped with contrasting patterns", + "nape: lighter color, striped with darker lines", + "tail: broad, long, dark, with white-tipped feathers", + "throat: white with fine, dark stripes" + ], + "striped flufftail": [ + "back: brownish-black feathers with white stripes", + "beak: short, stout, and dark in color", + "belly: white fluff contrasting with chestnut-colored feathers", + "breast: chestnut coloring with thick, white stripes", + "crown: reddish-brown feathers with thin white streaks", + "forehead: light brown with darker brown streaks", + "eyes: small, dark, and slightly hidden among feathers", + "legs: short, strong, and grayish in color", + "wings: brown and short, barred with white stripes", + "nape: reddish-brown with thin white stripes", + "tail: chestnut-colored with white bars near the base", + "throat: white feathers with thin, dark brown streaks" + ], + "striped honeyeater": [ + "back: striped, olive-brown feathers", + "beak: long, thin, curved", + "belly: white with faint black streaks", + "breast: white with distinct black stripes", + "crown: black with a white median stripe", + "forehead: black with thin white stripes", + "eyes: dark brown with white eyebrow stripe", + "legs: strong, grayish-blue", + "wings: olive-brown with white-edged feathers", + "nape: striped black and white", + "tail: long, black feathers with white edges", + "throat: white with fine black streaks" + ], + "striped kingfisher": [ + "back: vivid blue feathers with black stripes", + "beak: strong, black, hooked upper mandible", + "belly: white with thin blackish streaks", + "breast: white with faint, blackish streaks", + "crown: vivid blue with fine black stripes", + "forehead: bright blue with thin black streaks", + "eyes: dark brown, encircled by white feathers", + "legs: stout, reddish-brown", + "wings: striking blue with black stripes and white spots", + "nape: sapphire blue with black stripes", + "tail: long, blue feathers with black bands", + "throat: clean white with slight black streaks" + ], + "striped laughingthrush": [ + "back: brown with dark streaks", + "beak: stout and black", + "belly: buff-white with black striping", + "breast: brownish-gray with darker streaks", + "crown: reddish-brown with black stripes", + "forehead: rufous with black streaks", + "eyes: round and dark", + "legs: strong and orange-tinged", + "wings: brown with black barring", + "nape: reddish-brown with dark streaks", + "tail: long and brown with black bands", + "throat: buff-white with faint streaks" + ], + "striped pipit": [ + "back: light brown with dark streaks", + "beak: thin, pointed, dark grey", + "belly: creamy white with dark streaks", + "breast: pale grey-brown with fine stripes", + "crown: pale buff-brown with dark streaks", + "forehead: pale buff-brown, streaked", + "eyes: black, surrounded by white eyering", + "legs: long, slender, pinkish-brown", + "wings: brown with dark stripes, white-edged feathers", + "nape: pale brown with dark streaks", + "tail: brown with white outer feathers, dark bars", + "throat: white with fine dark streaks" + ], + "striped prinia": [ + "back: light brown with subtle darker streaks", + "beak: thin, slightly curved, blackish", + "belly: pale buff or whitish, thin dark stripes", + "breast: light buff or whitish with dark streaks", + "crown: brownish-gray, thin dark stripes", + "forehead: plain light brown with faint streaks", + "eyes: small, dark brown, encircled by white-ring", + "legs: slender, grayish-black", + "wings: light brown with dark stripes, white or buff wingbars", + "nape: light brown, faint streaks", + "tail: long, graduated, blackish-brown with white outer feathers", + "throat: whitish, thin dark stripes" + ], + "striped treehunter": [ + "back: brown with dark stripes", + "beak: short, strong, slightly curved", + "belly: whitish with brown streaks", + "breast: buff-colored with dark stripes", + "crown: brown with distinct dark stripes", + "forehead: light brown with faint streaks", + "eyes: small, black, slightly hidden by feathers", + "legs: strong, pale yellow-colored", + "wings: brown with faint barring and white edging", + "nape: brown with dark stripes", + "tail: long, brown with faint bars and white tips", + "throat: pale with fine dark streaks" + ], + "striped woodhaunter": [ + "back: olive-brown with subtle streaks", + "beak: short, slightly curved, and pale", + "belly: whitish-cream with fine brown stripes", + "breast: cream-colored with brown streaks", + "crown: rufous-brown with dark stripes", + "forehead: pale brown with fine streaks", + "eyes: medium-sized, dark, and surrounded by pale eyerings", + "legs: long, slender, and pale", + "wings: brown with buffy wingbars and dark flight feathers", + "nape: olive-brown with subtle streaks", + "tail: long, brown, and slightly forked", + "throat: cream-colored with streaked sides" + ], + "striped woodpecker": [ + "back: black and white horizontal stripes", + "beak: strong, chisel-shaped bill", + "belly: whitish with black streaks", + "breast: white with black spotting", + "crown: red and black striped pattern", + "forehead: black with white markings", + "eyes: dark, beady, surrounded by white feathers", + "legs: grayish-black, strong and agile", + "wings: black with white horizontal bars", + "nape: red and black striped pattern", + "tail: black and white barred feathers", + "throat: white with black streaks" + ], + "striped wren babbler": [ + "back: brownish-gray with fine, dark striping", + "beak: short, curved, and blackish", + "belly: creamy white with gray-brown stripes", + "breast: white with fine, dark striping", + "crown: rich brown with dark streaks", + "forehead: warm brown with fine, dark striations", + "eyes: small, dark, and alert", + "legs: slender and pinkish-brown", + "wings: brownish-gray with faint barring", + "nape: warm brown with dark streaks", + "tail: short and brownish-gray with subtle striping", + "throat: creamy white with grayish streaks" + ], + "strong billed honeyeater": [ + "back: dark olive-green feathers", + "beak: robust and curved black bill", + "belly: pale olive-yellow plumage", + "breast: light olive-green feathering", + "crown: dark olive-green with a yellow streak", + "forehead: bright yellow patch", + "eyes: piercing dark brown pupils", + "legs: grayish-black with strong claws", + "wings: olive-green with slight blue tinge", + "nape: dark olive-green plumage", + "tail: long and olive-green with darker tips", + "throat: light yellowish-green coloration" + ], + "strong billed woodcreeper": [ + "back: sturdy brown feathers", + "beak: long, robust, and curved", + "belly: pale striped pattern", + "breast: cinnamon-hued with fine streaks", + "crown: rich brown shades", + "forehead: slightly paler brown", + "eyes: small, dark and piercing", + "legs: strong grey limbs", + "wings: prominent brown feathers with streaks", + "nape: striped brown and beige", + "tail: long, stiff, and rufous-tipped", + "throat: pale brown with fine streaks" + ], + "stub tailed antbird": [ + "back: dark brown feathers with lighter streaks", + "beak: short, straight, and black", + "belly: white with gray streaks", + "breast: grayish-white with subtle streaks", + "crown: dark brown with lighter streaks", + "forehead: dark brown with lighter streaks", + "eyes: small and dark, surrounded by light brown feathers", + "legs: grayish-brown, strong and slender", + "wings: dark brown with white spots and bars", + "nape: light brown feathers with darker streaks", + "tail: short and rounded, with dark brown and white feathers", + "throat: white with gray streaks" + ], + "stub tailed spadebill": [ + "back: olive-green coloration", + "beak: short, wide, and slightly hooked", + "belly: pale yellow hue", + "breast: yellowish-green plumage", + "crown: olive-colored with faint scaling", + "forehead: olive-green, merging with crown", + "eyes: dark, with thin white eye-ring", + "legs: slender and grayish-pink", + "wings: greenish-brown, short and rounded", + "nape: olive-green to match the back", + "tail: short, broad, and spade-like with a square end", + "throat: pale yellow, in contrast with the breast" + ], + "stubble quail": [ + "back: brown plumage with mottled black markings", + "beak: short and stubby, pale yellowish-orange", + "belly: buff-colored with light brown spots", + "breast: pale brown with darker brown streaks", + "crown: dark brown with paler spots", + "forehead: lighter brown than the crown, slightly speckled", + "eyes: small and dark, surrounded by pale eye-ring", + "legs: short, scaly, and yellowish-brown", + "wings: brown with black and white spotting, short and rounded", + "nape: similar color and pattern to the crown", + "tail: short, squared-off, and brown with black markings", + "throat: buff-colored with fine brown streaks" + ], + "stuhlmann starling": [ + "back: glossy blue-black feathering", + "beak: strong, slightly curved, black", + "belly: iridescent blue-black plumage", + "breast: shimmering dark blue feathers", + "crown: shining blue-black with a slight crest", + "forehead: gleaming blue-black, smooth", + "eyes: small, dark, and beady", + "legs: thin, long, dark grey", + "wings: iridescent blue-black, rounded shape", + "nape: shiny deep blue-black feathers", + "tail: dark blue-black, short, and squared", + "throat: metallic blue-black plumage" + ], + "stuhlmann sunbird": [ + "back: greenish-blue iridescent feathers", + "beak: long, curved, black bill", + "belly: yellow underside with black streaks", + "breast: bright yellow with black streaks", + "crown: metallic green head with purple sheen", + "forehead: greenish-purple iridescent feathers", + "eyes: small, black, beady eyes", + "legs: thin, grayish-black legs", + "wings: blue-green iridescent feathers", + "nape: bright metallic green blending into purple", + "tail: two elongated green-blue iridescent feathers", + "throat: brilliant yellow with black patch" + ], + "styan bulbul": [ + "back: olive-green with slight shading", + "beak: slender, curved, and dark gray", + "belly: whitish with faint streaks", + "breast: pale gray with light streaks", + "crown: dark and well-defined", + "forehead: unmarked and slate-gray", + "eyes: large, round, and dark brown", + "legs: thin, gray, and scaly", + "wings: olive-green with dark tips", + "nape: grayish with subtle streaks", + "tail: long, well-defined, and olive-green", + "throat: pale gray with thin streaks" + ], + "stygian owl": [ + "back: sleek, dark feathers", + "beak: prominent, sharp hooked tip", + "belly: lighter, fluffy plumage", + "breast: dense, darker feathering", + "crown: subtly streaked feathers", + "forehead: smooth, slightly paler color", + "eyes: large, striking yellow", + "legs: strong, feathered limbs", + "wings: impressive span, dark barring pattern", + "nape: mostly plain, dark coloration", + "tail: moderately long, dark bands", + "throat: lighter grey, delicately feathered" + ], + "subalpine robin": [ + "back: olive-brown feathers", + "beak: short, sharp, yellow-orange", + "belly: white with grayish streaks", + "breast: orangish-red patch", + "crown: dark gray with streaks", + "forehead: light gray", + "eyes: round, black, outlined in white", + "legs: sturdy, gray", + "wings: olive-brown with faint wing bars", + "nape: gray with streaks", + "tail: olive-brown, medium length", + "throat: white mottled with gray" + ], + "subantarctic shearwater": [ + "back: sleek grayish-brown feathers", + "beak: long, slender, hooked tip", + "belly: white, soft under-feathers", + "breast: grayish-white plumage", + "crown: dark grayish-brown, streamlined", + "forehead: smooth, pale gray-brown", + "eyes: dark and round, encircled by white ring", + "legs: strong, pinkish-gray, webbed feet", + "wings: long, pointed, dark gray above and lighter gray below", + "nape: pale gray-brown, distinct from crown", + "tail: squared-off, gray-brown with white edges", + "throat: white, smoothly blending into breast" + ], + "subantarctic snipe": [ + "back: brown, mottled feathers", + "beak: long, straight, and thin", + "belly: pale whitish-brown with fine streaks", + "breast: buffy-brown, finely streaked", + "crown: dark brown with a pale central stripe", + "forehead: pale brown with darker streaks", + "eyes: small, dark, and bright", + "legs: yellowish-brown, strong, and slender", + "wings: brown, mottled, with white edges on feathers", + "nape: dark brown with pale streaks", + "tail: short, dark brown with white fringes", + "throat: pale buff with fine, brown streaks" + ], + "subdesert brush warbler": [ + "back: olive-brown with some grayish hues", + "beak: short, pointed, and black", + "belly: warm buff or pale yellow", + "breast: pale yellowish and grayish", + "crown: grayish-brown with subtle streaks", + "forehead: slight pale stripe above the eyes", + "eyes: dark brown with pale-colored eyering", + "legs: long, slender, and pale pinkish-brown", + "wings: olive-brown with faint bars", + "nape: olive-brown with some grayish hues", + "tail: long and rounded, olive-brown color", + "throat: pale yellowish and grayish" + ], + "subdesert mesite": [ + "back: sandy brown with subtle grey streaks", + "beak: short, pointed, and black", + "belly: pale sandy brown with dark brown speckles", + "breast: warm sandy brown with blackish streaks", + "crown: greyish-brown with a slight crest", + "forehead: light grey blending with the crown", + "eyes: small, dark, and bright", + "legs: long, slender, and greyish-pink", + "wings: short, rounded, and sandy brown with dark pattern", + "nape: greyish-brown blending with the crown", + "tail: short, rounded, and darker brown with black band", + "throat: whitish-grey with fine, dark speckling" + ], + "subtropical doradito": [ + "back: olive-green coloration", + "beak: black, short, cone-shaped", + "belly: yellowish-cream hue", + "breast: golden-yellow with faint streaks", + "crown: bright yellow with a black center", + "forehead: vibrant yellow", + "eyes: dark brown surrounded by a yellow ring", + "legs: blueish-gray and slender", + "wings: olive-green with brownish-black edges", + "nape: yellow with a black central streak", + "tail: olive-green with dark brown tips", + "throat: bright yellow" + ], + "subtropical pygmy owl": [ + "back: tawny brown with white spots", + "beak: sharp, hooked, and grayish", + "belly: pale cream with black streaks", + "breast: rufous-orange with black barring", + "crown: tawny brown with white spots", + "forehead: tawny brown and smooth", + "eyes: large, yellow, and expressive", + "legs: feathered, stout, and gray", + "wings: tawny brown with white bands", + "nape: tawny brown with white spots", + "tail: tawny brown with white bands", + "throat: cream-colored with black streaks" + ], + "such antthrush": [ + "back: greenish-brown feathers for camouflage", + "beak: elongated, slightly curved with a sharp tip", + "belly: light cream color with small dark spots", + "breast: rich chestnut shade with white streaks", + "crown: slate-gray feathers with subtle patterns", + "forehead: slightly lighter gray than the crown", + "eyes: small, black, and alert", + "legs: long, thin, and strong for ground movement", + "wings: rounded shape with green-brown coloration", + "nape: smooth transition from crown to back", + "tail: short and rounded, featuring dark bands", + "throat: paler gray than breast, with faint white markings" + ], + "sucre antpitta": [ + "back: olive-brown with subtle gray streaks", + "beak: short and curved, dark gray", + "belly: pale grayish-white with light brown barring", + "breast: subtly spotted with gray and white", + "crown: dark olive-brown with faint gray streaks", + "forehead: slightly paler olive-brown", + "eyes: small and dark, surrounded by faint white eyering", + "legs: long and slender, pale pinkish-gray", + "wings: olive-brown with faint gray barring on flight feathers", + "nape: olive-brown with light gray mottling", + "tail: short and round, olive-brown with faint gray barring", + "throat: white with thin gray streaks" + ], + "sudan golden sparrow": [ + "back: golden-yellow with beautiful patterns", + "beak: small, conical, and pale", + "belly: shimmering yellow", + "breast: vibrant golden-yellow", + "crown: glistening gold", + "forehead: gleaming and yellowish", + "eyes: small, dark, and inquisitive", + "legs: slender, grayish-blue", + "wings: adorned with black and white markings", + "nape: golden-yellow feathers", + "tail: elongated, black and white feathers", + "throat: soft, golden-yellow plumage" + ], + "suiriri flycatcher": [ + "back: olive-brown with subtle streaks", + "beak: short, straight, and black", + "belly: pale yellow with light streaks", + "breast: yellowish-olive with faint streaking", + "crown: olive-brown with a faint crest", + "forehead: olive-brown blending with crown", + "eyes: dark with pale eye-ring", + "legs: slender, grayish-black", + "wings: olive-brown with two yellow wing-bars", + "nape: olive-brown, similar to back and crown", + "tail: olive-brown with slight fork", + "throat: pale yellow, blending with breast" + ], + "sula cicadabird": [ + "back: sleek, dark-green feathers", + "beak: sharp, elongated black beak", + "belly: light cream-colored underbelly", + "breast: pale white feathers with a hint of blue", + "crown: dark green-blue plumage on top of the head", + "forehead: smooth dark-blue feathers leading into the eyes", + "eyes: tiny, black, piercing eyes", + "legs: slender, blue-gray legs", + "wings: elongated and elegant dark green-blue feathers", + "nape: area where the neck meets the head, covered in dark blue-green feathers", + "tail: elongated and narrow, dark green-blue feathers extending beyond the body", + "throat: subtle light blue feathers transitioning into the pale breast area" + ], + "sula cuckoo dove": [ + "back: grayish-brown plumage with subtle tinges of green", + "beak: short, stout, and blackish in color", + "belly: creamy-white to pale gray, soft-feathered", + "breast: light gray with subtle pinkish hue", + "crown: soft gray with a hint of iridescence", + "forehead: smooth and pale gray", + "eyes: dark, bead-like with thin white eye-ring", + "legs: slim, reddish-pink with small claws", + "wings: grayish-brown with a slight green sheen, moderately long", + "nape: gray with faint green iridescence", + "tail: medium length, grayish-brown with white tips on outer feathers", + "throat: pale gray, blending seamlessly into breast coloration" + ], + "sula dwarf kingfisher": [ + "back: vibrant blue, with spotted white markings", + "beak: short and stout, vibrant orange", + "belly: white, slightly fluffy appearance", + "breast: bright orange, fading into white on the lower section", + "crown: deep blue with a touch of green, white-spotted pattern", + "forehead: deep blue with green tinge, white spots interspersed", + "eyes: slightly rounded, dark brown, and alert", + "legs: short and strong, bright orange", + "wings: blue-green with white spots, vibrant and wide when extended", + "nape: deep blue with traces of green, white spots scattered", + "tail: fairly short, blueish-green and white-tipped", + "throat: white, transitioning into bright orange on the breast" + ], + "sula fruit dove": [ + "back: vibrant green and violet feathers", + "beak: short, curved, and yellow", + "belly: soft yellow with hints of green", + "breast: orange-red with heart-shaped markings", + "crown: bright green and violet plumage", + "forehead: iridescent purple", + "eyes: dark and rounded, surrounded by green feathers", + "legs: short, robust, and red-orange", + "wings: vibrant green with violet edges", + "nape: iridescent purple transitioning to green", + "tail: long, emerald green feathers with darker tips", + "throat: pale yellow with green tinges" + ], + "sula golden bulbul": [ + "back: golden-yellow plumage", + "beak: short, curved, black", + "belly: pale yellow underparts", + "breast: soft yellow feathers", + "crown: vibrant golden crest", + "forehead: smooth golden-yellow peak", + "eyes: round, dark, expressive", + "legs: slender, black, strong", + "wings: golden-yellow, broad, elongated", + "nape: warm yellow, sleek transition", + "tail: long, split, yellow with black tips", + "throat: light yellow, gentle gradation" + ], + "sula hanging parrot": [ + "back: vibrant green feathers covering the upper body", + "beak: short, curved, and powerful beak, beige in color, suitable for a parrot", + "belly: lighter green feathers covering the lower abdomen area", + "breast: bright green and slightly puffed, blending into the belly color", + "crown: vivid green to turquoise, feathers surrounding the top of the head", + "forehead: bright yellow to green feathers transitioning from the beak to the eyes", + "eyes: circular, dark, and expressive; surrounded by a thin, unfeathered, white eyering", + "legs: short, strong, and gray, ending in zygodactyl toes for gripping branches", + "wings: broad and strong, composed of vibrant green feathers with occasional hints of blue", + "nape: rich green feathers transitioning from the crown to the back", + "tail: long and slightly pointed tailfeathers, primarily green with blue tips", + "throat: light green feathers, slightly paler than the breast feathers" + ], + "sula megapode": [ + "back: dark grey-brown feathers", + "beak: short, stout, and slightly curved", + "belly: greyish-brown with lighter feathers", + "breast: pale greyish-brown feathers", + "crown: reddish-brown feathers", + "forehead: reddish-brown feathers blending into grey-brown", + "eyes: medium-sized, black pupil with yellowish-white ring", + "legs: strong, greyish-brown with scaly texture", + "wings: dark grey-brown with lighter wingtips", + "nape: greyish-brown, blending into reddish-brown on crown", + "tail: long, dark grey-brown with white-tipped feathers", + "throat: pale greyish-brown with occasional white feathers" + ], + "sula pitta": [ + "back: black with white accents", + "beak: long and sharp, yellow-orange", + "belly: white and fluffy", + "breast: white with black markings", + "crown: black with white streaks", + "forehead: black with white spots", + "eyes: bright, black iris with pale yellow ring", + "legs: slender and dark", + "wings: black with white spots and markings", + "nape: black with white streaks", + "tail: long and black, white tips", + "throat: white with black markings" + ], + "sula scops owl": [ + "back: dark brown with white speckles", + "beak: sharp, black, curved", + "belly: grayish-white with brown streaks", + "breast: light gray with fine brown bars", + "crown: brown with white streaks", + "forehead: light gray with white spots", + "eyes: large, yellow-orange", + "legs: feathered, pale gray", + "wings: dark brown with white bars", + "nape: brown with white streaks", + "tail: brown with white bands", + "throat: white with light brown streaks" + ], + "sulawesi babbler": [ + "back: olive-brown with warm undertones", + "beak: dark gray, short and stubby", + "belly: pale cream with grayish streaks", + "breast: off-white with brownish edges", + "crown: olive-brown, rounded", + "forehead: slightly paler olive-brown", + "eyes: dark brown, small beads", + "legs: pinkish-gray, slender", + "wings: olive-brown with faint patterns", + "nape: warm olive-brown", + "tail: olive-brown, short but broad", + "throat: white tinged with cream" + ], + "sulawesi blue flycatcher": [ + "back: bright cerulean blue feathers", + "beak: small and black", + "belly: pale blueish-white", + "breast: light blue fading to white", + "crown: deep blue plumage", + "forehead: vibrant blue feathers", + "eyes: dark and round", + "legs: black and slender", + "wings: blue with black edges", + "nape: blue and white speckles", + "tail: long and blue with white tips", + "throat: white patch surrounded by blue" + ], + "sulawesi brown flycatcher": [ + "back: brownish-gray feathers", + "beak: short and black, slightly hooked", + "belly: whitish with brownish-gray streaks", + "breast: pale brownish-gray plumage", + "crown: brownish-gray feathers with some white speckles", + "forehead: lighter brownish-gray area above the beak", + "eyes: small and black, surrounded by white speckles", + "legs: slender and dark gray", + "wings: brownish-gray with lighter wing bars", + "nape: brownish-gray with a slight lighter streak", + "tail: brownish-gray and fan-shaped, with white edges on tail feathers", + "throat: light gray with brown streaks" + ], + "sulawesi bush warbler": [ + "back: olive-brown feathers with subtle streaks", + "beak: thin, curved, and blackish", + "belly: pale grayish-white underside", + "breast: grayish-white blending with the belly", + "crown: olive-brown with a faint crest", + "forehead: slightly paler olive-brown", + "eyes: tiny, black and expressive", + "legs: strong, slender, blackish-gray", + "wings: olive-brown with dark streaks", + "nape: olive-brown, connecting with the crown", + "tail: dark brown, short, rounded", + "throat: lighter grayish-white, leading to the breast" + ], + "sulawesi cicadabird": [ + "back: dark blue-black feathers", + "beak: short, thick, black", + "belly: pale gray feathers", + "breast: blue-gray feathers", + "crown: blue-black feathers", + "forehead: blue-black feathers", + "eyes: black with white eyering", + "legs: short, black", + "wings: blue-black with white tips", + "nape: blue-black feathers", + "tail: long, dark blue-black feathers", + "throat: pale gray feathers" + ], + "sulawesi cuckoo": [ + "back: brownish-gray feathers", + "beak: elongated, black or dark gray", + "belly: white or cream-colored feathers", + "breast: light gray or white markings", + "crown: dark gray to black feathered cap", + "forehead: black or dark gray feathers", + "eyes: large and black, encircled by a white ring", + "legs: sturdy and grayish-blue", + "wings: long and broad, brownish-gray feathers with white spots", + "nape: dark gray or black feathers", + "tail: long with dark gray/black feathers and white tips", + "throat: white or cream-colored feathers" + ], + "sulawesi drongo": [ + "back: dark bluish-black feathers", + "beak: slightly curved, black", + "belly: deep black feathers", + "breast: glossy bluish-black", + "crown: black with slight crest", + "forehead: shiny black feathers", + "eyes: dark with prominent eye-ring", + "legs: sturdy, black", + "wings: long, black with bluish sheen", + "nape: black plumage blending into the back", + "tail: long, deeply forked, black", + "throat: smooth black feathers" + ], + "sulawesi dwarf kingfisher": [ + "back: vibrant blue with black streaks", + "beak: bright orange, sharp and straight", + "belly: lighter turquoise-blue and white", + "breast: deep blue with black spots", + "crown: vivid blue with a slightly crest-like shape", + "forehead: bright blue, merging with the crown", + "eyes: large and round, with dark black pupils", + "legs: sturdy and orange, with sharp talons", + "wings: blue, with black spots and white highlights", + "nape: vivid blue with black streaks, blending into the back and crown", + "tail: rufous-red, medium-length and slightly curved", + "throat: white with blue feathers surrounding it" + ], + "sulawesi fantail": [ + "back: olive-brown feathers", + "beak: short, curved black bill", + "belly: light gray underparts", + "breast: soft grayish-white feathers", + "crown: grayish-brown crown feathers", + "forehead: slightly lighter gray than the crown", + "eyes: small, inquisitive black eyes", + "legs: thin, medium-length black legs", + "wings: rounded, olive-brown with dark streaks", + "nape: grayish-brown feathers that merge with the back", + "tail: long, fan-shaped with black and white bands", + "throat: white throat contrasting the gray breast" + ], + "sulawesi goshawk": [ + "back: dark blue-grey feathers", + "beak: sharp, black hooked beak", + "belly: white with grey barring", + "breast: white with grey streaks", + "crown: dark blue-grey with a slight crest", + "forehead: blue-grey", + "eyes: fierce, yellow piercing eyes", + "legs: strong, yellow-orange legs", + "wings: long, blue-grey with black tips", + "nape: blue-grey with black streaks", + "tail: long, horizontally barred with white and black", + "throat: white with grey streaks" + ], + "sulawesi ground dove": [ + "back: dusty brown hue with subtle feather patterns", + "beak: short and stout, pale orange color", + "belly: soft grayish-white feathers", + "breast: light gray plumage with a slightly darker tone than the belly", + "crown: dark gray feathers, slightly raised appearance", + "forehead: smooth dark gray feathers, blending into the crown", + "eyes: bright, inquisitive, and dark in color", + "legs: strong, slightly elongated, with yellowish-gray scales", + "wings: muted brown with dark, distinct feather markings", + "nape: feathers transition from the dark crown to lighter brownish-gray on the back", + "tail: medium length with mocha-brown feathers and clear striped pattern", + "throat: light gray, similar in color to the breast, with a smooth feather texture" + ], + "sulawesi hanging parrot": [ + "back: vibrant green feathers covering the upper body", + "beak: short, hooked, light-colored beak", + "belly: lighter green underside with some yellow markings", + "breast: bright green feathers with a hint of yellow near the belly", + "crown: bold, blue semi-circle extending across the top of the head", + "forehead: bright green feathers transitioning into the blue crown", + "eyes: small, black, and centered on the sides of the head", + "legs: slim, gray, and equipped with strong gripping claws", + "wings: lush green with hints of dark blue along the edges", + "nape: vivid green feathers stretching from the head to the back", + "tail: long, green central feathers surrounded by blue-tipped outer feathers", + "throat: light green area blending into the surrounding breast and belly colors" + ], + "sulawesi hawk eagle": [ + "back: deep brown feathers with subtle streaks", + "beak: sharp, black hooked beak for tearing prey", + "belly: creamy white with dark brown vertical stripes", + "breast: white with brownish feathers and less dense streaks", + "crown: dark brown feathers on top of the head", + "forehead: small white feathers above the beak", + "eyes: piercing yellow eyes with black pupils", + "legs: strong yellow legs with curved talons", + "wings: brown feathers with white edges on upper side and white underside with dark spots", + "nape: brown feathers connecting the crown and back", + "tail: long brown feathers with white bands near the tips", + "throat: white with faint brown vertical stripes" + ], + "sulawesi honey buzzard": [ + "back: brownish-grey feathers covering the dorsal side", + "beak: strong, hooked, dark grey beak for tearing prey", + "belly: light cream-colored plumage on the ventral side", + "breast: pale brownish-grey feathers with dark streaks", + "crown: dark brown feathers on top of the head", + "forehead: lighter brown feathers transitioning into the crown", + "eyes: piercing dark brown eyes for excellent vision", + "legs: long, featherless, yellowish-brown legs with sharp talons", + "wings: broad wings with dark brown and cream patterns for soaring", + "nape: brownish-grey feathers connecting the back and head", + "tail: long, dark brown tail feathers with cream bands for maneuvering", + "throat: light cream-colored plumage with dark streaks below the beak" + ], + "sulawesi hornbill": [ + "back: shiny black feathered covering", + "beak: large, curved yellow bill with a unique casque", + "belly: black to dark grey plumage", + "breast: dark grey to black feathers with a white band", + "crown: black plumes smoothly blending into the casque", + "forehead: smooth black feathers integrating into the beak line", + "eyes: alert dark gaze surrounded by a blue ring", + "legs: strong, tree-clasping grey limbs", + "wings: long black feathers with white tips", + "nape: thick black plumage flowing down the neck", + "tail: elongated black central feathers with thick white banding", + "throat: dark grey feathers transitioning into white band on breast" + ], + "sulawesi leaf warbler": [ + "back: olive-green with streaks", + "beak: slender, pointed, and grayish", + "belly: pale yellowish-white", + "breast: yellowish-olive with faint streaks", + "crown: greenish-yellow", + "forehead: greenish-yellow blending into crown", + "eyes: dark with pale eye-ring", + "legs: slender and grayish", + "wings: olive with faint yellowish-white bars", + "nape: greenish-yellow", + "tail: olive-green with faint barring", + "throat: pale yellowish-white" + ], + "sulawesi lilac kingfisher": [ + "back: vibrant blue feathers", + "beak: long, black, and sharp", + "belly: rich orange plumage", + "breast: bright orange feathers", + "crown: deep blue with a hint of purple", + "forehead: blue and lilac feathers", + "eyes: dark and round, encircled with blue feathers", + "legs: sturdy and black", + "wings: stunning blue with lilac patterns", + "nape: blue feathers transitioning to orange", + "tail: long, blue iridescent feathers", + "throat: delicate orange hue" + ], + "sulawesi masked owl": [ + "back: dark brown with black spots and white speckling", + "beak: sharp, hooked, light grayish-blue", + "belly: buff-colored with faint horizontal stripes", + "breast: whitish-buff with black spots and streaks", + "crown: dark brown with black spots and white speckling", + "forehead: dark brown with black spots and white speckling", + "eyes: large, dark brown, encircled by black and white feathers", + "legs: feathered with buff-colored plumage, powerful dark gray talons", + "wings: dark brown with white speckling on the upper surface, buff-colored with black bars on the under surface", + "nape: dark brown with black spots and white speckling", + "tail: long, dark brown with white speckling and black bars", + "throat: pale buff with a distinct dark brown-black collar-like band" + ], + "sulawesi myna": [ + "back: dark blue with a purplish tint", + "beak: short and yellowish", + "belly: faded dark blue", + "breast: dark purplish-blue", + "crown: glossy azure", + "forehead: bright azure-blue", + "eyes: sharp, with a yellow ring", + "legs: sturdy, yellow-orange", + "wings: metallic blue with purplish sheen", + "nape: slightly lighter blue", + "tail: long, blue with purple undertones", + "throat: deep purplish-blue" + ], + "sulawesi myzomela": [ + "back: olive-green feathers", + "beak: slender, curved, black", + "belly: pale orange-yellow hue", + "breast: bright orange-red", + "crown: striking red-orange", + "forehead: vivid reddish-orange", + "eyes: dark, round, outlined", + "legs: thin, grayish-blue", + "wings: olive-green with black edges", + "nape: orange-red transitioning to olive-green", + "tail: olive-green, slightly forked", + "throat: deep red-orange" + ], + "sulawesi nightjar": [ + "back: streaked brown and buff feathers", + "beak: small, black, and pointed", + "belly: mottled pale brown and beige", + "breast: mix of grayish-brown, buff, and tawny feathers", + "crown: dark brown with lighter buff streaks", + "forehead: light brown with grayish tinges", + "eyes: large, dark, and protruding", + "legs: short and feathered, with black claws", + "wings: long, brown, and mottled, with white markings", + "nape: brown with dark and buff streaks", + "tail: medium length, brown, with white-tipped feathers", + "throat: beige with fine brown streaks" + ], + "sulawesi pitta": [ + "back: vibrant green color with iridescent sheen", + "beak: short, strong, and curved, black in color", + "belly: rich, dark blue hue", + "breast: bright scarlet red with a slight gradient", + "crown: bold royal blue with darker edges", + "forehead: striking swatch of black and azure blue", + "eyes: large, dark, and inquisitive", + "legs: sturdy, featherless, and gray", + "wings: patterned moss and emerald green feathers", + "nape: greenish blue hue, transitioning from crown to back", + "tail: splayed feathers in deep blue-green shades", + "throat: brilliant, deep blue hue" + ], + "sulawesi pygmy woodpecker": [ + "back: greenish-brown with white spots", + "beak: slender, straight, and black", + "belly: white with brown streaks", + "breast: white with brown streaks", + "crown: black and white with red patch in males", + "forehead: black and white stripes", + "eyes: surrounded by white, with black eye-stripe", + "legs: short, dark gray with sturdy claws", + "wings: greenish-brown with white spots and bars", + "nape: black and white with red patch in males", + "tail: stiff, greenish-brown with white bars", + "throat: white with brown streaks" + ], + "sulawesi scops owl": [ + "back: brownish-grey with intricate patterns", + "beak: short, sharp, and hooked", + "belly: light grey with dark markings", + "breast: lighter shade of grey with spots", + "crown: dark brown with lighter streaks", + "forehead: dark brown with faint lighter streaks", + "eyes: large, round, and yellow", + "legs: feathered and greyish", + "wings: brownish-grey, barred, and spotted", + "nape: dark brown with light streaks", + "tail: barred brown and grey feathers", + "throat: light grey with dark markings" + ], + "sulawesi serpent eagle": [ + "back: brownish-black feathers with white edges", + "beak: sharp, powerful hooked beak with dark grey to black color", + "belly: white with dark brown streaks", + "breast: white with dark brown streaks", + "crown: dark brown crest with lighter brown edges", + "forehead: white speckles on brownish-black feathers", + "eyes: bright yellow eyes with a dark brown line extending through them", + "legs: strong, yellow scaly legs with long, sharp talons", + "wings: long, broad wings, brownish-black with white spots and stripes", + "nape: dark brown feathers with contrasting white spots and streaks", + "tail: dark brown with white bands on the feathers", + "throat: white with small, dark brown streaks" + ], + "sulawesi swiftlet": [ + "back: sleek, dark feathers", + "beak: tiny, agile and black", + "belly: light grayish-brown plumage", + "breast: pale gray feathers", + "crown: dark gray with a slight sheen", + "forehead: smooth, dark gradient", + "eyes: small and dark, observant gaze", + "legs: short, featherless with sharp claws", + "wings: long, slender and swift in flight", + "nape: slightly lighter gray than the crown", + "tail: short, dark feathers with subtle square shape", + "throat: pale gray, blending into breast plumage" + ], + "sulawesi thrush": [ + "back: dark brown with slight feather streaks", + "beak: short and stout, dark gray in color", + "belly: light brown fading to white towards the breast", + "breast: pale brown with streaks of darker brown", + "crown: dark brown with faint streaks of lighter brown", + "forehead: smooth dark brown, blending into crown", + "eyes: small, dark brown encircled by pale feathered ring", + "legs: slender, dark gray to black", + "wings: dark brown with lighter streaks, rounded shape", + "nape: darker brown fading to lighter brown towards the back", + "tail: dark brownish-black with hints of lighter brown, medium length", + "throat: pale brown blending into the breast area" + ], + "sulawesi white eye": [ + "back: olive-green feathers", + "beak: short, black and pointed", + "belly: light yellow plumage", + "breast: pale yellow feathers", + "crown: bright yellow stripe", + "forehead: small, white eye-ring", + "eyes: black with white eye-ring", + "legs: pale, slender legs", + "wings: olive-green with white edges", + "nape: yellowish-green", + "tail: olive-green with white tips", + "throat: light yellow plumage" + ], + "sulphur bearded reedhaunter": [ + "back: olive-green with subtle streaks", + "beak: short, conical, and black", + "belly: pale yellow with faint streaks", + "breast: yellowish with brown streaks", + "crown: olive-brown with faint streaks", + "forehead: olive-brown blending into crown", + "eyes: dark brown with thin white eye-ring", + "legs: strong, pinkish-gray", + "wings: olive-brown with faint wing-bars", + "nape: olive-brown, continuous with crown", + "tail: long, brownish, with faint barring", + "throat: pale yellow, blending into breast" + ], + "sulphur bellied bulbul": [ + "back: olive-green feathers", + "beak: short, hooked, blackish tip", + "belly: bright yellow hue", + "breast: olive-grey, yellow tint", + "crown: dark grey, slight crest", + "forehead: lighter grey patch", + "eyes: black, encircled by white feathers", + "legs: sturdy, brownish-gray", + "wings: olive-green, white-tipped coverts", + "nape: dark grey, connecting to crown", + "tail: long, dark feathers with white edges", + "throat: pale grey, blending into breast" + ], + "sulphur bellied flycatcher": [ + "back: greenish olive feathers", + "beak: broad, flattened, dark", + "belly: vibrant yellow with dark streaks", + "breast: streaked pale olive-yellow", + "crown: greenish olive", + "forehead: yellow, greenish hue blends into the crown", + "eyes: dark, medium size with pale eyering", + "legs: long, thin, dark gray", + "wings: greenish-olive with two conspicuous white wingbars", + "nape: greenish olive, slightly lighter than the crown", + "tail: brownish olive, moderately forked", + "throat: bright yellow with faint streaks" + ], + "sulphur bellied tyrannulet": [ + "back: olive-green with slight yellow tinge", + "beak: thin, short and curved, grayish-black", + "belly: pale yellow with grayish flanks", + "breast: grayish-white with subtle yellow highlights", + "crown: olive-green with faint gray streaks", + "forehead: pale gray with olive-green tint", + "eyes: small, dark with inconspicuous white eye-ring", + "legs: slim, grayish-brown with sharp claws", + "wings: olive-green with white-edged flight feathers", + "nape: olive-green, blending with the crown", + "tail: slightly forked, olive-green with pale feather tips", + "throat: pale grayish-white with a hint of yellow" + ], + "sulphur bellied tyrant manakin": [ + "back: vibrant green upper feathers", + "beak: small, black, hooked tip", + "belly: bold yellow hue", + "breast: bright yellow feathers", + "crown: lush emerald green", + "forehead: green plumage blending to yellow", + "eyes: round, black, alert gaze", + "legs: slender, grayish-blue", + "wings: graceful, long, green feathers", + "nape: brilliant green transition to yellow", + "tail: short, green with yellow edges", + "throat: vibrant yellow plumage" + ], + "sulphur bellied warbler": [ + "back: olive-green with subtle streaks", + "beak: thin, pointed, and dark-colored", + "belly: bright yellow with dark streaks", + "breast: yellowish with dark markings", + "crown: olive-green with vague streaks", + "forehead: yellowish-green with a slight tinge of grey", + "eyes: black with white eye-ring", + "legs: long, slender, and dark gray", + "wings: dark brown with olive-green edges", + "nape: greenish-yellow with faint streaks", + "tail: dark brown with pale edges", + "throat: bright yellow with dark streaks" + ], + "sulphur bellied whistler": [ + "back: olive-green feathered", + "beak: short, sharp, slightly hooked", + "belly: yellowish-orange hue", + "breast: yellow, fading to orange", + "crown: olive-green, slightly rounded", + "forehead: green, smooth feathers", + "eyes: small, dark with white eyering", + "legs: slender, light gray", + "wings: olive-green, elongated shape", + "nape: olive-green, transitioning to yellow", + "tail: long, dusky green", + "throat: yellow-orange, lightly feathered" + ], + "sulphur billed nuthatch": [ + "back: olive-green covering the upper body", + "beak: strong, dark, and slightly curved", + "belly: pale yellow with bold streaks", + "breast: vibrant yellow blending into belly", + "crown: black with blue-grey streaks", + "forehead: black merging with the crown", + "eyes: round and black with a white eyering", + "legs: short and sturdy, with dark grey claws", + "wings: bluish-grey with conspicuous white spots", + "nape: black, connecting to the crown and back", + "tail: bluish-grey with white-tipped tail feathers", + "throat: bright yellow, contrasting with lower neck" + ], + "sulphur breasted bushshrike": [ + "back: olive-green and black feathers", + "beak: sharp, hooked, grayish-black", + "belly: bright yellow with faint streaks", + "breast: vibrant yellow, blending with belly", + "crown: olive-green, fading to grey near forehead", + "forehead: subtle gray, meeting crown", + "eyes: black with white eye-ring", + "legs: long, slender, grayish-black", + "wings: olive-green with black accents", + "nape: olive-green, connecting with back", + "tail: long, black, with greenish central feathers", + "throat: bright yellow, continuous with breast" + ], + "sulphur breasted parakeet": [ + "back: vibrant green shades", + "beak: hooked, orange-yellow", + "belly: bright yellow", + "breast: deep yellow with orange hues", + "crown: blue-green head feathers", + "forehead: turquoise-blue features", + "eyes: dark with white eye-ring", + "legs: gray with zygodactyl toes", + "wings: green with blue wingtips", + "nape: bluish-green feathers", + "tail: elongated greenish-blue feathers", + "throat: yellow with faint orange tinge" + ], + "sulphur breasted warbler": [ + "back: olive-green and smooth", + "beak: thin, pointed, and black", + "belly: bright yellow with subtle streaks", + "breast: striking sulphur-yellow hue", + "crown: olive-green with a slight crest", + "forehead: bright yellow meeting the beak", + "eyes: dark, medium-sized with white eyering", + "legs: long, slender, and pale pink", + "wings: olive-green with faint yellow edging", + "nape: olive-green, connecting the crown and back", + "tail: dark with yellow-tipped outer feathers", + "throat: vibrant yellow, blending with the breast" + ], + "sulphur crested cockatoo": [ + "back: white feathers with a slightly curved posture", + "beak: large, strong, and light gray", + "belly: white and fluffy feathers", + "breast: white and slightly rounded feathers", + "crown: striking yellow crest feathers", + "forehead: white feathers transitioning into the yellow crest", + "eyes: dark with a white eye patch and slight frowning expression", + "legs: short, gray, and scaled with strong toes", + "wings: white and broad, outlined with yellow when extended", + "nape: white feathers with a seamless connection to the back", + "tail: long white feathers with a hint of yellow on the tips", + "throat: white and smooth plumage" + ], + "sulphur rumped flycatcher": [ + "back: olive-green with a hint of yellow", + "beak: small, dark gray, and slightly hooked", + "belly: pale yellow", + "breast: soft yellow transitioning from belly", + "crown: olive-green with a yellowish tinge", + "forehead: greenish-yellow", + "eyes: black with a faint white eye-ring", + "legs: dark gray, slender", + "wings: olive-green with two white wing-bars", + "nape: greenish-yellow blending with the crown", + "tail: long, dark gray with sulfur-yellow tips", + "throat: pale yellow, matching the belly" + ], + "sulphur rumped tanager": [ + "back: vibrant green or yellow-green feathers", + "beak: short, strong, and conical", + "belly: bright yellow with greenish undertones", + "breast: vivid yellow with hints of green", + "crown: shining golden-yellow", + "forehead: bright golden-yellow plumage", + "eyes: dark, round, surrounded by yellow feathers", + "legs: slender, dark gray or black", + "wings: green, edged with blue or yellow", + "nape: distinct golden-yellow or greenish-yellow", + "tail: long, green, with yellow edges or tips", + "throat: radiant yellow with slight greenish tints" + ], + "sulphur throated finch": [ + "back: olive-green feathers", + "beak: short, conical, yellowish", + "belly: pale yellow fur", + "breast: bright yellow plumage", + "crown: grayish-green hues", + "forehead: grayish-green tint", + "eyes: dark brown with white eye-ring", + "legs: grayish, slender", + "wings: olive-green with yellow-edged feathers", + "nape: grayish-green shade", + "tail: dark olive-green feathers", + "throat: vibrant sulphur-yellow color" + ], + "sulphur winged parakeet": [ + "back: vibrant green feathers", + "beak: white-ish upper beak, black lower beak, hooked shape", + "belly: yellow-green feathers with slight blue tinge", + "breast: greenish-yellow feathers", + "crown: bright yellow-green head feathers", + "forehead: yellow-green with black feather bases", + "eyes: dark brown, expressive, surrounded by white eyerings", + "legs: gray, strong, scaly", + "wings: greenish-yellow with hint of blue, elongated", + "nape: yellowish-green feathers, continuous with crown", + "tail: long, green-blue feathers with yellow sides", + "throat: pale green, transitioning to yellowish breast" + ], + "sulphury flycatcher": [ + "back: olive-green upper side", + "beak: short, wide, dark-gray", + "belly: pale yellow underparts", + "breast: yellowish-orange plumage", + "crown: olive-green with a crest", + "forehead: yellowish tint, slightly darker", + "eyes: dark brown with pale eye-ring", + "legs: grayish-black and slender", + "wings: olive-green with two white wing bars", + "nape: olive-green plumage, consistent with back", + "tail: dark gray with white outer feathers", + "throat: vibrant yellow coloration" + ], + "sultan tit": [ + "back: vibrant blue with delicate black markings", + "beak: short and slightly curved, black", + "belly: bright yellow with black stripes", + "breast: vivid yellow with black accents", + "crown: deep blue with black stripe from beak to nape", + "forehead: intense blue blending into the crown", + "eyes: dark, surrounded by blue feathers", + "legs: slender and grayish-black", + "wings: striking blue with intricate black patterns", + "nape: bold blue with black stripes connecting to crown", + "tail: elongated, blue with black banding pattern", + "throat: vibrant yellow softening into the breast area" + ], + "sultan cuckoo dove": [ + "back: smooth, elongated feathers, soft grey-brown", + "beak: slender, slightly curved, pale silver-gray", + "belly: pale buff with a hint of pinkish-brown", + "breast: light pinkish-brown, fading to white towards the throat", + "crown: glossy iridescent purple hue", + "forehead: iridescent greenish-blue tint", + "eyes: dark brown with pale eye-ring", + "legs: slender, bright coral-red with crescent-shaped claws", + "wings: rounded with a greyish-brown and slightly green sheen", + "nape: iridescent green with purplish-blue highlights", + "tail: long, broad, and graduated, with a greenish tinge", + "throat: white, transitioning to pinkish-brown on the breast" + ], + "sulu boobook": [ + "back: mottled brown with white speckles", + "beak: sharp, curved, yellowish-gray", + "belly: cream-colored with brown banding", + "breast: rich, buff with darker spotting", + "crown: brown with white speckling", + "forehead: pale buff with faint streaks", + "eyes: large, piercing, yellow-orange", + "legs: yellowish-gray with strong talons", + "wings: brown with white spots, barred flight feathers", + "nape: brown with white speckles", + "tail: brown with white barring and narrow, dark bands", + "throat: pale buff with faint streaks" + ], + "sulu hornbill": [ + "back: glossy black feathers", + "beak: large, curved, and bright yellow", + "belly: black with a purple iridescence", + "breast: deep black feathers with a slight sheen", + "crown: black feathers forming a small crest", + "forehead: smooth, black, and gleaming", + "eyes: dark brown, surrounded by bare, blue skin", + "legs: short and sturdy, dark gray", + "wings: long, black, and strong for agile flight", + "nape: black, glossy feathers merging with the crown", + "tail: elongated, black feathers with a slight curve", + "throat: black with a hint of purple, bordered by bright yellow skin" + ], + "sulu pygmy woodpecker": [ + "back: olive-brown feathers with white spots", + "beak: short, chisel-shaped, and black", + "belly: creamy-white with faint brown markings", + "breast: pale, with streaks of brown or reddish-brown", + "crown: reddish-brown with white spots", + "forehead: white with small olive-brown spots", + "eyes: dark with white eye-ring", + "legs: short and gray", + "wings: olive-brown with white bars and speckles", + "nape: reddish-brown with white spots", + "tail: olive-brown with white edges and bars", + "throat: creamy-white with brown spots" + ], + "sumatran babbler": [ + "back: olive-brown feathers", + "beak: short and slightly curved", + "belly: pale yellowish-white", + "breast: light brown with streaks", + "crown: dark brown with rufous highlights", + "forehead: lighter brown with fine streaks", + "eyes: dark brown with thin eye-ring", + "legs: pinkish-brown and sturdy", + "wings: olive-brown with faint markings", + "nape: dark brown with lighter streaks", + "tail: long and olive-brown", + "throat: whitish with light brown streaks" + ], + "sumatran cochoa": [ + "back: vibrant blue and green upper feathers", + "beak: short and stout with sharp curve", + "belly: pale ashy gray plumage", + "breast: rich blue on upper and pale ashy gray on lower", + "crown: deep bluish-purple crest", + "forehead: intense dark blue feathers", + "eyes: piercing dark brown", + "legs: sturdy dark gray", + "wings: iridescent blue and green feathers", + "nape: bluish-purple plumage", + "tail: broad and bright blue edged with white", + "throat: bright white with blue boundary" + ], + "sumatran drongo": [ + "back: dark ash-grey, slightly glossy", + "beak: black, hooked tip", + "belly: grayish-black, slightly paler than back", + "breast: dark grey, lightly streaked", + "crown: black with iridescent feathers", + "forehead: dark grey, slightly paler than crown", + "eyes: dark brown, almost black", + "legs: dark grey, black claws", + "wings: long, black with slight shimmer", + "nape: smooth black, shiny", + "tail: long, black, deeply forked", + "throat: dark grey, narrow black streaks" + ], + "sumatran frogmouth": [ + "back: dark brown and white speckled plumage", + "beak: large, hooked, and yellowish", + "belly: pale gray with dark streaks", + "breast: light brown with darker streaks", + "crown: dark brown and with small white markings", + "forehead: dark brown with pale white speckles", + "eyes: large, round, and yellow", + "legs: short and feathered", + "wings: dark brown and wide, with white spots", + "nape: mostly dark brown with some small white marks", + "tail: long, barred with white and brown bands", + "throat: pale gray with dark streaks" + ], + "sumatran green pigeon": [ + "back: olive-green feathers with bluish sheen", + "beak: short and robust, hooked upper mandible, grayish color", + "belly: pale bluish-green or yellowish-green feathers", + "breast: iridescent greenish-blue feathers", + "crown: bright glossy green with light blue streaks", + "forehead: dark bluish or greenish-blue feathers", + "eyes: dark brown with yellow eye-ring", + "legs: strong, grayish-brown with sturdy, curved talons", + "wings: dark green with a bluish sheen and lighter-colored tips", + "nape: glossy bluish-green with yellowish or lighter green streaks", + "tail: short, in fan-shaped formation with dark bluish-green feathers", + "throat: light yellowish-green or bright green feathers" + ], + "sumatran ground cuckoo": [ + "back: olive-green feathers covering the back", + "beak: strong, curved, black beak", + "belly: creamy white feathers with black bars", + "breast: orange-buff feathers with black bars", +